From: Frank Brehm Date: Mon, 20 Jan 2014 14:41:05 +0000 (+0100) Subject: Current state X-Git-Url: https://git.uhu-banane.de/?a=commitdiff_plain;h=f7b8484ed98f88c1c456e47c9f9f68a89a0aff87;p=config%2Fsamara%2Fetc.git Current state --- diff --git a/NetworkManager/NetworkManager.conf b/NetworkManager/NetworkManager.conf deleted file mode 100644 index 4d14ee7..0000000 --- a/NetworkManager/NetworkManager.conf +++ /dev/null @@ -1,6 +0,0 @@ -[main] -plugins=ifnet,keyfile - -[ifnet] -managed=true -auto_refresh=false diff --git a/NetworkManager/dispatcher.d/10-openrc-status b/NetworkManager/dispatcher.d/10-openrc-status index c216b16..06b22bd 100755 --- a/NetworkManager/dispatcher.d/10-openrc-status +++ b/NetworkManager/dispatcher.d/10-openrc-status @@ -5,6 +5,11 @@ # Ensures that the NetworkManager OpenRC service is marked as started and # providing net only when it has a successful connection. +if [ ! -e "/run/openrc/softlevel" ]; then + # OpenRC is not running + exit 0 +fi + # Ensure rc-service is in PATH PATH="${PATH}:/sbin:/usr/sbin" diff --git a/X11/dm/Sessions/custom.desktop b/X11/dm/Sessions/custom.desktop deleted file mode 100755 index ea73760..0000000 --- a/X11/dm/Sessions/custom.desktop +++ /dev/null @@ -1,10 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -# The names/descriptions should really be better -Name=Custom Session -Comment=This starts a custom session -Exec=custom -# The "custom" Exec is a very special one and is handled specially in -# the Xsession script and just runs "~/.xsession" directly -Icon= -Type=Application diff --git a/X11/gdm/Init/Default b/X11/gdm/Init/Default deleted file mode 100755 index de036f4..0000000 --- a/X11/gdm/Init/Default +++ /dev/null @@ -1,89 +0,0 @@ -#!/bin/sh -# Stolen from the debian kdm setup, aren't I sneaky -# Plus a lot of fun stuff added -# -George - -PATH=/usr/bin:$PATH -OLD_IFS=$IFS - -gdmwhich () { - COMMAND="$1" - OUTPUT= - IFS=: - for dir in $PATH - do - if test -x "$dir/$COMMAND" ; then - if test "x$OUTPUT" = "x" ; then - OUTPUT="$dir/$COMMAND" - fi - fi - done - IFS=$OLD_IFS - echo "$OUTPUT" -} - -sysresources=/etc/X11/Xresources - -# merge in defaults -if [ -f "$sysresources" ]; then - xrdb -merge "$sysresources" -fi - -sysmodmap=/etc/X11/Xmodmap - -XMODMAP=`gdmwhich xmodmap` -if [ "x$XMODMAP" != "x" ] ; then - if [ "x$GDM_PARENT_DISPLAY" = "x" ]; then - if [ -f $sysmodmap ]; then - $XMODMAP $sysmodmap - fi - else - ( DISPLAY=$GDM_PARENT_DISPLAY XAUTHORITY=$GDM_PARENT_XAUTHORITY $XMODMAP -pke ) | $XMODMAP - - fi - - # - # Switch Sun's Alt and Meta mod mappings - # - - UNAME=`gdmwhich uname` - PROCESSOR=`$UNAME -p` - if [ "x$PROCESSOR" = "xsparc" ]; then - if $XMODMAP | /usr/bin/grep mod4 | /usr/bin/grep Alt > /dev/null 2>/dev/null - then - $XMODMAP -e "clear Mod1" \ - -e "clear Mod4" \ - -e "add Mod1 = Alt_L" \ - -e "add Mod1 = Alt_R" \ - -e "add Mod4 = Meta_L" \ - -e "add Mod4 = Meta_R" - fi - fi -fi - -SETXKBMAP=`gdmwhich setxkbmap` -if [ "x$SETXKBMAP" != "x" ] ; then - # FIXME: is this all right? Is this completely on crack? - # What this does is move the xkb configuration from the GDM_PARENT_DISPLAY - # FIXME: This should be done in code. Or there must be an easier way ... - if [ -n "$GDM_PARENT_DISPLAY" ]; then - XKBSETUP=`( DISPLAY=$GDM_PARENT_DISPLAY XAUTHORITY=$GDM_PARENT_XAUTHORITY $SETXKBMAP -v )` - if [ -n "$XKBSETUP" ]; then - XKBKEYMAP=`echo "$XKBSETUP" | grep '^keymap' | awk '{ print $2 }'` - XKBTYPES=`echo "$XKBSETUP" | grep '^types' | awk '{ print $2 }'` - XKBCOMPAT=`echo "$XKBSETUP" | grep '^compat' | awk '{ print $2 }'` - XKBSYMBOLS=`echo "$XKBSETUP" | grep '^symbols' | awk '{ print $2 }'` - XKBGEOMETRY=`echo "$XKBSETUP" | grep '^geometry' | awk '{ print $2 }'` - if [ -n "$XKBKEYMAP" ]; then - $SETXKBMAP -keymap "$XKBKEYMAP" - elif [ -n "$XKBTYPES" -a -n "$XKBCOMPAT" -a -n "$XKBSYMBOLS" -a -n "$XKBGEOMETRY" ]; then - $SETXKBMAP -types "$XKBTYPES" -compat "$XKBCOMPAT" -symbols "$XKBSYMBOLS" -geometry "$XKBGEOMETRY" - elif [ -n "$XKBTYPES" -a -n "$XKBCOMPAT" -a -n "$XKBSYMBOLS" ]; then - $SETXKBMAP -types "$XKBTYPES" -compat "$XKBCOMPAT" -symbols "$XKBSYMBOLS" - elif [ -n "$XKBSYMBOLS" ]; then - $SETXKBMAP -symbols "$XKBSYMBOLS" - fi - fi - fi -fi - -exit 0 diff --git a/X11/gdm/PostLogin/Default.sample b/X11/gdm/PostLogin/Default.sample deleted file mode 100755 index a61c098..0000000 --- a/X11/gdm/PostLogin/Default.sample +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -# -# Note: this is a sample and will not be run as is. Change the name of this -# file to /PostLogin/Default for this script to be run. This -# script will be run before any setup is run on behalf of the user and is -# useful if you for example need to do some setup to create a home directory -# for the user or something like that. $HOME, $LOGNAME and such will all be -# set appropriately and this script is run as root. diff --git a/X11/gdm/PostSession/Default b/X11/gdm/PostSession/Default deleted file mode 100755 index fa75316..0000000 --- a/X11/gdm/PostSession/Default +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/sh - -PATH="/usr/bin:$PATH:/bin:/usr/bin" -OLD_IFS=$IFS - -gdmwhich () { - COMMAND="$1" - OUTPUT= - IFS=: - for dir in $PATH - do - if test -x "$dir/$COMMAND" ; then - if test "x$OUTPUT" = "x" ; then - OUTPUT="$dir/$COMMAND" - fi - fi - done - IFS=$OLD_IFS - echo "$OUTPUT" -} - -exit 0 diff --git a/X11/gdm/PreSession/Default b/X11/gdm/PreSession/Default deleted file mode 100755 index dc523c6..0000000 --- a/X11/gdm/PreSession/Default +++ /dev/null @@ -1,67 +0,0 @@ -#!/bin/sh -# -# Note that output goes into the .xsession-errors file for easy debugging -# -PATH="/usr/bin:$PATH:/bin:/usr/bin" -OLD_IFS=$IFS - -gdmwhich () { - COMMAND="$1" - OUTPUT= - IFS=: - for dir in $PATH - do - if test -x "$dir/$COMMAND" ; then - if test "x$OUTPUT" = "x" ; then - OUTPUT="$dir/$COMMAND" - fi - fi - done - IFS=$OLD_IFS - echo "$OUTPUT" -} - -# Set background color -XSETROOT=`gdmwhich xsetroot` -if [ "x$XSETROOT" != "x" ] ; then - - CHECKBACKCOLOR="OK" - if [ "x$GDM_GREETER_TYPE" = "xTHEMED" ]; then - BACKCOLOR=`gdmflexiserver --command="GET_CONFIG greeter/GraphicalThemedColor $DISPLAY"` - - CHECKBACKCOLOR=`echo $BACKCOLOR | sed 's/^\([^ ]*\) .*$/\1/'` - if [ "x$CHECKBACKCOLOR" = "xOK" ]; then - BACKCOLOR=`echo $BACKCOLOR | sed 's/^.* \(.*\)$/\1/'` - else - BACKCOLOR="" - fi - fi - - # If we tried to load the themed backgroundcolor, but failed, then try loading plain color - if [ "x$CHECKBACKCOLOR" != "xOK" ] || [ "x$GDM_GREETER_TYPE" = "xPLAIN" ]; then - - # Background type can be 0=None, 1=Image & Color, 2=Color, or 3=Image - BACKTYPE=`gdmflexiserver --command="GET_CONFIG greeter/BackgroundType $DISPLAY"` - - # Skip if background type does not include a color - if [ "x$BACKTYPE" = "xOK 1" ] || [ "x$BACKTYPE" = "xOK 2" ]; then - BACKCOLOR=`gdmflexiserver --command="GET_CONFIG greeter/BackgroundColor $DISPLAY"` - - CHECKBACKCOLOR=`echo $BACKCOLOR | sed 's/^\([^ ]*\) .*$/\1/'` - if [ "x$CHECKBACKCOLOR" = "xOK" ]; then - BACKCOLOR=`echo $BACKCOLOR | sed 's/^.* \(.*\)$/\1/'` - else - BACKCOLOR="" - fi - fi - fi - - # Default value - if [ "x$BACKCOLOR" = "x" ]; then - BACKCOLOR="#76848F" - fi - - "$XSETROOT" -cursor_name left_ptr -solid "$BACKCOLOR" -fi - -exit 0 diff --git a/X11/gdm/XKeepsCrashing b/X11/gdm/XKeepsCrashing deleted file mode 100755 index 5b7c4a8..0000000 --- a/X11/gdm/XKeepsCrashing +++ /dev/null @@ -1,194 +0,0 @@ -#!/bin/sh - -if test "x$UNSAFE_TO_TRANSLATE" = "xyes" ; then - LANG=C - unset LC_ALL - unset LC_MESSAGES -fi - -if test -x "$LIBEXECDIR/gdmtranslate" ; then - GDMTRANSLATE="$LIBEXECDIR/gdmtranslate" -else - GDMTRANSLATE= -fi - -gettextfunc () { - if test "x$GDMTRANSLATE" != "x" ; then - "$GDMTRANSLATE" "$1" - else - echo "$1" - fi -} - -OLD_IFS=$IFS - -gdmwhich () { - COMMAND="$1" - OUTPUT= - IFS=: - for dir in $PATH - do - if test -x "$dir/$COMMAND" ; then - if test "x$OUTPUT" = "x" ; then - OUTPUT="$dir/$COMMAND" - fi - fi - done - IFS=$OLD_IFS - echo "$OUTPUT" -} - -MSG3=`gettextfunc "Failed to start the X server (your graphical interface). It is likely that it is not set up correctly. You will need to log in on a console and reconfigure the X server. Then restart GDM."` -MSG4=`gettextfunc "Would you like to try to configure the X server? Note that you will need the root password for this."` -MSG5=`gettextfunc "Please type in the root (privileged user) password."` -MSG6=`gettextfunc "Trying to restart the X server."` -MSG7=`gettextfunc "The X server is now disabled. Restart GDM when it is configured correctly."` -MSG8=`gettextfunc "Failed to start the X server (your graphical interface). It is likely that it is not set up correctly. Would you like to view the X server output to diagnose the problem?"` -MSG9=`gettextfunc "Would you like to view the detailed X server output as well?"` - -# there are some env vars defined: -# XLOG = the log file for the X server -# BINDIR = location of gdm binaries -# SBINDIR = location of gdm system binaries -# LIBEXECDIR = location of gdm libexec binaries (gdmaskpass, gdmopen) - -# return values are -# 0 = try again, runs this server again -# 1 = abort this display, removes this server from the list -# 32 = something went very wrong, things will just get logged. -# this means this script didnt work so do alternative things -# to tell the user if possible - -# -# First see if we can find an X configuration program -# (first one in the list will be used) -# -XCONFIGURATOR= -for n in \ - /usr/bin/system-config-display \ - /usr/bin/redhat-config-xfree86 \ - /usr/sbin/XFdrake \ - /usr/bin/X11/XF86Setup \ - /usr/bin/X11/Xconfigurator \ - /usr/bin/X11/xf86cfg \ - ; do - # standard shell test has no or and loops have no breaks, eek - if test "x$XCONFIGURATOR" = "x" ; then - if test -x "$n" ; then - XCONFIGURATOR="$n" - fi - fi -done - -# -# Now we check for dialog and gdmaskpass -# -DIALOG=`gdmwhich dialog` -if test "x$DIALOG" = "x" ; then - DIALOG=`gdmwhich whiptail` -fi -if test -x "$LIBEXECDIR/gdmaskpass" ; then - ASKPASS="$LIBEXECDIR/gdmaskpass" -else - ASKPASS= -fi - -# -# If this is a mouse problem try mouseconfig and modify some -# messages -# -if grep '^\(Cannot open mouse\|No core pointer\)' "$XLOG" 2> /dev/null ; then - - MSG8=`gettextfunc "Failed to start the X server (your graphical interface). It seems that the pointer device (your mouse) is not set up correctly. Would you like to view the X server output to diagnose the problem?"` - - if test -x /usr/sbin/mouseconfig ; then - XCONFIGURATOR=/usr/sbin/mouseconfig - # Note: we know this is a mouse problem and yay we have mouseconfig - MSG4=`gettextfunc "Would you like to try to configure the mouse? Note that you will need the root password for this."` - fi - - if test -x /usr/bin/system-config-mouse ; then - XCONFIGURATOR=/usr/bin/system-config-mouse - # Note: we know this is a mouse problem and yay we have system-config-mouse - MSG4=`gettextfunc "Would you like to try to configure the mouse? Note that you will need the root password for this."` - fi - -fi - -# we require 'gdmopen', to open a console, because we really dont -# have one. Perhaps someone should try to figure out some shell -# black magic to get this to work on other then linux systems -if test ! -x "$LIBEXECDIR/gdmopen" ; then - exit 32 -fi - -# when we run ourselves from the open we will pass a -noopen argument -if test "x$1" = "x-noopen" ; then - shift -else - # - # We do a lot of work wastefully over again, but oh well, - # perhaps this needs fixing. - # - "$LIBEXECDIR/gdmopen" -l /bin/sh -c "$0 -noopen $@" - exit $? -fi - -clear - -# Note, dialog required, though this script could be fixed to not require it -# I suppose -if test "x" = "x$DIALOG" ; then - echo ======================================================================= - echo - cat "$XLOG" - echo - echo ======================================================================= - echo - if test -x /usr/bin/fmt ; then - echo "$MSG3" | /usr/bin/fmt - else - echo "$MSG3" - fi - echo - echo ======================================================================= - read - exit 1 -fi - -if "$DIALOG" --yesno "$MSG8" 10 50 ; then - "$DIALOG" --textbox "$XLOG" 22 76 - # Support XFree86 v4 logfile thingie - if grep '^(..) Log file: "' "$XLOG" 2> /dev/null ; then - XLOG_DETAIL=`grep '^(..) Log file: "' "$XLOG" | sed 's/^[^"]*"\([^"]*\)".*$/\1/'` - if "$DIALOG" --yesno "$MSG9" 10 50 ; then - "$DIALOG" --textbox "$XLOG_DETAIL" 22 76 - fi - fi -fi - -if test "x$XCONFIGURATOR" = "x" ; then - "$DIALOG" --msgbox "$MSG7" 8 50 - exit 1 -fi - -if "$DIALOG" --yesno "$MSG4" 10 50 ; then - clear - echo - echo "$MSG5" - if test "x$ASKPASS" = "x" ; then - # dirty trick to fool su into asking the root password even if were - # root - su nobody -c "su -c $XCONFIGURATOR" - else - if "$ASKPASS" ; then - "$XCONFIGURATOR" - fi - fi - clear - "$DIALOG" --msgbox "$MSG6" 8 50 - exit 0 -else - "$DIALOG" --msgbox "$MSG7" 8 50 - exit 1 -fi diff --git a/X11/gdm/Xsession b/X11/gdm/Xsession deleted file mode 100755 index aa19837..0000000 --- a/X11/gdm/Xsession +++ /dev/null @@ -1,227 +0,0 @@ -#!/bin/sh -# -# This is SORT OF LIKE an X session, but not quite. You get a command as the -# first argument (it could be multiple words, so run it with "eval"). As a -# special case, the command can be: -# default - Run the appropriate Xclients startup (see the code below) -# custom - Run ~/.xsession and if that's not available run 'default' -# -# (Note that other arguments could also follow, but only the command one is -# right now relevant and supported) -# -# The output is ALREADY redirected to .xsession-errors in GDM. This way -# .xsession-errors actually gets more output such as if the PreSession script -# is failing. This also prevents DoS attacks if some app in the users session -# can be prodded to dump lots of stuff on the stdout/stderr. We wish to be -# robust don't we? In case you wish to use an existing script for other DM's, -# you can just not redirect when GDMSESSION is set. GDMSESSION will always -# be set from gdm. -# -# Also note that this is not run as a login shell, this is just executed. -# This is why we source the profile files below. -# -# based on: -# $XConsortium: Xsession /main/10 1995/12/18 18:21:28 gildea $ - -command="$@" - -# this will go into the .xsession-errors along with all other echo's -# good for debugging where things went wrong -echo "$0: Beginning session setup..." - -# First read /etc/profile and .profile -test -f /etc/profile && . /etc/profile -test -f "$HOME/.profile" && . "$HOME/.profile" -# Second read /etc/xprofile and .xprofile for X specific setup -test -f /etc/xprofile && . /etc/xprofile -test -f "$HOME/.xprofile" && . "$HOME/.xprofile" - -# Translation stuff -if [ -x "/usr/libexec/gdmtranslate" ] ; then - gdmtranslate="/usr/libexec/gdmtranslate" -else - gdmtranslate= -fi - -# Note that this should only go to zenity dialogs which always expect utf8 -gettextfunc () { - if [ "x$gdmtranslate" != "x" ] ; then - "$gdmtranslate" --utf8 "$1" - else - echo "$1" - fi -} - -OLD_IFS=$IFS - -gdmwhich () { - COMMAND="$1" - OUTPUT= - IFS=: - for dir in $PATH - do - if test -x "$dir/$COMMAND" ; then - if test "x$OUTPUT" = "x" ; then - OUTPUT="$dir/$COMMAND" - fi - fi - done - IFS=$OLD_IFS - echo "$OUTPUT" -} - -zenity=`gdmwhich zenity` - -# Note: ~/.xsession-errors is now done in the daemon so that it -# works for ALL sessions (except ones named 'Failsafe') - -# clean up after xbanner -freetemp=`gdmwhich freetemp` -if [ -n "$freetemp" ] ; then - "$freetemp" -fi - -userresources="$HOME/.Xresources" -usermodmap="$HOME/.Xmodmap" -userxkbmap="$HOME/.Xkbmap" - -sysresources=/etc/X11/Xresources -sysmodmap=/etc/X11/Xmodmap -sysxkbmap=/etc/X11/Xkbmap - -rh6sysresources=/etc/X11/xinit/Xresources -rh6sysmodmap=/etc/X11/xinit/Xmodmap - -# merge in defaults -if [ -f "$rh6sysresources" ]; then - xrdb -merge "$rh6sysresources" -fi - -if [ -f "$sysresources" ]; then - xrdb -merge "$sysresources" -fi - -if [ -f "$userresources" ]; then - xrdb -merge "$userresources" -fi - -# merge in keymaps -if [ -f "$sysxkbmap" ]; then - setxkbmap `cat "$sysxkbmap"` - XKB_IN_USE=yes -fi - -if [ -f "$userxkbmap" ]; then - setxkbmap `cat "$userxkbmap"` - XKB_IN_USE=yes -fi - -# -# Eeek, this seems like too much magic here -# -if [ -z "$XKB_IN_USE" -a ! -L /etc/X11/X ]; then - if grep '^exec.*/Xsun' /etc/X11/X > /dev/null 2>&1 && [ -f /etc/X11/XF86Config ]; then - xkbsymbols=`sed -n -e 's/^[ ]*XkbSymbols[ ]*"\(.*\)".*$/\1/p' /etc/X11/XF86Config` - if [ -n "$xkbsymbols" ]; then - setxkbmap -symbols "$xkbsymbols" - XKB_IN_USE=yes - fi - fi -fi - -# xkb and xmodmap don't play nice together -if [ -z "$XKB_IN_USE" ]; then - if [ -f "$rh6sysmodmap" ]; then - xmodmap "$rh6sysmodmap" - fi - - if [ -f "$sysmodmap" ]; then - xmodmap "$sysmodmap" - fi - - if [ -f "$usermodmap" ]; then - xmodmap "$usermodmap" - fi -fi - -unset XKB_IN_USE - -# Normalize languages, some places/distros screw us up in /etc/profile, -# so in case the user did select a language -if [ -n "$GDM_LANG" ]; then - LANG="$GDM_LANG" - export LANG - - if [ -n "$LC_ALL" ]; then - if [ "$LC_ALL" != "$LANG" ]; then - LC_ALL="$LANG" - fi - else - unset LC_ALL - fi - - if [ -n "$LANGUAGE" ]; then - if [ "$LANGUAGE" != "$LANG" ]; then - LANGUAGE="$LANG" - fi - else - unset LANGUAGE - fi - - if [ -n "$LINGUAS" ]; then - if [ "$LINGUAS" != "$LANG" ]; then - LINGUAS="$LANG" - fi - else - unset LINGUAS - fi -fi - -if [ "x$command" = "xcustom" ] ; then - if [ -x "$HOME/.xsession" ]; then - command="$HOME/.xsession" - else - echo "$0: Cannot find ~/.xsession will try the default session" - command="default" - fi -fi - -if [ "x$command" = "xdefault" ] ; then - if [ -x "$HOME/.Xclients" ]; then - command="$HOME/.Xclients" - elif [ -x /etc/X11/xinit/Xclients ]; then - command="/etc/X11/xinit/Xclients" - elif [ -x /etc/X11/Xclients ]; then - command="/etc/X11/Xclients" - else - if [ -n "$zenity" ] ; then - disptext=`gettextfunc "System has no Xclients file, so starting a failsafe xterm session. Windows will have focus only if the mouse pointer is above them. To get out of this mode type 'exit' in the window."` - "$zenity" --info --text "$disptext" - else - echo "$0: Cannot find Xclients" - fi - exec xterm -geometry 80x24+0+0 - fi -fi - -# run all system xinitrc shell scripts. -if [ -d /etc/X11/xinit/xinitrc.d ]; then - for i in /etc/X11/xinit/xinitrc.d/* ; do - if [ -x "$i" ]; then - . "$i" - fi - done -fi - -echo "$0: Setup done, will execute: $command" - -eval exec $command - -echo "$0: Executing $command failed, will run xterm" - -if [ -n "$zenity" ] ; then - disptext=`gettextfunc "Failed to start the session, so starting a failsafe xterm session. Windows will have focus only if the mouse pointer is above them. To get out of this mode type 'exit' in the window."` - "$zenity" --info --text "$disptext" -fi - -exec xterm -geometry 80x24+0+0 diff --git a/X11/gdm/gdmprefetchlist b/X11/gdm/gdmprefetchlist deleted file mode 100644 index 45cbbfc..0000000 --- a/X11/gdm/gdmprefetchlist +++ /dev/null @@ -1,43 +0,0 @@ -# If GDM is built with the --with-prefetch option, then this file -# is installed on the system, and the gdm.conf PreFetchProgram -# value should be set properly to cause the first login program -# managed to preload this list of libraries. It has been shown that -# preloading these libraries improves first-time login performance -# for the GNOME desktop. -# -# This list of libraries has been optimized for a GNOME session running -# on Solaris. People who want to contribute alternative lists of -# libraries for other distributions or desktop environments can -# contribute them to the "gdm" category in http://bugzilla.gnome.org/, -# and these can be made available in future releases of GDM. -# -/usr/share/icons/hicolor/icon-theme.cache -/usr/share/icons/blueprint/icon-theme.cache -/usr/share/icons/gnome/icon-theme.cache -/usr/bin/nautilus -/usr/bin/gnome-panel -/usr/lib/libbonoboui-2.so -/usr/lib/libwnck-1.so -/usr/lib/libgnomevfs-2.so -/usr/bin/metacity -/usr/lib/libeel-2.so -/usr/lib/libbonobo-2.so -/usr/openwin/lib/libXt.so -/usr/lib/libgnomeui-2.so -/usr/lib/clock-applet -/usr/lib/libORBit-2.so -/usr/X11/lib/libGL.so -/usr/openwin/lib/X11/fonts/TrueType/VeraMoIt.ttf -/usr/lib/libgnome-desktop-2.so -/usr/lib/wnck-applet -/usr/lib/libgstreamer-0.10.so -/usr/dt/lib/libXm.so -/usr/lib/libpoppler.so -/usr/lib/libgconf-2.so -/usr/sfw/lib/libcrypto.so -/usr/lib/nautilus/extensions-1.0/libevince-properties-page.so -/usr/lib/gnome-vfs-2.0/modules/libmapping.so -/usr/lib/libpoppler-glib.so -/usr/lib/libpanel-applet-2.so -/usr/lib/libstartup-notification-1.so -/usr/lib/libatk-1.0.so diff --git a/X11/gdm/locale.alias b/X11/gdm/locale.alias deleted file mode 100644 index 8134963..0000000 --- a/X11/gdm/locale.alias +++ /dev/null @@ -1,147 +0,0 @@ -# NOTE! This is a broken way to do things. GDM currently reads languages ONLY -# from this file. This is Broken(tm). This setup will be replaced in some -# future version to be replaced by some automatic detection of available -# locales. This file is not really a locale.alias file and the first word -# is used as a label in case gdm doesn't know this language personally, -# else it's ignored. -# -# The format of this file is SIMILAR (but not the same to the locale.alias -# format). You could however point gdm at a real locale.alias and it would -# still concievably work. Note that the first word cannot contain any spaces. -# The second word can be a comma separated list of locales to try. GDM will -# try if each locale exists and only if it does will it show that locale. The -# list is tried in order and the first working one is used. -# -# - George - -C(POSIX) C,POSIX -Afrikaans af_ZA.UTF-8,af_ZA -Albanian sq_AL.UTF-8,sq_AL -Amharic am_ET.UTF-8,am_ET -Arabic(Egypt) ar_EG.UTF-8,ar_EG -Arabic(Lebanon) ar_LB.UTF-8,ar_LB -Arabic(SaudiArabia) ar_SA.UTF-8,ar_SA -Armenian hy_AM.UTF-8,hy_AM -Azerbaijani az_AZ.UTF-8,az_AZ -Azerbaijani(Iran) az_IR.UTF-8,az_IR -Basque eu_ES.UTF-8,eu_ES -Belarusian be_BY.UTF-8,be_BY -Belarusian(Latin) be_BY.UTF-8@latin,be_BY@latin -Bengali bn_BD.UTF-8,bn_BD -Bengali(India) bn_IN.UTF-8,bn_IN -Bosnian bs_BA.UTF-8,bs_BA -Breton br_FR.UTF-8,br_FR -Bulgarian bg_BG.UTF-8,bg_BG -Catalan ca_ES.UTF-8,ca_ES -Chinese(ChinaMainland) zh_CN.UTF-8,zh_CN -Chinese(GB18030) zh_CN.GB18030 -Chinese(Hong-Kong) zh_HK.UTF-8,zh_HK -Chinese(Singapore) zh_SG.UTF-8,zh_SG -Chinese(Taiwan) zh_TW.UTF-8,zh_TW -Croatian hr_HR.UTF-8,hr_HR -Czech cs_CZ.UTF-8,cs_CZ -Danish da_DK.UTF-8,da_DK -Dutch nl_NL.UTF-8,nl_NL -Dutch(Belgium) nl_BE.UTF-8,nl_BE -English(Australia) en_AU.UTF-8,en_AU -English(Canada) en_CA.UTF-8,en_CA -English(Ireland) en_IE.UTF-8,en_IE -English(Malta) en_MT.UTF-8,en_MT -English(NewZealand) en_NZ.UTF-8,en_NZ -English(SouthAfrica) en_ZA.UTF-8,en_ZA -English(UK) en_GB.UTF-8,en_GB -English(USA) en_US.UTF-8,en_US -Esperanto eo.UTF-8,eo -Estonian et_EE.UTF-8,et_EE -Finnish fi_FI.UTF-8,fi_FI -French fr_FR.UTF-8,fr_FR -French(Belgium) fr_BE.UTF-8,fr_BE -French(Canada) fr_CA.UTF-8,fr_CA -French(Luxembourg) fr_LU.UTF-8,fr_LU -French(Switzerland) fr_CH.UTF-8,fr_CH -Galician gl_ES.UTF-8,gl_ES -German de_DE.UTF-8,de_DE -German(Austria) de_AT.UTF-8,de_AT -German(Switzerland) de_CH.UTF-8,de_CH -German(Luxembourg) de_LU.UTF-8,de_LU -Greek el_GR.UTF-8,el_GR -Greek(Cyprus) el_CY.UTF-8,el_CY -Gujarati gu_IN.UTF-8,gu_IN -Hebrew he_IL.UTF-8,he_IL -Hindi hi_IN.UTF-8,hi_IN -Hungarian hu_HU.UTF-8,hu_HU -Icelandic is_IS.UTF-8,is_IS -Indonesian id_ID.UTF-8,id_ID -Interlingua ia.UTF-8,ia -Irish ga_IE.UTF-8,ga_IE -Italian it_IT.UTF-8,it_IT -Japanese ja_JP.UTF-8,ja_JP -Kannada kn_IN.UTF-8,kn_IN -Kazakh kk_KZ.UTF-8,kk_KZ -Kinyarwanda rw_RW.UTF-8,rw_RW -Korean ko_KR.UTF-8,ko_KR -Latvian lv_LV.UTF-8,lv_LV -Limburgish li_NL.UTF-8,li_NL -Limburgish(Belgium) li_BE.UTF-8,li_BE -Limburgish(Germany) li_DE.UTF-8,li_DE -Lithuanian lt_LT.UTF-8,lt_LT -Macedonian mk_MK.UTF-8,mk_MK -Malayalam ml_IN.UTF-8,ml_IN -Malay ms_MY.UTF-8,ms_MY -Maltese mt_MT.UTF-8,mt_MT -Maori mi_NZ.UTF-8,mi_NZ -Marathi mr_IN.UTF-8,mr_IN -Mongolian mn_MN.UTF-8,mn_MN -Nepali ne_NP.UTF-8,ne_NP -NorthernSotho nso_ZA.UTF-8,nso_ZA -Norwegian(bokmal) nb_NO.UTF-8,nb_NO,no_NO.UTF-8,no_NO -Norwegian(nynorsk) nn_NO.UTF-8,nn_NO -Oriya or_IN.UTF-8,or_IN -Persian fa_IR.UTF-8,fa_IR -Polish pl_PL.UTF-8,pl_PL -Portuguese(Brazilian) pt_BR.UTF-8,pt_BR -Portuguese pt_PT.UTF-8,pt_PT -Punjabi pa_IN.UTF-8,pa_IN -Romanian ro_RO.UTF-8,ro_RO -Russian ru_RU.UTF-8,ru_RU -Serbian sr_CS.UTF-8,sr_CS,sr_YU@cyrillic,sr_YU -Serbian(Montenegro) sr_ME.UTF-8 -Serbian(Serbia) sr_RS.UTF-8 -Serbian(Bosnia) sh_BA.UTF-8,sh_BA -Serbian(Latin) sr_CS.UTF-8@Latn,sr_CS@Latn,sr_YU@Latn -Serbian(Jekavian) sr_CS.UTF-8@ije,sr_CS@ije,sr_YU@ije -Slovak sk_SK.UTF-8,sk_SK -Slovenian sl_SI.UTF-8,sl_SI -Spanish es_ES.UTF-8,es_ES -Spanish(Argentina) es_AR.UTF-8,es_AR -Spanish(Bolivia) es_BO.UTF-8,es_BO -Spanish(Chile) es_CL.UTF-8,es_CL -Spanish(Colombia) es_CO.UTF-8,es_CO -Spanish(CostaRica) es_CR.UTF-8,es_CR -Spanish(Ecuador) es_EC.UTF-8,es_EC -Spanish(Guatemala) es_GT.UTF-8,es_GT -Spanish(Mexico) es_MX.UTF-8,es_MX -Spanish(Nicaragua) es_NI.UTF-8,es_NI -Spanish(Panama) es_PA.UTF-8,es_PA -Spanish(Peru) es_PE.UTF-8,es_PE -Spanish(Paraguay) es_PY.UTF-8,es_PY -Spanish(ElSalvador) es_SV.UTF-8,es_SV -Spanish(Uruguay) es_UY.UTF-8,es_UY -Spanish(Venezuela) es_VE.UTF-8,es_VE -Swedish(Finland) sv_FI.UTF-8,sv_FI -Swedish sv_SE.UTF-8,sv_SE -Tagalog tl_PH.UTF-8,tl_PH -Tajik tg_TJ.UTF-8,tg_TJ -Tamil ta_IN.UTF-8,ta_IN -Telugu te_IN.UTF-8,te_IN -Thai th_TH.UTF-8,th_TH -Turkish tr_TR.UTF-8,tr_TR -Ukrainian uk_UA.UTF-8,uk_UA -Uzbek uz_UZ.UTF-8,uz_UZ -Uzbek(Latin) uz_UZ.UTF-8@Latn,uz_UZ@Latn -Vietnamese vi_VN.UTF-8,vi_VN -Walloon wa_BE.UTF-8,wa_BE -Welsh cy_GB.UTF-8,cy_GB -Xhosa xh_ZA.UTF-8,xh_ZA -Yiddish yi.UTF-8,yi -Zulu zu_ZA.UTF-8,zu_ZA diff --git a/X11/gdm/modules/AccessDwellMouseEvents b/X11/gdm/modules/AccessDwellMouseEvents deleted file mode 100644 index ee07f1a..0000000 --- a/X11/gdm/modules/AccessDwellMouseEvents +++ /dev/null @@ -1,62 +0,0 @@ -# This is the configuration file for the keymouselistener.so module. -# The confiuration syntax is as follows: -# -# crossing inital_direction timeout executable_path +args -# -# For executable_path give the full executable path path of the program or the -# DefaultPath is used. -# -# where: -# -# + crossing is a string that includes any combination of TBLR characters, where -# T means Top, B means Bottom, L means Left, and R means Right. -# -# + initial_direction can be either the I or O character which indicates -# that the initial crossing is a motion In or Out of the window. -# -# e.g. -# TBLR I 10000 /usr/bin/gok --login --access-method=dwellselection -# -# Means the user crosses into the top border, out the bottom border, into the left -# border, and then out the right border (in that order). The initial_direction -# value of I is what specifies that the first crossing is into the top border -# rather than out of the top border. Each border crossing must occur within -# 10000ms of the last border crossing for the gesture to be valid. -# -# It is possible to invoke multiple actions from a single gesture using the -# keyword. Action specified with are invoked by the previous gesture -# defined in the file. If the action is the first action defined in the -# file, then it is ignored. -# -# e.g. -# -# /usr/bin/orca -n -d main-window -# - -# AT Progarm - GOK (GNOME On-screen Keyboard) -# -# Support several different options for different user needs. Note these -# gestures all start by moving the mouse into the top window border. -# -TBLR I 10000 /usr/bin/gok --login --access-method=dwellselection -TLBR I 10000 /usr/bin/gok --login --access-method=automaticscanning --scan-action=switch1 --select-action=switch1 -TRBL I 10000 /usr/bin/gok --login --access-method=inversescanning --scan-action=switch1 --select-action=switch2 -TBRL I 10000 /usr/bin/gok --login --access-method=automaticscanning --scan-action=switch3 --select-action=switch3 - -# AT Program - ORCA -# -# Note these gestures all start by moving the mouse into the bottom window -# border. -# -# Speech -# -BTRL I 10000 /usr/bin/orca -n -d main-window - -# Magnifier -# -BTLR I 10000 /usr/bin/orca -n -d main-window -d speech -e magnifier - -# Speech and Magnifier -# -BRTL I 10000 /usr/bin/orca -n -d main-window -e magnifier - diff --git a/X11/gdm/modules/AccessKeyMouseEvents b/X11/gdm/modules/AccessKeyMouseEvents deleted file mode 100644 index 90abd9b..0000000 --- a/X11/gdm/modules/AccessKeyMouseEvents +++ /dev/null @@ -1,91 +0,0 @@ -# This is the configuration file for the keymouselistener.so module. -# The confiuration syntax is as follows: -# -# For keyboard gestures: -# -# [...]key #times duration timeout executable_path +args -# -# For executable_path give the full executable path path of the program or the -# DefaultPath is used. For key, this can be one of the normal keys such as 'k' -# for the letter 'k', or 'F10' for the F10 key. If you wish to use one of the -# 'modifier' keys you have to specify which one exactly, meaning usually -# appending _L or _R depending on if it's the left or right one. The useful -# ones are: Shift_L, Shift_R, Control_L, Control_R, Meta_L, Meta_R, Alt_L, Alt_R. -# Do note that the modifier is optional. -# -# e.g. -# -# k 1 1000 10000 /usr/bin/gok --login --access-method=directselection -# -# Means press Contol-k 5 times, holding each keypress down for at least 1000ms -# (1s) each time and with no greater interval than 10000ms (10s) between each -# event in the sequence. A duration value of 0 indicates that a keypress of -# any length is accepted. The timeout value is only meaningful if the #times -# value is > 1. Completing the above example sequence will invoke the gnome on -# screen keyboard program, gok. Note that you cannot release the key -# while pressing otherwise the sequence will be lost. -# -# e.g. -# Shift_L 5 1000 10000 /usr/bin/gok --login --access-method=directselection -# Shift_R 5 1000 10000 /usr/bin/gok --login --access-method=directselection -# -# Will start gok if you press either shift key 5 times holding it down for more -# then 1 second each time. -# -# For mouse button gestures the format is the same except the mouse button number -# is specified instead of a key gesture: -# -# #times duration timeout executable_path +args -# -# e.g. -# -# 4 3000 6000 /usr/bin/orca -n -d main-window -# -# Note that mouse numbers are 1-based so is the left mouse button, -# is the right mouse button and is the middle mouse button. -# -# It is possible to invoke multiple actions from a single gesture using the -# keyword. Actions specified with are invoked by the previous gesture -# defined in the file. If the action is the first action defined in the -# file, then it is ignored. -# -# e.g. -# -# /usr/bin/gnome-mag -# - -# AT Program - GOK (GNOME On-screen Keyboard) -# -# Include a gesture for both right and left mouse button, for both right -# and left handed users. -# -# hold right or left mouse button 3 times for 3 seconds each time. - 3 3000 10000 /usr/bin/gok --login --access-method=directselection - 3 3000 10000 /usr/bin/gok --login --access-method=directselection - -# Also support Xinput switches -# - 1 5000 0 /usr/bin/gok --login --access-method=automaticscanning --scan-action=switch1 --select-action=switch1 - 3 50 3000 /usr/bin/gok --login --access-method=inversescanning --scan-action=switch1 --select-action=switch2 - 3 1000 10000 /usr/bin/gok --login --access-method=automaticscanning --scan-action=switch3 --select-action=switch3 - -# Although most GOK users would want to use a mouse/switch button to start GOK, -# also include a keybinding for starting GOK with direct selection mode. -# -k 1 1000 10000 /usr/bin/gok --login --access-method=directselection - -# AT Program - ORCA -# -# press ctrl-s for 1 second to launch orca in speech mode -# -s 1 1000 10000 /usr/bin/orca -n -d main-window - -# press ctrl-m for 1 second to launch orca in mag mode -# -m 1 1000 10000 /usr/bin/orca -n -d main-window -d speech -e magnifier - -# press ctrl-o or ctrl-g for 1 second to launch orca in speech and mag mode -# -o 1 1000 10000 /usr/bin/orca -n -d main-window -e magnifier -g 1 1000 10000 /usr/bin/orca -n -d main-window -e magnifier - diff --git a/X11/gdm/modules/factory-AccessDwellMouseEvents b/X11/gdm/modules/factory-AccessDwellMouseEvents deleted file mode 100644 index ee07f1a..0000000 --- a/X11/gdm/modules/factory-AccessDwellMouseEvents +++ /dev/null @@ -1,62 +0,0 @@ -# This is the configuration file for the keymouselistener.so module. -# The confiuration syntax is as follows: -# -# crossing inital_direction timeout executable_path +args -# -# For executable_path give the full executable path path of the program or the -# DefaultPath is used. -# -# where: -# -# + crossing is a string that includes any combination of TBLR characters, where -# T means Top, B means Bottom, L means Left, and R means Right. -# -# + initial_direction can be either the I or O character which indicates -# that the initial crossing is a motion In or Out of the window. -# -# e.g. -# TBLR I 10000 /usr/bin/gok --login --access-method=dwellselection -# -# Means the user crosses into the top border, out the bottom border, into the left -# border, and then out the right border (in that order). The initial_direction -# value of I is what specifies that the first crossing is into the top border -# rather than out of the top border. Each border crossing must occur within -# 10000ms of the last border crossing for the gesture to be valid. -# -# It is possible to invoke multiple actions from a single gesture using the -# keyword. Action specified with are invoked by the previous gesture -# defined in the file. If the action is the first action defined in the -# file, then it is ignored. -# -# e.g. -# -# /usr/bin/orca -n -d main-window -# - -# AT Progarm - GOK (GNOME On-screen Keyboard) -# -# Support several different options for different user needs. Note these -# gestures all start by moving the mouse into the top window border. -# -TBLR I 10000 /usr/bin/gok --login --access-method=dwellselection -TLBR I 10000 /usr/bin/gok --login --access-method=automaticscanning --scan-action=switch1 --select-action=switch1 -TRBL I 10000 /usr/bin/gok --login --access-method=inversescanning --scan-action=switch1 --select-action=switch2 -TBRL I 10000 /usr/bin/gok --login --access-method=automaticscanning --scan-action=switch3 --select-action=switch3 - -# AT Program - ORCA -# -# Note these gestures all start by moving the mouse into the bottom window -# border. -# -# Speech -# -BTRL I 10000 /usr/bin/orca -n -d main-window - -# Magnifier -# -BTLR I 10000 /usr/bin/orca -n -d main-window -d speech -e magnifier - -# Speech and Magnifier -# -BRTL I 10000 /usr/bin/orca -n -d main-window -e magnifier - diff --git a/X11/gdm/modules/factory-AccessKeyMouseEvents b/X11/gdm/modules/factory-AccessKeyMouseEvents deleted file mode 100644 index 90abd9b..0000000 --- a/X11/gdm/modules/factory-AccessKeyMouseEvents +++ /dev/null @@ -1,91 +0,0 @@ -# This is the configuration file for the keymouselistener.so module. -# The confiuration syntax is as follows: -# -# For keyboard gestures: -# -# [...]key #times duration timeout executable_path +args -# -# For executable_path give the full executable path path of the program or the -# DefaultPath is used. For key, this can be one of the normal keys such as 'k' -# for the letter 'k', or 'F10' for the F10 key. If you wish to use one of the -# 'modifier' keys you have to specify which one exactly, meaning usually -# appending _L or _R depending on if it's the left or right one. The useful -# ones are: Shift_L, Shift_R, Control_L, Control_R, Meta_L, Meta_R, Alt_L, Alt_R. -# Do note that the modifier is optional. -# -# e.g. -# -# k 1 1000 10000 /usr/bin/gok --login --access-method=directselection -# -# Means press Contol-k 5 times, holding each keypress down for at least 1000ms -# (1s) each time and with no greater interval than 10000ms (10s) between each -# event in the sequence. A duration value of 0 indicates that a keypress of -# any length is accepted. The timeout value is only meaningful if the #times -# value is > 1. Completing the above example sequence will invoke the gnome on -# screen keyboard program, gok. Note that you cannot release the key -# while pressing otherwise the sequence will be lost. -# -# e.g. -# Shift_L 5 1000 10000 /usr/bin/gok --login --access-method=directselection -# Shift_R 5 1000 10000 /usr/bin/gok --login --access-method=directselection -# -# Will start gok if you press either shift key 5 times holding it down for more -# then 1 second each time. -# -# For mouse button gestures the format is the same except the mouse button number -# is specified instead of a key gesture: -# -# #times duration timeout executable_path +args -# -# e.g. -# -# 4 3000 6000 /usr/bin/orca -n -d main-window -# -# Note that mouse numbers are 1-based so is the left mouse button, -# is the right mouse button and is the middle mouse button. -# -# It is possible to invoke multiple actions from a single gesture using the -# keyword. Actions specified with are invoked by the previous gesture -# defined in the file. If the action is the first action defined in the -# file, then it is ignored. -# -# e.g. -# -# /usr/bin/gnome-mag -# - -# AT Program - GOK (GNOME On-screen Keyboard) -# -# Include a gesture for both right and left mouse button, for both right -# and left handed users. -# -# hold right or left mouse button 3 times for 3 seconds each time. - 3 3000 10000 /usr/bin/gok --login --access-method=directselection - 3 3000 10000 /usr/bin/gok --login --access-method=directselection - -# Also support Xinput switches -# - 1 5000 0 /usr/bin/gok --login --access-method=automaticscanning --scan-action=switch1 --select-action=switch1 - 3 50 3000 /usr/bin/gok --login --access-method=inversescanning --scan-action=switch1 --select-action=switch2 - 3 1000 10000 /usr/bin/gok --login --access-method=automaticscanning --scan-action=switch3 --select-action=switch3 - -# Although most GOK users would want to use a mouse/switch button to start GOK, -# also include a keybinding for starting GOK with direct selection mode. -# -k 1 1000 10000 /usr/bin/gok --login --access-method=directselection - -# AT Program - ORCA -# -# press ctrl-s for 1 second to launch orca in speech mode -# -s 1 1000 10000 /usr/bin/orca -n -d main-window - -# press ctrl-m for 1 second to launch orca in mag mode -# -m 1 1000 10000 /usr/bin/orca -n -d main-window -d speech -e magnifier - -# press ctrl-o or ctrl-g for 1 second to launch orca in speech and mag mode -# -o 1 1000 10000 /usr/bin/orca -n -d main-window -e magnifier -g 1 1000 10000 /usr/bin/orca -n -d main-window -e magnifier - diff --git a/X11/wdm/GiveConsole b/X11/wdm/GiveConsole new file mode 100755 index 0000000..cbeb472 --- /dev/null +++ b/X11/wdm/GiveConsole @@ -0,0 +1,10 @@ +#!/bin/sh +# Assign ownership of the console to the invoking user +# $XConsortium: GiveConsole,v 1.2 93/09/28 14:29:20 gildea Exp $ +# +# By convention, both xconsole and xterm -C check that the +# console is owned by the invoking user and is readable before attaching +# the console output. This way a random user can invoke xterm -C without +# causing serious grief. +# +chown $USER /dev/console diff --git a/X11/wdm/TakeConsole b/X11/wdm/TakeConsole new file mode 100755 index 0000000..942d3e5 --- /dev/null +++ b/X11/wdm/TakeConsole @@ -0,0 +1,7 @@ +#!/bin/sh +# Reassign ownership of the console to root, this should disallow +# assignment of console output to any random users's xterm +# $XConsortium: TakeConsole,v 1.2 93/09/28 14:30:29 gildea Exp $ +# +chmod 622 /dev/console +chown root /dev/console diff --git a/X11/wdm/Xaccess b/X11/wdm/Xaccess new file mode 100644 index 0000000..8f20379 --- /dev/null +++ b/X11/wdm/Xaccess @@ -0,0 +1,68 @@ +# $XConsortium: Xaccess,v 1.5 91/08/26 11:52:51 rws Exp $ +# +# Access control file for XDMCP connections +# +# To control Direct and Broadcast access: +# +# pattern +# +# To control Indirect queries: +# +# pattern list of hostnames and/or macros ... +# +# To use the chooser: +# +# pattern CHOOSER BROADCAST +# +# or +# +# pattern CHOOSER list of hostnames and/or macros ... +# +# To define macros: +# +# %name list of hosts ... +# +# The first form tells xdm which displays to respond to itself. +# The second form tells xdm to forward indirect queries from hosts matching +# the specified pattern to the indicated list of hosts. +# The third form tells xdm to handle indirect queries using the chooser; +# the chooser is directed to send its own queries out via the broadcast +# address and display the results on the terminal. +# The fourth form is similar to the third, except instead of using the +# broadcast address, it sends DirectQuerys to each of the hosts in the list +# +# In all cases, xdm uses the first entry which matches the terminal; +# for IndirectQuery messages only entries with right hand sides can +# match, for Direct and Broadcast Query messages, only entries without +# right hand sides can match. +# + +* #any host can get a login window + +# +# To hardwire a specific terminal to a specific host, you can +# leave the terminal sending indirect queries to this host, and +# use an entry of the form: +# + +#terminal-a host-a + + +# +# The nicest way to run the chooser is to just ask it to broadcast +# requests to the network - that way new hosts show up automatically. +# Sometimes, however, the chooser can't figure out how to broadcast, +# so this may not work in all environments. +# + +* CHOOSER BROADCAST #any indirect host can get a chooser + +# +# If you'd prefer to configure the set of hosts each terminal sees, +# then just uncomment these lines (and comment the CHOOSER line above) +# and edit the %hostlist line as appropriate +# + +#%hostlist host-a host-b + +#* CHOOSER %hostlist # diff --git a/X11/wdm/Xclients b/X11/wdm/Xclients new file mode 100755 index 0000000..aeb0ba1 --- /dev/null +++ b/X11/wdm/Xclients @@ -0,0 +1,206 @@ +#!/bin/bash -login +# configs/Xclients. Generated from Xclients.in by configure. + +######################################################################## +# -*- sh -*- # +# # +# ~/.Xclients: used by startx (xinit) to start up a window manager and # +# any other clients you always want to start an X session with. # +# # +# This version of Xclients is intended for use with wdm. This # +# separate file is used rather than the Red Hat Linux Xclients # +# file located as /etc/X11/xinit/Xclients because it has been # +# extensively modified to handle starting many different window # +# or session managers and do that on systems other than Red Hat Linux. # +# # +# Systems other than RedHat Linux will like need editing of this # +# file to tailor the file for the particular system. # +# # +######################################################################## + +# try to find executable in PATH +FindInPath() +{ + prog=$1 + shift + result= + for p in `echo $PATH|tr ':' ' '`; do + if test -e $p/$prog; then + result=$p/$prog + break; + fi + done +} + + + +# these files are left sitting around by TheNextLevel. +rm -f $HOME/Xrootenv.0 +rm -f /tmp/fvwmrc* 2>/dev/null + +# check for and set x-resources +if [ -f $HOME/.Xresources ] ; then + /usr/bin/xrdb -merge $HOME/.Xresources +fi + +if [ -f $HOME/.Xdefaults ] ; then + /usr/bin/xrdb -merge $HOME/.Xdefaults +fi + +WINMGR_NAME= +if test -z "$WINMGR_NAME"; then + WINMGR_NAME="UserDefined" +fi + +# First thing - check the user preferences +if [ -f $HOME/.wm_style ] ; then + WMSTYLE=`cat $HOME/.wm_style` + case "$WMSTYLE" in +# +# first, a general purpose entry: + $WINMGR_NAME*) + # startup a window manager + WINMGR_PATH= + if test -x "$WINMGR_PATH" ; then + echo Starting $WINMGR_NAME >$HOME/.xwm.msgs + exec $WINMGR_PATH >>$HOME/.xwm.msgs 2>&1 + fi + ;; + + wmaker*|WindowMaker*) + # startup WindowMaker + WMAKER_PATH=/usr/bin/wmaker + if ! test -x $WMAKER_PATH ; then + FindInPath $WMAKER_PATH + if test -n "$result" -a -x "$result"; then + WMAKER_PATH="$result"; + fi + fi + + if test -x $WMAKER_PATH ; then + echo Starting WindowMaker >$HOME/.xwm.msgs + env > "$HOME"/Xrootenv.0 + exec $WMAKER_PATH >>$HOME/.xwm.msgs 2>&1 + fi + ;; + + afterstep*|Afterstep*|AfterStep*) + # we have to start up afterstep + AFTERSTEP_PATH=afterstep + if ! test -x $AFTERSTEP_PATH ; then + FindInPath $AFTERSTEP_PATH + if test -n "$result" -a -x "$result"; then + AFTERSTEP_PATH="$result"; + fi + fi + if [ -x $AFTERSTEP_PATH -a -f /usr/share/afterstep/wmconfig.conf ] ; then + mkdir -p $HOME/GNUstep/Library/AfterStep + wmconfig --output=afterstep --directories /usr/share/afterstep/wmconfig.conf 2>/dev/null + env > "$HOME"/Xrootenv.0 + # if this works, we stop here + eval "exec $AFTERSTEP_PATH" > "$HOME"/.AfterStep-errors 2>&1 + fi + ;; + + blackbox*|BlackBox) + # startup blackbox + BLACKBOX_PATH=blackbox + if ! test -x $BLACKBOX_PATH ; then + FindInPath $BLACKBOX_PATH + if test -n "$result" -a -x "$result"; then + BLACKBOX_PATH="$result"; + fi + fi + if [ -x $BLACKBOX_PATH ] ; then + echo Starting BlackBox >$HOME/.xwm.msgs + exec $BLACKBOX_PATH >>$HOME/.xwm.msgs 2>&1 + fi + ;; + + icewm*|IceWm) + # startup icewm + ICEWM_PATH=/usr/bin/icewm + if ! test -x $ICEWM_PATH ; then + FindInPath $ICEWM_PATH + if test -n "$result" -a -x "$result"; then + ICEWM_PATH="$result"; + fi + fi + if [ -x $ICEWM_PATH ] ; then + echo Starting icewm >$HOME/.xwm.msgs + exec $ICEWM_PATH >>$HOME/.xwm.msgs 2>&1 + fi + ;; + + xsession*|Xsession*) + # startup xsession + XSESSION_PATH=xsession + if ! test -x $XSESSION_PATH ; then + FindInPath $XSESSION_PATH + if test -n "$result" -a -x "$result"; then + XSESSION_PATH="$result"; + fi + fi + if [ -x $XSESSION_PATH ] ; then + echo Starting xsession >$HOME/.xwm.msgs + exec $XSESSION_PATH -console >>$HOME/.xwm.msgs 2>&1 + fi + ;; + + startkde*|kde*|KDE*) + # startup kde + STARTKDE_PATH=/usr/bin/startkde + if ! test -x $STARTKDE_PATH ; then + FindInPath $STARTKDE_PATH + if test -n "$result" -a -x "$result"; then + STARTKDE_PATH="$result"; + fi + fi + if [ -x $STARTKDE_PATH ] ; then + echo Starting kde >$HOME/.xwm.msgs + exec $STARTKDE_PATH -console >>$HOME/.xwm.msgs 2>&1 + fi + ;; + esac +fi + +# first, find an M4-enabled config file (such as +# the one from AnotherLevel) for fvwm2 or fvwm95. +RCFILE="" +for tryfile in "$HOME/.fvwm2rc.m4" "/etc/X11/AnotherLevel/fvwm2rc.m4"; do + if [ -f "$tryfile" ]; then + RCFILE="$tryfile" + break + fi +done + +# if it really exists, use it; if not, fvwm2 or fvwm95 will +# automagically look for a config file in the regular places. +if [ -n "$RCFILE" ]; then + FVWMOPTIONS="-cmd 'FvwmM4 -debug $RCFILE'" +else + FVWMOPTIONS="" +fi + +# TheNextLevel is supposed to work +# with both fvwm95 and fvwm2 +# (try fvwm95 first, then fvwm2). +for FVWMVER in 95 95-2 2; do + if [ -n "$(type -path fvwm${FVWMVER})" ]; then + env > "$HOME"/Xrootenv.0 + # if this works, we stop here + eval "exec fvwm${FVWMVER} ${FVWMOPTIONS}" > "$HOME"/.FVWM${FVWMVER}-errors 2>&1 + fi +done + +# gosh, neither fvwm95 nor fvwm2 is available; +# let's try regular fvwm (AnotherLevel doesn't work with fvwm1). +if [ -n "$(type -path fvwm)" ]; then + # if this works, we stop here + exec fvwm +fi + +# No other window or session manager found. +# Use twm as a last resort. +xterm & +exec twm diff --git a/X11/wdm/Xclients.in b/X11/wdm/Xclients.in new file mode 100644 index 0000000..3da8113 --- /dev/null +++ b/X11/wdm/Xclients.in @@ -0,0 +1,206 @@ +#!@SHELL_LOGIN@ +# @configure_input@ + +######################################################################## +# -*- sh -*- # +# # +# ~/.Xclients: used by startx (xinit) to start up a window manager and # +# any other clients you always want to start an X session with. # +# # +# This version of Xclients is intended for use with wdm. This # +# separate file is used rather than the Red Hat Linux Xclients # +# file located as /etc/X11/xinit/Xclients because it has been # +# extensively modified to handle starting many different window # +# or session managers and do that on systems other than Red Hat Linux. # +# # +# Systems other than RedHat Linux will like need editing of this # +# file to tailor the file for the particular system. # +# # +######################################################################## + +# try to find executable in PATH +FindInPath() +{ + prog=$1 + shift + result= + for p in `echo $PATH|tr ':' ' '`; do + if test -e $p/$prog; then + result=$p/$prog + break; + fi + done +} + + + +# these files are left sitting around by TheNextLevel. +rm -f $HOME/Xrootenv.0 +rm -f /tmp/fvwmrc* 2>/dev/null + +# check for and set x-resources +if [ -f $HOME/.Xresources ] ; then + @XRDB_PATH@ -merge $HOME/.Xresources +fi + +if [ -f $HOME/.Xdefaults ] ; then + @XRDB_PATH@ -merge $HOME/.Xdefaults +fi + +WINMGR_NAME=@WINMGR_NAME@ +if test -z "$WINMGR_NAME"; then + WINMGR_NAME="UserDefined" +fi + +# First thing - check the user preferences +if [ -f $HOME/.wm_style ] ; then + WMSTYLE=`cat $HOME/.wm_style` + case "$WMSTYLE" in +# +# first, a general purpose entry: + $WINMGR_NAME*) + # startup a window manager + WINMGR_PATH=@WINMGR_PATH@ + if test -x "$WINMGR_PATH" ; then + echo Starting $WINMGR_NAME >$HOME/.xwm.msgs + exec $WINMGR_PATH >>$HOME/.xwm.msgs 2>&1 + fi + ;; + + wmaker*|WindowMaker*) + # startup WindowMaker + WMAKER_PATH=@WMAKER_PATH@ + if ! test -x $WMAKER_PATH ; then + FindInPath $WMAKER_PATH + if test -n "$result" -a -x "$result"; then + WMAKER_PATH="$result"; + fi + fi + + if test -x $WMAKER_PATH ; then + echo Starting WindowMaker >$HOME/.xwm.msgs + env > "$HOME"/Xrootenv.0 + exec $WMAKER_PATH >>$HOME/.xwm.msgs 2>&1 + fi + ;; + + afterstep*|Afterstep*|AfterStep*) + # we have to start up afterstep + AFTERSTEP_PATH=@AFTERSTEP_PATH@ + if ! test -x $AFTERSTEP_PATH ; then + FindInPath $AFTERSTEP_PATH + if test -n "$result" -a -x "$result"; then + AFTERSTEP_PATH="$result"; + fi + fi + if [ -x $AFTERSTEP_PATH -a -f /usr/share/afterstep/wmconfig.conf ] ; then + mkdir -p $HOME/GNUstep/Library/AfterStep + wmconfig --output=afterstep --directories /usr/share/afterstep/wmconfig.conf 2>/dev/null + env > "$HOME"/Xrootenv.0 + # if this works, we stop here + eval "exec $AFTERSTEP_PATH" > "$HOME"/.AfterStep-errors 2>&1 + fi + ;; + + blackbox*|BlackBox) + # startup blackbox + BLACKBOX_PATH=@BLACKBOX_PATH@ + if ! test -x $BLACKBOX_PATH ; then + FindInPath $BLACKBOX_PATH + if test -n "$result" -a -x "$result"; then + BLACKBOX_PATH="$result"; + fi + fi + if [ -x $BLACKBOX_PATH ] ; then + echo Starting BlackBox >$HOME/.xwm.msgs + exec $BLACKBOX_PATH >>$HOME/.xwm.msgs 2>&1 + fi + ;; + + icewm*|IceWm) + # startup icewm + ICEWM_PATH=@ICEWM_PATH@ + if ! test -x $ICEWM_PATH ; then + FindInPath $ICEWM_PATH + if test -n "$result" -a -x "$result"; then + ICEWM_PATH="$result"; + fi + fi + if [ -x $ICEWM_PATH ] ; then + echo Starting icewm >$HOME/.xwm.msgs + exec $ICEWM_PATH >>$HOME/.xwm.msgs 2>&1 + fi + ;; + + xsession*|Xsession*) + # startup xsession + XSESSION_PATH=@XSESSION_PATH@ + if ! test -x $XSESSION_PATH ; then + FindInPath $XSESSION_PATH + if test -n "$result" -a -x "$result"; then + XSESSION_PATH="$result"; + fi + fi + if [ -x $XSESSION_PATH ] ; then + echo Starting xsession >$HOME/.xwm.msgs + exec $XSESSION_PATH -console >>$HOME/.xwm.msgs 2>&1 + fi + ;; + + startkde*|kde*|KDE*) + # startup kde + STARTKDE_PATH=@STARTKDE_PATH@ + if ! test -x $STARTKDE_PATH ; then + FindInPath $STARTKDE_PATH + if test -n "$result" -a -x "$result"; then + STARTKDE_PATH="$result"; + fi + fi + if [ -x $STARTKDE_PATH ] ; then + echo Starting kde >$HOME/.xwm.msgs + exec $STARTKDE_PATH -console >>$HOME/.xwm.msgs 2>&1 + fi + ;; + esac +fi + +# first, find an M4-enabled config file (such as +# the one from AnotherLevel) for fvwm2 or fvwm95. +RCFILE="" +for tryfile in "$HOME/.fvwm2rc.m4" "/etc/X11/AnotherLevel/fvwm2rc.m4"; do + if [ -f "$tryfile" ]; then + RCFILE="$tryfile" + break + fi +done + +# if it really exists, use it; if not, fvwm2 or fvwm95 will +# automagically look for a config file in the regular places. +if [ -n "$RCFILE" ]; then + FVWMOPTIONS="-cmd 'FvwmM4 -debug $RCFILE'" +else + FVWMOPTIONS="" +fi + +# TheNextLevel is supposed to work +# with both fvwm95 and fvwm2 +# (try fvwm95 first, then fvwm2). +for FVWMVER in 95 95-2 2; do + if [ -n "$(type -path fvwm${FVWMVER})" ]; then + env > "$HOME"/Xrootenv.0 + # if this works, we stop here + eval "exec fvwm${FVWMVER} ${FVWMOPTIONS}" > "$HOME"/.FVWM${FVWMVER}-errors 2>&1 + fi +done + +# gosh, neither fvwm95 nor fvwm2 is available; +# let's try regular fvwm (AnotherLevel doesn't work with fvwm1). +if [ -n "$(type -path fvwm)" ]; then + # if this works, we stop here + exec fvwm +fi + +# No other window or session manager found. +# Use twm as a last resort. +xterm & +exec twm diff --git a/X11/wdm/Xresources b/X11/wdm/Xresources new file mode 100644 index 0000000..c18dee5 --- /dev/null +++ b/X11/wdm/Xresources @@ -0,0 +1,14 @@ +! $XConsortium: Xresources /main/8 1996/11/11 09:24:46 swick $ + +XConsole.text.geometry: 480x130 +XConsole.verbose: true +XConsole*iconic: true +XConsole*font: fixed + +Chooser*geometry: 700x500+300+200 +Chooser*allowShellResize: false +Chooser*viewport.forceBars: true +Chooser*label.font: *-new century schoolbook-bold-i-normal-*-240-* +Chooser*label.label: XDMCP Host Menu from CLIENTHOST +Chooser*list.font: -*-*-medium-r-normal-*-*-230-*-*-c-*-iso8859-1 +Chooser*Command.font: *-new century schoolbook-bold-r-normal-*-180-* diff --git a/X11/wdm/Xservers b/X11/wdm/Xservers new file mode 100644 index 0000000..ba6cf74 --- /dev/null +++ b/X11/wdm/Xservers @@ -0,0 +1,14 @@ +# $XConsortium: Xserv.ws.cpp,v 1.3 93/09/28 14:30:30 gildea Exp $ +# configs/Xservers. Generated from Xservers.in by configure. +# +# Xservers file, workstation prototype +# +# This file should contain an entry to start the server on the +# local display; if you have more than one display (not screen), +# you can add entries to the list (one per line). If you also +# have some X terminals connected which do not support XDMCP, +# you can add them here as well. Each X terminal line should +# look like: +# XTerminalName:0 foreign +# +:0 local /usr/bin/X diff --git a/X11/wdm/Xservers.fs b/X11/wdm/Xservers.fs new file mode 100644 index 0000000..f2e8621 --- /dev/null +++ b/X11/wdm/Xservers.fs @@ -0,0 +1,11 @@ +# $XConsortium: Xservers.fs,v 1.3 93/09/28 14:30:31 gildea Exp $ +# +# Xservers file, fileserver prototype (any machine without a display) +# +# Put X terminals which don't support XDMCP in this file; you will +# want to leave those terminals on and connected to the network, else +# xdm will have a tougher time managing them. +# +# Each line should look like: +# +# XterminalName:0 foreign diff --git a/X11/wdm/Xservers.ws b/X11/wdm/Xservers.ws new file mode 100644 index 0000000..d70d082 --- /dev/null +++ b/X11/wdm/Xservers.ws @@ -0,0 +1,14 @@ +# $XConsortium: Xserv.ws.cpp,v 1.3 93/09/28 14:30:30 gildea Exp $ +# configs/Xservers.ws. Generated from Xservers.ws.in by configure. +# +# Xservers file, workstation prototype +# +# This file should contain an entry to start the server on the +# local display; if you have more than one display (not screen), +# you can add entries to the list (one per line). If you also +# have some X terminals connected which do not support XDMCP, +# you can add them here as well. Each X terminal line should +# look like: +# XTerminalName:0 foreign +# +:0 local /usr/bin/X diff --git a/X11/wdm/Xsession b/X11/wdm/Xsession new file mode 100755 index 0000000..b50fbd8 --- /dev/null +++ b/X11/wdm/Xsession @@ -0,0 +1,89 @@ +#!/bin/bash -login +# configs/Xsession. Generated from Xsession.in by configure. +# $XConsortium: Xsession /main/10 1995/12/18 18:21:28 gildea $ + +# This is the basic login script for a user. Much of the logic/code +# for selecting and invoking the window manager is in the related file +# Xclients. The reason for the separate file is so that individual +# users can have tailored Xclients files in their home directories as +# ~/.Xclients. + +# cleanup wdm resources + /usr/bin/xrdb -load /dev/null + + +case $# in +1) + case $1 in + failsafe) + exec @FAILSAFE@ -geometry 80x24-0-0 + ;; + esac + echo $1 >$HOME/.wm_style +esac + +# redirect errors to a file in user's home directory if we can +for errfile in "$HOME/.xsession-errors" "${TMPDIR-/tmp}/xses-$USER" "/tmp/xses-$USER" +do + if ( cp /dev/null "$errfile" 2> /dev/null ) + then + chmod 600 "$errfile" + exec > "$errfile" 2>&1 + break + fi +done + +# clean up after xbanner +# (RedHat code: need freetemp executed IF xbanner is run by Xsetup_0) +# wdm sets the background itself so xbanner is not needed and +# should not be run. For other backgrounds, you are on your own. +# freetemp + +# Note that ~/.xsession and ~/.Xclients really serve the same function. +# The ~/.xsession file comes from xdm and is intended as the user's +# means of starting X programs such as a session or window manager. +# X also creates an xinitrc file for use when starting x with 'startx'. +# Red Hat Linux adds a package called xinitrc (and does not install +# the xinitrc from XFree86). The xinitrc package defines two files +# xinitrc (which is started by startx) and Xclients (and ~/.Xclients). +# +# The code below will use the "standard" ~/.xsession or ~/.Xclients +# so that a user can use a single script whether startx or xdm is +# used. + +# In the code below, note that control will be transfered to the first +# program (shell script) found to exist and the programs that follow +# are never executed. If a user wants to execute some other program +# or script before starting a window manager and then continue with +# the execution of the login script, this program should be executed +# by a user's ~./Xclients or ~/.xsession file and then the window manager +# should be started. +# +# For example, the following could be used as a ~/.Xclients +# #!/bin/sh +# if [ -x $HOME/.mystartup ]; then +# . $HOME/.mystartup +# fi +# exec /etc/X11/wdm/Xclients + +startup=$HOME/.xsession +resources=$HOME/.Xresources + +if [ -f $resources ]; then + /usr/bin/xrdb -load $resources +fi + +if [ -x $startup ]; then + exec $startup +fi + +if [ -x $HOME/.Xclients ]; then + exec $HOME/.Xclients +fi + +if [ -x /etc/X11/wdm/Xclients ]; then + exec /etc/X11/wdm/Xclients +fi + +# if nothing else, start X's standard session manager +exec xsm diff --git a/X11/wdm/Xsession.XFree86 b/X11/wdm/Xsession.XFree86 new file mode 100755 index 0000000..884c69e --- /dev/null +++ b/X11/wdm/Xsession.XFree86 @@ -0,0 +1,36 @@ +#!/bin/sh +# $XConsortium: Xsession /main/10 1995/12/18 18:21:28 gildea $ + +# modified to pass argument to the startup file. + +# redirect errors to a file in user's home directory if we can +for errfile in "$HOME/.xsession-errors" "${TMPDIR-/tmp}/xses-$USER" "/tmp/xses-$USER" +do + if ( cp /dev/null "$errfile" 2> /dev/null ) + then + chmod 600 "$errfile" + exec > "$errfile" 2>&1 + break + fi +done + +case $# in +1) + case $1 in + failsafe) + exec xterm -geometry 80x24-0-0 + ;; + esac +esac + +startup=$HOME/.xsession +resources=$HOME/.Xresources + +if [ -f "$startup" ]; then + exec "$startup $1" +else + if [ -f "$resources" ]; then + xrdb -load "$resources" + fi + exec xsm +fi diff --git a/X11/wdm/Xsession.orig b/X11/wdm/Xsession.orig new file mode 100644 index 0000000..11cfd15 --- /dev/null +++ b/X11/wdm/Xsession.orig @@ -0,0 +1,41 @@ +#!/bin/bash -login +# $XConsortium: Xsession /main/10 1995/12/18 18:21:28 gildea $ + +case $# in +1) + case $1 in + failsafe) + exec xterm -geometry 80x24-0-0 + ;; + esac +esac + +# redirect errors to a file in user's home directory if we can +for errfile in "$HOME/.xsession-errors" "${TMPDIR-/tmp}/xses-$USER" "/tmp/xses-$USER" +do + if ( cp /dev/null "$errfile" 2> /dev/null ) + then + chmod 600 "$errfile" + exec > "$errfile" 2>&1 + break + fi +done + +# clean up after xbanner +freetemp + +startup=$HOME/.xsession +resources=$HOME/.Xresources + +if [ -x "$startup" ]; then + exec "$startup" +elif [ -x "$HOME/.Xclients" ]; then + exec "$HOME/.Xclients" +elif [ -x /etc/X11/xinit/Xclients ]; then + exec /etc/X11/xinit/Xclients +else + if [ -f "$resources" ]; then + xrdb -load "$resources" + fi + exec xsm +fi diff --git a/X11/wdm/Xsetup_0 b/X11/wdm/Xsetup_0 new file mode 100755 index 0000000..1d4e618 --- /dev/null +++ b/X11/wdm/Xsetup_0 @@ -0,0 +1,6 @@ +#!/bin/sh +# configs/Xsetup_0. Generated from Xsetup_0.in by configure. +# $XConsortium: Xsetup_0,v 1.3 93/09/28 14:30:31 gildea Exp $ + -geometry 480x130-0-0 -daemon -notify -verbose -fn fixed -exitOnFail +# /usr/X11R6/bin/xbanner +# if xbanner is used, change Xsession to do freetemp diff --git a/X11/wdm/wdm-config b/X11/wdm/wdm-config new file mode 100644 index 0000000..7cdf803 --- /dev/null +++ b/X11/wdm/wdm-config @@ -0,0 +1,74 @@ +! $XConsortium: xdm-conf.cpp /main/3 1996/01/15 15:17:26 gildea $ +! +! wdm configuration file input (sed in Makefile) +! +DisplayManager.errorLogFile: /var/log/xdm-errors.log +DisplayManager.pidFile: /var/run/xdm-pid +DisplayManager.keyFile: /etc/X11/wdm/xdm-keys +DisplayManager.servers: /etc/X11/wdm/Xservers +DisplayManager.accessFile: /etc/X11/wdm/Xaccess +! All displays should use authorization, but we cannot be sure +! X terminals will be configured that way, so by default +! use authorization only for local displays :0, :1, etc. +DisplayManager._0.authorize: true +DisplayManager._1.authorize: true +! The following three resources set up display :0 as the console. +DisplayManager._0.setup: /etc/X11/wdm/Xsetup_0 +DisplayManager._0.startup: /etc/X11/wdm/GiveConsole +DisplayManager._0.reset: /etc/X11/wdm/TakeConsole +! +DisplayManager*resources: /etc/X11/wdm/Xresources +DisplayManager*session: /etc/X11/wdm/Xsession +DisplayManager*authComplain: false +DisplayManager*wdmLogin: /usr/bin/wdmLogin +DisplayManager*terminateServer: true +! +! display screen background--if not set or set to none, then the +! background is not set by wdm. +! DisplayManager*wdmBg: none +DisplayManager*wdmBg: solid:RoyalBlue +! DisplayManager*wdmBg: dgradient:RoyalBlue,FireBrick,Black +! DisplayManager*wdmBg: hgradient:RoyalBlue,FireBrick,Black +! DisplayManager*wdmBg: vgradient:RoyalBlue,FireBrick,Black +! DisplayManager*wdmBg: pixmap:/usr/share/pixmaps/wdm/Stars.jpg +! +! optional pixmap for logo +! DisplayManager*wdmLogo: /usr/share/pixmaps/wdm/Eagle.xpm +! +! optional help file to display in the help panel +! long lines may cause an ugly display +! DisplayManager*wdmHelpFile: /etc/motd +! +! optional default username and password (in clear text) +! which wdm should use if nothing is typed by the user. +! it's strongly suggested that wdm-config should be +! chmod 600 and owned by root if you want to use this +! feature, or else you could open a huge security hole +! in your system, letting anyone to log in as this default +! user. In any case if you want to use this feature do +! it with a very restricted account, and especially NOT +! WITH THE root ACCOUNT !!! +!DisplayManager*wdmDefaultUser: nobody +!DisplayManager*wdmDefaultPasswd: dumb_clear_text_passwd +! +! list of window managers which can be started +! or 'None' if you want only NoChange to appear +! e.g.: DisplayManager*wdmWm: None +DisplayManager*wdmWm: WindowMaker:IceWm:KDE +! +! commands for reboot and halt +! -- be sure to edit these if the +! system is not linux. +DisplayManager*wdmReboot: /sbin/shutdown -r now +DisplayManager*wdmHalt: /sbin/shutdown -h now +! alternates (for Linux) +! DisplayManager*wdmReboot: /sbin/shutdown -t3 -r now +! DisplayManager*wdmHalt: /sbin/shutdown -t3 -h now +! +! true/false to require valid username/passwd to reboot,halt, or exit +DisplayManager*wdmVerify: true +! true/false to require root as valid username/passwd to reboot,halt, or exit +DisplayManager*wdmRoot: false +! true=enable, false=disable shake and rollup animations +DisplayManager*wdmAnimations: true + diff --git a/X11/wdm/wdm-config.in b/X11/wdm/wdm-config.in new file mode 100644 index 0000000..9424450 --- /dev/null +++ b/X11/wdm/wdm-config.in @@ -0,0 +1,74 @@ +! $XConsortium: xdm-conf.cpp /main/3 1996/01/15 15:17:26 gildea $ +! +! wdm configuration file input (sed in Makefile) +! +DisplayManager.errorLogFile: @LOGDIR@/xdm-errors.log +DisplayManager.pidFile: @RUNDIR@/xdm-pid +DisplayManager.keyFile: @DMDIR@/xdm-keys +DisplayManager.servers: @DMDIR@/Xservers +DisplayManager.accessFile: @DMDIR@/Xaccess +! All displays should use authorization, but we cannot be sure +! X terminals will be configured that way, so by default +! use authorization only for local displays :0, :1, etc. +DisplayManager._0.authorize: true +DisplayManager._1.authorize: true +! The following three resources set up display :0 as the console. +DisplayManager._0.setup: @DMDIR@/Xsetup_0 +DisplayManager._0.startup: @DMDIR@/GiveConsole +DisplayManager._0.reset: @DMDIR@/TakeConsole +! +DisplayManager*resources: @DMDIR@/Xresources +DisplayManager*session: @DMDIR@/Xsession +DisplayManager*authComplain: false +DisplayManager*wdmLogin: @exec_prefix@/bin/wdmLogin +DisplayManager*terminateServer: true +! +! display screen background--if not set or set to none, then the +! background is not set by wdm. +! DisplayManager*wdmBg: none +DisplayManager*wdmBg: solid:RoyalBlue +! DisplayManager*wdmBg: dgradient:RoyalBlue,FireBrick,Black +! DisplayManager*wdmBg: hgradient:RoyalBlue,FireBrick,Black +! DisplayManager*wdmBg: vgradient:RoyalBlue,FireBrick,Black +! DisplayManager*wdmBg: pixmap:@GFXDIR@/Stars.jpg +! +! optional pixmap for logo +@PIXMAPCOMMENT@DisplayManager*wdmLogo: @GFXDIR@/@PIXMAPFILE@ +! +! optional help file to display in the help panel +! long lines may cause an ugly display +! DisplayManager*wdmHelpFile: /etc/motd +! +! optional default username and password (in clear text) +! which wdm should use if nothing is typed by the user. +! it's strongly suggested that wdm-config should be +! chmod 600 and owned by root if you want to use this +! feature, or else you could open a huge security hole +! in your system, letting anyone to log in as this default +! user. In any case if you want to use this feature do +! it with a very restricted account, and especially NOT +! WITH THE root ACCOUNT !!! +!DisplayManager*wdmDefaultUser: nobody +!DisplayManager*wdmDefaultPasswd: dumb_clear_text_passwd +! +! list of window managers which can be started +! or 'None' if you want only NoChange to appear +! e.g.: DisplayManager*wdmWm: None +DisplayManager*wdmWm: @WMLIST@ +! +! commands for reboot and halt +! -- be sure to edit these if the +! system is not linux. +DisplayManager*wdmReboot: @SHUTDOWN@ -r now +DisplayManager*wdmHalt: @SHUTDOWN@ -h now +! alternates (for Linux) +! DisplayManager*wdmReboot: @SHUTDOWN@ -t3 -r now +! DisplayManager*wdmHalt: @SHUTDOWN@ -t3 -h now +! +! true/false to require valid username/passwd to reboot,halt, or exit +DisplayManager*wdmVerify: true +! true/false to require root as valid username/passwd to reboot,halt, or exit +DisplayManager*wdmRoot: false +! true=enable, false=disable shake and rollup animations +DisplayManager*wdmAnimations: true + diff --git a/X11/wdm/wdmReconfig b/X11/wdm/wdmReconfig new file mode 100755 index 0000000..81805dc --- /dev/null +++ b/X11/wdm/wdmReconfig @@ -0,0 +1,113 @@ +#!/bin/bash -login +# configs/wdmReconfig. Generated from wdmReconfig.in by configure. + +################################################################# +# This is a "simple" script which is intended to be run by rpm +# as a post install function to look at the system where wdm is +# being installed and create Xclients and wdm-config files which +# reflect the window managers available on that system. + +# This software is Copyright (C) 1998 by Gene Czarcinski. +# This software falls under the GNU Public License. Please read +# the COPYING file for more information +################################################################# + +save_ifs="$IFS" +IFS=: +path=$PATH:/usr/local/bin:/usr/bin:/usr/X11R6/bin: + +WMLIST="" + +rc_word=wmaker +WMAKER_PATH="wmaker" + for rc_dir in $path; do + if test -x $rc_dir/$rc_word; then + WMAKER_PATH=$rc_dir/$rc_word + WMLIST=WindowMaker + break + fi + done + +rc_word=afterstep +AFTERSTEP_PATH="afterstep" + for rc_dir in $path; do + if test -x $rc_dir/$rc_word; then + AFTERSTEP_PATH=$rc_dir/$rc_word + WMLIST="$WMLIST:AfterStep" + break + fi + done + +rc_word=blackbox +BLACKBOX_PATH="blackbox" + for rc_dir in $path; do + if test -x $rc_dir/$rc_word; then + BLACKBOX_PATH=$rc_dir/$rc_word + WMLIST="$WMLIST:BlackBox" + break + fi + done + +rc_word=icewm +ICEWM_PATH="icewm" + for rc_dir in $path; do + if test -x $rc_dir/$rc_word; then + ICEWM_PATH=$rc_dir/$rc_word + WMLIST="$WMLIST:IceWm" + break + fi + done + +rc_word=xsession +XSESSION_PATH="xsession" + for rc_dir in $path; do + if test -x $rc_dir/$rc_word; then + XSESSION_PATH=$rc_dir/$rc_word + WMLIST="$WMLIST:Xsession" + break + fi + done + +rc_word=startkde +STARTKDE_PATH="startkde" + for rc_dir in $path; do + if test -x $rc_dir/$rc_word; then + STARTKDE_PATH=$rc_dir/$rc_word + WMLIST="$WMLIST:KDE" + break + fi + done + +# update wdm-config + configfile=/etc/X11/wdm/wdm-config + rm -f $configfile + sed \ + -e "s:@DMDIR\@:/etc/X11/wdm:" \ + -e "s:@BINDIR\@:@BINDIR@:" \ + -e "s:@SHUTDOWN\@:/sbin/shutdown:" \ + -e "s:@LOGDIR\@:/var/log:" \ + -e "s:@RUNDIR\@:/var/run:" \ + -e "s:@PIXMAPFILE\@:Eagle.xpm:" \ + -e "s:@PIXMAPCOMMENT\@:! :" \ + -e "s:@exec_prefix\@:/usr:" \ + -e "s/@WMLIST\@/$WMLIST/" \ + $configfile.in \ + > $configfile + chmod 644 $configfile + +# update Xclients + configfile=/etc/X11/wdm/Xclients + rm -f $configfile + sed -e "s:@XRDB_PATH\@:/usr/bin/xrdb:" \ + -e "s'@WMAKER_PATH\@'$WMAKER_PATH'" \ + -e "s'@AFTERSTEP_PATH\@'$AFTERSTEP_PATH'" \ + -e "s'@BLACKBOX_PATH\@'$BLACKBOX_PATH'" \ + -e "s'@ICEWM_PATH\@'$ICEWM_PATH'" \ + -e "s'@XSESSION_PATH\@'$XSESSION_PATH'" \ + -e "s'@STARTKDE_PATH\@'$STARTKDE_PATH'" \ + -e "s:@WINMGR_NAME\@::" \ + -e "s:@WINMGR_PATH\@::" \ + $configfile.in \ + > $configfile + chmod 755 $configfile + diff --git a/X11/xinit/xinitrc b/X11/xinit/xinitrc index 334d0ee..53723a0 100644 --- a/X11/xinit/xinitrc +++ b/X11/xinit/xinitrc @@ -1,3 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + #!/bin/sh userresources=$HOME/.Xresources @@ -49,7 +73,7 @@ else fi if [ -d /etc/X11/xinit/xinitrc.d ] ; then - for f in /etc/X11/xinit/xinitrc.d/* ; do + for f in /etc/X11/xinit/xinitrc.d/?* ; do [ -x "$f" ] && . "$f" done unset f diff --git a/X11/xinit/xinitrc.d/10-user-dirs-update-gnome b/X11/xinit/xinitrc.d/10-user-dirs-update-gnome index f909d44..61fd08c 100755 --- a/X11/xinit/xinitrc.d/10-user-dirs-update-gnome +++ b/X11/xinit/xinitrc.d/10-user-dirs-update-gnome @@ -3,7 +3,7 @@ # Create various XDG directories, and write ~/.config/user-dirs.dirs, etc. # That file is read by glib to get XDG_PICTURES_DIR, etc -if [ "$DESKTOP_SESSION" = "gnome" ]; then +if [ "$DESKTOP_SESSION" = "gnome" -o "$DESKTOP_SESSION" = "cinnamon" ]; then if type xdg-user-dirs-update &>/dev/null; then xdg-user-dirs-update fi diff --git a/X11/xinit/xinitrc.d/10-xdg-menu-gnome b/X11/xinit/xinitrc.d/10-xdg-menu-gnome deleted file mode 100755 index b12a712..0000000 --- a/X11/xinit/xinitrc.d/10-xdg-menu-gnome +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh - -if [ -z "$XDG_MENU_PREFIX" ] && [ "$DESKTOP_SESSION" = "gnome" ] -then - export XDG_MENU_PREFIX=gnome- -fi diff --git a/X11/xinit/xinitrc.d/15-xdg-data-gnome b/X11/xinit/xinitrc.d/15-xdg-data-gnome index e62f3e1..5eaa698 100755 --- a/X11/xinit/xinitrc.d/15-xdg-data-gnome +++ b/X11/xinit/xinitrc.d/15-xdg-data-gnome @@ -1,6 +1,6 @@ #!/bin/sh -if [ "$DESKTOP_SESSION" = "gnome" ]; then +if [ "$DESKTOP_SESSION" = "gnome" -o "$DESKTOP_SESSION" = "cinnamon" ]; then if [ -z "$XDG_DATA_DIRS" ]; then export XDG_DATA_DIRS=/usr/share/gnome:/usr/local/share/:/usr/share/ else diff --git a/X11/xinit/xinitrc.d/49-keychain b/X11/xinit/xinitrc.d/49-keychain old mode 100755 new mode 100644 index 77310b2..51a1ca8 --- a/X11/xinit/xinitrc.d/49-keychain +++ b/X11/xinit/xinitrc.d/49-keychain @@ -2,7 +2,7 @@ # source keychain variables -keychain="`which keychain`" +keychain="`which keychain 2>/dev/null`" if [ -n "$keychain" ] && [ -x "$keychain" ] && [ -f "$HOME/.bash_profile" ] then . "${HOME}/.bash_profile" diff --git a/X11/xinit/xinitrc.d/50-ssh-agent b/X11/xinit/xinitrc.d/50-ssh-agent old mode 100755 new mode 100644 index 28af267..4d94fb0 --- a/X11/xinit/xinitrc.d/50-ssh-agent +++ b/X11/xinit/xinitrc.d/50-ssh-agent @@ -2,7 +2,7 @@ # add ssh-agent if found -sshagent="`which ssh-agent`" +sshagent="`which ssh-agent 2>/dev/null`" if [ -n "$sshagent" ] && [ -x "$sshagent" ] && [ -z "$SSH_AUTH_SOCK" ]; then command="$sshagent -- $command" elif [ -z "$sshagent" ] ; then diff --git a/X11/xinit/xinitrc.d/70-seahorse-agent b/X11/xinit/xinitrc.d/70-seahorse-agent deleted file mode 100755 index 492878e..0000000 --- a/X11/xinit/xinitrc.d/70-seahorse-agent +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/bash - -# launches a seahorse-agent instance - -seahorseagent=`which seahorse-agent 2> /dev/null` -if [ -n "$seahorseagent" ] && [ -x "$seahorseagent" ] && [ -z "$GPG_AGENT_INFO" ] ; then - command="$seahorseagent --execute $command" -fi diff --git a/X11/xinit/xinput.d/ibus.conf b/X11/xinit/xinput.d/ibus.conf new file mode 100644 index 0000000..052ad30 --- /dev/null +++ b/X11/xinit/xinput.d/ibus.conf @@ -0,0 +1,22 @@ +prefix=/usr +exec_prefix=${prefix} + +XIM=ibus +XIM_PROGRAM="${exec_prefix}/bin/ibus-daemon" +ICON=ibus +XIM_ARGS="--xim" +PREFERENCE_PROGRAM="${exec_prefix}/bin/ibus-setup" +SHORT_DESC="IBus" +GTK_IM_MODULE=ibus + +if test -f /usr/lib64/qt4/plugins/inputmethods/libqtim-ibus.so || \ + test -f /usr/lib/qt4/plugins/inputmethods/libqtim-ibus.so; +then + QT_IM_MODULE=ibus +else + QT_IM_MODULE=xim +fi + +# if [ -z "$IBUS_SESSION_ID" ]; then +# export IBUS_SESSION_ID=`mktemp -u XXXXXXXX` +# fi diff --git a/X11/xorg.conf.d/00-keyboard.conf b/X11/xorg.conf.d/00-keyboard.conf new file mode 100644 index 0000000..f36bfb6 --- /dev/null +++ b/X11/xorg.conf.d/00-keyboard.conf @@ -0,0 +1,10 @@ +# Read and parsed by systemd-localed. It's probably wise not to edit this file +# manually too freely. +Section "InputClass" + Identifier "system-keyboard" + MatchIsKeyboard "on" + Option "XkbLayout" "de" + Option "XkbModel" "pc105" + Option "XkbVariant" "nodeadkeys" + Option "XkbOptions" "terminate:ctrl_alt_bksp" +EndSection diff --git a/X11/xsm/system.xsm b/X11/xsm/system.xsm new file mode 100644 index 0000000..7b9beff --- /dev/null +++ b/X11/xsm/system.xsm @@ -0,0 +1,4 @@ +! $Xorg: system.xsm,v 1.3 2000/08/17 19:55:06 cpqbld Exp $ +twm +smproxy +xterm diff --git a/at-spi2/accessibility.conf b/at-spi2/accessibility.conf new file mode 100644 index 0000000..b9367d0 --- /dev/null +++ b/at-spi2/accessibility.conf @@ -0,0 +1,36 @@ + + + + accessibility + + + + EXTERNAL + + unix:tmpdir=/tmp + + + + + + + + + + + + + 1000000000 + 1000000000 + 1000000000 + 120000 + 240000 + 100000 + 10000 + 100000 + 10000 + 50000 + 50000 + 50000 + 300000 + diff --git a/bash_completion.d/pulseaudio-bash-completion.sh b/bash_completion.d/pulseaudio-bash-completion.sh new file mode 100644 index 0000000..a82b10e --- /dev/null +++ b/bash_completion.d/pulseaudio-bash-completion.sh @@ -0,0 +1,564 @@ +#!/bin/bash + +__cards () { + while IFS=$'\t' read idx name _; do + printf "%s %s\n" "$idx" "$name" + done < <(pactl list cards short 2> /dev/null) +} + +__sinks () { + while IFS=$'\t' read _ name _ _ _; do + printf "%s\n" "$name" + done < <(pactl list sinks short 2> /dev/null) +} + +__sinks_idx () { + while IFS=$'\t' read idx _ _ _ _; do + printf "%s\n" "$idx" + done < <(pactl list sinks short 2> /dev/null) +} + +__sources () { + while IFS=$'\t' read _ name _ _ _; do + printf "%s\n" "$name" + done < <(pactl list sources short 2> /dev/null) +} + +__sink_inputs () { + while IFS=$'\t' read idx _ _ _ _; do + printf "%s\n" "$idx" + done < <(pactl list sink-inputs short 2> /dev/null) +} + +__source_outputs () { + while IFS=$'\t' read idx _ _ _ _; do + printf "%s\n" "$idx" + done < <(pactl list source-outputs short 2> /dev/null) +} + +__ports () { + pactl list cards 2> /dev/null | awk -e \ + '/^\tPorts:/ { + flag=1; next + } + + /^\t[A-Za-z]/ { + flag=0 + } + + flag { + if (/^\t\t[A-Za-z]/) + ports = ports substr($0, 3, index($0, ":")-3) " " + } + + END { + print ports + }' +} + +__profiles () { + pactl list cards 2> /dev/null | awk -e \ + '/^\tProfiles:/ { + flag=1; next + } + + /^\t[A-Za-z]/ { + flag=0 + } + + flag { + if (/^\t\t[A-Za-z]/) + profiles = profiles substr($0, 3, index($0, ": ")-3) " " + } + + END { + print profiles + }' +} + +__all_modules () { + while read name; do + name=${name%% *} + printf "%s\n" "$name" + done < <(pulseaudio --dump-modules 2> /dev/null) +} + +__loaded_modules () { + while IFS=$'\t' read idx name _; do + printf "%s %s\n" "$idx" "$name" + done < <(pactl list modules short 2> /dev/null) +} + +__resample_methods () { + while read name; do + printf "%s\n" "$name" + done < <(pulseaudio --dump-resample-methods 2> /dev/null) +} + +_pacat_file_formats () { + while IFS=$'\t' read name _; do + printf "%s\n" "$name" + done < <(pacat --list-file-formats 2> /dev/null) +} + +in_array() { + local i + for i in "${@:2}"; do + [[ $1 = "$i" ]] && return + done +} + +_pactl() { + local cur prev words cword preprev command + local comps + local flags='-h --help --version -s --server= --client-name=' + local list_types='short sinks sources sink-inputs source outputs cards + modules samples clients' + local commands=(stat info list exit upload-sample play-sample remove-sample + load-module unload-module move-sink-input move-source-output + suspend-sink suspend-source set-card-profile set-sink-port + set-source-port set-sink-volume set-source-volume + set-sink-input-volume set-source-output-volume set-sink-mute + set-source-mute set-sink-input-mute set-source-output-mute + set-sink-formats set-port-latency-offset subscribe help) + + _init_completion -n = || return + preprev=${words[$cword-2]} + + for word in "${COMP_WORDS[@]}"; do + if in_array "$word" "${commands[@]}"; then + command=$word + break + fi + done + + case $preprev in + list) COMPREPLY=($(compgen -W 'short' -- "$cur")) ;; + + play-sample) + comps=$(__sinks) + COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur")) + ;; + + move-sink-input) + comps=$(__sinks) + COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur")) + ;; + + move-source-output) + comps=$(__sources) + COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur")) + ;; + + set-card-profile) + comps=$(__profiles) + COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur")) + ;; + + set-*-port) + comps=$(__ports) + COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur")) + ;; + + set-*-mute) COMPREPLY=($(compgen -W 'true false toggle' -- "$cur")) ;; + + set-sink-formats) + ;; #TODO + + set-port-*) + comps=$(__ports) + COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur")) + ;; + --server) + compopt +o nospace + _known_hosts_real "$cur" + ;; + esac + [[ $COMPREPLY ]] && return 0 + + case $prev in + list) COMPREPLY=($(compgen -W '${list_types[*]}' -- "$cur")) ;; + + stat) COMPREPLY=($(compgen -W 'short' -- "$cur")) ;; + + upload-sample) _filedir ;; + + play-sample) ;; # TODO + + remove-sample) ;; # TODO + + load-module) + comps=$(__all_modules) + COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur")) + ;; + + unload-module) + comps=$(__loaded_modules) + COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur")) + ;; + + set-card*) + comps=$(__cards) + COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur")) + ;; + + *sink-input*) + comps=$(__sink_inputs) + COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur")) + ;; + + *source-output*) + comps=$(__source_outputs) + COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur")) + ;; + + set-sink-formats) + comps=$(__sinks_idx) + COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur")) + ;; + + *sink*) + comps=$(__sinks) + COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur")) + ;; + + *source*) + comps=$(__sources) + COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur")) + ;; + + set-port*) + comps=$(__cards) + COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur")) + ;; + + -s) + _known_hosts_real "$cur" ;; + esac + [[ $COMPREPLY ]] && return 0 + + case $cur in + --server=*) + cur=${cur#*=} + _known_hosts_real "$cur" + ;; + + -*) + COMPREPLY=($(compgen -W '${flags[*]}' -- "$cur")) + [[ $COMPREPLY == *= ]] && compopt -o nospace + ;; + + *) + [[ -z $command ]] && COMPREPLY=($(compgen -W '${commands[*]}' -- "$cur")) + ;; + esac +} +complete -F _pactl pactl + +_pacmd() { + local cur prev words cword preprev command + local comps + local flags='-h --help --version' + local commands=(exit help list-modules list-sinks list-sources list-clients + list-samples list-sink-inputs list-source-outputs stat info + load-module unload-module describe-module set-sink-volume + set-source-volume set-sink-input-volume set-source-output-volume + set-sink-mute set-source-mut set-sink-input-mute + set-source-output-mute update-sink-proplist update-source-proplist + update-sink-input-proplist update-source-output-proplist + set-default-sink set-default-source kill-client kill-sink-input + kill-source-output play-sample remove-sample load-sample + load-sample-lazy load-sample-dir-lazy play-file dump + move-sink-input move-source-output suspend-sink suspend-source + suspend set-card-profile set-sink-port set-source-port + set-port-latency-offset set-log-target set-log-level set-log-meta + set-log-time set-log-backtrace) + _init_completion -n = || return + preprev=${words[$cword-2]} + + for word in "${COMP_WORDS[@]}"; do + if in_array "$word" "${commands[@]}"; then + command=$word + break + fi + done + + case $preprev in + play-sample|play-file) + comps=$(__sinks) + COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur")) + ;; + + load-sample*) _filedir ;; + + move-sink-input) + comps=$(__sinks) + COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur")) + ;; + + move-source-output) + comps=$(__sources) + COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur")) + ;; + + set-card-profile) + comps=$(__profiles) + COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur")) + ;; + + set-*port*) + comps=$(__ports) + COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur")) + ;; + + set-*-mute) COMPREPLY=($(compgen -W 'true false' -- "$cur"));; + + set-sink-formats) + ;; #TODO + esac + + case $prev in + list-*) ;; + describe-module|load-module) + comps=$(__all_modules) + COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur")) + ;; + + unload-module) + comps=$(__loaded_modules) + COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur")) + ;; + + load-sample-dir-lazy) _filedir -d ;; + play-file) _filedir ;; + + *sink-input*) + comps=$(__sink_inputs) + COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur")) + ;; + + *source-output*) + comps=$(__source_outputs) + COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur")) + ;; + + *sink*) + comps=$(__sinks) + COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur")) + ;; + + *source*) + comps=$(__sources) + COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur")) + ;; + + set-card*) + comps=$(__cards) + COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur")) + ;; + + set-port-*) + comps=$(__cards) + COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur")) + ;; + + set-log-target) + COMPREPLY=($(compgen -W 'auto syslog stderr file: newfile:' -- "$cur")) + ;; + + set-log-level) + COMPREPLY=($(compgen -W '{0..4}' -- "$cur")) + ;; + + set-log-meta|set-log-time|suspend) + COMPREPLY=($(compgen -W 'true false' -- "$cur")) + ;; + esac + + case $cur in + -*) COMPREPLY=($(compgen -W '${flags[*]}' -- "$cur")) ;; + suspend) + COMPREPLY=($(compgen -W 'suspend suspend-sink suspend-source' -- "$cur")) + ;; + + load-sample) + COMPREPLY=($(compgen -W 'load-sample load-sample-lazy load-sample-dir-lazy' -- "$cur")) + ;; + + *) + [[ -z $command ]] && COMPREPLY=($(compgen -W '${commands[*]}' -- "$cur")) + ;; + esac +} +complete -F _pacmd pacmd + +_pasuspender () { + local cur prev + local flags='-h --help --version -s --server=' + + _init_completion -n = || return + + case $cur in + --server=*) + cur=${cur#*=} + _known_hosts_real "$cur" + ;; + + -*) + COMPREPLY=($(compgen -W '${flags[*]}' -- "$cur")) + [[ $COMPREPLY == *= ]] && compopt -o nospace + ;; + esac + + case $prev in + -s) _known_hosts_real "$cur" ;; + esac +} +complete -F _pasuspender pasuspender + +_padsp () { + local cur prev + local flags='-h -s -n -m -M -S -D -d' + + _get_comp_words_by_ref cur prev + + case $cur in + -*) COMPREPLY=($(compgen -W '${flags[*]}' -- "$cur")) ;; + esac + + case $prev in + -s) _known_hosts_real "$cur" ;; + esac +} +complete -F _padsp padsp + +_pacat () { + local cur prev comps + local flags='-h --help --version -r --record -p --playback -v --verbose -s + --server= -d --device= -n --client-name= --stream-name= --volume= + --rate= --format= --channels= --channel-map= --fix-format --fix-rate + --fix-channels --no-remix --no-remap --latency= --process-time= + --latency-msec= --process-time-msec= --property= --raw --passthrough + --file-format= --list-file-formats' + + _init_completion -n = || return + + case $cur in + --server=*) + cur=${cur#*=} + _known_hosts_real "$cur" + ;; + + --device=*) + cur=${cur#*=} + comps=$(__sinks) + comps+=$(__sources) + COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur")) + ;; + + --rate=*) + cur=${cur#*=} + COMPREPLY=($(compgen -W '32000 44100 48000 9600 192000' -- "$cur")) + ;; + + --file-format=*) + cur=${cur#*=} + comps=$(_pacat_file_formats) + COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur")) + ;; + + --*=*) + ;; + + -*) + COMPREPLY=($(compgen -W '${flags[*]}' -- "$cur")) + [[ $COMPREPLY == *= ]] && compopt -o nospace + ;; + *) _filedir ;; + esac + + case $prev in + -s) _known_hosts_real "$cur" ;; + -d) + comps=$(__sinks) + comps+=$(__sources) + COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur")) + ;; + esac +} +complete -F _pacat pacat paplay parecord + +_pulseaudio() +{ + local cur prev words cword + local flags='-h --help --version --dump-conf --dump-resample-methods --cleanup-shm + --start -k --kill --check --system= -D --daemonize= --fail= --high-priority= + --realtime= --disallow-module-loading= --disallow-exit= --exit-idle-time= + --scache-idle-time= --log-level= -v --log-target= --log-meta= --log-time= + --log-backtrace= -p --dl-search-path= --resample-method= --use-pit-file= + --no-cpu-limit= --disable-shm= -L --load= -F --file= -C -n' + _init_completion -n = || return + + case $cur in + --system=*|--daemonize=*|--fail=*|--high-priority=*|--realtime=*| \ + --disallow-*=*|--log-meta=*|--log-time=*|--use-pid-file=*| \ + --no-cpu-limit=*|--disable-shm=*) + cur=${cur#*=} + COMPREPLY=($(compgen -W 'true false' -- "$cur")) + ;; + + --log-target=*) + cur=${cur#*=} + COMPREPLY=($(compgen -W 'auto syslog stderr file: newfile:' -- "$cur")) + ;; + + --log-level=*) + cur=${cur#*=} + COMPREPLY=($(compgen -W '{0..4}' -- "$cur")) + ;; + + --dl-search-path=*) + cur=${cur#*=} + _filedir -d + ;; + + --file=*) + cur=${cur#*=} + _filedir + ;; + + --resample-method=*) + cur=${cur#*=} + comps=$(__resample_methods) + COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur")) + ;; + + --load=*) + cur=${cur#*=} + comps=$(__all_modules) + COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur")) + ;; + + --*=*) + ;; + + -*) + COMPREPLY=($(compgen -W '${flags[*]}' -- "$cur")) + [[ $COMPREPLY == *= ]] && compopt -o nospace + ;; + esac + + case $prev in + -D) COMPREPLY=($(compgen -W 'true false' -- "$cur")) ;; + -p) _filedir -d ;; + -F) _filedir ;; + -L) + cur=${cur#*=} + comps=$(__all_modules) + COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur")) + ;; + esac +} +complete -F _pulseaudio pulseaudio + +#vim: set ft=zsh sw=4 ts=4 noet diff --git a/binfmt.d/.keep_sys-apps_systemd-0 b/binfmt.d/.keep_sys-apps_systemd-0 new file mode 100644 index 0000000..e69de29 diff --git a/bluetooth/audio.conf b/bluetooth/audio.conf index fd6092a..ab1a814 100644 --- a/bluetooth/audio.conf +++ b/bluetooth/audio.conf @@ -4,6 +4,10 @@ # particular interface [General] +# Allow PulseAudio to connect by default +# https://bugzilla.redhat.com/show_bug.cgi?id=964031 +Disable=Socket + # Switch to master role for incoming connections (defaults to true) #Master=true diff --git a/cifs-utils/idmap-plugin b/cifs-utils/idmap-plugin new file mode 120000 index 0000000..36886ea --- /dev/null +++ b/cifs-utils/idmap-plugin @@ -0,0 +1 @@ +/usr/lib64/cifs-utils/idmapwb.so \ No newline at end of file diff --git a/colord.conf b/colord.conf index d7df9c6..81d7d5d 100644 --- a/colord.conf +++ b/colord.conf @@ -10,6 +10,31 @@ SearchVolumes=false # default=false CreateDummySensor=false +# If we should use SANE to add scanner and camera devices. +# +# If SANE support is installed then this will allow colord to manage +# all scanners that SANE can detect, including remote scanners. +# +# If this is disabled then colord will only detect locally connected +# scanners. +# +# default=false +UseSANE=false + +# If we should always use the XRandR name as the DeviceId +# +# If the user has two or more outputs attached with identical EDID data then +# the client tools cannot tell them apart. By setting this value the 'xrandr-' +# style device-id is always used and the monitors will show up as seporate +# instances. +# +# This does of course mean that the calibration is referenced to the xrandr +# output name, rather than the monitor itself. This means that if the monitor +# cables are swapped then the wrong profile would be used. +# +# default=false +AlwaysUseXrandrName=false + # Known profiles are specific colorspaces that applications may request, # e.g. 'adobe-rgb' or 'srgb'. # This key sets up any manual overrides that are not automatically added diff --git a/conf.d/iscsid b/conf.d/iscsid new file mode 100644 index 0000000..02e584f --- /dev/null +++ b/conf.d/iscsid @@ -0,0 +1,18 @@ +# /etc/conf.d/iscsid + +# config file to use +CONFIG_FILE=/etc/iscsi/iscsid.conf + +# you need to specify an initiatorname in the file +INITIATORNAME_FILE=/etc/iscsi/initiatorname.iscsi + +# options to pass to iscsid +OPTS="-i ${INITIATORNAME_FILE}" + +# Start automatic targets when iscsid is started +AUTOSTARTTARGETS="yes" + +# if set to "strict", iscsid will stop, if connecting the +# autostart targets failed +# AUTOSTART="strict" + diff --git a/conf.d/net b/conf.d/net index 312f879..a62ec06 100644 --- a/conf.d/net +++ b/conf.d/net @@ -12,3 +12,8 @@ dns_servers_eth0="192.168.178.30 192.168.178.89" dns_search_eth0="pb.local brehm-online.com dc1.de.profitbricks.net dc2.us.profitbricks.net dc252.de.profitbricks.net uhu-banane.de" # vim: filetype=gentoo-conf-d ts=3 et + +# The network scripts are now part of net-misc/netifrc +# In order to avoid sys-apps/openrc-0.12.4 from removing this file, this comment was +# added; you can safely remove this comment. Please see +# /usr/share/doc/netifrc*/README* for more information. diff --git a/conf.d/nfsmount b/conf.d/nfsmount new file mode 100644 index 0000000..4183536 --- /dev/null +++ b/conf.d/nfsmount @@ -0,0 +1,7 @@ +# You will need to set the dependencies in the nfsmount script to match +# the network configuration tools you are using. This should be done in +# this file by following the examples below, and not by changing the +# service script itself. See /etc/conf.d/netmount for more examples. +# +# This is a safe default. +rc_after="net" diff --git a/conf.d/ntpd b/conf.d/ntpd index c651e80..2b74282 100644 --- a/conf.d/ntpd +++ b/conf.d/ntpd @@ -3,4 +3,4 @@ # Options to pass to the ntpd process # Most people should leave this line alone ... # however, if you know what you're doing, feel free to tweak -NTPD_OPTS="-u ntp:ntp" +NTPD_OPTS="-g -u ntp:ntp" diff --git a/conf.d/pydoc-3.3 b/conf.d/pydoc-3.3 new file mode 100644 index 0000000..26ccb54 --- /dev/null +++ b/conf.d/pydoc-3.3 @@ -0,0 +1,7 @@ +# /etc/init.d/pydoc.conf +# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/files/pydoc.conf,v 1.3 2011/10/27 13:56:55 neurogeek Exp $ + +# This file contains the configuration for pydoc's internal webserver. + +# Default port for Python's pydoc server. +PYDOC3_3_PORT="7464" diff --git a/conf.d/sntp b/conf.d/sntp new file mode 100644 index 0000000..d11983a --- /dev/null +++ b/conf.d/sntp @@ -0,0 +1,4 @@ +# /etc/conf.d/sntp + +# Options to pass to sntp +SNTP_OPTS="-s 0.gentoo.pool.ntp.org 1.gentoo.pool.ntp.org 2.gentoo.pool.ntp.org 3.gentoo.pool.ntp.org" diff --git a/conf.d/xdm b/conf.d/xdm index 3b6c5c7..4c5fa8b 100644 --- a/conf.d/xdm +++ b/conf.d/xdm @@ -9,3 +9,4 @@ CHECKVT=7 # NOTE: If this is set in /etc/rc.conf, that setting will override this one. #DISPLAYMANAGER="xdm" DISPLAYMANAGER="gdm" +#DISPLAYMANAGER="wdm" diff --git a/config-archive/etc/conf.d/hwclock b/config-archive/etc/conf.d/hwclock new file mode 100644 index 0000000..db790a2 --- /dev/null +++ b/config-archive/etc/conf.d/hwclock @@ -0,0 +1,20 @@ +# Set CLOCK to "UTC" if your Hardware Clock is set to UTC (also known as +# Greenwich Mean Time). If that clock is set to the local time, then +# set CLOCK to "local". Note that if you dual boot with Windows, then +# you should set it to "local". +clock="UTC" + +# If you want the hwclock script to set the system time (software clock) +# to match the current hardware clock during bootup, leave this +# commented out. +# However, you can set this to "NO" ifyou are running a modern kernel +# with CONFIG_RTC_HCTOSYS set to y and your hardware clock set to UTC. +clock_hctosys="YES" + +# If you do not want to set the hardware clock to the current system +# time (software clock) during shutdown, set this to no. +clock_systohc="YES" + +# If you wish to pass any other arguments to hwclock during bootup, +# you may do so here. Alpha users may wish to use --arc or --srm here. +clock_args="" diff --git a/config-archive/etc/conf.d/hwclock.dist.new b/config-archive/etc/conf.d/hwclock.dist.new new file mode 100644 index 0000000..59bb732 --- /dev/null +++ b/config-archive/etc/conf.d/hwclock.dist.new @@ -0,0 +1,20 @@ +# Set CLOCK to "UTC" if your Hardware Clock is set to UTC (also known as +# Greenwich Mean Time). If that clock is set to the local time, then +# set CLOCK to "local". Note that if you dual boot with Windows, then +# you should set it to "local". +clock="UTC" + +# If you want the hwclock script to set the system time (software clock) +# to match the current hardware clock during bootup, leave this +# commented out. +# However, you can set this to "NO" ifyou are running a modern kernel +# with CONFIG_RTC_HCTOSYS set to y and your hardware clock set to UTC. +#clock_hctosys="YES" + +# If you do not want to set the hardware clock to the current system +# time (software clock) during shutdown, set this to no. +#clock_systohc="YES" + +# If you wish to pass any other arguments to hwclock during bootup, +# you may do so here. Alpha users may wish to use --arc or --srm here. +clock_args="" diff --git a/config-archive/etc/conf.d/modules b/config-archive/etc/conf.d/modules new file mode 100644 index 0000000..4d917ad --- /dev/null +++ b/config-archive/etc/conf.d/modules @@ -0,0 +1,26 @@ +# You can define a list modules for a specific kernel version, +# a released kernel version, a main kernel version or just a list. +# The most specific versioned variable will take precedence. +#modules_2_6_23_gentoo_r5="ieee1394 ohci1394" +#modules_2_6_23="tun ieee1394" +#modules_2_6="tun" +#modules_2="ipv6" +#modules="ohci1394" + +# vboxdrv", "vboxnetflt" and "vboxnetadp +modules="vboxdrv vboxnetflt vboxnetadp" + +# You can give modules a different name when they load - the new name +# will also be used to pick arguments below. +#modules="dummy:dummy1" + +# Give the modules some arguments if needed, per version if necessary. +# Again, the most specific versioned variable will take precedence. +#module_ieee1394_args="debug" +#module_ieee1394_args_2_6_23_gentoo_r5="debug2" +#module_ieee1394_args_2_6_23="debug3" +#module_ieee1394_args_2_6="debug4" +#module_ieee1394_args_2="debug5" + +# You should consult your kernel documentation and configuration +# for a list of modules and their options. diff --git a/config-archive/etc/conf.d/modules.dist.new b/config-archive/etc/conf.d/modules.dist.new new file mode 100644 index 0000000..a062a62 --- /dev/null +++ b/config-archive/etc/conf.d/modules.dist.new @@ -0,0 +1,23 @@ +# You can define a list modules for a specific kernel version, +# a released kernel version, a main kernel version or just a list. +# The most specific versioned variable will take precedence. +#modules_2_6_23_gentoo_r5="ieee1394 ohci1394" +#modules_2_6_23="tun ieee1394" +#modules_2_6="tun" +#modules_2="ipv6" +#modules="ohci1394" + +# You can give modules a different name when they load - the new name +# will also be used to pick arguments below. +#modules="dummy:dummy1" + +# Give the modules some arguments if needed, per version if necessary. +# Again, the most specific versioned variable will take precedence. +#module_ieee1394_args="debug" +#module_ieee1394_args_2_6_23_gentoo_r5="debug2" +#module_ieee1394_args_2_6_23="debug3" +#module_ieee1394_args_2_6="debug4" +#module_ieee1394_args_2="debug5" + +# You should consult your kernel documentation and configuration +# for a list of modules and their options. diff --git a/config-archive/etc/init.d/g15daemon b/config-archive/etc/init.d/g15daemon new file mode 100755 index 0000000..9bb09dd --- /dev/null +++ b/config-archive/etc/init.d/g15daemon @@ -0,0 +1,43 @@ +#!/sbin/runscript +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/g15daemon/files/g15daemon-1.9.5.3.initd,v 1.2 2013/03/18 17:49:55 polynomial-c Exp $ + +# Init script for g15daemon + +pidfile="/var/run/g15daemon.pid" +command="/usr/sbin/g15daemon" +command_args="" +start_stop_daemon_args="--background --pidfile ${pidfile}" + +depend() { + after hotplug + after usb + after modules +} + +start_pre() { + # Does the input device already exist? + if [ -e "/proc/modules" ] ; then + if [ ! -e "/dev/input/uinput" ] && [ ! -e "/dev/uinput" ] ; then + # We can load modules, but uinput device does not exist + einfo "Loading uinput module" + /sbin/modprobe uinput > /dev/null 2> /dev/null + fi + fi + + local SWITCHKEY="" + [ "${CLIENT_SWITCH_L1}" = "yes" ] && command_args="--switch" + + return 0 +} + +stop() { + ebegin "Stopping g15daemon" + local KILLOPT="-k" + if [ $BACKLIGHT_OFF = "yes" ]; then + KILLOPT="-K" + fi + start-stop-daemon -R 5 --exec ${command} -- ${KILLOPT} + eend $? +} diff --git a/config-archive/etc/init.d/g15daemon.dist.new b/config-archive/etc/init.d/g15daemon.dist.new new file mode 100755 index 0000000..7976cff --- /dev/null +++ b/config-archive/etc/init.d/g15daemon.dist.new @@ -0,0 +1,41 @@ +#!/sbin/runscript +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/g15daemon/files/g15daemon-1.9.5.3.initd,v 1.2 2013/03/18 17:49:55 polynomial-c Exp $ + +# Init script for g15daemon + +pidfile="/var/run/g15daemon.pid" +command="/usr/sbin/g15daemon" +command_args="" +start_stop_daemon_args="--background --pidfile ${pidfile}" + +depend() { + after hotplug + after usb + after modules +} + +start_pre() { + # Does the input device already exist? + if [ -e "/proc/modules" ] ; then + if [ ! -e "/dev/input/uinput" ] && [ ! -e "/dev/uinput" ] ; then + # We can load modules, but uinput device does not exist + einfo "Loading uinput module" + /sbin/modprobe uinput > /dev/null 2> /dev/null + fi + fi + + local SWITCHKEY="" + [ "${CLIENT_SWITCH_L1}" = "yes" ] && command_args="--switch" +} + +stop() { + ebegin "Stopping g15daemon" + local KILLOPT="-k" + if [ $BACKLIGHT_OFF = "yes" ]; then + KILLOPT="-K" + fi + start-stop-daemon -R 5 --exec ${command} -- ${KILLOPT} + eend $? +} diff --git a/config-archive/etc/logrotate.d/openrc b/config-archive/etc/logrotate.d/openrc new file mode 100644 index 0000000..3c8ffd0 --- /dev/null +++ b/config-archive/etc/logrotate.d/openrc @@ -0,0 +1,8 @@ +/var/log/rc.log { + compress + rotate 4 + weekly + missingok + notifempty + size 4M +} diff --git a/config-archive/etc/logrotate.d/openrc.dist.new b/config-archive/etc/logrotate.d/openrc.dist.new new file mode 100644 index 0000000..a168f23 --- /dev/null +++ b/config-archive/etc/logrotate.d/openrc.dist.new @@ -0,0 +1,7 @@ +/var/log/rc.log { + compress + rotate 4 + weekly + missingok + notifempty +} diff --git a/config-archive/etc/rc.conf.dist b/config-archive/etc/rc.conf.dist new file mode 100644 index 0000000..ec1c4a4 --- /dev/null +++ b/config-archive/etc/rc.conf.dist @@ -0,0 +1,215 @@ +# Global OpenRC configuration settings + +# Set to "YES" if you want the rc system to try and start services +# in parallel for a slight speed improvement. When running in parallel we +# prefix the service output with its name as the output will get +# jumbled up. +# WARNING: whilst we have improved parallel, it can still potentially lock +# the boot process. Don't file bugs about this unless you can supply +# patches that fix it without breaking other things! +#rc_parallel="NO" + +# Set rc_interactive to "YES" and you'll be able to press the I key during +# boot so you can choose to start specific services. Set to "NO" to disable +# this feature. This feature is automatically disabled if rc_parallel is +# set to YES. +#rc_interactive="YES" + +# If we need to drop to a shell, you can specify it here. +# If not specified we use $SHELL, otherwise the one specified in /etc/passwd, +# otherwise /bin/sh +# Linux users could specify /sbin/sulogin +rc_shell=/sbin/sulogin + +# Do we allow any started service in the runlevel to satisfy the dependency +# or do we want all of them regardless of state? For example, if net.eth0 +# and net.eth1 are in the default runlevel then with rc_depend_strict="NO" +# both will be started, but services that depend on 'net' will work if either +# one comes up. With rc_depend_strict="YES" we would require them both to +# come up. +#rc_depend_strict="YES" + +# rc_hotplug is a list of services that we allow to be hotplugged. +# By default we do not allow hotplugging. +# A hotplugged service is one started by a dynamic dev manager when a matching +# hardware device is found. +# This service is intrinsically included in the boot runlevel. +# To disable services, prefix with a ! +# Example - rc_hotplug="net.wlan !net.*" +# This allows net.wlan and any service not matching net.* to be plugged. +# Example - rc_hotplug="*" +# This allows all services to be hotplugged +#rc_hotplug="*" + +# rc_logger launches a logging daemon to log the entire rc process to +# /var/log/rc.log +# NOTE: Linux systems require the devfs service to be started before +# logging can take place and as such cannot log the sysinit runlevel. +#rc_logger="YES" + +# Through rc_log_path you can specify a custom log file. +# The default value is: /var/log/rc.log +#rc_log_path="/var/log/rc.log" + +# By default we filter the environment for our running scripts. To allow other +# variables through, add them here. Use a * to allow all variables through. +#rc_env_allow="VAR1 VAR2" + +# By default we assume that all daemons will start correctly. +# However, some do not - a classic example is that they fork and return 0 AND +# then child barfs on a configuration error. Or the daemon has a bug and the +# child crashes. You can set the number of milliseconds start-stop-daemon +# waits to check that the daemon is still running after starting here. +# The default is 0 - no checking. +#rc_start_wait=100 + +# rc_nostop is a list of services which will not stop when changing runlevels. +# This still allows the service itself to be stopped when called directly. +#rc_nostop="" + +# rc will attempt to start crashed services by default. +# However, it will not stop them by default as that could bring down other +# critical services. +#rc_crashed_stop=NO +#rc_crashed_start=YES + +############################################################################## +# MISC CONFIGURATION VARIABLES +# There variables are shared between many init scripts + +# Set unicode to YES to turn on unicode support for keyboards and screens. +unicode="YES" + +# This is how long fuser should wait for a remote server to respond. The +# default is 60 seconds, but it can be adjusted here. +#rc_fuser_timeout=60 + +# Below is the default list of network fstypes. +# +# afs cifs coda davfs fuse fuse.sshfs gfs glusterfs lustre ncpfs +# nfs nfs4 ocfs2 shfs smbfs +# +# If you would like to add to this list, you can do so by adding your +# own fstypes to the following variable. +#extra_net_fs_list="" + +############################################################################## +# SERVICE CONFIGURATION VARIABLES +# These variables are documented here, but should be configured in +# /etc/conf.d/foo for service foo and NOT enabled here unless you +# really want them to work on a global basis. +# If your service has characters in its name which are not legal in +# shell variable names and you configure the variables for it in this +# file, those characters should be replaced with underscores in the +# variable names as shown below. + +# Some daemons are started and stopped via start-stop-daemon. +# We can set some things on a per service basis, like the nicelevel. +#SSD_NICELEVEL="-19" + +# Pass ulimit parameters +#rc_ulimit="-u 30" + +# It's possible to define extra dependencies for services like so +#rc_config="/etc/foo" +#rc_need="openvpn" +#rc_use="net.eth0" +#rc_after="clock" +#rc_before="local" +#rc_provide="!net" + +# You can also enable the above commands here for each service. Below is an +# example for service foo. +#rc_foo_config="/etc/foo" +#rc_foo_need="openvpn" +#rc_foo_after="clock" + +# Below is an example for service foo-bar. Note that the '-' is illegal +# in a shell variable name, so we convert it to an underscore. +# example for service foo-bar. +#rc_foo_bar_config="/etc/foo-bar" +#rc_foo_bar_need="openvpn" +#rc_foo_bar_after="clock" + +# You can also remove dependencies. +# This is mainly used for saying which servies do NOT provide net. +#rc_net_tap0_provide="!net" + +############################################################################## +# LINUX SPECIFIC OPTIONS + +# This is the subsystem type. Valid options on Linux: +# "" - nothing special +# "lxc" - Linux Containers +# "openvz" - Linux OpenVZ +# "prefix" - Prefix +# "uml" - Usermode Linux +# "vserver" - Linux vserver +# "xen0" - Xen0 Domain +# "xenU" - XenU Domain +# If this is commented out, automatic detection will be used. +# +# This should be set to the value representing the environment this file is +# PRESENTLY in, not the virtualization the environment is capable of. +#rc_sys="" + +# This is the number of tty's used in most of the rc-scripts (like +# consolefont, numlock, etc ...) +rc_tty_number=12 + +############################################################################## +# CGROUPS RESOURCE MANAGEMENT + +# If you have cgroups turned on in your kernel, this switch controls +# whether or not a group for each controller is mounted under +# /sys/fs/cgroup. +# None of the other options in this section work if this is set to "NO". +#rc_controller_cgroups="YES" + +# The following settings allow you to set up values for the cgroup +# controllers for your services. +# They can be set in this file;, however, if you do this, the settings +# will apply to all of your services. +# If you want different settings for each service, place the settings in +# /etc/conf.d/foo for service foo. +# The format is to specify the names of the settings followed by their +# values. Each variable can hold multiple settings. +# For example, you would use this to set the cpu.shares setting in the +# cpu controller to 512 for your service. +# rc_cgroup_cpu=" +# cpu.shares 512 +# " +# +#For more information about the adjustments that can be made with +#cgroups, see Documentation/cgroups/* in the linux kernel source tree. + +# Set the blkio controller settings for this service. +#rc_cgroup_blkio="" + +# Set the cpu controller settings for this service. +#rc_cgroup_cpu="" + +# Add this service to the cpuacct controller (any value means yes). +#rc_cgroup_cpuacct="" + +# Set the cpuset controller settings for this service. +#rc_cgroup_cpuset="" + +# Set the devices controller settings for this service. +#rc_cgroup_devices="" + +# Set the memory controller settings for this service. +#rc_cgroup_memory="" + +# Set the net_prio controller settings for this service. +#rc_cgroup_net_prio="" + +# Set this to YES if yu want all of the processes in a service's cgroup +# killed when the service is stopped or restarted. +# This should not be set globally because it kills all of the service's +# child processes, and most of the time this is undesirable. Please set +# it in /etc/conf.d/. +# To perform this cleanup manually for a stopped service, you can +# execute cgroup_cleanup with /etc/init.d/ cgroup_cleanup or +# rc-service cgroup_cleanup. +# rc_cgroup_cleanup="NO" diff --git a/config-archive/etc/rc.conf.dist.new b/config-archive/etc/rc.conf.dist.new deleted file mode 100644 index 4c186dc..0000000 --- a/config-archive/etc/rc.conf.dist.new +++ /dev/null @@ -1,162 +0,0 @@ -# Global OpenRC configuration settings - -# Set to "YES" if you want the rc system to try and start services -# in parallel for a slight speed improvement. When running in parallel we -# prefix the service output with its name as the output will get -# jumbled up. -# WARNING: whilst we have improved parallel, it can still potentially lock -# the boot process. Don't file bugs about this unless you can supply -# patches that fix it without breaking other things! -#rc_parallel="NO" - -# Set rc_interactive to "YES" and you'll be able to press the I key during -# boot so you can choose to start specific services. Set to "NO" to disable -# this feature. This feature is automatically disabled if rc_parallel is -# set to YES. -#rc_interactive="YES" - -# If we need to drop to a shell, you can specify it here. -# If not specified we use $SHELL, otherwise the one specified in /etc/passwd, -# otherwise /bin/sh -# Linux users could specify /sbin/sulogin -rc_shell=/sbin/sulogin - -# Do we allow any started service in the runlevel to satisfy the dependency -# or do we want all of them regardless of state? For example, if net.eth0 -# and net.eth1 are in the default runlevel then with rc_depend_strict="NO" -# both will be started, but services that depend on 'net' will work if either -# one comes up. With rc_depend_strict="YES" we would require them both to -# come up. -#rc_depend_strict="YES" - -# rc_hotplug is a list of services that we allow to be hotplugged. -# By default we do not allow hotplugging. -# A hotplugged service is one started by a dynamic dev manager when a matching -# hardware device is found. -# This service is intrinsically included in the boot runlevel. -# To disable services, prefix with a ! -# Example - rc_hotplug="net.wlan !net.*" -# This allows net.wlan and any service not matching net.* to be plugged. -# Example - rc_hotplug="*" -# This allows all services to be hotplugged -#rc_hotplug="*" - -# rc_logger launches a logging daemon to log the entire rc process to -# /var/log/rc.log -# NOTE: Linux systems require the devfs service to be started before -# logging can take place and as such cannot log the sysinit runlevel. -#rc_logger="YES" - -# Through rc_log_path you can specify a custom log file. -# The default value is: /var/log/rc.log -#rc_log_path="/var/log/rc.log" - -# By default we filter the environment for our running scripts. To allow other -# variables through, add them here. Use a * to allow all variables through. -#rc_env_allow="VAR1 VAR2" - -# By default we assume that all daemons will start correctly. -# However, some do not - a classic example is that they fork and return 0 AND -# then child barfs on a configuration error. Or the daemon has a bug and the -# child crashes. You can set the number of milliseconds start-stop-daemon -# waits to check that the daemon is still running after starting here. -# The default is 0 - no checking. -#rc_start_wait=100 - -# rc_nostop is a list of services which will not stop when changing runlevels. -# This still allows the service itself to be stopped when called directly. -#rc_nostop="" - -# rc will attempt to start crashed services by default. -# However, it will not stop them by default as that could bring down other -# critical services. -#rc_crashed_stop=NO -#rc_crashed_start=YES - -############################################################################## -# MISC CONFIGURATION VARIABLES -# There variables are shared between many init scripts - -# Set unicode to YES to turn on unicode support for keyboards and screens. -unicode="YES" - -# Below is the default list of network fstypes. -# -# afs cifs coda davfs fuse fuse.sshfs gfs glusterfs lustre ncpfs -# nfs nfs4 ocfs2 shfs smbfs -# -# If you would like to add to this list, you can do so by adding your -# own fstypes to the following variable. -#extra_net_fs_list="" - -############################################################################## -# SERVICE CONFIGURATION VARIABLES -# These variables are documented here, but should be configured in -# /etc/conf.d/foo for service foo and NOT enabled here unless you -# really want them to work on a global basis. -# If your service has characters in its name which are not legal in -# shell variable names and you configure the variables for it in this -# file, those characters should be replaced with underscores in the -# variable names as shown below. - -# Some daemons are started and stopped via start-stop-daemon. -# We can set some things on a per service basis, like the nicelevel. -#export SSD_NICELEVEL="-19" - -# Pass ulimit parameters -#rc_ulimit="-u 30" - -# It's possible to define extra dependencies for services like so -#rc_config="/etc/foo" -#rc_need="openvpn" -#rc_use="net.eth0" -#rc_after="clock" -#rc_before="local" -#rc_provide="!net" - -# You can also enable the above commands here for each service. Below is an -# example for service foo. -#rc_foo_config="/etc/foo" -#rc_foo_need="openvpn" -#rc_foo_after="clock" - -# Below is an example for service foo-bar. Note that the '-' is illegal -# in a shell variable name, so we convert it to an underscore. -# example for service foo-bar. -#rc_foo_bar_config="/etc/foo-bar" -#rc_foo_bar_need="openvpn" -#rc_foo_bar_after="clock" - -# You can also remove dependencies. -# This is mainly used for saying which servies do NOT provide net. -#rc_net_tap0_provide="!net" - -############################################################################## -# LINUX SPECIFIC OPTIONS - -# This is the subsystem type. Valid options on Linux: -# "" - nothing special -# "lxc" - Linux Containers -# "openvz" - Linux OpenVZ -# "prefix" - Prefix -# "uml" - Usermode Linux -# "vserver" - Linux vserver -# "xen0" - Xen0 Domain -# "xenU" - XenU Domain -# If this is commented out, automatic detection will be used. -# -# This should be set to the value representing the environment this file is -# PRESENTLY in, not the virtualization the environment is capable of. -#rc_sys="" - -# This is the number of tty's used in most of the rc-scripts (like -# consolefont, numlock, etc ...) -rc_tty_number=12 - -# If you have cgroups turned on in your kernel, this switch controls -# whether or not a group for each controller is mounted under -# /sys/fs/cgroup. -# Support for process management by cgroups is planned in the future, -# so if you turn this off, be aware that you may not be able to use that -# feature. -#rc_controller_cgroups="YES" diff --git a/config-archive/etc/xdg/menus/gnome-applications.menu b/config-archive/etc/xdg/menus/gnome-applications.menu new file mode 100644 index 0000000..ec48619 --- /dev/null +++ b/config-archive/etc/xdg/menus/gnome-applications.menu @@ -0,0 +1,167 @@ + + + + + Applications + X-GNOME-Menu-Applications.directory + + + + /etc/X11/applnk + /usr/share/gnome/apps + + + + + + + + + + + Accessories + Utility.directory + + + Utility + + Accessibility + System + + + + + + + Universal Access + Utility-Accessibility.directory + + + Accessibility + Settings + + + + + + + Development + Development.directory + + + Development + + emacs.desktop + + + + + + Education + Education.directory + + + Education + + + + + + + Games + Game.directory + + + Game + + + + + + + Graphics + Graphics.directory + + + Graphics + + + + + + + Internet + Network.directory + + + Network + + + + + + + Multimedia + AudioVideo.directory + + + AudioVideo + + + + + + + Office + Office.directory + + + Office + + + + + + + System + System-Tools.directory + + + System + Settings + + + + + + + Other + X-GNOME-Other.directory + + + + Core + Settings + Screensaver + X-KDE-settings-accessibility + X-KDE-settings-components + X-KDE-settings-desktop + X-KDE-settings-looknfeel + X-KDE-settings-network + X-KDE-settings-webbrowsing + X-KDE-settings-peripherals + X-KDE-settings-hardware + X-KDE-settings-power + X-KDE-settings-security + X-KDE-settings-sound + X-KDE-settings-system + X-KDE-information + + + + + diff --git a/config-archive/etc/xdg/menus/gnome-applications.menu.dist b/config-archive/etc/xdg/menus/gnome-applications.menu.dist new file mode 100644 index 0000000..39e4012 --- /dev/null +++ b/config-archive/etc/xdg/menus/gnome-applications.menu.dist @@ -0,0 +1,337 @@ + + + + + Applications + X-GNOME-Menu-Applications.directory + + + + /etc/X11/applnk + /usr/share/gnome/apps + + + + + + + + + + + Accessories + Utility.directory + + + Utility + + Accessibility + System + X-GNOME-Utilities + + + + + deja-dup-preferences.desktop + eog.desktop + evince.desktop + file-roller.desktop + gcalctool.desktop + gnome-dictionary.desktop + gnome-disks.desktop + gnome-font-viewer.desktop + gnome-screenshot.desktop + gnome-terminal.desktop + gnome-tweak-tool.desktop + gucharmap.desktop + seahorse.desktop + vinagre.desktop + yelp.desktop + + + alacarte.desktop + + + + + + + Universal Access + Utility-Accessibility.directory + + + Accessibility + Settings + + + + + + orca.desktop + + + + + + Development + Development.directory + + + Development + + emacs.desktop + + + + + jhbuild.desktop + java-1.7.0-openjdk-jconsole.desktop + java-1.7.0-openjdk-policytool.desktop + log4j-chainsaw.desktop + log4j-logfactor5.desktop + + + + + + Education + Education.directory + + + Education + + + + + + + Games + Game.directory + + + Game + + + + + + + Graphics + Graphics.directory + + + Graphics + eog.desktop + gnome-eog.desktop + evince.desktop + + + + + + + Internet + Network.directory + + + Network + X-GNOME-WebApplication + + + + + + vinagre.desktop + + + javaws.desktop + + + + + + Web Applications + X-GNOME-WebApplications.directory + + + Network + X-GNOME-WebApplication + + + + + + + Multimedia + AudioVideo.directory + + + AudioVideo + + + + + + + Office + Office.directory + + + Office + evince.desktop + gnome-dictionary.desktop + + + + + + + Sundry + X-GNOME-Sundry.directory + + alacarte.desktop + authconfig.desktop + dconf-editor.desktop + fedora-release-notes.desktop + firewall-config.desktop + flash-player-properties.desktop + gconf-editor.desktop + gnome-abrt.desktop + gnome-power-statistics.desktop + ibus-setup-anthy.desktop + ibus-setup.desktop + ibus-setup-hangul.desktop + ibus-setup-libbopomofo.desktop + ibus-setup-libpinyin.desktop + ibus-setup-m17n.desktop + ibus-setup-typing-booster.desktop + im-chooser.desktop + itweb-settings.desktop + jhbuild.desktop + javaws.desktop + java-1.7.0-openjdk-jconsole.desktop + java-1.7.0-openjdk-policytool.desktop + log4j-chainsaw.desktop + log4j-logfactor5.desktop + nm-connection-editor.desktop + orca.desktop + setroubleshoot.desktop + system-config-date.desktop + system-config-firewall.desktop + system-config-keyboard.desktop + system-config-language.desktop + system-config-printer.desktop + system-config-users.desktop + vino-preferences.desktop + + + + + + System + System-Tools.directory + + + System + Settings + X-GNOME-Utilities + + + + + + baobab.desktop + gnome-system-log.desktop + gnome-system-monitor.desktop + gnome-terminal.desktop + + + dconf-editor.desktop + fedora-release-notes.desktop + gconf-editor.desktop + gnome-abrt.desktop + gnome-power-statistics.desktop + dconf-editor.desktop + setroubleshoot.desktop + + + + + + System Settings + X-GNOME-SystemSettings.directory + + X-GNOME-Settings-Panel + + + + + + Utilities + X-GNOME-Utilities.directory + + X-GNOME-Utilities + baobab.desktop + deja-dup-preferences.desktop + eog.desktop + evince.desktop + file-roller.desktop + gcalctool.desktop + gnome-dictionary.desktop + gnome-disks.desktop + gnome-font-viewer.desktop + gnome-screenshot.desktop + gnome-system-log.desktop + gnome-system-monitor.desktop + gnome-terminal.desktop + gnome-tweak-tool.desktop + gucharmap.desktop + seahorse.desktop + vinagre.desktop + yelp.desktop + + + + + + Other + X-GNOME-Other.directory + + + + Core + Screensaver + X-KDE-settings-accessibility + X-KDE-settings-components + X-KDE-settings-desktop + X-KDE-settings-looknfeel + X-KDE-settings-network + X-KDE-settings-webbrowsing + X-KDE-settings-peripherals + X-KDE-settings-hardware + X-KDE-settings-power + X-KDE-settings-security + X-KDE-settings-sound + X-KDE-settings-system + X-KDE-information + + gnome-eog.desktop + gnome-file-roller.desktop + gnome-gucharmap.desktop + + + + + + + Other + + + + diff --git a/cups/cups-browsed.conf b/cups/cups-browsed.conf index 57d2deb..c006e55 100644 --- a/cups/cups-browsed.conf +++ b/cups/cups-browsed.conf @@ -22,5 +22,10 @@ BrowseRemoteProtocols DNSSD,CUPS # Use BrowsePoll to poll a particular CUPS server # BrowsePoll cups.example.com # BrowsePoll cups.example.com:631 +# BrowsePoll cups.example.com:631/version=1.1 + +# Use DomainSocket to access the local CUPS daemon via another than the +# default domain socket +# DomainSocket /var/lib/run/cups/cups.sock # Unknown directives are ignored, also unknown values. diff --git a/cups/cups-files.conf b/cups/cups-files.conf index 9edfd39..8dea2f5 100644 --- a/cups/cups-files.conf +++ b/cups/cups-files.conf @@ -1,5 +1,5 @@ # -# "$Id: cups-files.conf.in 10765 2012-12-13 20:36:17Z mike $" +# "$Id: cups-files.conf.in 11221 2013-08-06 16:16:01Z msweet $" # # Sample file/directory/user/group configuration file for the CUPS scheduler. # See "man cups-files.conf" for a complete description of this file. @@ -8,6 +8,9 @@ # List of events that are considered fatal errors for the scheduler... #FatalErrors config +# Do we call fsync() after writing configuration or status files? +#SyncOnClose No + # Default user and group for filters/backends/helper programs; this cannot be # any user or group that resolves to ID 0 for security reasons... #User lp @@ -94,5 +97,5 @@ PageLog /var/log/cups/page_log #TempDir /var/spool/cups/tmp # -# End of "$Id: cups-files.conf.in 10765 2012-12-13 20:36:17Z mike $". +# End of "$Id: cups-files.conf.in 11221 2013-08-06 16:16:01Z msweet $". # diff --git a/cups/cupsd.conf b/cups/cupsd.conf index 43b2eae..4e59c0a 100644 --- a/cups/cupsd.conf +++ b/cups/cupsd.conf @@ -1,5 +1,5 @@ # -# "$Id: cupsd.conf.in 10710 2012-11-26 18:26:01Z mike $" +# "$Id: cupsd.conf.in 11173 2013-07-23 12:31:34Z msweet $" # # Sample configuration file for the CUPS scheduler. See "man cupsd.conf" for a # complete description of this file. @@ -130,5 +130,5 @@ WebInterface Yes # -# End of "$Id: cupsd.conf.in 10710 2012-11-26 18:26:01Z mike $". +# End of "$Id: cupsd.conf.in 11173 2013-07-23 12:31:34Z msweet $". # diff --git a/cups/snmp.conf b/cups/snmp.conf index 5539d50..17d376e 100644 --- a/cups/snmp.conf +++ b/cups/snmp.conf @@ -1,5 +1,5 @@ # -# "$Id: snmp.conf.in 9045 2010-03-24 07:48:42Z mike $" +# "$Id: snmp.conf.in 11173 2013-07-23 12:31:34Z msweet $" # # Sample SNMP configuration file for CUPS. See "man cups-snmp.conf" for a # complete description of this file. @@ -9,5 +9,5 @@ Address @LOCAL Community public # -# End of "$Id: snmp.conf.in 9045 2010-03-24 07:48:42Z mike $". +# End of "$Id: snmp.conf.in 11173 2013-07-23 12:31:34Z msweet $". # diff --git a/cups/subscriptions.conf b/cups/subscriptions.conf index c226271..fa8539d 100644 --- a/cups/subscriptions.conf +++ b/cups/subscriptions.conf @@ -1,3 +1,12 @@ -# Subscription configuration file for CUPS v1.5.2 -# Written by cupsd on 2013-06-22 09:45 -NextSubscriptionId 12 +# Subscription configuration file for CUPS v1.6.4 +# Written by cupsd on 2014-01-20 15:18 +NextSubscriptionId 14 + +Events printer-state-changed printer-restarted printer-shutdown printer-stopped printer-added printer-deleted job-state-changed job-created job-completed job-stopped +Owner fbrehm +Recipient dbus:// +LeaseDuration 3600 +Interval 0 +ExpirationTime 1390231098 +NextEventId 1 + diff --git a/cups/subscriptions.conf.O b/cups/subscriptions.conf.O index cccba8b..e3002f3 100644 --- a/cups/subscriptions.conf.O +++ b/cups/subscriptions.conf.O @@ -1,11 +1,12 @@ -# Subscription configuration file for CUPS v1.5.2 -# Written by cupsd on 2013-06-21 09:47 -NextSubscriptionId 12 - -Events printer-state-changed printer-restarted printer-shutdown printer-stopped printer-added printer-deleted job-state-changed job-created job-completed job-stopped job-progress +# Subscription configuration file for CUPS v1.6.4 +# Written by cupsd on 2014-01-20 14:20 +NextSubscriptionId 14 + +Events printer-state-changed printer-restarted printer-shutdown printer-stopped printer-added printer-deleted job-state-changed job-created job-completed job-stopped Owner fbrehm -LeaseDuration 86400 +Recipient dbus:// +LeaseDuration 3600 Interval 0 -ExpirationTime 1371887100 -NextEventId 127 +ExpirationTime 1390227598 +NextEventId 1 diff --git a/cupshelpers/preferreddrivers.xml b/cupshelpers/preferreddrivers.xml index fa80c0d..666fb6d 100644 --- a/cupshelpers/preferreddrivers.xml +++ b/cupshelpers/preferreddrivers.xml @@ -171,17 +171,17 @@ + + + + exact-cmd - - - - @@ -220,6 +220,9 @@ + @@ -264,36 +267,21 @@ manufacturer-cmd - foomatic-recommended-hpijs foomatic-recommended-nonpostscript manufacturer* pdf foomatic-recommended-postscript - foomatic-postscript hpcups - hpijs - - - - - - - - - - - foomatic-hpijs + splix + foomatic-postscript - splix gutenprint-simplified gutenprint-expert - foomatic-hpijs foomatic-gutenprint foomatic cups @@ -310,6 +298,14 @@ ghostscript generic + + foomatic-recommended-hpijs + hpijs + foomatic-hpijs + hpcups-plugin hpijs-plugin diff --git a/dbus-1/system.d/gdm.conf b/dbus-1/system.d/gdm.conf new file mode 100644 index 0000000..63e9849 --- /dev/null +++ b/dbus-1/system.d/gdm.conf @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dbus-1/system.d/org.freedesktop.Accounts.conf b/dbus-1/system.d/org.freedesktop.Accounts.conf new file mode 100644 index 0000000..95fc616 --- /dev/null +++ b/dbus-1/system.d/org.freedesktop.Accounts.conf @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + diff --git a/dbus-1/system.d/org.freedesktop.ColorManager.conf b/dbus-1/system.d/org.freedesktop.ColorManager.conf index cfe7f05..e628830 100644 --- a/dbus-1/system.d/org.freedesktop.ColorManager.conf +++ b/dbus-1/system.d/org.freedesktop.ColorManager.conf @@ -30,6 +30,8 @@ send_interface="org.freedesktop.DBus.Properties"/> + diff --git a/dbus-1/system.d/org.freedesktop.NetworkManager.conf b/dbus-1/system.d/org.freedesktop.NetworkManager.conf index 7df1c8e..5e7bafa 100644 --- a/dbus-1/system.d/org.freedesktop.NetworkManager.conf +++ b/dbus-1/system.d/org.freedesktop.NetworkManager.conf @@ -23,6 +23,7 @@ + diff --git a/dbus-1/system.d/org.freedesktop.hostname1.conf b/dbus-1/system.d/org.freedesktop.hostname1.conf new file mode 100644 index 0000000..46b4aad --- /dev/null +++ b/dbus-1/system.d/org.freedesktop.hostname1.conf @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + diff --git a/dbus-1/system.d/org.freedesktop.locale1.conf b/dbus-1/system.d/org.freedesktop.locale1.conf new file mode 100644 index 0000000..79d0ecd --- /dev/null +++ b/dbus-1/system.d/org.freedesktop.locale1.conf @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + diff --git a/dbus-1/system.d/org.freedesktop.login1.conf b/dbus-1/system.d/org.freedesktop.login1.conf new file mode 100644 index 0000000..0407609 --- /dev/null +++ b/dbus-1/system.d/org.freedesktop.login1.conf @@ -0,0 +1,154 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dbus-1/system.d/org.freedesktop.machine1.conf b/dbus-1/system.d/org.freedesktop.machine1.conf new file mode 100644 index 0000000..b2d6df3 --- /dev/null +++ b/dbus-1/system.d/org.freedesktop.machine1.conf @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dbus-1/system.d/org.freedesktop.systemd1.conf b/dbus-1/system.d/org.freedesktop.systemd1.conf new file mode 100644 index 0000000..a375dce --- /dev/null +++ b/dbus-1/system.d/org.freedesktop.systemd1.conf @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dbus-1/system.d/org.freedesktop.timedate1.conf b/dbus-1/system.d/org.freedesktop.timedate1.conf new file mode 100644 index 0000000..36557d5 --- /dev/null +++ b/dbus-1/system.d/org.freedesktop.timedate1.conf @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + diff --git a/dbus-1/system.d/org.gnome.CPUFreqSelector.conf b/dbus-1/system.d/org.gnome.CPUFreqSelector.conf deleted file mode 100644 index 331b6bc..0000000 --- a/dbus-1/system.d/org.gnome.CPUFreqSelector.conf +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/dbus-1/system.d/org.gnome.SettingsDaemon.DateTimeMechanism.conf b/dbus-1/system.d/org.gnome.SettingsDaemon.DateTimeMechanism.conf deleted file mode 100644 index bdb7554..0000000 --- a/dbus-1/system.d/org.gnome.SettingsDaemon.DateTimeMechanism.conf +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/dbus-1/system.d/org.kde.nepomuk.filewatch.conf b/dbus-1/system.d/org.kde.nepomuk.filewatch.conf new file mode 100644 index 0000000..b134503 --- /dev/null +++ b/dbus-1/system.d/org.kde.nepomuk.filewatch.conf @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/dbus-1/system.d/org.opensuse.CupsPkHelper.Mechanism.conf b/dbus-1/system.d/org.opensuse.CupsPkHelper.Mechanism.conf new file mode 100644 index 0000000..4068ede --- /dev/null +++ b/dbus-1/system.d/org.opensuse.CupsPkHelper.Mechanism.conf @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + diff --git a/dbus-1/system.d/pulseaudio-system.conf b/dbus-1/system.d/pulseaudio-system.conf index edddaf9..1eee879 100644 --- a/dbus-1/system.d/pulseaudio-system.conf +++ b/dbus-1/system.d/pulseaudio-system.conf @@ -28,10 +28,6 @@ USA. - - - - diff --git a/dconf/db/gdm b/dconf/db/gdm new file mode 100644 index 0000000..2ff4b9e Binary files /dev/null and b/dconf/db/gdm differ diff --git a/dconf/db/gdm.d/00-upstream-settings b/dconf/db/gdm.d/00-upstream-settings new file mode 100644 index 0000000..24a7715 --- /dev/null +++ b/dconf/db/gdm.d/00-upstream-settings @@ -0,0 +1,57 @@ +# This file is part of the GDM packaging and should not be changed. +# +# Instead create your own file next to it with a higher numbered prefix, +# and run +# +# dconf update +# + +[org/gnome/desktop/a11y/keyboard] +enable=true + +[org/gnome/desktop/background] +show-desktop-icons=false + +[org/gnome/desktop/default-applications/terminal] +exec='/bin/true' + +[org/gnome/desktop/interface] +toolkit-accessibility=true + +[org/gnome/desktop/lockdown] +disable-application-handlers=true +disable-command-line=true +disable-lock-screen=true +disable-log-out=false +disable-printing=true +disable-print-setup=true +disable-save-to-disk=true +disable-user-switching=true + +[org/gnome/desktop/session] +session-name='gdm-shell' + +[org/gnome/desktop/sound] +event-sounds=true + +[org/gnome/settings-daemon/plugins] +whitelisted-plugins=['a11y-keyboard', 'a11y-settings', 'background', 'clipboard', 'color', 'cursor', 'keyboard', 'media-keys', 'orientation', 'power', 'smartcard', 'sound', 'xrandr', 'xsettings'] + +[org/gnome/settings-daemon/plugins/media-keys] +calculator='' +eject='' +email='' +help='' +home='' +media='' +next='' +pause='' +play='' +previous='' +screensaver='' +search='' +stop='' +www='' + +[org/gnome/settings-daemon/peripherals/input-devices] +hotplug-command='' diff --git a/dconf/db/gdm.d/locks/00-upstream-settings-locks b/dconf/db/gdm.d/locks/00-upstream-settings-locks new file mode 100644 index 0000000..830a729 --- /dev/null +++ b/dconf/db/gdm.d/locks/00-upstream-settings-locks @@ -0,0 +1,30 @@ +/org/gnome/desktop/a11y/keyboard/enable +/org/gnome/desktop/background/show-desktop-icons +/org/gnome/desktop/default-applications/terminal/exec +/org/gnome/desktop/interface/toolkit-accessibility +/org/gnome/desktop/lockdown/disable-application-handlers +/org/gnome/desktop/lockdown/disable-command-line +/org/gnome/desktop/lockdown/disable-lock-screen +/org/gnome/desktop/lockdown/disable-log-out +/org/gnome/desktop/lockdown/disable-printing +/org/gnome/desktop/lockdown/disable-print-setup +/org/gnome/desktop/lockdown/disable-save-to-disk +/org/gnome/desktop/lockdown/disable-user-switching +/org/gnome/desktop/session/session-name +/org/gnome/desktop/sound/event-sounds +/org/gnome/settings-daemon/plugins/whitelisted-plugins +/org/gnome/settings-daemon/plugins/media-keys/calculator +/org/gnome/settings-daemon/plugins/media-keys/eject +/org/gnome/settings-daemon/plugins/media-keys/email +/org/gnome/settings-daemon/plugins/media-keys/help +/org/gnome/settings-daemon/plugins/media-keys/home +/org/gnome/settings-daemon/plugins/media-keys/media +/org/gnome/settings-daemon/plugins/media-keys/next +/org/gnome/settings-daemon/plugins/media-keys/pause +/org/gnome/settings-daemon/plugins/media-keys/play +/org/gnome/settings-daemon/plugins/media-keys/previous +/org/gnome/settings-daemon/plugins/media-keys/screensaver +/org/gnome/settings-daemon/plugins/media-keys/search +/org/gnome/settings-daemon/plugins/media-keys/stop +/org/gnome/settings-daemon/plugins/media-keys/www +/org/gnome/settings-daemon/peripherals/input-devices/hotplug-command diff --git a/dconf/db/ibus b/dconf/db/ibus new file mode 100644 index 0000000..7e76796 Binary files /dev/null and b/dconf/db/ibus differ diff --git a/dconf/db/ibus.d/00-upstream-settings b/dconf/db/ibus.d/00-upstream-settings new file mode 100644 index 0000000..9989abd --- /dev/null +++ b/dconf/db/ibus.d/00-upstream-settings @@ -0,0 +1,37 @@ +# This file is a part of the IBus packaging and should not be changed. +# +# Instead create your own file next to it with a higher numbered prefix, +# and run +# +# dconf update +# + +[desktop/ibus/general] +dconf-preserve-name-prefixes=['/desktop/ibus/engine/pinyin', '/desktop/ibus/engine/bopomofo', '/desktop/ibus/engine/hangul'] +embed-preedit-text=true +enable-by-default=false +engines-order=@as [] +preload-engines=@as [] +switcher-delay-time=400 +use-global-engine=false +use-system-keyboard-layout=false + +[desktop/ibus/general/hotkey] +disable-unconditional=@as [] +enable-unconditional=@as [] +next-engine=['Alt+Shift_L'] +next-engine-in-menu=['Alt+Shift_L'] +prev-engine=@as [] +previous-engine=@as [] +trigger=['Control+space', 'Zenkaku_Hankaku', 'Alt+Kanji', 'Alt+grave', 'Hangul', 'Alt+Release+Alt_R'] +triggers=['space'] + +[desktop/ibus/panel] +custom-font='Sans 10' +lookup-table-orientation=1 +show=0 +show-icon-on-systray=true +show-im-name=false +use-custom-font=false +x=-1 +y=-1 diff --git a/dconf/profile/gdm b/dconf/profile/gdm new file mode 100644 index 0000000..e4ac220 --- /dev/null +++ b/dconf/profile/gdm @@ -0,0 +1,2 @@ +user-db:user +system-db:gdm diff --git a/dconf/profile/ibus b/dconf/profile/ibus new file mode 100644 index 0000000..aa8fe5f --- /dev/null +++ b/dconf/profile/ibus @@ -0,0 +1,2 @@ +user-db:user +system-db:ibus diff --git a/default/grub b/default/grub new file mode 100644 index 0000000..244c875 --- /dev/null +++ b/default/grub @@ -0,0 +1,46 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/files/grub.default-2,v 1.4 2013/09/21 18:10:55 floppym Exp $ +# +# To populate all changes in this file you need to regenerate your +# grub configuration file afterwards: +# 'grub2-mkconfig -o /boot/grub/grub.cfg' +# +# See the grub info page for documentation on possible variables and +# their associated values. + +GRUB_DISTRIBUTOR="Samara (Gentoo)" + +GRUB_DEFAULT=0 +GRUB_HIDDEN_TIMEOUT=5 +GRUB_HIDDEN_TIMEOUT_QUIET=true +GRUB_TIMEOUT=10 + +# Append parameters to the linux kernel command line +GRUB_CMDLINE_LINUX="init=/usr/lib/systemd/systemd" + +# Append parameters to the linux kernel command line for non-recovery entries +#GRUB_CMDLINE_LINUX_DEFAULT="" + +# Uncomment to disable graphical terminal (grub-pc only) +#GRUB_TERMINAL=console + +# The resolution used on graphical terminal. +# Note that you can use only modes which your graphic card supports via VBE. +# You can see them in real GRUB with the command `vbeinfo'. +GRUB_GFXMODE=800x600 + +# Path to theme spec txt file. +# The starfield is by default provided with use truetype. +# NOTE: when enabling custom theme, ensure you have required font/etc. +#GRUB_THEME="/boot/grub/themes/starfield/theme.txt" + +# Background image used on graphical terminal. +# Can be in various bitmap formats. +#GRUB_BACKGROUND="/boot/grub/mybackground.png" + +# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to kernel +GRUB_DISABLE_LINUX_UUID=true + +# Uncomment to disable generation of recovery mode menu entries +#GRUB_DISABLE_RECOVERY=true diff --git a/env.d/02locale b/env.d/02locale deleted file mode 100644 index 02f043e..0000000 --- a/env.d/02locale +++ /dev/null @@ -1,13 +0,0 @@ -LANG="de_DE.UTF-8" -LC_CTYPE="de_DE.utf8" -LC_NUMERIC="de_DE.utf8" -LC_TIME="de_DE.utf8" -LC_COLLATE="de_DE.utf8" -LC_MONETARY="de_DE.utf8" -LC_MESSAGES="de_DE.utf8" -LC_PAPER="de_DE.utf8" -LC_NAME="de_DE.utf8" -LC_ADDRESS="de_DE.utf8" -LC_TELEPHONE="de_DE.utf8" -LC_MEASUREMENT="de_DE.utf8" -LC_IDENTIFICATION="de_DE.utf8" diff --git a/env.d/02locale b/env.d/02locale new file mode 120000 index 0000000..aa2c160 --- /dev/null +++ b/env.d/02locale @@ -0,0 +1 @@ +../locale.conf \ No newline at end of file diff --git a/env.d/04gcc-x86_64-pc-linux-gnu b/env.d/04gcc-x86_64-pc-linux-gnu index 2106f84..3531c1a 100644 --- a/env.d/04gcc-x86_64-pc-linux-gnu +++ b/env.d/04gcc-x86_64-pc-linux-gnu @@ -1,6 +1,6 @@ -PATH="/usr/x86_64-pc-linux-gnu/gcc-bin/4.6.3" -ROOTPATH="/usr/x86_64-pc-linux-gnu/gcc-bin/4.6.3" +PATH="/usr/x86_64-pc-linux-gnu/gcc-bin/4.8.2" +ROOTPATH="/usr/x86_64-pc-linux-gnu/gcc-bin/4.8.2" GCC_SPECS="" -MANPATH="/usr/share/gcc-data/x86_64-pc-linux-gnu/4.6.3/man" -INFOPATH="/usr/share/gcc-data/x86_64-pc-linux-gnu/4.6.3/info" +MANPATH="/usr/share/gcc-data/x86_64-pc-linux-gnu/4.8.2/man" +INFOPATH="/usr/share/gcc-data/x86_64-pc-linux-gnu/4.8.2/info" MULTIOSDIRS="../lib64:../lib32" diff --git a/env.d/50guile b/env.d/50guile new file mode 100644 index 0000000..615ed56 --- /dev/null +++ b/env.d/50guile @@ -0,0 +1 @@ +GUILE_LOAD_PATH="/usr/share/guile/1.8" diff --git a/env.d/99fltk-1 b/env.d/99fltk-1 index 3c8db58..485c367 100644 --- a/env.d/99fltk-1 +++ b/env.d/99fltk-1 @@ -1,2 +1,2 @@ LDPATH=/usr/lib64/fltk-1 -FLTK_DOCDIR=/usr/share/doc/fltk-1.3.0-r1/html +FLTK_DOCDIR=/usr/share/doc/fltk-1.3.2/html diff --git a/env.d/gcc/.NATIVE b/env.d/gcc/.NATIVE index 99ba904..0acfc7c 120000 --- a/env.d/gcc/.NATIVE +++ b/env.d/gcc/.NATIVE @@ -1 +1 @@ -x86_64-pc-linux-gnu-4.6.3 \ No newline at end of file +x86_64-pc-linux-gnu-4.8.2 \ No newline at end of file diff --git a/env.d/gcc/config-x86_64-pc-linux-gnu b/env.d/gcc/config-x86_64-pc-linux-gnu index 63f79f2..ad544c4 100644 --- a/env.d/gcc/config-x86_64-pc-linux-gnu +++ b/env.d/gcc/config-x86_64-pc-linux-gnu @@ -1 +1 @@ -CURRENT=x86_64-pc-linux-gnu-4.6.3 +CURRENT=x86_64-pc-linux-gnu-4.8.2 diff --git a/env.d/gcc/x86_64-pc-linux-gnu-4.6.3 b/env.d/gcc/x86_64-pc-linux-gnu-4.6.3 deleted file mode 100644 index 1f63693..0000000 --- a/env.d/gcc/x86_64-pc-linux-gnu-4.6.3 +++ /dev/null @@ -1,8 +0,0 @@ -LDPATH="/usr/lib/gcc/x86_64-pc-linux-gnu/4.6.3:/usr/lib/gcc/x86_64-pc-linux-gnu/4.6.3/32" -MANPATH="/usr/share/gcc-data/x86_64-pc-linux-gnu/4.6.3/man" -INFOPATH="/usr/share/gcc-data/x86_64-pc-linux-gnu/4.6.3/info" -STDCXX_INCDIR="g++-v4" -CTARGET="x86_64-pc-linux-gnu" -GCC_SPECS="" -MULTIOSDIRS="../lib64:../lib32" -GCC_PATH="/usr/x86_64-pc-linux-gnu/gcc-bin/4.6.3" diff --git a/env.d/gcc/x86_64-pc-linux-gnu-4.8.2 b/env.d/gcc/x86_64-pc-linux-gnu-4.8.2 new file mode 100644 index 0000000..10909cc --- /dev/null +++ b/env.d/gcc/x86_64-pc-linux-gnu-4.8.2 @@ -0,0 +1,8 @@ +LDPATH="/usr/lib/gcc/x86_64-pc-linux-gnu/4.8.2:/usr/lib/gcc/x86_64-pc-linux-gnu/4.8.2/32" +MANPATH="/usr/share/gcc-data/x86_64-pc-linux-gnu/4.8.2/man" +INFOPATH="/usr/share/gcc-data/x86_64-pc-linux-gnu/4.8.2/info" +STDCXX_INCDIR="g++-v4" +CTARGET="x86_64-pc-linux-gnu" +GCC_SPECS="" +MULTIOSDIRS="../lib64:../lib32" +GCC_PATH="/usr/x86_64-pc-linux-gnu/gcc-bin/4.8.2" diff --git a/eselect/gnome-shell-extensions/.keep_app-admin_eselect-gnome-shell-extensions-0 b/eselect/gnome-shell-extensions/.keep_app-admin_eselect-gnome-shell-extensions-0 new file mode 100644 index 0000000..e69de29 diff --git a/eselect/gnome-shell-extensions/config b/eselect/gnome-shell-extensions/config new file mode 100644 index 0000000..9dbe604 --- /dev/null +++ b/eselect/gnome-shell-extensions/config @@ -0,0 +1,2 @@ +# Generated and used by eselect gnome-shell-extensions; do not edit manually +declare -a enabled_saved='([0]="apps-menu@gnome-shell-extensions.gcampax.github.com" [1]="systemMonitor@gnome-shell-extensions.gcampax.github.com")' diff --git a/eselect/gnome-shell-extensions/eselect-gnome-shell-extensions.gschema.override b/eselect/gnome-shell-extensions/eselect-gnome-shell-extensions.gschema.override new file mode 100644 index 0000000..aea101b --- /dev/null +++ b/eselect/gnome-shell-extensions/eselect-gnome-shell-extensions.gschema.override @@ -0,0 +1,3 @@ +# Generated and used by eselect gnome-shell-extensions; do not edit manually +[org.gnome.shell] +enabled-extensions=['systemMonitor@gnome-shell-extensions.gcampax.github.com', 'apps-menu@gnome-shell-extensions.gcampax.github.com'] diff --git a/eselect/postgresql/slots/9.2/base b/eselect/postgresql/slots/9.2/base index 286352f..86451b9 100644 --- a/eselect/postgresql/slots/9.2/base +++ b/eselect/postgresql/slots/9.2/base @@ -1 +1 @@ -postgres_ebuilds="${postgres_ebuilds} postgresql-base-9.2.4" +postgres_ebuilds="${postgres_ebuilds} postgresql-base-9.2.4-r1" diff --git a/eselect/postgresql/slots/9.2/server b/eselect/postgresql/slots/9.2/server index 3de77a0..c806406 100644 --- a/eselect/postgresql/slots/9.2/server +++ b/eselect/postgresql/slots/9.2/server @@ -1 +1 @@ -postgres_ebuilds="${postgres_ebuilds} postgresql-server-9.2.4" +postgres_ebuilds="${postgres_ebuilds} postgresql-server-9.2.4-r1" diff --git a/etckeeper/pre-commit.d/30store-metadata b/etckeeper/pre-commit.d/30store-metadata index 03ce475..fa5b5c6 100755 --- a/etckeeper/pre-commit.d/30store-metadata +++ b/etckeeper/pre-commit.d/30store-metadata @@ -15,16 +15,25 @@ filter_unknown() { } filter_ignore() { - if [ "$VCS" = darcs ]; then - ignorefile=.darcsignore - fi + case "$VCS" in + darcs) ignorefile=.darcsignore ;; + git) ignorefile=.gitignore ;; + esac - if [ "$VCS" = darcs ] && [ -e "$ignorefile" ]; then - patternsfile="$( mktemp -t etckeeper-$VCS.XXXXXXXXXX )" - grep -v '^[[:space:]]*\(#\|$\)' "$ignorefile" > "$patternsfile" || true - grep -Evf "$patternsfile" - rm -f "$patternsfile" - unset patternsfile + if [ -n "$ignorefile" ] && [ -e "$ignorefile" ]; then + listfile="$( mktemp -t etckeeper-$VCS.XXXXXXXXXX )" + case "$VCS" in + darcs) + grep -v '^[[:space:]]*\(#\|$\)' "$ignorefile" > "$listfile" || true + grep -Evf "$listfile" + ;; + git) + git ls-files --others --ignore --exclude-standard --directory > "$listfile" || true + grep -Fvf "$listfile" + ;; + esac + rm -f "$listfile" + unset listfile else cat - fi @@ -74,7 +83,7 @@ generate_metadata() { # Store things that don't have the default user or group. # Store all file modes, in case the user has an unusual umask. - find $NOVCS \( -type f -or -type d \) -print | sort | perl -ne ' + find $NOVCS \( -type f -or -type d \) -print | filter_ignore | sort | perl -ne ' BEGIN { $q=chr(39) } sub uidname { my $want=shift; diff --git a/fonts/conf.avail/10-autohint.conf b/fonts/conf.avail/10-autohint.conf index c597bf4..f9032ba 100644 --- a/fonts/conf.avail/10-autohint.conf +++ b/fonts/conf.avail/10-autohint.conf @@ -2,7 +2,13 @@ - - true + + + true diff --git a/fonts/conf.avail/10-no-sub-pixel.conf b/fonts/conf.avail/10-no-sub-pixel.conf index 87ada4e..cf12465 100644 --- a/fonts/conf.avail/10-no-sub-pixel.conf +++ b/fonts/conf.avail/10-no-sub-pixel.conf @@ -2,7 +2,13 @@ - - none + + + none diff --git a/fonts/conf.avail/10-scale-bitmap-fonts.conf b/fonts/conf.avail/10-scale-bitmap-fonts.conf new file mode 100644 index 0000000..e3bcd46 --- /dev/null +++ b/fonts/conf.avail/10-scale-bitmap-fonts.conf @@ -0,0 +1,81 @@ + + + + + + + false + + + + pixelsize + pixelsize + + + + + + false + + + + + pixelsizefixupfactor + 1.2 + + + pixelsizefixupfactor + 0.8 + + + + + + + + false + + + 64 + + + true + + + true + + + 1.0 + + + + + + false + + + 1.0 + + + + matrix + + pixelsizefixupfactor 0 + 0 pixelsizefixupfactor + + + + + + size + pixelsizefixupfactor + + + + + diff --git a/fonts/conf.avail/10-sub-pixel-bgr.conf b/fonts/conf.avail/10-sub-pixel-bgr.conf index e1f64fd..1378195 100644 --- a/fonts/conf.avail/10-sub-pixel-bgr.conf +++ b/fonts/conf.avail/10-sub-pixel-bgr.conf @@ -2,7 +2,13 @@ - - bgr + + + bgr diff --git a/fonts/conf.avail/10-sub-pixel-rgb.conf b/fonts/conf.avail/10-sub-pixel-rgb.conf index 2b49fe3..757c3b6 100644 --- a/fonts/conf.avail/10-sub-pixel-rgb.conf +++ b/fonts/conf.avail/10-sub-pixel-rgb.conf @@ -2,7 +2,13 @@ - - rgb + + + rgb diff --git a/fonts/conf.avail/10-sub-pixel-vbgr.conf b/fonts/conf.avail/10-sub-pixel-vbgr.conf index 5947650..c807e5c 100644 --- a/fonts/conf.avail/10-sub-pixel-vbgr.conf +++ b/fonts/conf.avail/10-sub-pixel-vbgr.conf @@ -2,7 +2,13 @@ - - vbgr + + + vbgr diff --git a/fonts/conf.avail/10-sub-pixel-vrgb.conf b/fonts/conf.avail/10-sub-pixel-vrgb.conf index 84481bd..b5985e0 100644 --- a/fonts/conf.avail/10-sub-pixel-vrgb.conf +++ b/fonts/conf.avail/10-sub-pixel-vrgb.conf @@ -2,7 +2,13 @@ - - vrgb + + + vrgb diff --git a/fonts/conf.avail/10-unhinted.conf b/fonts/conf.avail/10-unhinted.conf index 025ae2a..a25e3b1 100644 --- a/fonts/conf.avail/10-unhinted.conf +++ b/fonts/conf.avail/10-unhinted.conf @@ -2,7 +2,13 @@ - - false + + + false diff --git a/fonts/conf.avail/11-lcdfilter-default.conf b/fonts/conf.avail/11-lcdfilter-default.conf new file mode 100644 index 0000000..9d7d11f --- /dev/null +++ b/fonts/conf.avail/11-lcdfilter-default.conf @@ -0,0 +1,16 @@ + + + + + + + + lcddefault + + + diff --git a/fonts/conf.avail/11-lcdfilter-legacy.conf b/fonts/conf.avail/11-lcdfilter-legacy.conf new file mode 100644 index 0000000..7e2b256 --- /dev/null +++ b/fonts/conf.avail/11-lcdfilter-legacy.conf @@ -0,0 +1,16 @@ + + + + + + + + lcdlegacy + + + diff --git a/fonts/conf.avail/11-lcdfilter-light.conf b/fonts/conf.avail/11-lcdfilter-light.conf new file mode 100644 index 0000000..0dd0a90 --- /dev/null +++ b/fonts/conf.avail/11-lcdfilter-light.conf @@ -0,0 +1,16 @@ + + + + + + + + lcdlight + + + diff --git a/fonts/conf.avail/20-fix-globaladvance.conf b/fonts/conf.avail/20-fix-globaladvance.conf deleted file mode 100644 index 2a9c063..0000000 --- a/fonts/conf.avail/20-fix-globaladvance.conf +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - GulimChe - false - - - - DotumChe - false - - - - BatangChe - false - - - - GungsuhChe - false - - diff --git a/fonts/conf.avail/20-unhint-small-vera.conf b/fonts/conf.avail/20-unhint-small-vera.conf index c4ebee9..c9505ca 100644 --- a/fonts/conf.avail/20-unhint-small-vera.conf +++ b/fonts/conf.avail/20-unhint-small-vera.conf @@ -10,7 +10,7 @@ --> - + Bitstream Vera Sans @@ -22,7 +22,7 @@ - + Bitstream Vera Serif @@ -34,7 +34,7 @@ - + Bitstream Vera Sans Mono diff --git a/fonts/conf.avail/25-unhint-nonlatin.conf b/fonts/conf.avail/25-unhint-nonlatin.conf index ffb70c6..9adffa7 100644 --- a/fonts/conf.avail/25-unhint-nonlatin.conf +++ b/fonts/conf.avail/25-unhint-nonlatin.conf @@ -5,7 +5,7 @@ - + Kochi Mincho @@ -13,7 +13,7 @@ - + Kochi Gothic @@ -21,7 +21,7 @@ - + Sazanami Mincho @@ -29,7 +29,7 @@ - + Sazanami Gothic @@ -37,7 +37,7 @@ - + Baekmuk Batang @@ -45,7 +45,7 @@ - + Baekmuk Dotum @@ -53,7 +53,7 @@ - + Baekmuk Gulim @@ -61,7 +61,7 @@ - + Baekmuk Headline @@ -69,7 +69,7 @@ - + AR PL Mingti2L Big5 @@ -77,7 +77,7 @@ - + AR PL ShanHeiSun Uni @@ -85,7 +85,7 @@ - + AR PL KaitiM Big5 @@ -93,7 +93,7 @@ - + AR PL ZenKai Uni @@ -101,7 +101,7 @@ - + AR PL SungtiL GB @@ -109,7 +109,7 @@ - + AR PL KaitiM GB @@ -117,7 +117,7 @@ - + ZYSong18030 diff --git a/fonts/conf.avail/30-metric-aliases.conf b/fonts/conf.avail/30-metric-aliases.conf index 702a495..f25052a 100644 --- a/fonts/conf.avail/30-metric-aliases.conf +++ b/fonts/conf.avail/30-metric-aliases.conf @@ -15,10 +15,12 @@ Microsoft fonts: Arial + Arial Narrow Times New Roman Courier New Liberation fonts: Liberation Sans + Liberation Sans Narrow Liberation Serif Liberation Mono StarOffice fonts: @@ -29,10 +31,14 @@ Albany AMT Thorndale AMT Cumberland AMT + Google CrOS Core fonts: + Arimo + Cousine + Tinos Of these, URW fonts are design compatible with PostScrict fonts, - and the Liberation, StarOffice, and AMT ones are compatible with - Microsoft fonts. + and the Liberation, StarOffice, AMT and CrOS Core ones are + compatible with Microsoft fonts. We want for each of them to fallback to any of these available, but in an order preferring similar designs @@ -74,27 +80,91 @@ + + Arimo + + Arial + + + Liberation Sans + + Arial + + + + + Liberation Sans Narrow + + Arial Narrow + + + + Albany + + Arial + + + + Albany AMT Arial + + Tinos + + Times New Roman + + + Liberation Serif + + Times New Roman + + + + Thorndale + + Times New Roman + + + + Thorndale AMT Times New Roman + + Cousine + + Courier New + + + Liberation Mono + + Courier New + + + + Cumberland + + Courier New + + + + Cumberland AMT Courier New @@ -183,27 +253,37 @@ Arial - Liberation Sans - Albany - Albany AMT + Arimo + Liberation Sans + Albany + Albany AMT + + + + + Arial Narrow + + Liberation Sans Narrow Times New Roman - Liberation Serif - Thorndale - Thorndale AMT + Tinos + Liberation Serif + Thorndale + Thorndale AMT Courier New - Liberation Mono - Cumberland - Cumberland AMT + Cousine + Liberation Mono + Cumberland + Cumberland AMT diff --git a/fonts/conf.avail/30-urw-aliases.conf b/fonts/conf.avail/30-urw-aliases.conf index 8d2b04b..aae06ac 100644 --- a/fonts/conf.avail/30-urw-aliases.conf +++ b/fonts/conf.avail/30-urw-aliases.conf @@ -29,12 +29,8 @@ Zapf Dingbats Dingbats - - ZapfDingbats - Dingbats - - + Symbol diff --git a/fonts/conf.avail/31-cantarell.conf b/fonts/conf.avail/31-cantarell.conf new file mode 100644 index 0000000..2b3ab09 --- /dev/null +++ b/fonts/conf.avail/31-cantarell.conf @@ -0,0 +1,18 @@ + + + + + + + + Cantarell + + + Cantarell + + + diff --git a/fonts/conf.avail/40-nonlatin.conf b/fonts/conf.avail/40-nonlatin.conf index a875db0..c900fd4 100644 --- a/fonts/conf.avail/40-nonlatin.conf +++ b/fonts/conf.avail/40-nonlatin.conf @@ -11,58 +11,187 @@ --> Nazli + serif + + Lotoos + serif + + Mitra + serif + + Ferdosi + serif + + Badr + serif + + Zar + serif + + Titr + serif + + Jadid + serif + + Kochi Mincho + serif + + AR PL SungtiL GB + serif + + AR PL Mingti2L Big5 + serif + + MS 明朝 + serif + + + NanumMyeongjo + serif + + UnBatang + serif + + Baekmuk Batang + serif + + MgOpen Canonica + serif + + Sazanami Mincho + serif + + AR PL ZenKai Uni + serif + + ZYSong18030 + serif + + FreeSerif serif + + SimSun + serif + Arshia + sans-serif + + Elham + sans-serif + + Farnaz + sans-serif + + Nasim + sans-serif + + Sina + sans-serif + + Roya + sans-serif + + Koodak + sans-serif + + Terafik + sans-serif + + Kochi Gothic + sans-serif + + AR PL KaitiM GB + sans-serif + + AR PL KaitiM Big5 + sans-serif + + MS ゴシック + sans-serif + + + NanumGothic + sans-serif + + UnDotum + sans-serif + + Baekmuk Dotum - SimSun + sans-serif + + MgOpen Modata + sans-serif + + Sazanami Gothic + sans-serif + + AR PL ShanHeiSun Uni + sans-serif + + ZYSong18030 + sans-serif + + FreeSans sans-serif - + NSimSun + monospace + + ZYSong18030 + monospace + + + NanumGothicCoding + monospace + + FreeMono monospace @@ -72,8 +201,17 @@ --> Homa + fantasy + + Kamran + fantasy + + Fantezi + fantasy + + Tabassom fantasy @@ -83,6 +221,9 @@ --> IranNastaliq + cursive + + Nafees Nastaleeq cursive diff --git a/fonts/conf.avail/45-latin.conf b/fonts/conf.avail/45-latin.conf index 7e41264..09fd526 100644 --- a/fonts/conf.avail/45-latin.conf +++ b/fonts/conf.avail/45-latin.conf @@ -11,13 +11,37 @@ --> Bitstream Vera Serif + serif + + DejaVu Serif + serif + + Liberation Serif + serif + + Times New Roman + serif + + Times + serif + + Nimbus Roman No9 L + serif + + Luxi Serif + serif + + Thorndale AMT + serif + + Thorndale serif @@ -26,14 +50,41 @@ --> Bitstream Vera Sans + sans-serif + + DejaVu Sans + sans-serif + + Liberation Sans + sans-serif + + Arial + sans-serif + + Helvetica + sans-serif + + Verdana + sans-serif + + Albany AMT + sans-serif + + Albany + sans-serif + + Nimbus Sans L + sans-serif + + Luxi Sans sans-serif @@ -42,15 +93,45 @@ --> Bitstream Vera Sans Mono + monospace + + DejaVu Sans Mono + monospace + + Liberation Mono + monospace + + Inconsolata + monospace + + Courier New + monospace + + Courier + monospace + + Andale Mono + monospace + + Luxi Mono + monospace + + Cumberland AMT + monospace + + Cumberland + monospace + + Nimbus Mono L monospace @@ -59,8 +140,17 @@ --> Impact + fantasy + + Copperplate Gothic Std + fantasy + + Cooper Std + fantasy + + Bauhaus Std fantasy @@ -69,7 +159,13 @@ --> ITC Zapf Chancery Std + cursive + + Zapfino + cursive + + Comic Sans MS cursive diff --git a/fonts/conf.avail/50-user.conf b/fonts/conf.avail/50-user.conf index 3f89012..07c9182 100644 --- a/fonts/conf.avail/50-user.conf +++ b/fonts/conf.avail/50-user.conf @@ -1,7 +1,15 @@ - - ~/.fonts.conf.d - ~/.fonts.conf + + fontconfig/conf.d + fontconfig/fonts.conf + + ~/.fonts.conf.d + ~/.fonts.conf diff --git a/fonts/conf.avail/65-fonts-persian.conf b/fonts/conf.avail/65-fonts-persian.conf index 0033675..ea00661 100644 --- a/fonts/conf.avail/65-fonts-persian.conf +++ b/fonts/conf.avail/65-fonts-persian.conf @@ -181,7 +181,7 @@ - + Elham @@ -190,7 +190,7 @@ - + Homa @@ -199,7 +199,7 @@ - + Koodak @@ -208,7 +208,7 @@ - + Nazli @@ -217,7 +217,7 @@ - + Roya @@ -226,7 +226,7 @@ - + Terafik @@ -235,7 +235,7 @@ - + Titr diff --git a/fonts/conf.avail/65-nonlatin.conf b/fonts/conf.avail/65-nonlatin.conf index 53ac064..9306f74 100644 --- a/fonts/conf.avail/65-nonlatin.conf +++ b/fonts/conf.avail/65-nonlatin.conf @@ -23,8 +23,7 @@ Sampige padmaa Hapax Berbère - MS Gothic - UmePlus P Gothic + MS Mincho SimSun PMingLiu WenQuanYi Zen Hei @@ -43,8 +42,9 @@ AR PL Zenkai Uni MS 明朝 ZYSong18030 - UnBatang - Baekmuk Batang + NanumMyeongjo + UnBatang + Baekmuk Batang KacstQura Frank Ruehl CLM Lohit Bengali @@ -117,9 +117,10 @@ MS ゴシック ZYSong18030 TSCu_Paranar - UnDotum - Baekmuk Dotum - Baekmuk Gulim + NanumGothic + UnDotum + Baekmuk Dotum + Baekmuk Gulim KacstQura Lohit Bengali Lohit Gujarati @@ -160,11 +161,11 @@ AR PL SungtiL GB AR PL Mingti2L Big5 ZYSong18030 - UnBatang - UnDotum - Baekmuk Batang - Baekmuk Dotum - Baekmuk Gulim + NanumGothicCoding + NanumGothic + UnDotum + Baekmuk Dotum + Baekmuk Gulim TlwgTypo TlwgTypist TlwgTypewriter diff --git a/fonts/conf.avail/80-delicious.conf b/fonts/conf.avail/80-delicious.conf index 728f50c..845647b 100644 --- a/fonts/conf.avail/80-delicious.conf +++ b/fonts/conf.avail/80-delicious.conf @@ -5,7 +5,7 @@ - + Delicious diff --git a/fonts/conf.d/10-scale-bitmap-fonts.conf b/fonts/conf.d/10-scale-bitmap-fonts.conf new file mode 120000 index 0000000..56049bc --- /dev/null +++ b/fonts/conf.d/10-scale-bitmap-fonts.conf @@ -0,0 +1 @@ +/etc/fonts/conf.avail/10-scale-bitmap-fonts.conf \ No newline at end of file diff --git a/fonts/conf.d/20-fix-globaladvance.conf b/fonts/conf.d/20-fix-globaladvance.conf deleted file mode 120000 index 8fec131..0000000 --- a/fonts/conf.d/20-fix-globaladvance.conf +++ /dev/null @@ -1 +0,0 @@ -../conf.avail/20-fix-globaladvance.conf \ No newline at end of file diff --git a/fonts/fonts.conf b/fonts/fonts.conf index 059259a..e2d5567 100644 --- a/fonts/fonts.conf +++ b/fonts/fonts.conf @@ -25,6 +25,8 @@ /usr/share/fonts /usr/local/share/fonts + fonts + ~/.fonts - conf.d + /etc/fonts/conf.d /var/cache/fontconfig + fontconfig + ~/.fontconfig diff --git a/fonts/fonts.dtd b/fonts/fonts.dtd deleted file mode 100644 index cbdfdab..0000000 --- a/fonts/fonts.dtd +++ /dev/null @@ -1,224 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/gconf/2/path b/gconf/2/path index 1601065..557e9df 100644 --- a/gconf/2/path +++ b/gconf/2/path @@ -14,11 +14,14 @@ xml:readonly:/etc/gconf/gconf.xml.mandatory include /etc/gconf/2/local-mandatory.path # Now see where users want us to look - basically the user can stick arbitrary -# sources in a ~/.gconf.path file and they're inserted here +# sources in a ~/.config/gconf.path file and they're inserted here +include "$(USERCONFIGDIR)/gconf/path" +# Legacy file location include "$(HOME)/.gconf.path" -# Give users a default storage location, ~/.gconf -xml:readwrite:$(HOME)/.gconf +# Give users a default storage location, +# $(USERCONFIGDIR)/gconf (or $(HOME)/.gconf when it exists, for backward compatibility) +xml:readwrite:$(DEFAULTUSERSOURCE) # Location for system-wide settings that are set by the defaults mechanism xml:readonly:/etc/gconf/gconf.xml.system diff --git a/gconf/gconf.xml.defaults/%gconf-tree-de.xml b/gconf/gconf.xml.defaults/%gconf-tree-de.xml index cf4e49d..2c61588 100644 --- a/gconf/gconf.xml.defaults/%gconf-tree-de.xml +++ b/gconf/gconf.xml.defaults/%gconf-tree-de.xml @@ -7,6 +7,51 @@ Legt fest, ob die Tastenkombinationen deaktiviert sein sollen + + + + Eine Liste der zuletzt gespielten Spiele. + + + + + Eine Liste von Zeichenketten in Form eines Quintupels: Name, gewonnen, Gesamtanzahl der Spiele, Bestzeit (in Sekunden) sowie schlechteste Zeit (ebenfalls in Sekunden). Nicht gespielte Spiele müssen nicht aufgeführt werden. + + + + + Der Name der Schema-Datei, die das zu spielende Solitaire-Spiel enthält. + + + + + Legt fest, ob das Bewegen von Karten animiert wird. + + + + + Legt fest, ob bei bestimmten Ereignissen Klänge abgespielt werden. + + + + + Dieser Schlüssel legt fest, ob die Karten per Ziehen-und-Ablegen oder per Anklicken gelegt werden sollen. + + + + + + + + + + + + + Der Name der Datei, die die grafische Gestaltung der Karten festlegt. + + + @@ -1253,13 +1298,18 @@ + + + Der GStreamer-Medientyp, in den enkodiert werden soll. + + - - Das GNOME-Audioprofil welches zum Kodieren von Audiodaten verwendet werden soll. + + Dieser Schlüssel gibt das GNOME-Audioprofil an, das als Ziel der Enkodierung verwendet werden soll. Dies wurde durch GSteamer-Enkodierungsprofile abgelöst, welche im Schlüssel »audio_profile_media_type« festgelegt werden.c @@ -1279,12 +1329,12 @@ - Keine Erweiterung angeben. %at -- Albentitel %aT -- Albentitel (Kleinschreibung) %aa -- Albeninterpret %aA -- Albeninterpret (Kleinschreibung) %as -- Albeninterpret (sortierbar, Kleinschreibung) %aS -- Albeninterpret (sortierbar, Kleinschreibung) %tn -- Titelnummer (z.B. 8) %tN -- Titelnummer, vorangestellte Null (z.B. 08) %tt -- Titelname %tT -- Titelname (Kleinschreibung) %ta -- Titelinterpret %tA -- Titelinterpret (Kleinschreibung)%ts -- Titelinterpret (sortierbar) %tS -- Titelinterpret (sortierbar, Kleinschreibung) %dn -- CD- und Titelnummer (z.B. CD 2 - 6, oder 6) %dN -- CD-Nummer, vorangestellte Null (z.B. d02t06 oder 06) + Keine Erweiterung angeben. %at -- Albentitel %aT -- Albentitel (Kleinschreibung) %aa -- Albeninterpret %aA -- Albeninterpret (Kleinschreibung) %as -- Albeninterpret (sortierbar, Kleinschreibung) %aS -- Albeninterpret (sortierbar, Kleinschreibung) %ac -- Albenkomponist %aC -- Albenkomponist (Kleinschreibung) %ap -- Albenkomponist (sortierbar) %aP -- Albenkomponist (sortierbar Kleinschreibung) %tn -- Titelnummer (z.B. »8«) %tN -- Titelnummer, vorangestellte Null (z.B. 08) %tt -- Titelname %tT -- Titelname (Kleinschreibung) %ta -- Titelinterpret %tA -- Titelinterpret (Kleinschreibung) %ts -- Titelinterpret (sortierbar) %tS -- Titelinterpret (sortierbar, Kleinschreibung) %tc -- Titelkomponist %tC -- Titelkomponist (Kleinschreibung) %tp -- Titelkomponist (sortierbar) %tP -- Titelkomponist (sortierbar, Kleinschreibung) %dn -- CD- und Titelnummer (z.B. »CD 2 - 06«, oder »06«) %dN -- CD-Nummer, vorangestellte Null (z.B. »d02t06« oder »06«) - %at -- Albentitel %aT -- Albentitel (Kleinschreibung) %aa -- Albeninterpret %aA -- Albeninterpret (Kleinschreibung) %as -- Albeninterpret (sortierbar) %aS -- Albeninterpret (sortierbar, Kleinschreibung) %ay -- Albenjahr %tt -- Titelname %tT -- Titelname (Kleinschreibung) %ta -- Titelinterpret %tA -- Titelinterpret (Kleinschreibung) %ts -- Titelinterpret (sortierbar) %tS -- Titelinterpret (sortierbar, Kleinschreibung) + %at -- Albentitel %aT -- Albentitel (Kleinschreibung) %aa -- Albeninterpret %aA -- Albeninterpret (Kleinschreibung) %as -- Albeninterpret (sortierbar, Kleinschreibung) %aS -- Albeninterpret (sortierbar, Kleinschreibung) %ac -- Albenkomponist %aC -- Albenkomponist (Kleinschreibung) %ap -- Albenkomponist (sortierbar) %aP -- Albenkomponist (sortierbar, Kleinschreibung) %ay -- Albenjahr %tt -- Titelname %tT -- Titelname (Kleinschreibung) %ta -- Titelinterpret %tA -- Titelinterpret (Kleinschreibung) %ts -- Titelinterpret (sortierbar) %tS -- Titelinterpret (sortierbar, Kleinschreibung) %tc -- Titelkomponist %tC -- Titelkomponist (Kleinschreibung) %tp -- Titelkomponist (sortierbar) %tP -- Titelkomponist (sortierbar, Kleinschreibung) @@ -6867,6 +6917,117 @@ z.B. »Sans Italic 10«. + + + + + Name der benutzerdefinierten Schriftart für Sprach-Panel + + + + + Benutzerdefinierte Schriftart für Sprach-Panel verwenden + + + + + Name der Eingabemethode auf Sprachleiste anzeigen + + + + + Symbol im Benachrichtigungsfeld anzeigen + + + + + Ausrichtung der Lookup-Tabelle. 0 = Horizontal, 1 = Vertikal + + + + + + + + + + + + + Verhalten des Sprach-Panels: 0 = Im Menü einbetten, 1 = Automatisch verstecken, 2 = Immer anzeigen + + + + + + + Eingabemethode standardmäßig aktivieren, wenn die Anwendung Eingabefokus erlangt + + + + + Dieselbe Eingabemethode für alle Anwendungen verwenden + + + + + Preedit-Text in Anwendungsfenster einbetten + + + + + System-Tastatur (XKB) Belegung verwenden + + + + + Engines vorladen, während IBus startet + + + + + + Tastenkombination zum Wechseln zur vorherigen Eingabemethode + + + + + Tastenkombination zum Wechseln zur vorherigen Eingabemethode + + + + + Tastenkombination zum Wechseln zur nächsten Eingabemethode in der Liste + + + + + Tastenkombination zum Wechseln zur nächsten Eingabemethode in der Liste + + + + + Tastenkürzel zum Ausschalten der Eingabemethoden + + + + + Tastenkürzel zum Einschalten der Eingabemethoden + + + + + Tastenkombination zum An- oder Ausschalten der Eingabemethode + + + + + Tastenkombination zum An- oder Ausschalten der Eingabemethode + + + + + diff --git a/gconf/gconf.xml.defaults/%gconf-tree-en_GB.xml b/gconf/gconf.xml.defaults/%gconf-tree-en_GB.xml index 5d5aefd..8b9aacf 100644 --- a/gconf/gconf.xml.defaults/%gconf-tree-en_GB.xml +++ b/gconf/gconf.xml.defaults/%gconf-tree-en_GB.xml @@ -7,6 +7,51 @@ Whether to disable the keyboard shortcuts + + + + A list of recently played games. + + + + + A list of strings that come in the form of a quintuple: name, wins, total games played, best time (in seconds) and worst time (also in seconds). Unplayed games do not need to be represented. + + + + + The name of the scheme file containing the solitaire game to play. + + + + + Whether to animate card moves. + + + + + Whether to play event sounds. + + + + + Select whether to drag the cards or to click on the source then the destination. + + + + + + + + + + + + + The name of the file with the graphics for the cards. + + + @@ -1279,12 +1324,10 @@ - Do not specify an extension. %at -- album title %aT -- album title (lowercase) %aa -- album artist %aA -- album artist (lowercase) %as -- album artist (sortable) %aS -- album artist (sortable lowercase) %tn -- track number (i.e 8) %tN -- track number, zero padded (i.e 08) %tt -- track title %tT -- track title (lowercase) %ta -- track artist %tA -- track artist (lowercase) %ts -- track artist (sortable) %tS -- track artist (sortable lowercase) %dn -- disc and track number (i.e. Disk 2 - 6, or 6) %dN -- disc number, zero padded (i.e d02t06, or 06) - %at -- album title %aT -- album title (lowercase) %aa -- album artist %aA -- album artist (lowercase) %as -- album artist (sortable) %aS -- album artist (sortable lowercase) %ay -- album year %tt -- track title %tT -- track title (lowercase) %ta -- track artist %tA -- track artist (lowercase) %ts -- track artist (sortable) %tS -- track artist (sortable lowercase) @@ -6844,6 +6887,117 @@ + + + + + Custom font name for language panel + + + + + Use custom font name for language panel + + + + + Show input method name on language bar + + + + + Show icon on system tray + + + + + Orientation of lookup table. 0 = Horizontal, 1 = Vertical + + + + + + + + + + + + + The behaviour of language panel. 0 = Embedded in menu, 1 = Auto hide, 2 = Always show + + + + + + + Enable input method by default when the application gets input focus + + + + + Share the same input method among all applications + + + + + Embed Pre-edit Text in Application Window + + + + + Use system keyboard (XKB) layout + + + + + Preload engines during ibus starts up + + + + + + The shortcut keys for switching to the previous input method + + + + + The shortcut keys for switching to the previous input method + + + + + The shortcut keys for switching to the next input method in the list + + + + + The shortcut keys for switching to the next input method in the list + + + + + The shortcut keys for turning input method off + + + + + The shortcut keys for turning input method on + + + + + The shortcut keys for turning input method on or off + + + + + The shortcut keys for turning input method on or off + + + + + diff --git a/gconf/gconf.xml.defaults/%gconf-tree-ru.xml b/gconf/gconf.xml.defaults/%gconf-tree-ru.xml index 3d708ce..15cc1d8 100644 --- a/gconf/gconf.xml.defaults/%gconf-tree-ru.xml +++ b/gconf/gconf.xml.defaults/%gconf-tree-ru.xml @@ -7,6 +7,51 @@ Отключить комбинации клавиш или нет + + + + Список недавно сыгранных пасьянсов. + + + + + Список строк, которые содержат четверки - имя игры, победы, количество игр, лучшее время в секундах и худшее время тоже в секундах.Игры, в которые не играли, могут отсутствовать. + + + + + Название файла схем, содержащего нужный пасьянс. + + + + + Использовать ли анимацию карточных перемещений. + + + + + Воспроизводить звуки событий или нет. + + + + + Нужно ли перетаскивать карты мышью или указывать место, откуда карта берётся и куда кладется. + + + + + + + + + + + + + Имя файла с изображениями карт. + + + @@ -1253,13 +1298,18 @@ + + + Медиатип GStreamer для кодирования. + + - - Звуковой профиль GNOME для кодирования звука. + + Это ключ используется для хранения звукового профиля GNOME, который будет применяться для кодирования. Заменяется профилями кодирования GStreamer, которые настраиваются ключом audio_profile_media_type. @@ -1279,12 +1329,12 @@ - Не указывайте расширение. %at — название альбома; %aT — название альбома в нижнем регистре; %aa — исполнитель альбома; %aA — исполнитель альбома в нижнем регистре; %as — исполнитель альбома (для упорядочивания); %aS — исполнитель альбома в нижнем регистре (для упорядочивания); %tn — номер дорожки; %tN — номер дорожки; %tt — название дорожки; %tT — название дорожки в нижнем регистре; %ta — исполнитель дорожки; %tA — исполнитель дорожки в нижнем регистре; %ts — исполнитель дорожки (для упорядочивания); %tS — исполнитель дорожки в нижнем регистре (для упорядочивания); %dn — номер диска и дорожки (например, Диск 2 - 6, или просто 6); %dN — номер диска, дополненный нулями (например, d02t06 или 06). + Не указывайте расширение. %at — название альбома; %aT — название альбома в нижнем регистре; %aa — исполнитель альбома; %aA — исполнитель альбома в нижнем регистре; %as — исполнитель альбома (упорядочиваемый); %aS — исполнитель альбома (в нижнем регистре, упорядочиваемый); %ac — композитор альбома; %ac — композитор альбома (в нижнем регистре); %ap — композитор альбома (упорядочиваемый); %aP — композитор альбома (в нижнем регистре, упорядочиваемый);%tn — номер дорожки (например, «8»); %tN — номер дорожки с добавлением нулей (например, «08»); %tt — название дорожки; %tT — название дорожки (в нижнем регистре); %ta — исполнитель дорожки; %tA — исполнитель дорожки (в нижнем регистре); %ts — исполнитель дорожки (упорядочиваемый); %tS — исполнитель дорожки (в нижнем регистре, упорядочиваемый); %tc — композитор дорожки; %tC — композитор дорожки (в нижнем регистре); %tp — композитор дорожки (упорядочиваемый); %tP — композитор дорожки (в нижнем регистре, упорядочиваемый); %dn — номер диска и дорожки (например, «Диск 2 - 06», или просто «06»); %dN — номер диска, дополненный нулями (например, «d02t06» или «06»). - %at — название альбома; %aT — название альбома в нижнем регистре; %aa — исполнитель альбома; %aA — исполнитель альбома в нижнем регистре; %as — исполнитель альбома (для упорядочивания); %aS — исполнитель альбома в нижнем регистре (для упорядочивания); %ay — год альбома; %tt — название дорожки; %tT — название дорожки в нижнем регистре; %ta — исполнитель дорожки; %tA — исполнитель дорожки в нижнем регистре; %ts — исполнитель дорожки (для упорядочивания); %tS — исполнитель дорожки в нижнем регистре (для упорядочивания) + %at — название альбома; %aT — название альбома (в нижнем регистре); %aa — исполнитель альбома; %aA — исполнитель альбома (в нижнем регистре); %as — исполнитель альбома (упорядочиваемый); %aS — исполнитель альбома (в нижнем регистре, упорядочиваемый); %ac — композитор альбома; %ac — композитор альбома (в нижнем регистре); %ap — композитор альбома (упорядочиваемый); %aP — композитор альбома (в нижнем регистре, упорядочиваемый); %ay — год выпуска альбома; %tt — название дорожки; %tT — название дорожки (в нижнем регистре); %ta — исполнитель дорожки; %tA — исполнитель дорожки (в нижнем регистре); %ts — исполнитель дорожки (упорядочиваемый); %tS — исполнитель дорожки (в нижнем регистре, упорядочиваемый); %tc — композитор дорожки; %tC — композитор дорожки (в нижнем регистре); %tp — композитор дорожки (упорядочиваемый); %tP — композитор дорожки (в нижнем регистре, упорядочиваемый) @@ -6861,6 +6911,107 @@ + + + + + Свой шрифт для языковой панели + + + + + Использовать свой шрифт для языковой панели + + + + + Показывать название метода ввода на языковой панели + + + + + Показать значок в области уведомлений + + + + + Ориентация таблицы: 0 = горизонтально, 1 = вертикально. + + + + + + + + + + + + + Поведение языковой панели: 0 = встроена в меню, 1 = автоматически скрывать, 2 = всегда показывать + + + + + + + Включить метод ввода по умолчанию при получении приложением фокуса ввода + + + + + Использовать один метод ввода для всех приложений + + + + + Вставить готовый текст в окно приложения + + + + + Использовать системную раскладку (XKB) + + + + + Загружать методы ввода при запуске iBus + + + + + + Сочетание клавиш для переключения на предыдущий метод ввода в списке: + + + + + Сочетание клавиш для переключения на предыдущий метод ввода в списке: + + + + + Сочетание клавиш для переключения на следующий метод ввода в списке: + + + + + Сочетание клавиш для переключения на следующий метод ввода в списке: + + + + + Сочетание клавиш для включения/выключения метода ввода + + + + + Сочетание клавиш для включения/выключения метода ввода + + + + + diff --git a/gconf/gconf.xml.defaults/%gconf-tree.xml b/gconf/gconf.xml.defaults/%gconf-tree.xml index de82224..fffa858 100644 --- a/gconf/gconf.xml.defaults/%gconf-tree.xml +++ b/gconf/gconf.xml.defaults/%gconf-tree.xml @@ -1,6 +1,17 @@ + + + + + + + + + + + @@ -306,18 +317,19 @@ - - - - - - - - - - - - + + + + + + + + + + + + + @@ -1404,7 +1416,7 @@ - + @@ -2197,6 +2209,66 @@ Whether to disable the keyboard shortcuts + + + + + + A list of recently played games. + + + + + + + A list of strings that come in the form of a quintuple: name, wins, total games played, best time (in seconds) and worst time (also in seconds). Unplayed games do not need to be represented. + + + + + + klondike.scm + + The name of the scheme file containing the solitaire game to play. + + + + + + Whether or not to animate card moves. + + + + + + Whether or not to play event sounds. + + + + + + Select whether to drag the cards or to click on the source then the destination. + + + + + + + + + + + + + + + + + + The name of the file with the graphics for the cards. + + + @@ -4063,22 +4135,34 @@ - + + + + audio/x-vorbis + + + The GStreamer media type to encode to. + + + + - - + + cdlossy - The GNOME Audio Profile with which to encode. + This key used to store the GNOME Audio Profile with which to encode. + This has been superseded by GStreamer encoding profiles, which are + configured using the audio_profile_media_type key. - + If specified, this value will override the default MusicBrainz @@ -4086,7 +4170,7 @@ - + @@ -4095,7 +4179,7 @@ - + @@ -4103,7 +4187,7 @@ - + %dn - %tt @@ -4116,6 +4200,10 @@ %aA -- album artist (lowercase) %as -- album artist (sortable) %aS -- album artist (sortable lowercase) + %ac -- album composer + %aC -- album composer (lowercase) + %ap -- album composer (sortable) + %aP -- album composer (sortable lowercase) %tn -- track number (i.e 8) %tN -- track number, zero padded (i.e 08) %tt -- track title @@ -4124,12 +4212,16 @@ %tA -- track artist (lowercase) %ts -- track artist (sortable) %tS -- track artist (sortable lowercase) - %dn -- disc and track number (i.e Disk 2 - 6, or 6) - %dN -- disc number, zero padded (i.e d02t06, or 06) + %tc -- track composer + %tC -- track composer (lowercase) + %tp -- track composer (sortable) + %tP -- track composer (sortable lowercase) + %dn -- disc and track number, track zero padded (i.e Disk 2 - 06, or 06) + %dN -- condensed disc and track number, zero padded (i.e d02t06, or 06) - + %aa/%at @@ -4141,6 +4233,10 @@ %aA -- album artist (lowercase) %as -- album artist (sortable) %aS -- album artist (sortable lowercase) + %ac -- album composer + %aC -- album composer (lowercase) + %ap -- album composer (sortable) + %aP -- album composer (sortable lowercase) %ay -- album year %tt -- track title %tT -- track title (lowercase) @@ -4148,28 +4244,32 @@ %tA -- track artist (lowercase) %ts -- track artist (sortable) %tS -- track artist (sortable lowercase) + %tc -- track composer + %tC -- track composer (lowercase) + %tp -- track composer (sortable) + %tP -- track composer (sortable lowercase) - + - + - + - + - + @@ -10971,7 +11071,7 @@ The parser is fairly liberal and allows lower or upper case, and also abbreviati - + @@ -16188,6 +16288,211 @@ The parser is fairly liberal and allows lower or upper case, and also abbreviati + + + + + + Sans 10 + + Custom font name for language panel + + + + + + Use custom font name for language panel + + + + + + Show input method name on language bar + + + + + + Show icon on system tray + + + + + + Orientation of lookup table. 0 = Horizontal, 1 = Vertical + + + + + + + + + + + + + + + + The behavior of language panel. 0 = Embedded in menu, 1 = Auto hide, 2 = Always show + + + + + + + +
  • + /desktop/ibus/engine/pinyin +
  • +
  • + /desktop/ibus/engine/bopomofo +
  • +
  • + /desktop/ibus/engine/hangul +
  • +
    + Prefixes of DConf keys to stop name conversion +
    +
    + + + + Enable input method by default when the application gets input + focus + + + + + + Share the same input method among all applications + + + + + + Embed Preedit Text in Application Window + + + + + + Use system keyboard (XKB) layout + + + + + + Set popup delay milliseconds to show IME switcher window. + The default is 400. + 0 = Show the window immediately. + 0 < Delay milliseconds. + 0 > Do not show the window and switch prev/next engines. + + + + + + + + Saved engines order in input method list + + + + + + + Preload engines during ibus starts up + + + + + + + + The shortcut keys for switching to the previous input method + + + + + + + The shortcut keys for switching to the previous input method + + + + + +
  • + Alt+Shift_L +
  • +
    + The shortcut keys for switching to the next input method in the list +
    +
    + + + +
  • + Alt+Shift_L +
  • +
    + The shortcut keys for switching to the next input method in the list +
    +
    + + + + + The shortcut keys for turning input method off + + + + + + + The shortcut keys for turning input method on + + + + + +
  • + <Control>space +
  • +
    + The shortcut keys for turning input method on or off +
    +
    + + + +
  • + Control+space +
  • +
  • + Zenkaku_Hankaku +
  • +
  • + Alt+Kanji +
  • +
  • + Alt+grave +
  • +
  • + Hangul +
  • +
  • + Alt+Release+Alt_R +
  • +
    + The shortcut keys for turning input method on or off +
    +
    +
    +
    +
    @@ -19861,13 +20166,13 @@ The parser is fairly liberal and allows lower or upper case, and also abbreviati - + True if the command used to handle this type of URL should be run in a terminal. - + purple-url-handler "%s" @@ -19875,7 +20180,7 @@ The parser is fairly liberal and allows lower or upper case, and also abbreviati The command used to handle "ymsgr" URLs, if enabled. - + True if the command specified in the "command" key should handle "ymsgr" URLs. @@ -19883,13 +20188,13 @@ The parser is fairly liberal and allows lower or upper case, and also abbreviati - + True if the command used to handle this type of URL should be run in a terminal. - + purple-url-handler "%s" @@ -19897,7 +20202,7 @@ The parser is fairly liberal and allows lower or upper case, and also abbreviati The command used to handle "xmpp" URLs, if enabled. - + True if the command specified in the "command" key should handle "xmpp" URLs. @@ -19905,13 +20210,13 @@ The parser is fairly liberal and allows lower or upper case, and also abbreviati - + True if the command used to handle this type of URL should be run in a terminal. - + purple-url-handler "%s" @@ -19919,7 +20224,7 @@ The parser is fairly liberal and allows lower or upper case, and also abbreviati The command used to handle "sip" URLs, if enabled. - + True if the command specified in the "command" key should handle "sip" URLs. @@ -19927,13 +20232,13 @@ The parser is fairly liberal and allows lower or upper case, and also abbreviati - + True if the command used to handle this type of URL should be run in a terminal. - + purple-url-handler "%s" @@ -19941,7 +20246,7 @@ The parser is fairly liberal and allows lower or upper case, and also abbreviati The command used to handle "msnim" URLs, if enabled. - + True if the command specified in the "command" key should handle "msnim" URLs. @@ -19949,13 +20254,13 @@ The parser is fairly liberal and allows lower or upper case, and also abbreviati - + True if the command used to handle this type of URL should be run in a terminal. - + purple-url-handler "%s" @@ -19963,7 +20268,7 @@ The parser is fairly liberal and allows lower or upper case, and also abbreviati The command used to handle "irc" URLs, if enabled. - + True if the command specified in the "command" key should handle "irc" URLs. @@ -19971,13 +20276,13 @@ The parser is fairly liberal and allows lower or upper case, and also abbreviati - + True if the command used to handle this type of URL should be run in a terminal. - + purple-url-handler "%s" @@ -19985,7 +20290,7 @@ The parser is fairly liberal and allows lower or upper case, and also abbreviati The command used to handle "icq" URLs, if enabled. - + True if the command specified in the "command" key should handle "icq" URLs. @@ -19993,13 +20298,13 @@ The parser is fairly liberal and allows lower or upper case, and also abbreviati - + True if the command used to handle this type of URL should be run in a terminal. - + purple-url-handler "%s" @@ -20007,7 +20312,7 @@ The parser is fairly liberal and allows lower or upper case, and also abbreviati The command used to handle "gg" URLs, if enabled. - + True if the command specified in the "command" key should handle "gg" URLs. @@ -20059,13 +20364,13 @@ The parser is fairly liberal and allows lower or upper case, and also abbreviati - + True if the command used to handle this type of URL should be run in a terminal. - + purple-url-handler "%s" @@ -20073,7 +20378,7 @@ The parser is fairly liberal and allows lower or upper case, and also abbreviati The command used to handle "aim" URLs, if enabled. - + True if the command specified in the "command" key should handle "aim" URLs. @@ -20416,6 +20721,38 @@ The parser is fairly liberal and allows lower or upper case, and also abbreviati
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -21271,39 +21608,39 @@ The parser is fairly liberal and allows lower or upper case, and also abbreviati - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + @@ -21316,9 +21653,9 @@ The parser is fairly liberal and allows lower or upper case, and also abbreviati - - - + + + diff --git a/gconf/schemas/aisleriot.schemas b/gconf/schemas/aisleriot.schemas new file mode 100644 index 0000000..40a9e48 --- /dev/null +++ b/gconf/schemas/aisleriot.schemas @@ -0,0 +1,244 @@ + + + + + /schemas/apps/aisleriot/card_style + /apps/aisleriot/card_style + aisleriot + string + + + Theme file name + The name of the file with the graphics for the cards. + + + + Name der Themadatei + Der Name der Datei, die die grafische Gestaltung der Karten festlegt. + + + + Theme file name + The name of the file with the graphics for the cards. + + + + Имя файла темы + Имя файла с изображениями карт. + + + + + /schemas/apps/aisleriot/show_toolbar + /apps/aisleriot/show_toolbar + aisleriot + bool + TRUE + + Whether or not to show the toolbar + + + + Legt fest, ob die Werkzeugleiste angezeigt wird + + + + Whether to show the toolbar + + + + Показать или скрыть панель инструментов + + + + + /schemas/apps/aisleriot/show_statusbar + /apps/aisleriot/show_statusbar + aisleriot + bool + TRUE + + Whether or not to show the status bar + + + + Legt fest, ob die Statusleiste angezeigt wird + + + + Whether to show the status bar + + + + Показать или скрыть строку состояния + + + + + /schemas/apps/aisleriot/click_to_move + /apps/aisleriot/click_to_move + aisleriot + bool + FALSE + + Select the style of control + Select whether to drag the cards or to click on the source then the destination. + + + + Legemodus wählen + Dieser Schlüssel legt fest, ob die Karten per Ziehen-und-Ablegen oder per Anklicken gelegt werden sollen. + + + + Select the style of control + Select whether to drag the cards or to click on the source then the destination. + + + + Выбор стиля управления + Нужно ли перетаскивать карты мышью или указывать место, откуда карта берётся и куда кладется. + + + + + /schemas/apps/aisleriot/sound + /apps/aisleriot/sound + aisleriot + bool + FALSE + + Sound + Whether or not to play event sounds. + + + + Ton + Legt fest, ob bei bestimmten Ereignissen Klänge abgespielt werden. + + + + Sound + Whether to play event sounds. + + + + Звук + Воспроизводить звуки событий или нет. + + + + + + /schemas/apps/aisleriot/animations + /apps/aisleriot/animations + aisleriot + bool + true + + Animations + Whether or not to animate card moves. + + + + Animationen + Legt fest, ob das Bewegen von Karten animiert wird. + + + + Animations + Whether to animate card moves. + + + + Анимация + Использовать ли анимацию карточных перемещений. + + + + + + /schemas/apps/aisleriot/game_file + /apps/aisleriot/game_file + aisleriot + string + klondike.scm + + The game file to use + The name of the scheme file containing the solitaire game to play. + + + + Zu verwendende Spieldatei + Der Name der Schema-Datei, die das zu spielende Solitaire-Spiel enthält. + + + + The game file to use + The name of the scheme file containing the solitaire game to play. + + + + Используемый файл игры + Название файла схем, содержащего нужный пасьянс. + + + + + /schemas/apps/aisleriot/statistics + /apps/aisleriot/statistics + aisleriot + list + string + [] + + Statistics of games played + A list of strings that come in the form of a quintuple: name, wins, total games played, best time (in seconds) and worst time (also in seconds). Unplayed games do not need to be represented. + + + + Statistik zu früheren Spielen + Eine Liste von Zeichenketten in Form eines Quintupels: Name, gewonnen, Gesamtanzahl der Spiele, Bestzeit (in Sekunden) sowie schlechteste Zeit (ebenfalls in Sekunden). Nicht gespielte Spiele müssen nicht aufgeführt werden. + + + + Statistics of games played + A list of strings that come in the form of a quintuple: name, wins, total games played, best time (in seconds) and worst time (also in seconds). Unplayed games do not need to be represented. + + + + Статистика сыгранных игр + Список строк, которые содержат четверки - имя игры, победы, количество игр, лучшее время в секундах и худшее время тоже в секундах.Игры, в которые не играли, могут отсутствовать. + + + + + /schemas/apps/aisleriot/recent_games_list + /apps/aisleriot/recent_games_list + aisleriot + list + string + [] + + Recently played games + A list of recently played games. + + + + Zuletzt gespielte Spiele + Eine Liste der zuletzt gespielten Spiele. + + + + Recently played games + A list of recently played games. + + + + Недавние пасьянсы + Список недавно сыгранных пасьянсов. + + + + + diff --git a/gconf/schemas/apps-evolution-attachment-reminder.schemas b/gconf/schemas/apps-evolution-attachment-reminder.schemas deleted file mode 100644 index cce8e73..0000000 --- a/gconf/schemas/apps-evolution-attachment-reminder.schemas +++ /dev/null @@ -1,41 +0,0 @@ - - - - /schemas/apps/evolution/mail/attachment_reminder_clues - /apps/evolution/mail/attachment_reminder_clues - evolution-mail - list - string - - - - [attachment,attaching,attached,enclosed] - - List of clues for the attachment reminder plugin to look for - in a message body - - List of clues for the attachment reminder plugin to look for - in a message body - - - - - Liste der Begriffe, nach denen die Anlagenerinnerung im Text der Nachricht sucht - Liste der Begriffe, nach denen die Anlagenerinnerung im Text der Nachricht sucht - - - - List of clues for the attachment reminder plugin to look for in a message body - List of clues for the attachment reminder plugin to look for in a message body - - - - Список ключей для модуля уведомления о забытых вложениях для поиска в теле письма - Список ключей для модуля уведомления о забытых вложениях для поиска в теле письма - - - - - diff --git a/gconf/schemas/apps-evolution-external-editor.schemas b/gconf/schemas/apps-evolution-external-editor.schemas deleted file mode 100644 index 1430176..0000000 --- a/gconf/schemas/apps-evolution-external-editor.schemas +++ /dev/null @@ -1,58 +0,0 @@ - - - - /schemas/apps/evolution/eplugin/external-editor/editor-command - /apps/evolution/eplugin/external-editor/editor-command - evolution-mail - string - gedit - - Default External Editor - The default command that must be used as the editor. - - - - Vorgabe für externen Editor - Der Befehl, der als Editor verwendet werden muss. - - - - Default External Editor - The default command that must be used as the editor. - - - - Внешний редактор по умолчанию - Команда для запуска редактора по умолчанию. - - - - - /schemas/apps/evolution/eplugin/external-editor/launch-on-key-press - /apps/evolution/eplugin/external-editor/launch-on-key-press - evolution-mail - bool - false - - Automatically launch when a new mail is edited - Automatically launch editor when key is pressed in the mail composer - - - - Automatisch beim Bearbeiten einer neuen E-Mail starten - Automatisch den Editor bei Tastendruck beim Verfassen einer Nachricht starten - - - - Automatically launch when a new mail is edited - Automatically launch editor when key is pressed in the mail composer - - - - Запускать автоматически при редактировании нового сообщения - Автоматически запускать редактор при нажатии кнопки в окне составления сообщений - - - - - diff --git a/gconf/schemas/apps-evolution-mail-notification.schemas b/gconf/schemas/apps-evolution-mail-notification.schemas deleted file mode 100644 index aef2e04..0000000 --- a/gconf/schemas/apps-evolution-mail-notification.schemas +++ /dev/null @@ -1,216 +0,0 @@ - - - - /schemas/apps/evolution/eplugin/mail-notification/notify-only-inbox - /apps/evolution/eplugin/mail-notification/notify-only-inbox - evolution-mail - bool - true - - Notify new messages for Inbox only. - Whether to notify new messages in Inbox folder only. - - - - Nur über neue Nachrichten im Eingangsordner benachrichtigen. - Legt fest, ob nur über Nachrichten im Eingangsordner benachrichtigt werden soll. - - - - Notify new messages for Inbox only. - Whether to notify new messages in Inbox folder only. - - - - Оповещать о новых сообщениях только во «Входящих» - Оповещать ли о новых сообщениях только в папке «Входящие». - - - - - /schemas/apps/evolution/eplugin/mail-notification/dbus-enabled - /apps/evolution/eplugin/mail-notification/dbus-enabled - evolution-mail - bool - true - - Enable D-Bus messages. - Generates a D-Bus message when new mail messages arrive. - - - - Aktiviert D-Bus-Nachrichten. - Erzeugung einer D-Bus-Nachricht, wenn eine neue E-Mail eintrifft. - - - - Enable D-Bus messages. - Generates a D-Bus message when new mail messages arrive. - - - - Включить сообщения D-Bus. - Генерирует сообщение D-BUS при приходе новой почты. - - - - - /schemas/apps/evolution/eplugin/mail-notification/status-enabled - /apps/evolution/eplugin/mail-notification/status-enabled - evolution-mail - bool - true - - Enable icon in notification area. - Show new mail icon in notification area when new messages arrive. - - - - Symbol im Benachrichtigungsfeld aktivieren. - Symbol im Benachrichtigungsfeld beim Eintreffen neuer E-Mails anzeigen. - - - - Enable icon in notification area. - Show new mail icon in notification area when new messages arrive. - - - - Включить значок в области уведомления. - Извещает пользователя о появлении новой почты значком в области уведомлений. - - - - /schemas/apps/evolution/eplugin/mail-notification/status-notification - /apps/evolution/eplugin/mail-notification/status-notification - evolution-mail - bool - true - - Popup message together with the icon. - Whether show message over the icon when new messages arrive. - - - - Popup-Fenster zusammen mit dem Symbol anzeigen. - Legt fest, ob eine Popup-Nachricht zusammen mit dem Symbol angezeigt werden soll, wenn neue Nachrichten eintreffen. - - - - Popup message together with the icon. - Whether show message over the icon when new messages arrive. - - - - Всплывающие сообщения вместе со значком. - Показывать ли сообщение над значком при получении новых сообщений. - - - - - /schemas/apps/evolution/eplugin/mail-notification/sound-enabled - /apps/evolution/eplugin/mail-notification/sound-enabled - evolution-mail - bool - true - - Play sound when new messages arrive. - Whether play sound or beep when new messages arrive. - - - - Beim Eintreffen neuer E-Mails Klang abspielen - Legt fest, ob eine Klangdatei abgespielt oder ein Signalton ausgegeben wird, wenn neue Nachrichten eintreffen. - - - - Play sound when new messages arrive. - Whether play sound or beep when new messages arrive. - - - - Воспроизводить звуковой файл при приходе новой почты. - Воспроизводить ли звук или подавать гудок при получении новых сообщений. - - - - /schemas/apps/evolution/eplugin/mail-notification/sound-beep - /apps/evolution/eplugin/mail-notification/sound-beep - evolution-mail - bool - true - - Beep or play sound file. - If "true", then beep, otherwise will play sound file when new messages arrive. - - - - Signalton ausgeben oder Klangdatei abspielen. - Legt fest, ob beim Eintreffen neuer Nachrichten ein Signalton ausgegeben wird (»TRUE«) oder eine Klangdatei abgespielt wird (»FALSE«). - - - - Beep or play sound file. - If "true", then beep, otherwise will play sound file when new messages arrive. - - - - Подавать звуковой сигнал или воспроизводить звуковой файл. - Если этот ключ установлен, то подавать гудок, иначе проигрывать звуковой файл при поступлении новых сообщений. - - - - /schemas/apps/evolution/eplugin/mail-notification/sound-file - /apps/evolution/eplugin/mail-notification/sound-file - evolution-mail - string - - - Sound file name to be played. - Sound file to be played when new messages arrive, if not in beep mode. - - - - Name der abzuspielenden Klangdatei. - Die beim Eintreffen neuer Nachrichten abzuspielende Klangdatei, falls nicht im Signalton-Modus. - - - - Sound file name to be played. - Sound file to be played when new messages arrive, if not in beep mode. - - - - Имя звукового файла, который надо проигрывать. - Звуковой файл, воспроизводимый при приходе новой почты, если не включён режим гудка. - - - - /schemas/apps/evolution/eplugin/mail-notification/sound-use-theme - /apps/evolution/eplugin/mail-notification/sound-use-theme - evolution-mail - bool - false - - Use sound theme - Play themed sound when new messages arrive, if not in beep mode. - - - - Klangthema verwenden - Das beim Eintreffen neuer Nachrichten zum Abspielen verwendete Klangthema, falls nicht im Signalton-Modus. - - - - Use sound theme - Play themed sound when new messages arrive, if not in beep mode. - - - - Использовать звуковую тему - Воспроизводить звук при получении новой почты, если не включён режим гудка. - - - - - diff --git a/gconf/schemas/apps-evolution-mail-prompts-checkdefault.schemas b/gconf/schemas/apps-evolution-mail-prompts-checkdefault.schemas deleted file mode 100644 index 9fdccbe..0000000 --- a/gconf/schemas/apps-evolution-mail-prompts-checkdefault.schemas +++ /dev/null @@ -1,31 +0,0 @@ - - - - /schemas/apps/evolution/mail/prompts/checkdefault - /apps/evolution/mail/prompts/checkdefault - evolution-mail - bool - true - - Check whether Evolution is the default mailer - Every time Evolution starts, check whether or not it is the default mailer. - - - - Überprüfen, ob Evolution die Vorgabeanwendung zur E-Mail-Verwaltung ist - Bei jedem Start überprüfen, ob Evolution die Vorgabeanwendung zur E-Mail-Verwaltung ist. - - - - Check whether Evolution is the default mailer - Every time Evolution starts, check whether it is the default mailer. - - - - Проверять, является ли Evolution почтовой программой по умолчанию - Проверять при каждом запуске, является ли Evolution почтовой программой по умолчанию. - - - - - diff --git a/gconf/schemas/apps-evolution-template-placeholders.schemas b/gconf/schemas/apps-evolution-template-placeholders.schemas deleted file mode 100644 index 12a14de..0000000 --- a/gconf/schemas/apps-evolution-template-placeholders.schemas +++ /dev/null @@ -1,41 +0,0 @@ - - - - /schemas/apps/evolution/mail/template_placeholders - /apps/evolution/mail/template_placeholders - evolution-mail - list - string - - - - [myphone=012345,myplace=Abcd,myname=Alice] - - List of keyword/value pairs for the Templates plugin to - substitute in a message body. - - List of keyword/value pairs for the Templates plugin to - substitute in a message body. - - - - - Liste der Schlüsselwort/Wert-Paare, die das Vorlagen-Plugin im Nachrichtentext ersetzen soll. - Liste der Schlüsselwort/Wert-Paare, die das Vorlagen-Plugin im Nachrichtentext ersetzen soll. - - - - List of keyword/value pairs for the Templates plugin to substitute in a message body. - List of keyword/value pairs for the Templates plugin to substitute in a message body. - - - - Список пар ключевое слово/значение модуля шаблонов для замены в теле сообщения. - Список пар ключевое слово/значение модуля шаблонов для замены в теле сообщения. - - - - - diff --git a/gconf/schemas/apps_evolution_addressbook.schemas b/gconf/schemas/apps_evolution_addressbook.schemas deleted file mode 100644 index 916f627..0000000 --- a/gconf/schemas/apps_evolution_addressbook.schemas +++ /dev/null @@ -1,236 +0,0 @@ - - - - - - - /schemas/apps/evolution/addressbook/completion/uris - /apps/evolution/addressbook/completion/uris - evolution-addressbook - string - - - EFolderList XML for the list of completion URIs - EFolderList XML for the list of completion URIs. - - - - EFolderList-XML für die Liste der Vervollständigungs-URIs - EFolderList-XML für die Liste der Vervollständigungs-URIs. - - - - EFolderList XML for the list of completion URIs - EFolderList XML for the list of completion URIs. - - - - EFolderList XML для списка дополнения URI - EFolderList xml для списка дополнения URI. - - - - - /schemas/apps/evolution/addressbook/completion/minimum_query_length - /apps/evolution/addressbook/completion/minimum_query_length - evolution-addressbook - int - 3 - - Autocomplete length - The number of characters that must be typed before Evolution will attempt to autocomplete. - - - - Auto-Vervollständigungslänge - Die Anzahl der Zeichen, die eingegeben werden müssen, bevor Evolution die Auto-Vervollständigung versucht. - - - - Autocomplete length - The number of characters that must be typed before Evolution will attempt to autocomplete. - - - - Длина автодополнения - Количество символов, которое необходимо ввести для вызова функции автодополнения. - - - - - /schemas/apps/evolution/addressbook/completion/show_address - /apps/evolution/addressbook/completion/show_address - evolution-addressbook - bool - false - - Show autocompleted name with an address - Whether force showing the mail address with the name of the autocompleted contact in the entry. - - - - Legt fest, ob der automatisch vervollständigte Name mit Adresse angezeigt wird - Legt fest, ob die E-Mail-Adresse zusammen mit dem Namen des automatisch vervollständigten Kontakts im Eintrag angezeigt wird. - - - - Show autocompleted name with an address - Whether to force showing the e-mail address with the name of the autocompleted contact in the entry. - - - - Показывать адрес найденного в адресной книге контакта - Показывать адрес электронной почты совместно с именем при автоматическом дополнении введённого имени адресата. - - - - - - - /schemas/apps/evolution/addressbook/select_names/last_used_uri - /apps/evolution/addressbook/select_names/last_used_uri - evolution-addressbook - string - - - URI for the folder last used in the select names dialog - URI for the folder last used in the select names dialog. - - - - Adresse des zuletzt im Namenswähler verwendeten Ordners - Adresse des zuletzt im Namenswähler verwendeten Ordners. - - - - URI for the folder last used in the select names dialogue - URI for the folder last used in the select names dialogue. - - - - URI папки, использовавшейся в последний раз в диалоге выбора имен - URI папки, использовавшейся в последний раз в диалоге выбора имен - - - - - - - /schemas/apps/evolution/addressbook/display/layout - /apps/evolution/addressbook/display/layout - evolution-addressbook - int - 0 - - Contact layout style - - The layout style determines where to place the preview pane - in relation to the contact list. "0" (Classic View) places - the preview pane below the contact list. "1" (Vertical View) - places the preview pane next to the contact list. - - - - - Anordnung für Kontakte - Die Anordnung legt fest, wo die Vorschauleiste in Bezug auf die Kontaktliste angezeigt wird. »0« (klassische Ansicht) setzt die Vorschauleiste unter die Kontaktliste. »1« (vertikale Ansicht) setzt die Vorschauleiste neben die Kontaktliste. - - - - Contact layout style - The layout style determines where to place the preview pane in relation to the contact list. "0" (Classic View) places the preview pane below the contact list. "1" (Vertical View) places the preview pane next to the contact list. - - - - Стиль расположения контактов - Стиль расположения определяет место для панели предварительного просмотра относительно списка контактов. «0» (классический вид) помещает панель предварительного просмотра под списком контактов. «1» (вертикальный вид) помещает панель рядом со списком контактов. - - - - - /schemas/apps/evolution/addressbook/display/hpane_position - /apps/evolution/addressbook/display/hpane_position - evolution-addressbook - int - 200 - - Contact preview pane position (horizontal) - - Position of the contact preview pane when oriented horizontally. - - - - - Position des Vorschaufensters der Kontaktliste (horizontal) - Position des Vorschaufeldes der Kontaktliste bei horizontaler Anordnung. - - - - Contact preview pane position (horizontal) - Position of the contact preview pane when oriented horizontally. - - - - Положение панели предварительного вида контактов (горизонтальное) - Положение панели предварительного просмотра контактов при горизонтальной ориентации. - - - - - /schemas/apps/evolution/addressbook/display/vpane_position - /apps/evolution/addressbook/display/vpane_position - evolution-addressbook - int - 400 - - Contact preview pane position (vertical) - - Position of the contact preview pane when oriented vertically. - - - - - Position des Vorschaufensters der Kontaktliste (vertikal) - Position des Vorschaufeldes der Kontaktliste bei vertikaler Anordnung. - - - - Contact preview pane position (vertical) - Position of the contact preview pane when oriented vertically. - - - - Положение панели предварительного просмотра контактов (вертикально) - Положение панели предварительного просмотра контактов при вертикальной ориентации. - - - - - /schemas/apps/evolution/addressbook/display/show_preview - /apps/evolution/addressbook/display/show_preview - evolution-addressbook - bool - true - - Show preview pane - Whether to show the preview pane. - - - - Vorschaufeld anzeigen - Soll das Vorschaufeld angezeigt werden? - - - - Show preview pane - Whether to show the preview pane. - - - - Показывать панель предварительного просмотра - Показывать ли панель предварительного просмотра. - - - - - diff --git a/gconf/schemas/apps_evolution_calendar.schemas b/gconf/schemas/apps_evolution_calendar.schemas deleted file mode 100644 index 5a89bf4..0000000 --- a/gconf/schemas/apps_evolution_calendar.schemas +++ /dev/null @@ -1,1763 +0,0 @@ - - - - - - - /schemas/apps/evolution/calendar/display/primary_calendar - /apps/evolution/calendar/display/primary_calendar - evolution-calendar - string - - Primary calendar - URI of the highlighted ("primary") calendar - - - - Primärer Kalender - Adresse des hervorgehobenen (»primären«) Kalenders - - - - Primary calendar - URI of the highlighted ("primary") calendar - - - - Основной календарь - URI выделенного («основного») календаря - - - - - /schemas/apps/evolution/calendar/display/timezone - /apps/evolution/calendar/display/timezone - evolution-calendar - string - UTC - - Timezone - The default timezone to use for dates and times in the calendar, as an untranslated Olsen timezone database location like "America/New York". - - - - Zeitzone - Die voreingestellte Zeitzone zur Verwendung für Datum und Zeit im Kalender als nicht übersetzter Ort der Olsen-Zeitzonendatenbank, z.B. »Europe/Berlin«. - - - - Timezone - The default timezone to use for dates and times in the calendar, as an untranslated Olsen timezone database location like "America/New York". - - - - Часовой пояс - Часовой пояс по умолчанию, используемый для дат календаря, в виде непереведенного имени Olsen из базы часовых поясов, например "America/New York". - - - - - /schemas/apps/evolution/calendar/display/use_system_timezone - /apps/evolution/calendar/display/use_system_timezone - evolution-calendar - bool - true - - Use system timezone - Use the system timezone instead of the timezone selected - in Evolution. - - - - Zeitzone des Systems verwenden - Die Zeitzone des Systems anstatt der in Evolution gewählten Zeitzone verwenden. - - - - Use system timezone - Use the system timezone instead of the timezone selected in Evolution. - - - - Использовать системный часовой пояс - Использовать системный часовой пояс вместо того, который указан в Evolution. - - - - - /schemas/apps/evolution/calendar/display/day_second_zone - /apps/evolution/calendar/display/day_second_zone - evolution-calendar - string - - - The second timezone for a Day View - Shows the second time zone in a Day View, if set. Value is similar to one used in a 'timezone' key. - - - - Die zweite Zeitzone für die Tagesansicht - Legt fest, ob die zweite Zeitzone in der Tagesansicht angezeigt wird, falls diese definiert ist. Der Schlüsselwert hat das gleiche Format wie der Schlüssel »timezone«. - - - - The second timezone for a Day View - Shows the second time zone in a Day View, if set. Value is similar to one used in a 'timezone' key. - - - - Вторичный часовой пояс в обзоре дня - Показывать вторичный часовой пояс в обзоре дня. Смысл значения такой же, как и в ключе «timezone». - - - - - /schemas/apps/evolution/calendar/display/day_second_zones - /apps/evolution/calendar/display/day_second_zones - evolution-calendar - list - string - [] - - Recently used second time zones in a Day View - List of recently used second time zones in a Day View. - - - - Zuletzt genutzte zweite Zeitzonen in der Tagesansicht - Liste der zuletzt genutzten zweiten Zeitzonen in der Tagesansicht. - - - - Recently used second time zones in a Day View - List of recently used second time zones in a Day View. - - - - Недавние вторичные часовые пояса в обзоре дня - Список недавно использованных вторичных часовых поясов в обзоре дня. - - - - - /schemas/apps/evolution/calendar/display/day_second_zones_max - /apps/evolution/calendar/display/day_second_zones_max - evolution-calendar - int - 5 - - Maximum number of recently used timezones to remember. - Maximum number of recently used timezones to remember in a 'day_second_zones' list. - - - - Höchstzahl der zuletzt genutzten gespeicherten Zeitzonen. - Höchstzahl der zuletzt genutzten gespeicherten Zeitzonen in der Liste »day_second_zones«. - - - - Maximum number of recently used timezones to remember. - Maximum number of recently used timezones to remember in a 'day_second_zones' list. - - - - Максимальное число недавних часовых поясов. - Максимальное количество хранимых недавних часовых поясов в списке «day_second_zones». - - - - - /schemas/apps/evolution/calendar/display/use_24hour_format - /apps/evolution/calendar/display/use_24hour_format - evolution-calendar - bool - false - - Twenty four hour time format - Whether to show times in twenty four hour format instead of using am/pm. - - - - 24-Stunden-Zeitformat - Sollen Zeiten im 24-Stunden- und nicht im 12-Stunden-Format angezeigt werden? - - - - Twenty four hour time format - Whether to show times in twenty four hour format instead of using am/pm. - - - - 24-часовой формат времени - Показывать ли время в 24-часовом формате вместо am/pm. - - - - - /schemas/apps/evolution/calendar/display/show_role - /apps/evolution/calendar/display/show_role - evolution-calendar - bool - true - - Show Role field in the event/task/meeting editor - Whether to show role field in the event/task/meeting editor - - - - Positionsfeld im Ereignis-/Aufgaben-/Besprechungseditor anzeigen - Soll das Positionsfeld im Ereignis-/Aufgaben-/Besprechungseditor angezeigt werden? - - - - Show Role field in the event/task/meeting editor - Whether to show role field in the event/task/meeting editor - - - - Отображать поле «Должность» в редакторе событий/задач/собраний - Отображать ли поле «Должность» в редакторе событий/задач/собраний - - - - - /schemas/apps/evolution/calendar/display/show_status - /apps/evolution/calendar/display/show_status - evolution-calendar - bool - false - - Show status field in the event/task/meeting editor - Whether to show status field in the event/task/meeting editor - - - - Statusfeld im Ereignis-/Aufgaben-/Besprechungseditor anzeigen - Soll das Statusfeld im Ereignis-/Aufgaben-/Besprechungseditor angezeigt werden? - - - - Show status field in the event/task/meeting editor - Whether to show status field in the event/task/meeting editor - - - - Отображать поле «Состояние» в редакторе событий/задач/собраний - Отображать ли поле «Состояние» в редакторе событий/задач/собраний - - - - - /schemas/apps/evolution/calendar/display/show_type - /apps/evolution/calendar/display/show_type - evolution-calendar - bool - false - - Show type field in the event/task/meeting editor - Whether to show type field in the event/task/meeting editor - - - - Artenfeld im Ereignis-/Aufgaben-/Besprechungseditor anzeigen - Soll das Artenfeld im Ereignis-/Aufgaben-/Besprechungseditor angezeigt werden? - - - - Show type field in the event/task/meeting editor - Whether to show type field in the event/task/meeting editor - - - - Показывать поле «Тип» в редакторе событий/задач/собраний - Отображать ли поле «Тип» в редакторе событий/задач/собраний - - - - - /schemas/apps/evolution/calendar/display/show_rsvp - /apps/evolution/calendar/display/show_rsvp - evolution-calendar - bool - false - - Show RSVP field in the event/task/meeting editor - Whether to show RSVP field in the event/task/meeting editor - - - - UAwg-Feld im Ereignis-/Aufgaben-/Besprechungseditor anzeigen - Soll das UAwg-Feld im Ereignis-/Aufgaben-/Besprechungseditor angezeigt werden? - - - - Show RSVP field in the event/task/meeting editor - Whether to show RSVP field in the event/task/meeting editor - - - - Отображать поле «Просьба ответить» в редакторе событий/задач/собраний - Отображать ли поле «Просьба ответить» в редакторе событий/задач/собраний - - - - - /schemas/apps/evolution/calendar/display/show_timezone - /apps/evolution/calendar/display/show_timezone - evolution-calendar - bool - false - - Show timezone field in the event/meeting editor - Whether to show timezone field in the event/meeting editor - - - - Zeitzonenfeld im Ereignis-/Besprechungseditor anzeigen - Soll das Zeitzonenfeld im Ereignis-/Besprechungseditor angezeigt werden? - - - - Show timezone field in the event/meeting editor - Whether to show timezone field in the event/meeting editor - - - - Показывать поле «Часовой пояс» в редакторе событий/собраний - Отображать ли поле «Часовой пояс» в редакторе событий/задач/собраний - - - - - /schemas/apps/evolution/calendar/display/show_categories - /apps/evolution/calendar/display/show_categories - evolution-calendar - bool - false - - Show categories field in the event/meeting/task editor - Whether to show categories field in the event/meeting editor - - - - Kategoriefeld im Ereignis-/Aufgaben-/Besprechungseditor anzeigen - Soll das Kategoriefeld im Ereignis-/Besprechungseditor angezeigt werden? - - - - Show categories field in the event/meeting/task editor - Whether to show categories field in the event/meeting editor - - - - Отображать поле «Категории» в редакторе событий/задач/собраний - Отображать ли поле «Категории» в редакторе событий/собраний - - - - - /schemas/apps/evolution/calendar/display/week_start_day - /apps/evolution/calendar/display/week_start_day - evolution-calendar - int - 1 - - Week start - Weekday the week starts on, from Sunday (0) to Saturday (6). - - - - Wochenanfang - Wochentag von Sonntag (»0«) bis Sonnabend (»6«), mit dem die Woche beginnt. - - - - Week start - Weekday the week starts on, from Sunday (0) to Saturday (6). - - - - Начало недели - День, с которого начинается неделя, с воскресенья (0) до субботы (6) - - - - - /schemas/apps/evolution/calendar/display/day_start_hour - /apps/evolution/calendar/display/day_start_hour - evolution-calendar - int - 9 - - Workday start hour - Hour the workday starts on, in twenty four hour format, 0 to 23. - - - - Stunde, zu der der Arbeitstag beginnt - Die Stunde im 24-Stunden-Format von 0 bis 23, an der ein Arbeitstag beginnt. - - - - Workday start hour - Hour the workday starts on, in twenty four hour format, 0 to 23. - - - - Час начала рабочего дня - Час начала рабочего дня, в 24-часовом формате, от 0 до 23. - - - - - /schemas/apps/evolution/calendar/display/day_start_minute - /apps/evolution/calendar/display/day_start_minute - evolution-calendar - int - 0 - - Workday start minute - Minute the workday starts on, 0 to 59. - - - - Minute, zu der der Arbeitstag beginnt - Die Minute von 0 bis 59, zu der der Arbeitstag beginnt. - - - - Workday start minute - Minute the workday starts on, 0 to 59. - - - - Минута начала рабочего дня - Минуты начала рабочего дня, от 0 до 59 - - - - - /schemas/apps/evolution/calendar/display/day_end_hour - /apps/evolution/calendar/display/day_end_hour - evolution-calendar - int - 17 - - Workday end hour - Hour the workday ends on, in twenty four hour format, 0 to 23. - - - - Stunde, zu der der Arbeitstag endet - Die Stunde im 24-Stunden-Format von 0 bis 23, an der ein Arbeitstag endet. - - - - Workday end hour - Hour the workday ends on, in twenty four hour format, 0 to 23. - - - - Час завершения рабочего дня - Час окончания рабочего дня, в 24-часовом формате, от 0 до 23. - - - - - /schemas/apps/evolution/calendar/display/day_end_minute - /apps/evolution/calendar/display/day_end_minute - evolution-calendar - int - 0 - - Workday end minute - Minute the workday ends on, 0 to 59. - - - - Minute, zu der der Arbeitstag endet - Die Minute von 0 bis 59, zu der der Arbeitstag endet. - - - - Workday end minute - Minute the workday ends on, 0 to 59. - - - - Минуты завершения рабочего дня - Минуты завершения рабочего дня, от 0 до 59. - - - - - /schemas/apps/evolution/calendar/display/time_divisions - /apps/evolution/calendar/display/time_divisions - evolution-calendar - int - 30 - - Time divisions - Intervals shown in Day and Work Week views, in minutes. - - - - Zeiteinteilungen - In der Tages- und Wochentagsansicht anzuzeigende Intervalle in Minuten. - - - - Time divisions - Intervals shown in Day and Work Week views, in minutes. - - - - Деления времени - Интервалы, отображаемые в режимах "День" и "Рабочая неделя", в минутах. - - - - - /schemas/apps/evolution/calendar/display/hpane_position - /apps/evolution/calendar/display/hpane_position - evolution-calendar - int - 400 - - Horizontal pane position - Position of the horizontal pane, between the date navigator calendar and the task list when not in the month view, in pixels. - - - - Position der horizontalen Schiebeleiste - Die Position der horizontalen Schiebeleiste zwischen dem Kalender zur Auswahl des Datums und der Aufgabenliste in Pixel, wenn keine Monatsansicht eingestellt ist. - - - - Horizontal pane position - Position of the horizontal pane, between the date navigator calendar and the task list when not in the month view, in pixels. - - - - Позиция горизонтальной панели - Положение горизонтальной панели между навигатором обзора и даты и списком задач когда не в режиме обзора месяца, в пикселах. - - - - - /schemas/apps/evolution/calendar/display/vpane_position - /apps/evolution/calendar/display/vpane_position - evolution-calendar - int - 150 - - Vertical pane position - Position of the vertical pane, between the view and the date navigator calendar and task list when not in the month view, in pixels. - - - - Position der vertikalen Schiebeleiste - Die Position der vertikalen Schiebeleiste zwischen der Ansicht, dem Datumsnavigator-Kalender und der Aufgabenliste in Pixel, wenn keine Monatsansicht eingestellt ist. - - - - Vertical pane position - Position of the vertical pane, between the view and the date navigator calendar and task list when not in the month view, in pixels. - - - - Позиция вертикальной панели - Положение вертикальной панели между навигатором обзора и даты и списком задач когда не в режиме обзора месяца, в пикселах. - - - - - /schemas/apps/evolution/calendar/display/month_hpane_position - /apps/evolution/calendar/display/month_hpane_position - evolution-calendar - int - 32000 - - Month view horizontal pane position - Position of the horizontal pane, between the view and the date navigator calendar and task list in the month view, in pixels. - - - - Position der horizontalen Schiebeleiste in der Monatsansicht - Die Position der horizontalen Schiebeleiste zwischen der Ansicht, dem Datumsnavigator-Kalender und der Aufgabenliste in Pixel, wenn die Monatsansicht eingestellt ist. - - - - Month view horizontal pane position - Position of the horizontal pane, between the view and the date navigator calendar and task list in the month view, in pixels. - - - - Позиция горизонтальной панели в обзоре месяца - Положение горизонтальной панели между навигатором обзора и даты и списком задач в режиме обзора месяца, в пикселах. - - - - - /schemas/apps/evolution/calendar/display/month_vpane_position - /apps/evolution/calendar/display/month_vpane_position - evolution-calendar - int - 150 - - Month view vertical pane position - Position of the vertical pane, between the view and the date navigator calendar and task list in the month view, in pixels. - - - - Position der vertikalen Schiebeleiste in der Monatsansicht - Die Position der vertikalen Schiebeleiste zwischen der Ansicht, dem Datumsnavigator-Kalender und der Aufgabenliste in Pixel, wenn die Monatsansicht eingestellt ist. - - - - Month view vertical pane position - Position of the vertical pane, between the view and the date navigator calendar and task list in the month view, in pixels. - - - - Позиция вертикальной панели в обзоре месяца - Положение вертикальной панели между навигатором обзора и даты и списком задач в режиме обзора месяца, в пикселах. - - - - /schemas/apps/evolution/calendar/display/date_navigator_pane_position - /apps/evolution/calendar/display/date_navigator_pane_position - evolution-calendar - int - 150 - - Month view vertical pane position - Position of the vertical pane, between the calendar lists and the date navigator calendar. - - - - Position der vertikalen Schiebeleiste in der Monatsansicht - Die Position der vertikalen Leiste zwischen der Kalenderliste und dem Datumsauswahl-Kalender. - - - - Month view vertical pane position - Position of the vertical pane, between the calendar lists and the date navigator calendar. - - - - Позиция вертикальной панели в обзоре месяца - Позиция вертикальной панели между списками календаря и навигатором дат календаря. - - - - - /schemas/apps/evolution/calendar/display/memo_layout - /apps/evolution/calendar/display/memo_layout - int - 0 - - Memo layout style - - The layout style determines where to place the preview pane - in relation to the memo list. "0" (Classic View) places the - preview pane below the memo list. "1" (Vertical View) places - the preview pane next to the memo list. - - - - - Stil der Notiz - Die Anordnung legt fest, wo die Vorschauleiste in Bezug auf die Notizliste angezeigt wird. »0« (klassische Ansicht) setzt die Vorschauleiste unter die Notizliste. »1« (vertikale Ansicht) setzt die Vorschauleiste neben die Notizliste. - - - - Memo layout style - The layout style determines where to place the preview pane in relation to the memo list. "0" (Classic View) places the preview pane below the memo list. "1" (Vertical View) places the preview pane next to the memo list. - - - - Стиль заметок - Стиль расположения определяет место для панели предварительного просмотра относительно списка заметок. «0» (классический вид) помещает панель предварительного просмотра под списком заметок. «1» (вертикальный вид) помещает панель рядом со списком заметок. - - - - - /schemas/apps/evolution/calendar/display/show_memo_preview - /apps/evolution/calendar/display/show_memo_preview - evolution-calendar - bool - true - - Show the memo preview pane - - If "true", show the memo preview pane in the main window. - - - - - Das Notiz-Vorschaufeld anzeigen - Falls auf »wahr« gesetzt, wird die Notizvorschau im Hauptfenster angezeigt. - - - - Show the memo preview pane - If "true", show the memo preview pane in the main window. - - - - Показывать панель предварительного просмотра заметок - Если установлено, показывать панель предварительного просмотра заметок в главном окне. - - - - - /schemas/apps/evolution/calendar/display/memo_hpane_position - /apps/evolution/calendar/display/memo_hpane_position - evolution-calendar - int - 200 - - Memo preview pane position (horizontal) - - Position of the task preview pane when oriented horizontally. - - - - - Position der horizontalen Notizvorschau - Position des Aufgaben-Vorschaufeldes in horizontaler Anordnung. - - - - Memo preview pane position (horizontal) - Position of the task preview pane when oriented horizontally. - - - - Положение панели предварительного просмотра заметок (горизонтально) - Положение панели предварительного просмотра задач при горизонтальной ориентации. - - - - - /schemas/apps/evolution/calendar/display/memo_vpane_position - /apps/evolution/calendar/display/memo_vpane_position - evolution-calendar - int - 400 - - Memo preview pane position (vertical) - - Position of the memo preview pane when oriented vertically. - - - - - Position der vertikalen Notizvorschau - Position des Notiz-Vorschaufeldes in vertikaler Anordnung. - - - - Memo preview pane position (vertical) - Position of the memo preview pane when oriented vertically. - - - - Положение панели предварительного просмотра заметок (вертикально) - Положение панели предварительного просмотра заметок при вертикальной ориентации. - - - - - /schemas/apps/evolution/calendar/display/task_layout - /apps/evolution/calendar/display/task_layout - int - 0 - - Task layout style - - The layout style determines where to place the preview pane - in relation to the task list. "0" (Classic View) places the - preview pane below the task list. "1" (Vertical View) places - the preview pane next to the task list. - - - - - Anordnung für Aufgaben - Die Anordnung legt fest, wo die Vorschauleiste in Bezug auf die Aufgabenliste angezeigt wird. »0« (klassische Ansicht) setzt die Vorschauleiste unter die Aufgabenliste. »1« (vertikale Ansicht) setzt die Vorschauleiste neben die Aufgabenliste. - - - - Task layout style - The layout style determines where to place the preview pane in relation to the task list. "0" (Classic View) places the preview pane below the task list. "1" (Vertical View) places the preview pane next to the task list. - - - - Стиль размещения задач - Стиль расположения определяет место для панели предварительного просмотра относительно списка задач. «0» (классический вид) помещает панель предварительного просмотра под списком задач. «1» (вертикальный вид) помещает панель рядом со списком задач. - - - - - /schemas/apps/evolution/calendar/display/show_task_preview - /apps/evolution/calendar/display/show_task_preview - evolution-calendar - bool - true - - Show the task preview pane - - If "true", show the task preview pane in the main window. - - - - - Das Aufgaben-Vorschaufeld anzeigen - Falls auf »wahr« gesetzt, wird die Aufgabenvorschau im Hauptfenster angezeigt. - - - - Show the task preview pane - If "true", show the task preview pane in the main window. - - - - Показывать панель предварительного просмотра задач - Если установлено, показывать панель предварительного просмотра задач в главном окне. - - - - - /schemas/apps/evolution/calendar/display/task_hpane_position - /apps/evolution/calendar/display/task_hpane_position - evolution-calendar - int - 200 - - Task preview pane position (horizontal) - - Position of the task preview pane when oriented horizontally. - - - - - Position der horizontalen Aufgabenvorschau - Position des Aufgaben-Vorschaufeldes in horizontaler Anordnung. - - - - Task preview pane position (horizontal) - Position of the task preview pane when oriented horizontally. - - - - Положение панели предварительного просмотра задач (горизонтально) - Положение панели предварительного просмотра задач при горизонтальной ориентации. - - - - - /schemas/apps/evolution/calendar/display/task_vpane_position - /apps/evolution/calendar/display/task_vpane_position - evolution-calendar - int - 400 - - Task preview pane position (vertical) - - Position of the task preview pane when oriented vertically. - - - - - Position der vertikalen Aufgabenvorschau - Position des Aufgaben-Vorschaufeldes in vertikaler Anordnung. - - - - Task preview pane position (vertical) - Position of the task preview pane when oriented vertically. - - - - Положение панели предварительного просмотра задач (вертикально) - Положение панели предварительного просмотра задач при вертикальной ориентации. - - - - - /schemas/apps/evolution/calendar/display/compress_weekend - /apps/evolution/calendar/display/compress_weekend - evolution-calendar - bool - true - - Compress weekends in month view - Whether to compress weekends in the month view, which puts Saturday and Sunday in the space of one weekday. - - - - Wochenenden in Monatsansicht komprimieren - Sollen Wochenenden in der Monatsansicht komprimiert werden, wobei die Tage Sonnabend und Sonntag im Raum eines einzelnen Wochentages enthalten sind? - - - - Compress weekends in month view - Whether to compress weekends in the month view, which puts Saturday and Sunday in the space of one weekday. - - - - Ужимать выходные дни в обзоре месяца - Ужимать ли выходные дни в обзоре месяца (суббота и воскресенье занимают место одного рабочего дня). - - - - - /schemas/apps/evolution/calendar/display/show_event_end - /apps/evolution/calendar/display/show_event_end - evolution-calendar - bool - true - - Show appointment end times in week and month views - Whether to display the end time of events in the week and month views. - - - - Endzeiten von Terminen in Wochen- und Monatsansichten anzeigen - Sollen die Endzeiten von Ereignissen in den Wochen- und Monatsansichten angezeigt werden? - - - - Show appointment end times in week and month views - Whether to display the end time of events in the week and month views. - - - - Отображать время окончания встреч в обзоре недели и месяца - Показывать ли время завершения событий в обзоре недели и месяца. - - - - - /schemas/apps/evolution/calendar/display/working_days - /apps/evolution/calendar/display/working_days - evolution-calendar - int - 62 - - Work days - Days on which the start and end of work hours should be indicated. - - - - Arbeitstage - Die Tage, bei denen der Anfang und das Ende der Arbeitsstunden gekennzeichnet werden soll. - - - - Work days - Days on which the start and end of work hours should be indicated. - - - - Рабочие дни - Дни, когда должны отображаться начало и конец рабочих часов. - - - - - /schemas/apps/evolution/calendar/display/marcus_bains_line - /apps/evolution/calendar/display/marcus_bains_line - evolution-calendar - bool - true - - Marcus Bains Line - Whether to draw the Marcus Bains Line (line at current time) in the calendar. - - - - Marcus-Bains-Linie - Soll eine Marcus-Bains-Linie (Linie auf der momentanen Zeit) im Kalender angezeigt werden? - - - - Marcus Bains Line - Whether to draw the Marcus Bains Line (line at current time) in the calendar. - - - - Маркер текущего времени - Отображать ли маркер текущего времени в календаре. - - - - - /schemas/apps/evolution/calendar/display/marcus_bains_color_dayview - /apps/evolution/calendar/display/marcus_bains_color_dayview - evolution-calendar - string - #ff0000 - - Marcus Bains Line Color - Day View - Color to draw the Marcus Bains line in the Day View. - - - - Farbe der Marcus-Bains-Linie - Tagesansicht - Farbe der Marcus-Bains-Linie in der Tagesansicht. - - - - Marcus Bains Line Colour — Day View - Colour to draw the Marcus Bains line in the Day View. - - - - Цвет маркера текущего времени - Обзор месяца - Цвет маркера текущего времени в обзоре дня - - - - - /schemas/apps/evolution/calendar/display/marcus_bains_color_timebar - /apps/evolution/calendar/display/marcus_bains_color_timebar - evolution-calendar - string - #ff0000 - - Marcus Bains Line Color - Time bar - Color to draw the Marcus Bains Line in the Time bar (empty for default). - - - - Farbe der Marcus-Bains-Linie - Zeitleiste - Farbe der Marcus-Bains-Linie in der Zeitleiste (Voreinstellung ist leer). - - - - Marcus Bains Line Colour — Time bar - Colour to draw the Marcus Bains Line in the Time bar (empty for default). - - - - Цвет маркера текущего времени - полоса времени - Цвет маркера времени в расписании (для значения по умолчанию оставьте пустым). - - - - - /schemas/apps/evolution/calendar/display/events_transparency - /apps/evolution/calendar/display/events_transparency - evolution-calendar - float - 1.0 - - Event Transparency - Transparency of the events in calendar views, a value between 0 (transparent) and 1 (opaque). - - - - Ereignistransparenz - Transparenz der Ereignisse in der Kalenderansicht; ein Wert zwischen 0 (transparent) und 1 (deckend). - - - - Event Transparency - Transparency of the events in calendar views, a value between 0 (transparent) and 1 (opaque). - - - - Прозрачность события - Прозрачность элементов в видах календаря, значение между 0 (полная прозрачность) и 1 (непрозрачность). - - - - - /schemas/apps/evolution/calendar/display/events_gradient - /apps/evolution/calendar/display/events_gradient - evolution-calendar - bool - true - - Event Gradient - Gradient of the events in calendar views. - - - - Ereignisverlauf - Verlauf der Ereignisse in der Kalenderansicht. - - - - Event Gradient - Gradient of the events in calendar views. - - - - Градиент события - Градиент элементов в видах календаря - - - - - - - /schemas/apps/evolution/calendar/memos/primary_memos - /apps/evolution/calendar/memos/primary_memos - evolution-calendar - string - - Primary memo list - URI of the highlighted ("primary") memo list - - - - Primäre Notizliste - Adresse der hervorgehobenen (»primären«) Notizliste - - - - Primary memo list - URI of the highlighted ("primary") memo list - - - - Основной список заметок - URI выделенного («основного») списка заметок - - - - - - - /schemas/apps/evolution/calendar/tasks/primary_tasks - /apps/evolution/calendar/tasks/primary_tasks - evolution-calendar - string - - Primary task list - URI of the highlighted ("primary") task list - - - - Primäre Aufgabenliste - Adresse der hervorgehobenen (»primären«) Aufgabenliste - - - - Primary task list - URI of the highlighted ("primary") task list - - - - Основной список задач - URI выделенного («основного») списка задач - - - - - /schemas/apps/evolution/calendar/tasks/hide_completed - /apps/evolution/calendar/tasks/hide_completed - evolution-calendar - bool - false - - Hide completed tasks - Whether to hide completed tasks in the tasks view. - - - - Erledigte Aufgaben verbergen - Sollen abgeschlossene Aufgaben in der Aufgabenansicht verborgen werden? - - - - Hide completed tasks - Whether to hide completed tasks in the tasks view. - - - - Скрывать выполненные задачи - Скрывать ли завершенные задачи в обзоре задач. - - - - - /schemas/apps/evolution/calendar/tasks/hide_completed_units - /apps/evolution/calendar/tasks/hide_completed_units - evolution-calendar - string - days - - Hide task units - Units for determining when to hide tasks, "minutes", "hours" or "days". - - - - Einheit für das Verbergen von Aufgaben - Einheit zur Festlegung, wann Aufgaben verborgen werden sollen (»minutes«, »hours« oder »days«). - - - - Hide task units - Units for determining when to hide tasks, "minutes", "hours" or "days". - - - - Скрывать единицы задач - Единицы для определения момента скрытия задач, «minutes», «hours» или «days». - - - - - /schemas/apps/evolution/calendar/tasks/hide_completed_value - /apps/evolution/calendar/tasks/hide_completed_value - evolution-calendar - int - 1 - - Hide task value - Number of units for determining when to hide tasks. - - - - Wert für das Verbergen von Aufgaben - Anzahl der Einheiten zur Festlegung, wann Aufgaben verborgen werden sollen. - - - - Hide task value - Number of units for determining when to hide tasks. - - - - Скрывать значение задач - Количество единиц для определения момента, когда скрывать задачи. - - - - - - - /schemas/apps/evolution/calendar/tasks/colors/due_today - /apps/evolution/calendar/tasks/colors/due_today - evolution-calendar - string - #1e90ff - - Tasks due today color - Background color of tasks that are due today, in "#rrggbb" format. - - - - Farbe heute fälliger Aufgaben - Hintergrundfarbe für heute fällige Aufgaben im Format »#rrggbb«. - - - - Tasks due today colour - Background colour of tasks that are due today, in "#rrggbb" format. - - - - Цвет задач на сегодня - Цвет для задач на сегодня, в формате "#rrggbb" - - - - - /schemas/apps/evolution/calendar/tasks/colors/overdue - /apps/evolution/calendar/tasks/colors/overdue - evolution-calendar - string - #ff0000 - - Overdue tasks color - Background color of tasks that are overdue, in "#rrggbb" format. - - - - Farbe überfälliger Aufgaben - Hintergrundfarbe für überfällige Aufgaben im Format »#rrggbb«. - - - - Overdue tasks colour - Background colour of tasks that are overdue, in "#rrggbb" format. - - - - Цвет просроченных задач - Цвет для просроченных задач, в формате "#rrggbb". - - - - - - - /schemas/apps/evolution/calendar/prompts/confirm_delete - /apps/evolution/calendar/prompts/confirm_delete - evolution-calendar - bool - true - - Ask for confirmation when deleting items - Whether to ask for confirmation when deleting an appointment or task. - - - - Beim Löschen von Objekten nachfragen - Soll beim Löschen von Terminen oder Aufgaben nachgefragt werden? - - - - Ask for confirmation when deleting items - Whether to ask for confirmation when deleting an appointment or task. - - - - Запрашивать подтверждение при удалении элементов - Запрашивать подтверждение при удалении встречи или задачи. - - - - - /schemas/apps/evolution/calendar/prompts/confirm_purge - /apps/evolution/calendar/prompts/confirm_purge - evolution-calendar - bool - true - - Confirm expunge - Whether to ask for confirmation when expunging appointments and tasks. - - - - Beim Säubern nachfragen - Soll beim Säubern von Terminen oder Aufgaben nachgefragt werden? - - - - Confirm expunge - Whether to ask for confirmation when expunging appointments and tasks. - - - - Подтверждение очистки - Запрашивать подтверждение при очистке встречи или задачи. - - - - - /schemas/apps/evolution/calendar/other/use_default_reminder - /apps/evolution/calendar/other/use_default_reminder - evolution-calendar - bool - false - - Default appointment reminder - Whether to set a default reminder for appointments. - - - - Voreingestellte Erinnerung für Termine - Soll eine voreingestellte Erinnerung für Termine festgelegt werden? - - - - Default appointment reminder - Whether to set a default reminder for appointments. - - - - Упоминание о встрече по умолчанию - Устанавливать ли напоминание для событий по умолчанию. - - - - - /schemas/apps/evolution/calendar/other/default_reminder_interval - /apps/evolution/calendar/other/default_reminder_interval - evolution-calendar - int - 15 - - Default reminder value - Number of units for determining a default reminder. - - - - Wert der voreingestellten Erinnerung - Anzahl der Einheiten zur Festlegung einer voreingestellten Erinnerung. - - - - Default reminder value - Number of units for determining a default reminder. - - - - Значение напоминания по умолчанию - Количество единиц для напоминания по умолчанию. - - - - - /schemas/apps/evolution/calendar/other/default_reminder_units - /apps/evolution/calendar/other/default_reminder_units - evolution-calendar - string - - - Default reminder units - Units for a default reminder, "minutes", "hours" or "days". - - - - Einheit der voreingestellten Erinnerung - Einheit für eine voreingestellte Erinnerung (»minutes«, »hours« oder »days«). - - - - Default reminder units - Units for a default reminder, "minutes", "hours" or "days". - - - - Единицы напоминания по умолчанию - Единицы напоминания по умолчанию, «minutes», «hours» или «days». - - - - - /schemas/apps/evolution/calendar/other/def_recur_count - /apps/evolution/calendar/other/def_recur_count - evolution-calendar - int - 2 - - Default recurrence count - Count of default recurrence for a new event. -1 means forever. - - - - Voreingestellte Anzahl an Wiederholungen - Anzahl vorgegebener Wiederholungen für ein neues Ereignis. »-1« bedeutet unbegrenzt. - - - - Default recurrence count - Count of default recurrence for a new event. -1 means forever. - - - - Количество повторов по умолчанию - Количество повторений по умолчанию для нового события. -1 означает всегда. - - - - - /schemas/apps/evolution/calendar/display/show_week_numbers - /apps/evolution/calendar/display/show_week_numbers - evolution-calendar - bool - false - - Show week numbers in Day View, Work Week View, and Date Navigator - Whether to show week numbers in various places in the Calendar. - - - - Wochennummern in Tagesansicht, Arbeitswochenansicht und Datumsnavigator anzeigen - Sollen die Wochennummern im Kalender an verschiedenen Stellen angezeigt werden? - - - - Show week numbers in Day View, Work Week View, and Date Navigator - Whether to show week numbers in various places in the Calendar. - - - - Показывать номера недель в обзоре рабочего дня, недели и в навигаторе даты - Показывать ли номера недель в различных местах в календаре. - - - - - /schemas/apps/evolution/calendar/display/month_scroll_by_week - /apps/evolution/calendar/display/month_scroll_by_week - evolution-calendar - bool - true - - Scroll Month View by a week - Whether to scroll a Month View by a week, not by a month. - - - - Monatsansicht wochenweise durchblättern - Soll in der Monatsansicht wochenweise geblättert werden anstatt monatsweise? - - - - Scroll Month View by a week - Whether to scroll a Month View by a week, not by a month. - - - - Листать обзор месяца по неделям - Листать обзор месяца по неделям, а не по месяцам. - - - - - - - /schemas/apps/evolution/calendar/notify/last_notification_time - /apps/evolution/calendar/notify/last_notification_time - evolution-calendar - int - -1 - - Last alarm time - Time the last alarm ran, in time_t. - - - - Letzte Alarmzeit - Zeit der letzten Alarmauslösung im »time_t«-Format. - - - - Last alarm time - Time the last alarm ran, in time_t. - - - - Время последнего сигнала - Время последнего запуска сигнала, в формате in time_t. - - - - - /schemas/apps/evolution/calendar/notify/calendars - /apps/evolution/calendar/notify/calendars - evolution-calendar - list - string - [] - - Calendars to run alarms for - - - - Kalender, für die Alarme ausgeführt werden sollen - - - - Calendars to run alarms for - - - - Календари для запуска напоминаний - - - - - /schemas/apps/evolution/calendar/notify/programs - /apps/evolution/calendar/notify/programs - evolution-calendar - list - string - [] - - Alarm programs - Programs that are allowed to be run by alarms. - - - - Alarmprogramme - Programme, die als Teil von Alarmen ausgeführt werden können. - - - - Alarm programs - Programs that are allowed to be run by alarms. - - - - Программы сигналов - Программы, которые разрешено использовать как часть сигналов. - - - - - /schemas/apps/evolution/calendar/notify/notify_with_tray - /apps/evolution/calendar/notify/notify_with_tray - evolution-calendar - bool - false - - Show display alarms in notification tray - Whether or not to use the notification tray for display alarms. - - - - Alarmausgaben im Benachrichtigungsfeld anzeigen - Soll das Benachrichtigungsfeld für Alarmausgaben verwendet werden? - - - - Show display alarms in notification tray - Whether to use the notification tray for display alarms. - - - - Отображать экранные сигналы в области уведомления - Использовать или нет область уведомления для отображения сигналов. - - - - - /schemas/apps/evolution/calendar/publish/uris - /apps/evolution/calendar/publish/uris - evolution-calendar - list - string - [] - - Free/busy server URLs - List of server URLs for free/busy publishing. - - - - Verfügbarkeits-Server-Adressen - Liste der Server-Adressen für die Veröffentlichung von Verfügbarkeitsinformationen. - - - - Free/busy server URLs - List of server URLs for free/busy publishing. - - - - URL сервера свободен/занят - Список URL серверов для публикации сведений о занятости. - - - - - /schemas/apps/evolution/calendar/publish/template - /apps/evolution/calendar/publish/template - evolution-calendar - string - - Free/busy template URL - The URL template to use as a free/busy data fallback, %u is replaced by the user part of the mail address and %d is replaced by the domain. - - - - Vorlage-Adresse für Verfügbarkeitsdaten - Die Adress-Vorlage zur Verwendung als Rückgriff auf Verfügbarkeitsdaten. »%u« wird durch den Benutzerteil der E-Mail-Adresse und »%d« durch die Domain ersetzt. - - - - Free/busy template URL - The URL template to use as a free/busy data fallback, %u is replaced by the user part of the mail address and %d is replaced by the domain. - - - - URL шаблона свободен/занят - Шаблон URL для отправки данных о занятости. %u заменяется на левую часть почтового адреса (имя пользователя), %d - домен. - - - - - /schemas/apps/evolution/calendar/audio_dir - /apps/evolution/calendar/audio_dir - evolution-calendar - string - - Save directory for alarm audio - - Directory for saving alarm audio files - - - - - Speichern des Ordners für die Alarm-Audiodateien - Ordner für das Speichern der Alarm-Audiodateien - - - - Save directory for alarm audio - Directory for saving alarm audio files - - - - Каталог для сохранения звуковых файлов будильника - Каталог для сохранения звуковых файлов будильника - - - - - /schemas/apps/evolution/calendar/display/error_timeout - /apps/evolution/calendar/display/error_timeout - evolution-calendar - int - 60 - - Amount of time in seconds the error should be shown on the status bar. - Amount of time in seconds the error should be shown on the status bar. - - - - - Anzahl der Sekunden, die eine Fehlermeldung in der Statusleiste angezeigt wird. - Anzahl der Sekunden, die eine Fehlermeldung in der Statusleiste angezeigt wird. - - - - Amount of time in seconds the error should be shown on the status bar. - Amount of time in seconds the error should be shown on the status bar. - - - - Количество времени в секундах, в течение которого ошибка должна показываться в строке состояния. - Количество времени в секундах, в течение которого ошибка должна показываться в строке состояния. - - - - /schemas/apps/evolution/calendar/display/error_level - /apps/evolution/calendar/display/error_level - evolution-calendar - int - 0 - - Level beyond which the message should be logged. - This can have three possible values. 0 for errors. 1 for warnings. - 2 for debug messages. - - - - - Protokolltyp, ab welchem die Nachricht protokolliert werden soll. - Hier sind drei verschiedene Werte möglich: »0« für Fehler, »1« für Warnungen, »2« für Diagnosemeldungen. - - - - Level beyond which the message should be logged. - This can have three possible values: 0 for errors, 1 for warnings, 2 for debug messages. - - - - Уровень, за которым сообщение должно заноситься в журнал. - У этого ключа может быть одно из трёх значений: 0 — ошибки, 1 — предупреждения; 2 — отладочные сообщения. - - - - diff --git a/gconf/schemas/apps_evolution_email_custom_header.schemas b/gconf/schemas/apps_evolution_email_custom_header.schemas deleted file mode 100644 index a62636c..0000000 --- a/gconf/schemas/apps_evolution_email_custom_header.schemas +++ /dev/null @@ -1,32 +0,0 @@ - - - - /schemas/apps/evolution/eplugin/email_custom_header/customHeader - /apps/evolution/eplugin/email_custom_header/customHeader - evolution-eplugin - list - string - [Security=Personal;Unclassified;Protected;InConfidence;Secret;Topsecret] - - List of Custom Headers - The key specifies the list of custom headers that you can add to an outgoing message. The format for specifying a Header and Header value is: Name of the custom header followed by "=" and the values separated by ";" - - - - Liste der benutzerdefinierten Kopfzeilen - Diese Liste legt die benutzerdefinierten Kopfzeilen fest, die ausgehenden Nachrichten hinzugefügt werden können. Das Format für eine Kopfzeile und ihren Wert ist: Name der Kopfzeile gefolgt von »=« und die Werte, die durch ein Semikolon (»;«) getrennt werden - - - - List of Custom Headers - The key specifies the list of custom headers that you can add to an outgoing message. The format for specifying a Header and Header value is: Name of the custom header followed by "=" and the values separated by ";" - - - - Список дополнительных заголовков - Этот ключ задаёт список дополнительных заголовков, которые можно добавлять к исходящим сообщениям. Формат для задания заголовка и значения следующий: Сначала идёт имя заголовка, затем «=» и затем значения, разделённые символом «;» - - - - - diff --git a/gconf/schemas/apps_evolution_eplugin_face.schemas b/gconf/schemas/apps_evolution_eplugin_face.schemas deleted file mode 100644 index dc55f5c..0000000 --- a/gconf/schemas/apps_evolution_eplugin_face.schemas +++ /dev/null @@ -1,32 +0,0 @@ - - - - - /schemas/apps/evolution/eplugin/face/insert_by_default - /apps/evolution/eplugin/face/insert_by_default - org.gnome.evolution.plugins.face - bool - false - - Insert Face picture by default - Whether insert Face picture to outgoing messages by default. The picture should be set before checking this, otherwise nothing happens. - - - - Porträtfoto standardmäßig einfügen - Legt fest, ob ein Porträtfoto in ausgehende Nachrichten eingefügt wird. Das Bild sollte eingerichtet werden, bevor diese Funktion aktiviert wird, ansonsten passiert nichts. - - - - Insert Face picture by default - Whether insert Face picture to outgoing messages by default. The picture should be set before checking this, otherwise nothing happens. - - - - Вставлять по умолчанию личную фотографию - Вставлять ли по умолчанию изображение лица в исходящие сообщения. Перед этим необходимо установить изображение, иначе ничего не произойдёт. - - - - - diff --git a/gconf/schemas/apps_evolution_shell.schemas b/gconf/schemas/apps_evolution_shell.schemas deleted file mode 100644 index 7c707a0..0000000 --- a/gconf/schemas/apps_evolution_shell.schemas +++ /dev/null @@ -1,897 +0,0 @@ - - - - - - - /schemas/apps/evolution/version - /apps/evolution/version - evolution - string - - Configuration version - The configuration version of Evolution, with major/minor/configuration level (for example "2.6.0"). - - - - Konfigurationsversion - Die Konfigurationsversion von Evolution mit Haupt-, Unter- und Konfigurations-Stufe (z.B. »2.6.0«). - - - - Configuration version - The configuration version of Evolution, with major/minor/configuration level (for example "2.6.0"). - - - - Версия конфигурации - Версия конфигурации Evolution, с уровнями major/minor/configuration (например, «2.6.0»). - - - - - - - /schemas/apps/evolution/last_version - /apps/evolution/last_version - evolution - string - - Last upgraded configuration version - The last upgraded configuration version of Evolution, with major/minor/configuration level (for example "2.6.0"). - - - - Zuletzt aktualisierte Konfigurationsversion - Die zuletzt aktualisierte Konfigurationsversion von Evolution mit Haupt-, Unter- und Konfigurations-Stufe (z.B. »2.6.0«). - - - - Last upgraded configuration version - The last upgraded configuration version of Evolution, with major/minor/configuration level (for example "2.6.0"). - - - - Версия последней обновленной конфигурации - Версия последней обновленной версии Evolution, с уровнями major/minor/configuration (например, «2.6.0»). - - - - - - - /schemas/apps/evolution/shell/skip_warning_dialog - /apps/evolution/shell/skip_warning_dialog - evolution - bool - false - - Skip development warning dialog - Whether the warning dialog in development versions of Evolution is skipped. - - - - Entwicklungs-Warndialog nicht anzeigen - Soll der Warndialog in Evolution-Entwicklerversionen nicht angezeigt werden? - - - - Skip development warning dialogue - Whether the warning dialogue in development versions of Evolution is skipped. - - - - Пропускать диалог предупреждения о тестовой версии - Если этот ключ установлен, диалог предупреждения в тестовых версиях Evolution не отображается. - - - - - - - /schemas/apps/evolution/shell/attachment_view - /apps/evolution/shell/attachment_view - evolution - int - 0 - - Initial attachment view - Initial view for attachment bar widgets. - "0" is Icon View, "1" is List View. - - - - Erstmalige Anlagenansicht - Initiale Ansicht der Widgets in der Anlagenleiste. »0« bedeutet Symbolansicht, »1« Listenansicht - - - - Initial attachment view - Initial view for attachment bar widgets. "0" is Icon View, "1" is List View. - - - - Исходный вид панели вложений - Начальное значение элементов панели вложений. «0» - значки, «1» - список. - - - - - - - /schemas/apps/evolution/shell/file_chooser_folder - /apps/evolution/shell/file_chooser_folder - evolution - string - - Initial file chooser folder - Initial folder for GtkFileChooser dialogs. - - - - Ausgangsordner des Dateiwählers - Ausgangsordner des GtkFileChooser-Dialogs. - - - - Initial file chooser folder - Initial folder for GtkFileChooser dialogues. - - - - Исходная папка выбора файлов - Исходная папка диалога GtkFileChooser. - - - - - - - /schemas/apps/evolution/shell/start_offline - /apps/evolution/shell/start_offline - evolution - bool - false - - Start in offline mode - Whether Evolution will start up in offline mode instead of online mode. - - - - - Im Offline-Modus starten - Soll Evolution im Offline- statt im Online-Modus gestartet werden? - - - - Start in offline mode - Whether Evolution will start up in offline mode instead of online mode. - - - - Запуск в автономном режиме - Если этот ключ установлен, Evolution будет запускаться в автономном режиме. - - - - - /schemas/apps/evolution/shell/offline/folder_paths - /apps/evolution/shell/offline/folder_paths - evolution - list - string - [] - - List of paths for the folders to be synchronized to disk for offline usage - - - - Liste der Pfade für Ordner, die für eine Offline-Benutzung auf der Platte abgeglichen werden sollen - - - - List of paths for the folders to be synchronised to disk for offline usage - - - - Список путей для папок, которые будут синхронизироваться на диск для автономной работы - - - - - - - /schemas/apps/evolution/shell/view_defaults/window_y - /apps/evolution/shell/view_defaults/window_y - evolution - int - - Default window Y coordinate - The default Y coordinate for the main window. - - - - Vorgegebene X-Koordinate - Die vorgegebene Y-Koordinate des Hauptfensters. - - - - Default window Y coordinate - The default Y coordinate for the main window. - - - - Координата Y по умолчанию - Координата Y по умолчанию для основного окна. - - - - - /schemas/apps/evolution/shell/view_defaults/window_x - /apps/evolution/shell/view_defaults/window_x - evolution - int - - Default window X coordinate - The default X coordinate for the main window. - - - - Vorgegebene X-Koordinate - Die vorgegebene X-Koordinate des Hauptfensters. - - - - Default window X coordinate - The default X coordinate for the main window. - - - - Координата X по умолчанию - Координата Ð¥ по умолчанию для основного окна. - - - - - /schemas/apps/evolution/shell/view_defaults/window_width - /apps/evolution/shell/view_defaults/window_width - evolution - int - 640 - - Default window width - The default width for the main window, in pixels. - - - - Voreingestellte Fensterbreite - Die voreingestellte Breite des Hauptfensters in Pixel. - - - - Default window width - The default width for the main window, in pixels. - - - - Ширина окна по умолчанию - Ширина основного окна по умолчанию, в пикселах. - - - - - /schemas/apps/evolution/shell/view_defaults/window_height - /apps/evolution/shell/view_defaults/window_height - evolution - int - 480 - - Default window height - The default height for the main window, in pixels. - - - - Voreingestellte Fensterhöhe - Die voreingestellte Höhe des Hauptfensters in Pixel. - - - - Default window height - The default height for the main window, in pixels. - - - - Высота окна по умолчанию - Высота основного окна по умолчанию, в пикселах. - - - - - /schemas/apps/evolution/shell/view_defaults/window_maximized - /apps/evolution/shell/view_defaults/window_maximized - evolution - bool - TRUE - - Default window state - Whether or not the window should be maximized. - - - - Voreingestellter Fensterzustand - Soll das Fenster maximiert werden? - - - - Default window state - Whether the window should be maximised. - - - - Состояние окна по умолчанию - Должны ли окно быть максимизированным. - - - - - /schemas/apps/evolution/shell/view_defaults/buttons_visible - /apps/evolution/shell/view_defaults/buttons_visible - evolution - bool - TRUE - - Window buttons are visible - Whether the window buttons should be visible. - - - - Fensterknöpfe sind sichtbar - Sollen die Fensterknöpfe angezeigt werden? - - - - Window buttons are visible - Whether the window buttons should be visible. - - - - Кнопки окон видимы - Должны ли быть видимыми кнопки окон. - - - - - /schemas/apps/evolution/shell/view_defaults/buttons_style - /apps/evolution/shell/view_defaults/buttons_style - evolution - string - toolbar - - Window button style - The style of the window buttons. Can be "text", "icons", "both", "toolbar". If "toolbar" is set, the style of the buttons is determined by the GNOME toolbar setting. - - - - Fensterknopfstil - Der Stil der Fensterknöpfe. Mögliche Einstellungen sind »text«, »icons«, »both« und »toolbar«. Wenn »toolbar« gesetzt wurde, wird der Stil anhand der GNOME-Einstellungen festgelegt. - - - - Window button style - The style of the window buttons. Can be "text", "icons", "both", "toolbar". If "toolbar" is set, the style of the buttons is determined by the GNOME toolbar setting. - - - - Стиль кнопок окон - Стиль кнопок окон. Возможные варианты: «text», «icons», «both», «toolbar». Если установлено значение «toolbar», стиль кнопок соответствует системным параметрам среды GNOME. - - - - - /schemas/apps/evolution/shell/view_defaults/toolbar_visible - /apps/evolution/shell/view_defaults/toolbar_visible - evolution - bool - TRUE - - Toolbar is visible - Whether the toolbar should be visible. - - - - Werkzeugleiste anzeigen - Soll die Werkzeugleiste angezeigt werden? - - - - Toolbar is visible - Whether the toolbar should be visible. - - - - Панель инструментов видимая - Должна ли панель инструментов быть видимой. - - - - - /schemas/apps/evolution/shell/view_defaults/sidebar_visible - /apps/evolution/shell/view_defaults/sidebar_visible - evolution - bool - TRUE - - Sidebar is visible - Whether the sidebar should be visible. - - - - Seitenleiste anzeigen - Soll die Seitenleiste angezeigt werden? - - - - Sidebar is visible - Whether the sidebar should be visible. - - - - Боковая панель видима - Должна ли боковая панель быть видимой. - - - - - /schemas/apps/evolution/shell/view_defaults/statusbar_visible - /apps/evolution/shell/view_defaults/statusbar_visible - evolution - bool - TRUE - - Statusbar is visible - Whether the status bar should be visible. - - - - Statusleiste ist sichtbar - Soll die Statusleiste angezeigt werden? - - - - Statusbar is visible - Whether the status bar should be visible. - - - - Панель состояния видима - Должна ли панель состояния быть видимой. - - - - - /schemas/apps/evolution/shell/view_defaults/component_id - /apps/evolution/shell/view_defaults/component_id - evolution - string - mail - - ID or alias of the component to be shown by default at start-up. - ID or alias of the component to be shown by default at start-up. - - - - Kennung oder Alias der Komponente, die per Vorgabe beim Start angezeigt werden soll. - Kennung oder Alias der Komponente, die per Vorgabe beim Start angezeigt werden soll. - - - - ID or alias of the component to be shown by default at start-up. - ID or alias of the component to be shown by default at start-up. - - - - Идентификатор или псевдоним компонента, который будет показываться при запуске по умолчанию. - Идентификатор или псевдоним компонента, который будет показываться при запуске по умолчанию. - - - - - - - /schemas/apps/evolution/shell/view_defaults/folder_bar/width - /apps/evolution/shell/view_defaults/folder_bar/width - evolution - int - 200 - - Default sidebar width - The default width for the sidebar, in pixels. - - - - Voreingestellte Seitenleistenbreite - Die voreingestellte Breite der Seitenleiste in Pixel. - - - - Default sidebar width - The default width for the sidebar, in pixels. - - - - Ширина боковой панели по умолчанию - Ширина боковой панели по умолчанию, в пикселах. - - - - - - - /schemas/apps/evolution/shell/network_config/proxy_type - /apps/evolution/shell/network_config/proxy_type - evolution - int - 0 - - Proxy configuration mode - Select the proxy configuration mode. Supported values are 0, 1, 2, and 3 representing "use system settings", "no proxy", "use manual proxy configuration" and "use proxy configuration provided in the autoconfig url" respectively. - - - - Proxy-Konfigurationsmodus - Legt den Proxy-Konfigurationsmodus fest. Mögliche Werte sind 0 (Systemeinstellungen verwenden), 1 (kein Proxy), 2 (manuelle Proxy-Konfiguration) sowie 3 (automatische Proxy-Konfiguration über Adresse) - - - - Proxy configuration mode - Select the proxy configuration mode. Supported values are 0, 1, 2, and 3 representing "use system settings", "no proxy", "use manual proxy configuration" and "use proxy configuration provided in the autoconfig URL" respectively. - - - - Режим настройки прокси - Режим конфигурации прокси. Поддерживаемые значения 0, 1, 2, и 3 представляют соответственно «использовать системные настройки», «не использовать прокси», «использовать заданные настройки» и «использовать ресурс для автоматической конфигурации». - - - - - /schemas/apps/evolution/shell/network_config/http_port - /apps/evolution/shell/network_config/http_port - evolution - int - - HTTP proxy port - The port on the machine defined by "/apps/evolution/shell/network_config/http_host" that you proxy through. - - - - Port für HTTP-Proxy - Der Port des in »/apps/evolution/shell/network_config/http_host» festgelegten Proxys. - - - - HTTP proxy port - The port on the machine defined by "/apps/evolution/shell/network_config/http_host" that you proxy through. - - - - Порт прокси HTTP - Порт на прокси узле, определённом ключом «/apps/evolution/shell/network_config/http_host». - - - - - /schemas/apps/evolution/shell/network_config/http_host - /apps/evolution/shell/network_config/http_host - evolution - string - - HTTP proxy host name - The machine name to proxy HTTP through. - - - - Rechnername für HTTP-Proxy - Der Rechnername des Proxys, durch den HTTP-Anfragen geleitet werden. - - - - HTTP proxy host name - The machine name to proxy HTTP through. - - - - Узел HTTP прокси - Имя узла прокси протокола HTTP. - - - - - /schemas/apps/evolution/shell/network_config/secure_port - /apps/evolution/shell/network_config/secure_port - evolution - int - - Secure HTTP proxy port - The port on the machine defined by "/apps/evolution/shell/network_config/secure_host" that you proxy through. - - - - Port für sicheren HTTP-Proxy - Der Port des in »/apps/evolution/shell/network_config/secure_host« festgelegten Proxys. - - - - Secure HTTP proxy port - The port on the machine defined by "/apps/evolution/shell/network_config/secure_host" that you proxy through. - - - - Порт прокси HTTPS - Порт на прокси узле, определённом ключом «/apps/evolution/shell/network_config/secure_host». - - - - - /schemas/apps/evolution/shell/network_config/secure_host - /apps/evolution/shell/network_config/secure_host - evolution - string - - Secure HTTP proxy host name - The machine name to proxy secure HTTP through. - - - - Rechnername für sicheren HTTP-Proxy - Der Rechnername des Proxys, durch den sichere HTTP-Anfragen geleitet werden. - - - - Secure HTTP proxy host name - The machine name to proxy secure HTTP through. - - - - Имя узла прокси HTTPS - Имя узла прокси протокола HTTPS. - - - - - /schemas/apps/evolution/shell/network_config/socks_port - /apps/evolution/shell/network_config/socks_port - evolution - int - - SOCKS proxy port - The port on the machine defined by "/apps/evolution/shell/network_config/socks_host" that you proxy through. - - - - Port für SOCKS-Proxy - Der Port des in »/apps/evolution/shell/network_config/socks_host« festgelegten Proxys. - - - - SOCKS proxy port - The port on the machine defined by "/apps/evolution/shell/network_config/socks_host" that you proxy through. - - - - Порт прокси SOCKS - Порт на прокси узле, определённом ключом «/apps/evolution/shell/network_config/socks_host». - - - - - /schemas/apps/evolution/shell/network_config/socks_host - /apps/evolution/shell/network_config/socks_host - evolution - string - - SOCKS proxy host name - The machine name to proxy socks through. - - - - Rechnername für SOCKS-Proxy - Der Rechnername des Proxys, durch den SOCKS-Anfragen geleitet werden. - - - - SOCKS proxy host name - The machine name to proxy socks through. - - - - Имя узла прокси SOCKS - Имя узла прокси протокола SOCKS. - - - - - /schemas/apps/evolution/shell/network_config/use_http_proxy - /apps/evolution/shell/network_config/use_http_proxy - evolution - bool - - Use HTTP proxy - Enables the proxy settings when accessing HTTP/Secure HTTP over the Internet. - - - - HTTP-Proxy verwenden - Legt fest, ob Zugriffe per HTTP und sicheres HTTP über einen Proxy laufen. - - - - Use HTTP proxy - Enables the proxy settings when accessing HTTP/Secure HTTP over the Internet. - - - - Использовать прокси HTTP - Включает настройки прокси для доступа к Интернет по протоколу HTTP/HTTPS. - - - - - /schemas/apps/evolution/shell/network_config/use_authentication - /apps/evolution/shell/network_config/use_authentication - evolution - bool - - Authenticate proxy server connections - If true, then connections to the proxy server require authentication. The username is retrieved from the "/apps/evolution/shell/network_config/authentication_user" GConf key, and the password is retrieved from either gnome-keyring or the ~/.gnome2_private/Evolution password file. - - - - Verbindungen zum Proxy-Server legitimieren - Legt fest, ob Verbindungen zum Proxy-Server legitimiert werden müssen. Der Benutzername wird aus dem Schlüssel »/apps/evolution/shell/network_config/authentication_user« geholt, das Passwort entweder aus dem GNOME-Schlüsselbund oder der Passwortdatei unter ~/.gnome2_private/Evolution. - - - - Authenticate proxy server connections - If true, then connections to the proxy server require authentication. The username is retrieved from the "/apps/evolution/shell/network_config/authentication_user" GConf key, and the password is retrieved from either gnome-keyring or the ~/.gnome2_private/Evolution password file. - - - - Проверить подлинность при соединении с прокси - Если true, то соединение с прокси-сервером требует проверки подлинности. Имя пользователя / пароль определяются при помощи ключа GConf «/apps/evolution/shell/network_config/authentication_user» и локально сохраненного пароля в .gnome2_private/. - - - - - /schemas/apps/evolution/shell/network_config/authentication_user - /apps/evolution/shell/network_config/authentication_user - evolution - string - - HTTP proxy username - User name to pass as authentication when doing HTTP proxying. - - - - Benutzername für HTTP-Proxy - Benutzername für Legitimation an HTTP-Proxy - - - - HTTP proxy username - Username to pass as authentication when doing HTTP proxying. - - - - Имя пользователя прокси HTTP - Имя пользователя для прохождения проверки подлинности при подключении к прокси HTTP. - - - - - /schemas/apps/evolution/shell/network_config/authentication_password - /apps/evolution/shell/network_config/authentication_password - evolution - string - - HTTP proxy password - Password to pass as authentication when doing HTTP proxying. - - - - Passwort für HTTP-Proxy - Zur Legitimation verwendetes Passwort für HTTP-Proxy - - - - HTTP proxy password - Password to pass as authentication when doing HTTP proxying. - - - - Пароль прокси HTTP - Пароль для проверки подлинности на прокси. - - - - - /schemas/apps/evolution/shell/network_config/ignore_hosts - /apps/evolution/shell/network_config/ignore_hosts - evolution - list - string - - Non-proxy hosts - This key contains a list of hosts which are connected to directly, rather than via the proxy (if it is active). The values can be hostnames, domains (using an initial wildcard like *.foo.com), IP host addresses (both IPv4 and IPv6) and network addresses with a netmask (something like 192.168.0.0/24). - - - - Nicht-Proxy-Rechner - Dieser Schlüssel enthält eine Liste der Rechnernamen, zu denen direkt verbunden wird, ohne Umweg über einen Proxy (falls einer aktiv ist). Gültige Werte sind Rechnernamen, Domänen (unter Verwendung eines Platzhalters am Anfang wie *.example.com), IP-Adressen (sowohl IPv4 als auch IPv6) sowie Netzwerk-Adressen mit einer Netzmaske (z.B. 192.168.0.0/24). - - - - Non-proxy hosts - This key contains a list of hosts which are connected to directly, rather than via the proxy (if it is active). The values can be hostnames, domains (using an initial wildcard like *.foo.com), IP host addresses (both IPv4 and IPv6) and network addresses with a netmask (something like 192.168.0.0/24). - - - - Узлы для доступа без прокси - Этот ключ содержит список узлов, с которыми проводится прямое соединение, даже если включена прокси. Значения могуть быть именами узлов, доменов, могут исользовать шаблоны как *.foo.com, адресами IP (и IPv4 и IPv6) и адресами сетей с маской (например, 192.168.0.0/24). - - - - - /schemas/apps/evolution/shell/network_config/autoconfig_url - /apps/evolution/shell/network_config/autoconfig_url - evolution - string - - Automatic proxy configuration URL - URL that provides proxy configuration values. - - - - Adresse für automatische Proxy-Konfiguration - Adresse, unter der Werte für die Proxy-Konfigration vorliegen - - - - Automatic proxy configuration URL - URL that provides proxy configuration values. - - - - URL автоматической настройки прокси - URL для получения параметров настройки прокси. - - - - - /schemas/apps/evolution/shell/express_mode - /apps/evolution/shell/express_mode - evolution - bool - false - - Enable express mode - Flag that enables a much simplified user interface. - - - - Express-Modus aktivieren - Markierung, die eine deutlich vereinfachte Benutzerschnittstelle aktiviert. - - - - Enable express mode - Flag that enables a much simplified user interface. - - - - Включить экспресс-режим - Флаг, который включает сильно упрощённый интерфейс пользователя. - - - - - diff --git a/gconf/schemas/apps_gnome_settings_daemon_housekeeping.schemas b/gconf/schemas/apps_gnome_settings_daemon_housekeeping.schemas deleted file mode 100644 index 8bfeaa4..0000000 --- a/gconf/schemas/apps_gnome_settings_daemon_housekeeping.schemas +++ /dev/null @@ -1,136 +0,0 @@ - - - - - /schemas/apps/gnome_settings_daemon/plugins/housekeeping/free_percent_notify - /apps/gnome_settings_daemon/plugins/housekeeping/free_percent_notify - float - 0.05 - - Free percentage notify threshold - Percentage free space threshold for initial warning of low disk space. - If the percentage free space drops below this, a warning will be shown. - - - - Freier Platz (in Prozent) zum Auslösen einer Warnung - 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. - - - - Free percentage notify threshold - Percentage free space threshold for initial warning of low disk space. If the percentage free space drops below this, a warning will be shown. - - - - Процент свободного места для предупреждения - Порог (в процентах) для отображения первого оповещения о нехватке свободного места. Если процент свободного места на диске опускается ниже этого значения, то будет показано предупреждение. - - - - - /schemas/apps/gnome_settings_daemon/plugins/housekeeping/free_percent_notify_again - /apps/gnome_settings_daemon/plugins/housekeeping/free_percent_notify_again - float - 0.01 - - Subsequent free percentage notify threshold - Specify the percentage that the free disk space should reduce by before issuing a subsequent warning. - - - - Schwellwert in Prozent für wiederholte Warnungen - Geben Sie den Prozentsatz des freien Plattenplatzes an, der unterschritten werden muss, um wiederholte Warnungen auszulösen. - - - - Subsequent free percentage notify threshold - Specify the percentage that the free disk space should reduce by before issuing a subsequent warning. - - - - Процент свободного места для повторного оповещения - Укажите процент свободного места, при достижении ниже которого нужно отобразить повторное предупреждение - - - - - /schemas/apps/gnome_settings_daemon/plugins/housekeeping/free_size_gb_no_notify - /apps/gnome_settings_daemon/plugins/housekeeping/free_size_gb_no_notify - int - 2 - - Free space no notify threshold - Specify an amount in GB. If the amount of free space is more than this, no warning will be shown. - - - - Freier Platz zum Auslösen einer Warnung - Geben Sie eine Größe in GB an. Falls die Menge des freien Plattenplatzes größer als dieser Wert ist, wird keine Warnung angezeigt. - - - - Free space no notify threshold - Specify an amount in GB. If the amount of free space is more than this, no warning will be shown. - - - - Объем свободного места для предупреждения - Укажите объём в ГБ. Если объём свободного места больше, то предупреждение не будет показано. - - - - - /schemas/apps/gnome_settings_daemon/plugins/housekeeping/min_notify_period - /apps/gnome_settings_daemon/plugins/housekeeping/min_notify_period - int - 10 - - Minimum notify period for repeated warnings - Specify a time in minutes. Subsequent warnings for a volume will not appear more often than this period. - - - - Minimaler Warnintervall für wiederholte Warnungen - Geben Sie eine Zeit in Minuten an. Wiederholte Warnungen für einen Datenträger erscheinen nicht öfter als in diesem Abstand. - - - - Minimum notify period for repeated warnings - Specify a time in minutes. Subsequent warnings for a volume will not appear more often than this period. - - - - Период между повторением оповещений - Укажите время в минутах. Последующие предупреждения об объёме свободного места для раздела не будут отображаться чаще чем один раз в этот период. - - - - - /schemas/apps/gnome_settings_daemon/plugins/housekeeping/ignore_paths - /apps/gnome_settings_daemon/plugins/housekeeping/ignore_paths - list - string - [] - - Mount paths to ignore - Specify a list of mount paths to ignore when they run low on space. - - - - Zu ignorierende Einhängepfade - Geben Sie eine Liste der Einhängepfade an, die bei wenig Plattenplatz ignoriert werden sollen. - - - - Mount paths to ignore - Specify a list of mount paths to ignore when they run low on space. - - - - Игнорируемые точки монтирования - Список точек монтирования, которые не будут отслеживаться на нехватку свободного места. - - - - diff --git a/gconf/schemas/apps_gnome_settings_daemon_keybindings.schemas b/gconf/schemas/apps_gnome_settings_daemon_keybindings.schemas deleted file mode 100644 index cd7d50b..0000000 --- a/gconf/schemas/apps_gnome_settings_daemon_keybindings.schemas +++ /dev/null @@ -1,540 +0,0 @@ - - - - - - /schemas/apps/gnome_settings_daemon/keybindings/touchpad - /apps/gnome_settings_daemon/keybindings/touchpad - string - XF86TouchpadToggle - - Toggle touchpad - Binding to enable or disable the touchpad. - - - - Touchpad ein/aus - Tastenkürzel um das Touchpad zu aktivieren/deaktivieren. - - - - Toggle touchpad - Binding to enable or disable the touchpad. - - - - Переключить сенсорную панель - Комбинация клавиш для включения или выключения сенсорной панели. - - - - - /schemas/apps/gnome_settings_daemon/volume_step - /apps/gnome_settings_daemon/volume_step - int - 6 - - Volume step - Volume step as percentage of volume. - - - - Schrittweite der Lautstärke - Schrittweite der Lautstärke als Prozentsatz der Gesamtlautstärke. - - - - Volume step - Volume step as percentage of volume. - - - - Шаг изменения громкости - Шаг изменения громкости в процентах. - - - - - /schemas/apps/gnome_settings_daemon/keybindings/volume_mute - /apps/gnome_settings_daemon/keybindings/volume_mute - string - XF86AudioMute - - Volume mute - Binding to mute the system volume. - - - - Stummschalten - Tastenkürzel um die Lautstärke stumm zu schalten. - - - - Volume mute - Binding to mute the system volume. - - - - Отключить звук - Комбинация клавиш для приглушения системной громкости. - - - - - - /schemas/apps/gnome_settings_daemon/keybindings/volume_down - /apps/gnome_settings_daemon/keybindings/volume_down - string - XF86AudioLowerVolume - - Volume down - Binding to lower the system volume. - - - - Leiser - Tastenkürzel um die Lautstärke abzusenken. - - - - Volume down - Binding to lower the system volume. - - - - Уменьшить громкость - Комбинация клавиш для уменьшения системной громкости. - - - - - - /schemas/apps/gnome_settings_daemon/keybindings/volume_up - /apps/gnome_settings_daemon/keybindings/volume_up - string - XF86AudioRaiseVolume - - Volume up - Binding to raise the system volume. - - - - Lauter - Tastenkürzel um die Lautstärke anzuheben. - - - - Volume up - Binding to raise the system volume. - - - - Увеличить громкость - Комбинация клавиш для увеличения системной громкости. - - - - - - /schemas/apps/gnome_settings_daemon/keybindings/power - /apps/gnome_settings_daemon/keybindings/power - string - <Control><Alt>Delete - - Log out - Binding to log out. - - - - Abmelden - Tastenkürzel um sich abzumelden. - - - - Log out - Binding to log out. - - - - Завершить сеанс - Комбинация клавиш для выхода из системы. - - - - - - /schemas/apps/gnome_settings_daemon/keybindings/eject - /apps/gnome_settings_daemon/keybindings/eject - string - XF86Eject - - Eject - Binding to eject an optical disc. - - - - Auswerfen - Tastenkürzel um ein optisches Medium auszuwerfen. - - - - Eject - Binding to eject an optical disc. - - - - Извлечь - Комбинация клавиш для извлечения оптического диска. - - - - - - /schemas/apps/gnome_settings_daemon/keybindings/home - /apps/gnome_settings_daemon/keybindings/home - string - XF86Explorer - - Home folder - Binding to open the Home folder. - - - - Persönlicher Ordner - Tastenkürzel um den persönlichen Ordner zu öffnen. - - - - Home folder - Binding to open the Home folder. - - - - Домашняя папка - Комбинация клавиш для открытия домашней папки. - - - - - - /schemas/apps/gnome_settings_daemon/keybindings/search - /apps/gnome_settings_daemon/keybindings/search - string - XF86Search - - Search - Binding to launch the search tool. - - - - Suchen - Tastenkürzel um die Suche zu öffnen. - - - - Search - Binding to launch the search tool. - - - - Найти - Комбинация клавиш для запуска утилиты поиска. - - - - - - /schemas/apps/gnome_settings_daemon/keybindings/email - /apps/gnome_settings_daemon/keybindings/email - string - XF86Mail - - Launch email client - Binding to launch the email client. - - - - E-Mail-Programm öffnen - Tastenkürzel um das E-Mail-Programm zu öffnen. - - - - Launch e-mail client - Binding to launch the e-mail client. - - - - Запустить клиент электронной почты - Комбинация клавиш для запуска почтового клиента. - - - - - - /schemas/apps/gnome_settings_daemon/keybindings/screensaver - /apps/gnome_settings_daemon/keybindings/screensaver - string - <Control><Alt>l - - Lock screen - Binding to lock the screen. - - - - Bildschirm sperren - Tastenkürzel um den Bildschirm zu sperren. - - - - Lock screen - Binding to lock the screen. - - - - Заблокировать экран - Комбинация клавиш для блокирования экрана. - - - - - - /schemas/apps/gnome_settings_daemon/keybindings/help - /apps/gnome_settings_daemon/keybindings/help - string - - - Launch help browser - Binding to launch the help browser. - - - - Hilfe-Browser starten - Tastenkürzel um den Hilfe-Browser zu öffnen. - - - - Launch help browser - Binding to launch the help browser. - - - - Запустить просмотр справки - Комбинация клавиш для запуска справочной системы. - - - - - /schemas/apps/gnome_settings_daemon/keybindings/calculator - /apps/gnome_settings_daemon/keybindings/calculator - string - XF86Calculator - - Launch calculator - Binding to launch the calculator. - - - - Taschenrechner öffnen - Tastenkürzel um den Taschenrechner zu öffnen. - - - - Launch calculator - Binding to launch the calculator. - - - - Запустить калькулятор - Комбинация клавиш для запуска калькулятора. - - - - - - /schemas/apps/gnome_settings_daemon/keybindings/www - /apps/gnome_settings_daemon/keybindings/www - string - XF86WWW - - Launch web browser - Binding to launch the web browser. - - - - Webbrowser starten - Tastenkürzel um den Web-Browser zu öffnen. - - - - Launch web browser - Binding to launch the web browser. - - - - Запустить веб-браузер - Комбинация клавиш для запуска веб-браузера. - - - - - /schemas/apps/gnome_settings_daemon/keybindings/media - /apps/gnome_settings_daemon/keybindings/media - string - XF86AudioMedia - - Launch media player - Binding to launch the media player. - - - - Medien-Player öffnen - Tastenkürzel um den Medien-Player zu öffnen. - - - - Launch media player - Binding to launch the media player. - - - - Запустить мультимедийный проигрыватель - Комбинация клавиш для запуска мультимедийного проигрывателя. - - - - - /schemas/apps/gnome_settings_daemon/keybindings/play - /apps/gnome_settings_daemon/keybindings/play - string - XF86AudioPlay - - Play (or play/pause) - Binding to start playback (or toggle play/pause). - - - - Wiedergabe (bzw. Wiedergabe/Unterbrechen) - Tastenkürzel um die Wiedergabe zu starten (oder zwischen Wiedergabe und Pause umzuschalten). - - - - Play (or play/pause) - Binding to start playback (or toggle play/pause). - - - - Воспроизведение (или воспроизведение/пауза) - Комбинация клавиш для запуска воспроизведения (или переключения воспроизведение/пауза). - - - - - - /schemas/apps/gnome_settings_daemon/keybindings/pause - /apps/gnome_settings_daemon/keybindings/pause - string - XF86AudioPause - - Pause playback - Binding to pause playback. - - - - Wiedergabe pausieren - Tastenkürzel um die Wiedergabe zu pausieren. - - - - Pause playback - Binding to pause playback. - - - - Приостановить воспроизведение - Комбинация клавиш для приостановки воспроизведения. - - - - - - /schemas/apps/gnome_settings_daemon/keybindings/stop - /apps/gnome_settings_daemon/keybindings/stop - string - XF86AudioStop - - Stop playback - Binding to stop playback. - - - - Wiedergabe anhalten - Tastenkürzel um die Wiedergabe anzuhalten. - - - - Stop playback - Binding to stop playback. - - - - Остановить воспроизведение - Комбинация клавиш для остановки воспроизведения. - - - - - - /schemas/apps/gnome_settings_daemon/keybindings/previous - /apps/gnome_settings_daemon/keybindings/previous - string - XF86AudioPrev - - Previous track - Binding to skip to previous track. - - - - Vorheriger Titel - Tastenkürzel um zum vorherigen Titel zu springen. - - - - Previous track - Binding to skip to previous track. - - - - Предыдущая дорожка - Комбинация клавиш для перехода к предыдущей дорожке. - - - - - - /schemas/apps/gnome_settings_daemon/keybindings/next - /apps/gnome_settings_daemon/keybindings/next - string - XF86AudioNext - - Next track - Binding to skip to next track. - - - - Nächster Titel - Tastenkürzel um zum nächsten Titel zu springen. - - - - Next track - Binding to skip to next track. - - - - Следующая дорожка - Комбинация клавиш для перехода к следующей дорожке. - - - - - diff --git a/gconf/schemas/apps_gnome_settings_daemon_xrandr.schemas b/gconf/schemas/apps_gnome_settings_daemon_xrandr.schemas deleted file mode 100644 index 125092f..0000000 --- a/gconf/schemas/apps_gnome_settings_daemon_xrandr.schemas +++ /dev/null @@ -1,151 +0,0 @@ - - - - - /schemas/apps/gnome_settings_daemon/xrandr/show_notification_icon - /apps/gnome_settings_daemon/xrandr/show_notification_icon - gnome - bool - false - - Show Displays in Notification Area - Whether a notification icon with display-related things should be - shown in the panel. - - - - - Bildschirme im Benachrichtigungsfeld anzeigen - Legt fest, ob im Panel ein Benachrichtigungssymbol für die Bildschirmeinstellungen angezeigt wird. - - - - Show Displays in Notification Area - Whether a notification icon with display-related things should be shown in the panel. - - - - Показывать мониторы в области уведомлений - Показывать ли значок управления монитором в области уведомлений. - - - - /schemas/apps/gnome_settings_daemon/xrandr/use_xorg_monitor_settings - /apps/gnome_settings_daemon/xrandr/use_xorg_monitor_settings - gnome - bool - true - - Do not touch monitor configuration - Usually, gnome-settings-daemon configures internal and - external monitors according to the - turn_on_external_monitors_at_startup and - turn_on_laptop_monitor_at_startup settings and determines - an appropriate cloning/side-by-side mode. Setting this key - to True disables this, and the monitor settings are not - touched at all (unless there is an explicit user - configuration). - - - - - Bildschirmkonfiguration nicht ändern - Üblicherweise konfiguriert der GNOME-Einstellungsdienst interne und externe Bildschirme anhand der Werte in turn_on_external_monitors_at_startup und turn_on_laptop_monitor_at_startup. Dabei werden passende Werte für Klonen oder Nebeneinanderdarstellung ermittelt. Wenn dieser Schlüssel auf »wahr« gesetzt ist, wird dies deaktiviert und die Bildschirmeinstellungen werden nicht beeinflusst, es sei denn, es existiert eine explizite Benutzerkonfiguration. - - - - Do not touch monitor configuration - Usually, gnome-settings-daemon configures internal and external monitors according to the turn_on_external_monitors_at_startup and turn_on_laptop_monitor_at_startup settings and determines an appropriate cloning/side-by-side mode. Setting this key to True disables this, and the monitor settings are not touched at all (unless there is an explicit user configuration). - - - - /schemas/apps/gnome_settings_daemon/xrandr/turn_on_external_monitors_at_startup - /apps/gnome_settings_daemon/xrandr/turn_on_external_monitors_at_startup - gnome - bool - false - - Turn on external monitor after system boot - Turn on external monitor after system boot if user plugs in - external monitor on system boot. - - - - - Externen Bildschirm nach Systemstart einschalten - Externen Bildschirm nach Systemstart einschalten, falls der Benutzer den externen Bildschirm beim Systemstart anschließt. - - - - Turn on external monitor after system boot - Turn on external monitor after system boot if user plugs in external monitor on system boot. - - - - Включать внешний монитор после загрузки системы - Включать внешний монитор после загрузки системы, если пользователь подключил его во время загрузки. - - - - /schemas/apps/gnome_settings_daemon/xrandr/turn_on_laptop_monitor_at_startup - /apps/gnome_settings_daemon/xrandr/turn_on_laptop_monitor_at_startup - gnome - bool - true - - Turn on laptop monitor after system boot - Turn on laptop monitor after system boot if user plugs in - external monitor on system boot. - - - - - Laptop-Bildschirm nach Systemstart einschalten - Laptop-Bildschirm nach Systemstart einschalten, falls der Benutzer den externen Bildschirm beim Systemstart anschließt. - - - - Turn on laptop monitor after system boot - Turn on laptop monitor after system boot if user plugs in external monitor on system boot. - - - - Включать монитор ноутбука после загрузки системы - Включать монитор ноутбука после загрузки системы, если пользователь подключил внешний монитор во время загрузки. - - - - /schemas/apps/gnome_settings_daemon/xrandr/default_configuration_file - /apps/gnome_settings_daemon/xrandr/default_configuration_file - gnome - string - /etc/gnome-settings-daemon/xrandr/monitors.xml - - File for default configuration for RandR - 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. - - - - - Datei mit der Vorgabekonfiguration für RandR - 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. - - - - File for default configuration for RandR - 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. - - - - Файл конфигурации RandR по умолчанию - Модуль XRandR будет искать конфигурацию по умолчанию в указанном в этом ключе файле. Он похож на файл ~/.config/monitors.xml, который обычно находится в домашних каталогах пользователей. Если у пользователя нет такого файла, или имеющийся файл не соответствует конфигурации мониторов, то тогда будет использоваться указанный в данном ключе файл. - - - - diff --git a/gconf/schemas/apps_nautilus_preferences.schemas b/gconf/schemas/apps_nautilus_preferences.schemas deleted file mode 100644 index 405f6c2..0000000 --- a/gconf/schemas/apps_nautilus_preferences.schemas +++ /dev/null @@ -1,2348 +0,0 @@ - - - - - - - - - /schemas/apps/nautilus/preferences/exit_with_last_window - /apps/nautilus/preferences/exit_with_last_window - nautilus - bool - false - - Nautilus will exit when last window destroyed. - - If set to true, then Nautilus will exit when all windows are destroyed. - This is the default setting. If set to false, it can be started without - any window, so nautilus can serve as a daemon to monitor media automount, - or similar tasks. - - - - - Nautilus wird beendet, wenn das letzte Fenster geschlossen wird. - Falls dieser Schlüssel wahr ist, wird Nautilus beendet, wenn alle Fenster geschlossen wurden. Dieses ist die Voreinstellung. Wenn der Schlüssel auf »falsch« gesetzt ist, kann Nautilus ohne irgendein Fenster gestartet werden, sodass Nautilus als Dienst zur Überwachung automatisch eingehangener Medien oder ähnliche Aufgaben genutzt werden kann. - - - - Nautilus will exit when last window destroyed. - If set to true, then Nautilus will exit when all windows are destroyed. This is the default setting. If set to false, it can be started without any window, so Nautilus can serve as a daemon to monitor media automount, or similar tasks. - - - - Nautilus будет завершать работу после удаления последнего окна. - Если этот ключ установлен, Nautilus будет завершать работу после удаления всех окон. Установлен по умолчанию. В противном случае nautilus можно запустить вообще без окон для того, чтобы она могла работать как служба для слежения за автоматически монтируемыми носителями или подобных задач. - - - - - /schemas/desktop/gnome/file_views/show_hidden_files - /desktop/gnome/file_views/show_hidden_files - nautilus - bool - false - - Whether to show hidden files - - If set to true, then hidden files are shown in - the file manager. Hidden files are either dotfiles or are - listed in the folder's .hidden file. - - - - - Verborgene Dateien anzeigen? - Falls dieser Schlüssel wahr ist, werden im Dateimanager verborgene Dateien angezeigt. Diese sind entweder dot-Dateien oder in der Datei ».hidden« des Ordners eingetragen. - - - - Whether to show hidden files - If set to true, then hidden files are shown in the file manager. Hidden files are either dotfiles or are listed in the folder's .hidden file. - - - - Показывать ли скрытые файлы - Если этот ключ установлен, в менеджере файлов будут показываться скрытые файлы. Скрытыми являются файлы, имя которых начинается с точки, а также файлы, перечисленные в файле .hidden в соответствующей папке. - - - - - /schemas/desktop/gnome/file_views/show_backup_files - /desktop/gnome/file_views/show_backup_files - nautilus - bool - false - - Whether to show backup files - - If set to true, then backup files such as those created - by Emacs are displayed. Currently, only files ending in - a tilde (~) are considered backup files. - - - - - Legt fest, ob Sicherungsdateien angezeigt werden sollen. - Falls dieser Schlüssel wahr ist, werden Sicherungsdateien angezeigt, wie z.B. die von Emacs erstellten. Zurzeit werden ausschließlich auf eine Tilde (~) endende Dateien als Sicherungsdateien behandelt. - - - - Whether to show backup files - If set to true, then backup files such as those created by Emacs are displayed. Currently, only files ending in a tilde (~) are considered backup files. - - - - Показывать ли резервные копии файлов - Если этот ключ установлен, будут показываться файлы резервных копий, подобные создаваемым редактором Emacs. На данный момент резервными копиями считаются только файлы, чьи имена заканчиваются на тильду (~). - - - - - /schemas/apps/nautilus/preferences/always_use_browser - /apps/nautilus/preferences/always_use_browser - nautilus - bool - true - - Enables the classic Nautilus behavior, where all windows are browsers - - If set to true, then all Nautilus windows will be browser windows. This is how - Nautilus used to behave before version 2.6, and some people prefer this behavior. - - - - - Das klassische Nautilus-Verhalten aktivieren. Hierbei sind alle Fenster Browser - Falls dieser Schlüssel wahr ist, sind alle Nautilus-Fenster Browser-Fenster. So verhielt sich Nautilus vor Version 2.6 und manche Anwender bevorzugen dieses Verhalten. - - - - Enables the classic Nautilus behaviour, where all windows are browsers - If set to true, then all Nautilus windows will be browser windows. This is how Nautilus used to behave before version 2.6, and some people prefer this behaviour. - - - - Включить классическое поведение Nautilus (все окна — обозреватели) - Если этот ключ установлен, все окна Nautilus будут окнами обозревателя. Так Nautilus вёл себя до версии 2.6, и некоторые предпочитают такое поведение. - - - - - /schemas/apps/nautilus/preferences/always_use_location_entry - /apps/nautilus/preferences/always_use_location_entry - nautilus - bool - false - - Always use the location entry, instead of the pathbar - - If set to true, then Nautilus browser windows will always use a textual - input entry for the location toolbar, instead of the pathbar. - - - - - Immer das Adressfeld anstatt der Pfadleiste verwenden - Falls dieser Schlüssel wahr ist, verwenden Nautilus Browser-Fenster immer ein Texteingabefeld für die Adressleiste anstatt der Pfadleiste. - - - - Always use the location entry, instead of the pathbar - If set to true, then Nautilus browser windows will always use a textual input entry for the location toolbar, instead of the pathbar. - - - - Всегда использовать адресную строку вместо панели - Если этот ключ установлен, в окнах Nautilus всегда будет использоваться текстовая строка адреса вместо панели кнопок. - - - - - /schemas/desktop/gnome/file_views/tabs_open_position - /desktop/gnome/file_views/tabs_open_position - nautilus - string - after_current_tab - - Where to position newly open tabs in browser windows. - - If set to "after_current_tab", then new tabs are inserted after the current tab. - If set to "end", then new tabs are appended to the end of the tab list. - - - - - Wo neu geöffnete Reiter angezeigt werden sollen. - Falls dieser Schlüssel »after_current_tab« ist, werden neue Reiter nach dem momentan gewählten Reiter eingefügt. Ist dieser Wert »end«, werden neue Reiter am Ende der Reiterliste eingefügt. - - - - Where to position newly-opened tabs in browser windows. - If set to "after_current_tab", then new tabs are inserted after the current tab. If set to "end", then new tabs are appended to the end of the tab list. - - - - Расположение открываемых вкладок в окнах обозревателя - Если ключ имеет значение "after_current_tab", новые вкладки создаются после текущей; если "end" — новые вкладки добавляются в конец списка вкладок. - - - - - /schemas/apps/nautilus/preferences/media_automount - /apps/nautilus/preferences/media_automount - nautilus - bool - true - - Whether to automatically mount media - - If set to true, then Nautilus will automatically mount media - such as user-visible hard disks and removable media on start-up - and media insertion. - - - - - Legt fest, ob Datenträger automatisch eingehangen werden sollen - Falls dieser Schlüssel wahr ist, werden Datenträger wie z.B. für den Benutzer sichtbare Festplatten oder Wechseldatenträger automatisch beim Hochfahren und Einlegen eingehängt. - - - - Whether to automatically mount media - If set to true, then Nautilus will automatically mount media such as user-visible hard disks and removable media on start-up and media insertion. - - - - Надо ли автоматически присоединять носители - Если этот ключ установлен, Nautilus будет автоматически присоединять носители — такие как видимые пользователю жёсткие диски или сменные носители — при запуске и при вставке носителя. - - - - - /schemas/apps/nautilus/preferences/media_automount_open - /apps/nautilus/preferences/media_automount_open - nautilus - bool - true - - Whether to automatically open a folder for automounted media - - If set to true, then Nautilus will automatically open a folder when - media is automounted. This only applies to media where no known - x-content/* type was detected; for media where a known x-content - type is detected, the user configurable action will be taken instead. - - - - - Legt fest, ob für automatisch eingehängte Datenträger ein Ordnerfenster geöffnet werden soll - Falls dieser Schlüssel wahr ist wird beim automatischen Einhängen eines Datenträgers automatisch ein Nautilus-Fenster geöffnet. Dies betrifft nur Datenträger, auf denen kein bekannter »x-content/*«-Typ gefunden wird. Wird ein bekannter Typ entdeckt, so wird die vom Benutzer eingestellte Aktion durchgeführt. - - - - Whether to automatically open a folder for automounted media - If set to true, then Nautilus will automatically open a folder when media is automounted. This only applies to media where no known x-content/* type was detected; for media where a known x-content type is detected, the user-configurable action will be taken instead. - - - - Надо ли автоматически открывать папку автоприсоединённого носителя - Если этот ключ установлен, Nautilus будет автоматически открывать папку при автоприсоединении носителя. Это относится только к носителям, для которых не определён тип x-content/*; для тех, у которых есть известный тип x-content, будет вместо этого предпринято настраиваемое пользователем действие. - - - - - /schemas/apps/nautilus/preferences/media_autorun_never - /apps/nautilus/preferences/media_autorun_never - nautilus - bool - false - - Never prompt or autorun/autostart programs when media are inserted - - If set to true, then Nautilus will never prompt nor autorun/autostart - programs when a medium is inserted. - - - - - Beim Einlegen von Datenträgern keine Aktion ausführen und nicht nachfragen - Falls dieser Schlüssel wahr ist, werden beim Einlegen eines Datenträgers weder automatisch Programme gestartet noch deswegen nachgefragt. - - - - Never prompt or autorun/autostart programs when media are inserted - If set to true, then Nautilus will never prompt nor autorun/autostart programs when a medium is inserted. - - - - Никогда не спрашивать и не запускать программы при вставке носителей - Если этот ключ установлен, Nautilus никогда не будет запрашивать действие или автоматически запускать программы при вставке носителей. - - - - - /schemas/apps/nautilus/preferences/media_autorun_x_content_start_app - /apps/nautilus/preferences/media_autorun_x_content_start_app - nautilus - list - string - [x-content/software] - - List of x-content/* types where the preferred application will be launched - - List of x-content/* types for which the user have chosen to - start an application in the preference capplet. The - preferred application for the given type will be started on - insertion on media matching these types. - - - - - Liste der »x-content/*«-Typen, bei denen die bevorzugte Anwendung gestartet wird - Liste der »x-content/*«-Typen, bei denen in den Einstellungen eine Anwendung festgelegt wurde. Beim Einlegen von Datenträgern dieser Typen wird die gewählte Anwendung gestartet. - - - - List of x-content/* types where the preferred application will be launched - List of x-content/* types for which the user has chosen to start an application in the preference capplet. The preferred application for the given type will be started on insertion on media matching these types. - - - - Типы x-content/* для которых будет открыто предпочитаемое приложение - Список типов x-content/*, для которых пользователь в параметрах программы выбрал «Открыть папку». Предпочитаемое приложение будет открыто при вставке носителя с данными указанного здесь типа. - - - - - /schemas/apps/nautilus/preferences/media_autorun_x_content_ignore - /apps/nautilus/preferences/media_autorun_x_content_ignore - nautilus - list - string - [] - - List of x-content/* types set to "Do Nothing" - - List of x-content/* types for which the user have chosen - "Do Nothing" in the preference capplet. No prompt will be - shown nor will any matching application be started on - insertion of media matching these types. - - - - - Liste der »x-content/*«-Typen, bei denen »Nichts tun« ausgewählt wurde - Liste der »x-content/*«-Typen, bei denen in den Einstellungen »Nichts tun« ausgewählt wurde. Beim Einlegen von Datenträgern dieser Typen wird weder eine passende Anwendung gestartet noch nachgefragt. - - - - List of x-content/* types set to "Do Nothing" - List of x-content/* types for which the user has chosen "Do Nothing" in the preference capplet. No prompt will be shown nor will any matching application be started on insertion of media matching these types. - - - - Типы x-content/* для «Ничего не делать» - Список типов x-content/*, для которых пользователь выбрал «Ничего не делать». При вставке носителя с данными указанного типа не будут автоматически запускать приложения, не будет предложено выбрать то или иное приложение на усмотрение пользователя. - - - - - /schemas/apps/nautilus/preferences/media_autorun_x_content_open_folder - /apps/nautilus/preferences/media_autorun_x_content_open_folder - nautilus - list - string - [] - - List of x-content/* types set to "Open Folder" - - List of x-content/* types for which the user have chosen - "Open Folder" in the preferences capplet. A folder window - will be opened on insertion of media matching these types. - - - - - Liste der »x-content/*«-Typen, bei denen »Ordner öffnen« ausgewählt wurde - Liste der »x-content/*«-Typen, bei denen in den Einstellungen »In Ordner öffnen« ausgewählt wurde. Beim Einlegen von Datenträgern dieser Typen wird ein Ordnerfenster geöffnet. - - - - List of x-content/* types set to "Open Folder" - List of x-content/* types for which the user has chosen "Open Folder" in the preferences capplet. A folder window will be opened on insertion of media matching these types. - - - - Типы x-content/* для «Открыть папку» - Список типов x-content/*, для которых пользователь в параметрах программы выбрал «Открыть папку». Окно с папкой будет открыто при вставке носителя с данными указанного здесь типа. - - - - - /schemas/apps/nautilus/preferences/navigation_window_saved_geometry - /apps/nautilus/preferences/navigation_window_saved_geometry - nautilus - string - - - The geometry string for a navigation window. - - A string containing the saved geometry and coordinates string for - navigation windows. - - - - - Die Geometrie-Zeichenkette für das Navigationsfenster. - Eine Zeichenkette, welche die gespeicherte Geometrie und die Koordinaten für Navigationsfenster enthält. - - - - The geometry string for a navigation window. - A string containing the saved geometry and coordinates string for navigation windows. - - - - Строка с размерами окна обозревателя. - Строка с сохранёнными размерами и положением окон обозревателя. - - - - - /schemas/apps/nautilus/preferences/navigation_window_saved_maximized - /apps/nautilus/preferences/navigation_window_saved_maximized - nautilus - bool - false - - Whether the navigation window should be maximized. - - Whether the navigation window should be maximized by default. - - - - - Legt fest, ob das Navigationsfenster maximiert werden soll. - Legt fest, ob das Navigationsfenster standardmäßig maximiert werden soll. - - - - Whether the navigation window should be maximised. - Whether the navigation window should be maximised by default. - - - - Должно ли окно обозревателя быть распахнуто на весь экран. - Должно ли окно обозревателя быть по умолчанию распахнуто на весь экран. - - - - - /schemas/apps/nautilus/preferences/confirm_trash - /apps/nautilus/preferences/confirm_trash - nautilus - bool - true - - Whether to ask for confirmation when deleting files, or emptying Trash - - If set to true, then Nautilus will ask for confirmation when - you attempt to delete files, or empty the Trash. - - - - - Legt fest, ob beim Löschen von Dateien oder beim Leeren des Mülls nachgefragt werden soll. - Falls dieser Schlüssel wahr ist, fragt Nautilus beim Versuch nach, Dateien zu löschen oder den Müll zu leeren. - - - - Whether to ask for confirmation when deleting files, or emptying the Wastebasket - If set to true, then Nautilus will ask for confirmation when you attempt to delete files, or empty the Wastebasket. - - - - Надо ли запрашивать подтверждение при удалении файлов или очистке корзины - Если этот ключ установлен, Nautilus будет запрашивать подтверждение при попытке удалить файлы и при очистке корзины. - - - - - /schemas/apps/nautilus/preferences/enable_delete - /apps/nautilus/preferences/enable_delete - nautilus - bool - false - - Whether to enable immediate deletion - - If set to true, then Nautilus will have a feature allowing - you to delete a file immediately and in-place, instead of moving it - to the trash. This feature can be dangerous, so use caution. - - - - - Legt fest, ob das sofortige Löschen verwendet werden soll. - Falls dieser Schlüssel wahr ist, stellt Nautilus eine Funktion bereit, die es Ihnen erlaubt, eine Datei unmittelbar zu löschen, wobei der Müll umgangen wird. Diese Funktion kann Gefahren bergen, verwenden Sie sie daher mit Umsicht. - - - - Whether to enable immediate deletion - If set to true, then Nautilus will have a feature allowing you to delete a file immediately and in-place, instead of moving it to the wastebasket. This feature can be dangerous, so use caution. - - - - Включено ли немедленное удаление - Если этот ключ установлен, Nautilus будет позволять удалять файлы немедленно, без перемещения их в корзину. В этом случае вы можете нечаянно потерять важные данные, поэтому будьте осторожны. - - - - - /schemas/apps/nautilus/preferences/show_icon_text - /apps/nautilus/preferences/show_icon_text - nautilus - string - local_only - - When to show preview text in icons - - Speed tradeoff for when to show a preview of text file contents - in the file's icon. - If set to "always" then always show previews, - even if the folder is on a remote server. - If set to "local_only" then only show previews for local file systems. - If set to "never" then never bother to read preview data. - - - - - Wann Vorschautext unter Symbolen angezeigt werden soll - Legt fest, wann eine Vorschau auf den Inhalt von Textdateien in deren Dateisymbol angezeigt werden soll. Zulässige Werte: »always« (immer anzeigen, selbst wenn sie sich auf einem entfernten Server befinden), »local_only« (nur anzeigen, falls sie sich auf einem lokalen Dateisystem befinden) sowie »never« (keinesfalls anzeigen). - - - - When to show preview text in icons - Speed trade-off for when to show a preview of text file contents in the file's icon. If set to "always" then always show previews, even if the folder is on a remote server. If set to "local_only" then only show previews for local file systems. If set to "never" then never bother to read preview data. - - - - Показывать ли текст файла в значках - Критерий отображения образцов текстовых файлов. Если установлено "always", образцы будут отображаться всегда, даже если папка находится на удалённом сервере. Если установлено "local_only", образцы будут создаваться только для файлов на локальных файловых системах. Если установлено "never", вместо образцов всегда будет использоваться значок типа файла. - - - - - /schemas/apps/nautilus/preferences/show_directory_item_counts - /apps/nautilus/preferences/show_directory_item_counts - nautilus - string - local_only - - When to show number of items in a folder - - Speed tradeoff for when to show the number of items in a - folder. If set to "always" then always show item counts, - even if the folder is on a remote server. - If set to "local_only" then only show counts for local file systems. - If set to "never" then never bother to compute item counts. - - - - - Wann die Anzahl der Objekte in einem Ordner angezeigt werden soll - Legt fest, wann die Anzahl der Objekte in einem Ordner angezeigt werden soll. Zulässige Werte: »always« (immer anzeigen, selbst wenn er sich auf einem entfernten Server befindet), »local_only« (nur anzeigen, falls er sich auf einem lokalen Dateisystem befindet) sowie »never« (keinesfalls anzeigen). - - - - When to show number of items in a folder - Speed trade-off for when to show the number of items in a folder. If set to "always" then always show item counts, even if the folder is on a remote server. If set to "local_only" then only show counts for local file systems. If set to "never" then never bother to compute item counts. - - - - Показывать ли количество объектов в папке - Критерий отображения количества объектов в папке. Если установлено "always", количество объектов будет подсчитываться всегда, даже если папка находится на удалённом сервере. Если установлено "local_only", количество объектов будет подсчитываться только для локальных файловых систем. Если установлено "never", количество объектов никогда не будет подсчитываться. - - - - - /schemas/apps/nautilus/preferences/click_policy - /apps/nautilus/preferences/click_policy - nautilus - string - double - - Type of click used to launch/open files - - Possible values are "single" to launch files on a single click, - or "double" to launch them on a double click. - - - - - Klicktyp zum Ausführen/Öffnen von Dateien - Zulässige Werte: »single« (Dateien per Einzelklick starten) sowie »double« (Dateien per Doppelklick starten). - - - - Type of click used to launch/open files - Possible values are "single" to launch files on a single click, or "double" to launch them on a double click. - - - - Тип щелчка, используемый для запуска/открытия файлов - Допустимыми значениями являются: "single" для запуска файлов одинарным щелчком и "double" для запуска файлов двойным щелчком. - - - - - /schemas/apps/nautilus/preferences/executable_text_activation - /apps/nautilus/preferences/executable_text_activation - nautilus - string - ask - - What to do with executable text files when activated - - What to do with executable text files when they are activated - (single or double clicked). - Possible values are "launch" to launch them as programs, - "ask" to ask what to do via a dialog, and "display" to display - them as text files. - - - - - Wie soll mit ausführbaren Textdateien verfahren werden, wenn sie aktiviert werden? - Legt fest, wie mit ausführbaren Textdateien verfahren werden soll, wenn sie aktiviert werden (einzel- oder doppelgeklickt). Zulässige Werte: »launch« (wie Anwendungen ausführen), »ask« (per Dialog rückfragen) sowie »display« (wie Textdateien anzeigen). - - - - What to do with executable text files when activated - What to do with executable text files when they are activated (single or double clicked). Possible values are "launch" to launch them as programs, "ask" to ask what to do via a dialogue, and "display" to display them as text files. - - - - Что делать с исполняемыми текстовыми файлами при их активизации - Что делать с исполняемыми текстовыми файлами при их активизации (одиночным или двойным щелчком, например). Допустимые значения: "launch" — запускать их как программы; "ask" — запрашивать нужное действие через диалог; "display" — показывать их как текстовые файлы. - - - - - /schemas/apps/nautilus/preferences/install_mime_activation - /apps/nautilus/preferences/install_mime_activation - nautilus - bool - true - - Show the package installer for unknown mime types - - Whether to show the user a package installer dialog in case an unknown - mime type is opened, in order to search for an application to handle it. - - - - - Installationsdialog für Software-Pakete bei unbekannten Dateitypen anzeigen - Dieser Schlüssel legt fest, ob der Installationsdialog für Software-Pakete angezeigt werden soll, wenn ein unbekannter Dateityp geöffnet wird, um eine Anwendung zu suchen, die mit diesen umgehen kann. - - - - Show the package installer for unknown MIME types - Whether to show the user a package installer dialogue in case an unknown MIME type is opened, in order to search for an application to handle it. - - - - Вызывать программу управления пакетами для неизвестных типов mime - Показывать ли пользователю программу управления пакетами при открытии файла с неизвестным типом mime для поиска приложения для работы с ним. - - - - - /schemas/apps/nautilus/preferences/mouse_use_extra_buttons - /apps/nautilus/preferences/mouse_use_extra_buttons - nautilus - bool - true - - Use extra mouse button events in Nautilus' browser window - - For users with mice that have "Forward" and "Back" buttons, this key will determine - if any action is taken inside of Nautilus when either is pressed. - - - - - Zusätzliche Maustastenereignisse im Browser-Fenster nutzen - Bei Benutzern mit einer Maus, die über »Vorwärts«- und »Zurück«-Tasten verfügen, wird dieser Schlüssel verwendet, um zu entscheiden, ob die Aktion innerhalb von Nautilus durchgeführt werden soll, wenn eine dieser Tasten betätigt wird. - - - - Use extra mouse button events in Nautilus' browser window - For users with mice that have "Forward" and "Back" buttons, this key will determine if any action is taken inside of Nautilus when either is pressed. - - - - Использовать события от дополнительных кнопок мыши в окне обозревателя Nautilus - Для пользователей мышей с кнопками «Вперёд» и «Назад» этот параметр определяет, будет ли выполняться какое-нибудь действие в Nautilus, если любая из кнопок нажата. - - - - - /schemas/apps/nautilus/preferences/mouse_forward_button - /apps/nautilus/preferences/mouse_forward_button - nautilus - int - 9 - - Mouse button to activate the "Forward" command in browser window - - For users with mice that have buttons for "Forward" and "Back", this key will set - which button activates the "Forward" command in a browser window. - Possible values range between 6 and 14. - - - - - Maustaste zum Auslösen des »Vorwärts«-Befehls in einem Browser-Fenster - Bei Benutzern, die eine Maus mit Tasten für »Vorwärts« und »Zurück« verwenden, bestimmt dieser Schlüssel, welche Taste den »Vorwärts«-Befehl in einem Browser-Fenster auslöst. Mögliche Werte liegen zwischen 6 und 14. - - - - Mouse button to activate the "Forward" command in browser window - For users with mice that have buttons for "Forward" and "Back", this key will set which button activates the "Forward" command in a browser window. Possible values range between 6 and 14. - - - - Кнопка мыши для запуска команды «Вперёд» в окне обозревателя - Для пользователей мышей с кнопками «Вперёд» и «Назад» этот параметр определяет, по какой из кнопок в окне обозревателя нужно выполнить команду «Вперёд». Возможные значения лежат в диапазоне от 6 до 14. - - - - - /schemas/apps/nautilus/preferences/mouse_back_button - /apps/nautilus/preferences/mouse_back_button - nautilus - int - 8 - - Mouse button to activate the "Back" command in browser window - - For users with mice that have buttons for "Forward" and "Back", this key will set - which button activates the "Back" command in a browser window. - Possible values range between 6 and 14. - - - - - Maustaste zum Auslösen des »Zurück«-Befehls in einem Browser-Fenster - Bei Benutzern, die eine Maus mit Tasten für »Vorwärts« und »Zurück« verwenden, bestimmt dieser Schlüssel, welche Taste den »Zurück«-Befehl in einem Browser-Fenster auslöst. Mögliche Werte liegen zwischen 6 und 14. - - - - Mouse button to activate the "Back" command in browser window - For users with mice that have buttons for "Forward" and "Back", this key will set which button activates the "Back" command in a browser window. Possible values range between 6 and 14. - - - - Кнопка мыши для запуска команды «Назад» в окне обозревателя - Для пользователей мышей с кнопками «Вперёд» и «Назад» этот параметр определяет, по какой из кнопок в окне обозревателя нужно выполнить команду «Назад». Возможные значения лежат в диапазоне от 6 до 14. - - - - - /schemas/apps/nautilus/preferences/theme - /apps/nautilus/preferences/theme - nautilus - string - default - - Current Nautilus theme (deprecated) - - Name of the Nautilus theme to use. - This has been deprecated as of Nautilus 2.2. - Please use the icon theme instead. - - - - - Derzeitiges Nautilus-Thema (veraltet) - Der Name des zu verwendenden Nautilus-Themas. Diese sind seit Nautilus 2.2 nicht mehr vorhanden. Bitte verwenden Sie stattdessen ein Symbolthema. - - - - Current Nautilus theme (deprecated) - Name of the Nautilus theme to use. This has been deprecated as of Nautilus 2.2. Please use the icon theme instead. - - - - Текущая тема Nautilus (устаревшее) - Название темы, которую использует Nautilus. Этот параметр устарел начиная с версии 2.2. Используйте вместо этого тему значков. - - - - - /schemas/apps/nautilus/preferences/show_image_thumbnails - /apps/nautilus/preferences/show_image_thumbnails - nautilus - string - local_only - - When to show thumbnails of image files - - Speed tradeoff for when to show an image file as a thumbnail. - If set to "always" then always thumbnail, - even if the folder is on a remote server. - If set to "local_only" then only show thumbnails for local file systems. - If set to "never" then never bother to thumbnail images, - just use a generic icon. - - - - - Wann Miniatur-Vorschaubilder von Bilddateien angezeigt werden sollen - Legt fest, wann Miniatur-Vorschaubilder von Bildern angelegt werden sollen. Zulässige Werte: »always« (immer anlegen, selbst wenn sie sich auf einem entfernten Server befinden), »local_only« (nur anlegen, falls sie sich auf einem lokalen Dateisystem befinden) sowie »never« (keinesfalls anlegen). - - - - When to show thumbnails of image files - Speed trade-off for when to show an image file as a thumbnail. If set to "always" then always thumbnail, even if the folder is on a remote server. If set to "local_only" then only show thumbnails for local file systems. If set to "never" then never bother to thumbnail images, just use a generic icon. - - - - Показывать ли миниатюры для файлов изображений - Критерий отображения миниатюр. Если установлено "always", миниатюры будут отображаться всегда, даже если папка находится на удалённом сервере. Если установлено "local_only", миниатюры будут создаваться только для файлов на локальных файловых системах. Если установлено "never", вместо миниатюр всегда будет использоваться значок типа файла. - - - - - /schemas/apps/nautilus/preferences/thumbnail_limit - /apps/nautilus/preferences/thumbnail_limit - nautilus - int - 10485760 - - Maximum image size for thumbnailing - - Images over this size (in bytes) won't be - thumbnailed. The purpose of this setting is to - avoid thumbnailing large images that may - take a long time to load or use lots of memory. - - - - - Maximale Bildgröße für Miniatur-Vorschaubilder - Von Bildern, die Größer sind als dieser Wert (in Byte), wird kein Miniatur-Vorschaubild angelegt. Der Zweck dieses Schlüssels besteht darin, das Anlegen von Miniatur-Vorschaubildern großer Bilder zu verhindern, da dies lange Ladezeiten oder hohen Speicherverbrauch zur Folge hätte. - - - - Maximum image size for thumbnailing - Images over this size (in bytes) won't be thumbnailed. The purpose of this setting is to avoid thumbnailing large images that may take a long time to load or use lots of memory. - - - - Максимальный размер изображения для построения миниатюр - Для изображений, чей размер превышает заданный здесь (в байтах), файлы миниатюр создаваться не будут. Цель этого параметра — избежать построения миниатюр для больших изображений, для которых может потребоваться много времени на загрузку или много памяти. - - - - - /schemas/apps/nautilus/preferences/directory_limit - /apps/nautilus/preferences/directory_limit - nautilus - int - -1 - - Maximum handled files in a folder - - Folders over this size will be truncated to - around this size. The purpose of this is to avoid unintentionally - blowing the heap and killing Nautilus on massive folders. - A negative value denotes no limit. The limit is approximate due - to the reading of folders chunk-wise. - - - - - Maximale Anzahl berücksichtigter Dateien je Ordner - Große Ordner, die größer sind als der Wert dieses Schlüssels werden abgeschnitten, sodass sie ungefähr so groß wie dieser Wert sind. Der Zweck dieses Schlüssels besteht darin, unerwünschte Nautilus-Abstürze zu vermeiden, die durch eine nicht bewältigbare Datenmenge verursacht werden. Ein negativer Schlüssel Wert führt dazu, dass keine Obergrenze festgelegt wird. Da Ordner in größeren Dateneinheiten eingelesen werden, ist dies ein Näherungswert. - - - - Maximum handled files in a folder - Folders over this size will be truncated to around this size. The purpose of this is to avoid unintentionally blowing the heap and killing Nautilus on massive folders. A negative value denotes no limit. The limit is approximate due to the reading of folders chunk-wise. - - - - Максимальное количество обрабатываемых файлов в папке - Папки, размер которых превышает указанный, будут обрезаны примерно до этого размера. Это нужно для того, чтобы избежать непреднамеренного переполнения памяти и падения Nautilus на больших папках. Отрицательное значение означает отсутствие ограничения. Ограничение приблизительно, поскольку чтение папок производится фрагментами. - - - - - /schemas/apps/nautilus/preferences/preview_sound - /apps/nautilus/preferences/preview_sound - nautilus - string - local_only - - Whether to preview sounds when mousing over an icon - - Speed tradeoff for when to preview a sound file when mousing - over a files icon. - If set to "always" then always plays the sound, - even if the file is on a remote server. - If set to "local_only" then only plays previews on local file systems. - If set to "never" then it never previews sound. - - - - - Legt fest, ob eine Vorschau auf Audio-Dateien angezeigt werden soll, wenn die Maus sich über deren Symbol befindet. - Legt fest, wann eine Vorschau auf Audio-Dateien angezeigt werden soll, sobald sich die Maus über deren Symbol befindet. Zulässige Werte: »always« (immer wiedergeben, selbst wenn sie sich auf einem entfernten Server befinden), »local_only« (nur wiedergeben, falls sie sich auf einem lokalen Dateisystem befinden) sowie »never« (keinesfalls wiedergeben). - - - - Whether to preview sounds when mousing over an icon - Speed trade-off for when to preview a sound file when mousing over a files icon. If set to "always" then always plays the sound, even if the file is on a remote server. If set to "local_only" then only plays previews on local file systems. If set to "never" then it never previews sound. - - - - Воспроизводить ли образец звука при наведении мыши на значок - Критерий воспроизведения звуковых файлов при наведении на них курсора мыши. Если установлено "always", файлы будут воспроизводиться всегда, даже если они на удалённом сервере. Если установлено "local_only", будут воспроизводиться только локальные файлы. Если установлено "never", файлы никогда не будут воспроизводиться при наведении мыши. - - - - - /schemas/apps/nautilus/preferences/show_advanced_permissions - /apps/nautilus/preferences/show_advanced_permissions - nautilus - bool - false - - Show advanced permissions in the file property dialog - - If set to true, then Nautilus lets you edit and display file - permissions in a more unix-like way, accessing some more - esoteric options. - - - - - Erweiterte Zugriffsrechte im Dateieigenschafts-Dialog anzeigen - Falls dieser Schlüssel wahr ist, lässt Sie Nautilus die Zugriffsrechte auf die Art und Weise von Unix festlegen und bietet Zugriff auf die etwas komplexeren Einstellungen. - - - - Show advanced permissions in the file property dialogue - If set to true, then Nautilus lets you edit and display file permissions in a more unix-like way, accessing some more esoteric options. - - - - Показывать расширенные права доступа в диалоге свойств файла - Если этот ключ установлен, Nautilus будет отображать и позволять изменять некоторые эзотерические параметры прав доступа в диалоге свойств файла, более точно следуя стилю Unix. - - - - - /schemas/apps/nautilus/preferences/sort_directories_first - /apps/nautilus/preferences/sort_directories_first - nautilus - bool - true - - Show folders first in windows - - If set to true, then Nautilus shows folders prior to - showing files in the icon and list views. - - - - - Ordner in Fenstern zuerst anzeigen? - Falls dieser Schlüssel wahr ist, zeigt Nautilus in der Symbol- und Listenansicht Ordner vor Dateien an. - - - - Show folders first in windows - If set to true, then Nautilus shows folders prior to showing files in the icon and list views. - - - - Показывать папки перед файлами в окнах - Если этот ключ установлен, Nautilus будет показывать папки перед файлами в режимах просмотра в виде значков и в виде списка. - - - - - /schemas/apps/nautilus/preferences/show_desktop - /apps/nautilus/preferences/show_desktop - nautilus - bool - true - - Nautilus handles drawing the desktop - - If set to true, then Nautilus will draw the icons on the - desktop. - - - - - Nautilus verwenden, um die Arbeitsfläche darzustellen - Falls dieser Schlüssel wahr ist, zeigt Nautilus die Symbole auf der Arbeitsfläche. - - - - Nautilus handles drawing the desktop - If set to true, then Nautilus will draw the icons on the desktop. - - - - Использовать Nautilus для отрисовки рабочего стола - Если этот ключ установлен, Nautilus будет показывать значки на рабочем столе. - - - - - /schemas/apps/nautilus/preferences/desktop_font - /apps/nautilus/preferences/desktop_font - nautilus - string - Sans 10 - - Sans 10 - Desktop font - - The font description used for the icons on the desktop. - - - - - Sans 10 - Schrift auf der Arbeitsfläche - Die von Symbolen auf der Arbeitsfläche zu verwendende Schriftbeschreibung. - - - - Sans 10 - Desktop font - The font description used for the icons on the desktop. - - - - Sans 10 - Шрифт рабочего стола - Описание шрифта, использующегося для подписей к значкам на рабочем столе. - - - - - /schemas/apps/nautilus/preferences/desktop_is_home_dir - /apps/nautilus/preferences/desktop_is_home_dir - nautilus - bool - false - - Nautilus uses the users home folder as the desktop - - If set to true, then Nautilus will use the user's home - folder as the desktop. If it is false, then it will use - ~/Desktop as the desktop. - - - - - Nautilus verwendet den persönlichen Ordner als Arbeitsfläche - Falls dieser Schlüssel wahr ist, verwendet Nautilus den persönlichen Ordner des Benutzers als Arbeitsfläche. Andernfalls wird »~/Desktop« als Arbeitsfläche verwendet. - - - - Nautilus uses the users home folder as the desktop - If set to true, then Nautilus will use the user's home folder as the desktop. If it is false, then it will use ~/Desktop as the desktop. - - - - Использовать домашнюю папку пользователя в качестве рабочего стола - Если этот ключ установлен, в качестве рабочего стола будет использоваться домашняя папка пользователя. В противном случае в качестве рабочего стола будет использоваться папка ~/Desktop. - - - - - /schemas/apps/nautilus/preferences/search_bar_type - /apps/nautilus/preferences/search_bar_type - nautilus - string - search_by_text - - Criteria for search bar searching - - Criteria when matching files searched for in the search bar. - If set to "search_by_text", then Nautilus will Search for files - by file name only. - If set to "search_by_text_and_properties", then Nautilus will - search for files by file name and file properties. - - - - - Kriterien bei der Suche mit der Suchleiste - Die beim Suchen nach Dateien mit Hilfe der Suchleiste anzuwendenden Kriterien. Zulässige Werte: »search_by_text« (nur nach Dateinamen suchen) sowie »search_by_text_and_properties« (nach Dateinamen und Dateieigenschaften suchen). - - - - Criteria for search bar searching - Criteria when matching files searched for in the search bar. If set to "search_by_text", then Nautilus will Search for files by file name only. If set to "search_by_text_and_properties", then Nautilus will search for files by file name and file properties. - - - - Критерии поиска для поисковой панели - Критерии соответствия файлов при поиске через панель поиска. Если установлено "search_by_text", Nautilus будет искать файлы только по имени. Если установлено "search_by_text_and_properties", поиск файла будет производиться по имени и свойствам. - - - - - /schemas/apps/nautilus/preferences/background_set - /apps/nautilus/preferences/background_set - nautilus - bool - false - - Custom Background - Whether a custom default folder background has been set. - - - - Benutzerdefinierter Hintergrund - Legt fest, ob ein benutzerdefinierter, voreingestellter Ordnerhintergrund festgelegt wurde. - - - - Custom Background - Whether a custom default folder background has been set. - - - - Собственный фон - Установлен ли пользовательский фон по умолчанию для папок. - - - - - /schemas/apps/nautilus/preferences/background_color - /apps/nautilus/preferences/background_color - nautilus - string - #ffffff - - Default Background Color - Color for the default folder background. Only used if background_set is true. - - - - Voreingestellte Hintergrundfarbe - Die Farbe des voreingestellten Ordnerhintergrunds. Dieser Schlüssel kommt ausschließlich zum Tragen, falls der Schlüssel »background_set« wahr ist. - - - - Default Background Colour - Colour for the default folder background. Only used if background_set is true. - - - - Цвет фона по умолчанию - Фоновый цвет папок по умолчанию. Используется только в том случае, если установлен ключ background_set. - - - - - /schemas/apps/nautilus/preferences/background_filename - /apps/nautilus/preferences/background_filename - nautilus - string - - - Default Background Filename - Filename for the default folder background. Only used if background_set is true. - - - - Dateiname des Vorgabehintergrunds - Der Dateiname des voreingestellten Ordnerhintergrunds. Dieser Schlüssel kommt ausschließlich zum Tragen, falls der Schlüssel »background_set« wahr ist. - - - - Default Background Filename - Filename for the default folder background. Only used if background_set is true. - - - - Имя файла для фона по умолчанию - Имя файла, содержащего фон для папок по умолчанию. Используется только в том случае, если установлен ключ background_set. - - - - - - /schemas/apps/nautilus/preferences/side_pane_background_set - /apps/nautilus/preferences/side_pane_background_set - nautilus - bool - false - - Custom Side Pane Background Set - Whether a custom default side pane background has been set. - - - - Benutzerdefinierter Hintergrund für Seitenleiste festgelegt? - Legt fest, ob ein benutzerdefinierter, voreingestellter Seitenleistenhintergrund festgelegt wurde. - - - - Custom Side Pane Background Set - Whether a custom default side pane background has been set. - - - - Установлен пользовательский фон боковой панели - Установлен ли пользовательский фон по умолчанию для боковой панели. - - - - - /schemas/apps/nautilus/preferences/side_pane_background_color - /apps/nautilus/preferences/side_pane_background_color - nautilus - string - #ffffff - - Default Side Pane Background Color - Filename for the default side pane background. Only used if side_pane_background_set is true. - - - - Voreingestellte Hintergrundfarbe der Seitenleiste - Der Dateiname des voreingestellten Seitenleistenhintergrunds. Dieser Schlüssel kommt ausschließlich zum Tragen, falls der Schlüssel »side_pane_background_set« wahr ist. - - - - Default Side Pane Background Colour - Filename for the default side pane background. Only used if side_pane_background_set is true. - - - - Цвет фона боковой панели по умолчанию - Имя файла, содержащего фон по умолчанию для боковой панели. Используется только в том случае, если установлен ключ side_pane_background_set. - - - - - /schemas/apps/nautilus/preferences/side_pane_background_filename - /apps/nautilus/preferences/side_pane_background_filename - nautilus - string - - - Default Side Pane Background Filename - Filename for the default side pane background. Only used if side_pane_background_set is true. - - - - Dateiname des voreingestellten Seitenleistenhintergrunds - Der Dateiname des voreingestellten Seitenleistenhintergrunds. Dieser Schlüssel kommt ausschließlich zum Tragen, falls der Schlüssel »side_pane_background_set« wahr ist. - - - - Default Side Pane Background Filename - Filename for the default side pane background. Only used if side_pane_background_set is true. - - - - Имя файла фона боковой панели по умолчанию - Имя файла, содержащего фон по умолчанию для боковой панели. Используется только в том случае, если установлен ключ side_pane_background_set. - - - - - /schemas/apps/nautilus/preferences/default_folder_viewer - /apps/nautilus/preferences/default_folder_viewer - nautilus - string - icon_view - - Default folder viewer - - When a folder is visited this viewer is used unless you have selected - another view for that particular folder. Possible values are "list_view", - "icon_view" and "compact_view". - - - - - Voreingestellte Ordneransicht - Diese Ansicht wird als Vorgabe für das Anzeigen von Ordnern verwendet. Zulässige Werte: »list_view« (Listenansicht), »icon_view« (Symbolansicht) sowie »compact_view« (kompakte Ansicht). - - - - Default folder viewer - When a folder is visited this view is used unless you have selected another view for that particular folder. Possible values are "list_view", "icon_view" and "compact_view". - - - - Компонент просмотра папок по умолчанию - При посещении папки будет использоваться этот режим просмотра, если только вы не выбрали другой режим именно для этой папки. Возможные варианты — "list_view", "icon_view" и "compact_view". - - - - - - - /schemas/apps/nautilus/icon_view/captions - /apps/nautilus/icon_view/captions - nautilus - list - string - [none,size,date_modified] - - List of possible captions on icons - - A list of captions below an icon in the icon view and - the desktop. The actual number of captions shown depends on - the zoom level. Possible values are: - "size", "type", "date_modified", "date_changed", "date_accessed", "owner", - "group", "permissions", "octal_permissions" and "mime_type". - - - - - Liste zulässiger Symbolbeschriftungen - Eine Liste der Symbolunterschriften in der Symbolansicht und auf der Arbeitsfläche. Die Anzahl der angezeigten Beschriftungen hängt von der Vergrößerungsstufe ab. Zulässige Werte: »size« (Größe), »type« (Type), »date_modified« (Änderungsdatum), »date_changed« (Änderungsdatum), »date_accessed« (Zugriffsdatum), »owner« (Besitzer), »group« (Gruppe), »permissions« (Zugriffsrechte), »octal_permissions« (oktale Zugriffsrechte) sowie »mime_type« (MIME-Typ). - - - - List of possible captions on icons - A list of captions below an icon in the icon view and the desktop. The actual number of captions shown depends on the zoom level. Possible values are: "size", "type", "date_modified", "date_changed", "date_accessed", "owner", "group", "permissions", "octal_permissions" and "mime_type". - - - - Список возможных подписей к значкам - Список подписей к значкам для режима значков и для рабочего стола. Реальное количество подписей зависит от масштаба изображения. Возможные значения: "size", "type", "date_modified", "date_changed", "date_accessed", "owner", "group", "permissions", "octal_permissions" и "mime_type". - - - - - /schemas/apps/nautilus/icon_view/default_sort_order - /apps/nautilus/icon_view/default_sort_order - nautilus - string - name - - Default sort order - - The default sort-order for items in the icon view. Possible - values are "name", "size", "type", "modification_date", and "emblems". - - - - - Voreingestellte Sortierreihenfolge - Die voreingestellte Sortierreihenfolge für Objekte in der Symbolansicht. Zulässige Werte: »name« (Name), »size« (Größe), »type« (Typ), »modification_date« (Änderungsdatum) sowie »emblems« (Embleme). - - - - Default sort order - The default sort-order for items in the icon view. Possible values are "name", "size", "type", "modification_date", and "emblems". - - - - Порядок сортировки по умолчанию - Порядок сортировки объектов по умолчанию в режиме значков. Допустимые значения: "name", "size", "type", "modification_date", "emblems". - - - - - /schemas/apps/nautilus/icon_view/default_sort_in_reverse_order - /apps/nautilus/icon_view/default_sort_in_reverse_order - nautilus - bool - false - - Reverse sort order in new windows - - If true, files in new windows will be sorted in reverse order. - ie, if sorted by name, then instead of sorting the files from - "a" to "z", they will be sorted from "z" to "a"; if sorted by - size, instead of being incrementally they will be sorted - decrementally. - - - - - Sortierreihenfolge in neu geöffneten Fenstern umkehren? - Falls dieser Schlüssel wahr ist, werden Dateien in neu geöffneten Fenstern in umgekehrter Reihenfolge sortiert. Falls sie dem Namen nach sortiert werden, so werden die Dateien nicht von »a« nach »z«, sondern von »z« nach »a« angezeigt; falls sie der Größe nach sortiert werden, werden sie auf- statt absteigend angezeigt. - - - - Reverse sort order in new windows - If true, files in new windows will be sorted in reverse order. ie, if sorted by name, then instead of sorting the files from "a" to "z", they will be sorted from "z" to "a"; if sorted by size, instead of being incrementally they will be sorted decrementally. - - - - Использовать обратный порядок сортировки для новых окон - Если этот ключ установлен, файлы в новых окнах будут сортироваться в обратном порядке. Например, если включена сортировка по имени, то вместо сортировки файлов в порядке от «а» до «я» файлы будут отсортированы в порядке от «я» до «а»; если же включена сортировка по размеру, то вместо порядка от меньшего к большему будет использован порядок от большего к меньшему. - - - - - /schemas/apps/nautilus/icon_view/default_use_tighter_layout - /apps/nautilus/icon_view/default_use_tighter_layout - nautilus - bool - false - - Use tighter layout in new windows - - If true, icons will be laid out tighter by default in new windows. - - - - - Engere Anordnung in neu geöffneten Fenster verwenden? - Falls dieser Schlüssel wahr ist, werden Symbole in neu geöffneten Fenstern per Vorgabe enger angeordnet. - - - - Use tighter layout in new windows - If true, icons will be laid out tighter by default in new windows. - - - - Использовать плотное размещение значков в новых окнах - Если этот ключ установлен, по умолчанию новые окна будут использовать плотное размещение значков. - - - - - /schemas/apps/nautilus/icon_view/labels_beside_icons - /apps/nautilus/icon_view/labels_beside_icons - nautilus - bool - false - - Put labels beside icons - - If true, labels will be placed beside icons rather than - underneath them. - - - - - Beschriftungen neben Symbolen anzeigen - Falls dieser Schlüssel wahr ist, werden Schriften neben Symbole und nicht unterhalb von ihnen platziert. - - - - Put labels beside icons - If true, labels will be placed beside icons rather than underneath them. - - - - Размещать подписи рядом со значками - Если этот ключ установлен, подписи будут размещены сбоку от значков, а не под ними. - - - - - /schemas/apps/nautilus/icon_view/default_use_manual_layout - /apps/nautilus/icon_view/default_use_manual_layout - nautilus - bool - false - - Use manual layout in new windows - - If true, new windows will use manual layout by default. - - - - - Manuelle Anordnung in neu geöffneten Fenster verwenden? - Falls dieser Schlüssel wahr ist, wird in neuen Fenstern per Vorgabe manuelle Anordnung verwendet. - - - - Use manual layout in new windows - If true, new windows will use manual layout by default. - - - - Использовать ручное размещение значков в новых окнах - Если этот ключ установлен, новые окна будут по умолчанию использовать ручное размещение. - - - - - /schemas/apps/nautilus/icon_view/default_zoom_level - /apps/nautilus/icon_view/default_zoom_level - nautilus - string - standard - - Default icon zoom level - - Default zoom level used by the icon view. - - - - - Voreingestellte Symbolvergrößerungsstufe - Voreingestellte Vergrößerungsstufe der Symbolansicht. - - - - Default icon zoom level - Default zoom level used by the icon view. - - - - Масштаб значков по умолчанию - Масштаб по умолчанию при просмотре в виде значков. - - - - - /schemas/apps/nautilus/icon_view/thumbnail_size - /apps/nautilus/icon_view/thumbnail_size - nautilus - int - 64 - - Default Thumbnail Icon Size - - The default size of an icon for a thumbnail in the icon view. - - - - - Voreingestellte Symbolgröße der Miniatur-Vorschaubilder - Die Standardgröße eines Symbols für ein Miniatur-Vorschaubild in der Symbolansicht. - - - - Default Thumbnail Icon Size - The default size of an icon for a thumbnail in the icon view. - - - - Размер значков-миниатюр по умолчанию - Размер миниатюры по умолчанию при просмотре в виде значков. - - - - - /schemas/apps/nautilus/icon_view/text_ellipsis_limit - /apps/nautilus/icon_view/text_ellipsis_limit - list - string - [3] - - Text Ellipsis Limit - - - - A string specifying how parts of overlong file names - should be replaced by ellipses, depending on the zoom - level. - Each of the list entries is of the form "Zoom Level:Integer". - For each specified zoom level, if the given integer is - larger than 0, the file name will not exceed the given number of lines. - If the integer is 0 or smaller, no limit is imposed on the specified zoom level. - A default entry of the form "Integer" without any specified zoom level - is also allowed. It defines the maximum number of lines for all other zoom levels. - Examples: - 0 - always display overlong file names; - 3 - shorten file names if they exceed three lines; - smallest:5,smaller:4,0 - shorten file names if they exceed five lines - for zoom level "smallest". Shorten file names if they exceed four lines - for zoom level "smaller". Do not shorten file names for other zoom levels. - - Available zoom levels: - smallest (33%), smaller (50%), small (66%), standard (100%), large (150%), - larger (200%), largest (400%) - - - - - Lange Dateinamen kürzen - Diese Zeichenkette legt fest, wann überlange Dateinamen durch eine Ellipse gekürzt werden, abhängig von der Ansichtsgröße. Jeder Listeneintrag hat die Form »Ansichtsgröße:Zahl«. In jeder angegebenen Ansichtsgröße mit einer Zahl größer als 0 wird der Dateiname diese Länge in Zeilen nicht überschreiten. Wird eine Zahl kleiner oder gleich 0 angegeben, wird die Länge nicht begrenzt. Ein Eintrag der Form »Zahl« ist ebenfalls möglich und wird also Vorgabe für nicht explizit genannte Ansichtsgrößen verwendet. Beispiele: 0 - überlange Dateinamen anzeigen; 3 - Dateinamen kürzen wenn diese länger als drei Zeilen sind; smallest:5,smaller:4,0 - Dateinamen kürzen wenn diese länger als fünf Zeilen in der Ansichtsgröße »smallest« sind. Dateinamen kürzen wenn diese länger als vier Zeilen in der Ansichtsgröße »small« sind. Dateinamen in anderen Ansichtsgrößen nicht kürzen. Verfügbare Ansichtsgrößen: »smallest« (33%), »smaller« (50%), »small« (66%), »standard« (100%), »large« (150%), »larger« (200%) sowie »largest« (400%) - - - - Text Ellipsis Limit - A string specifying how parts of overlong file names should be replaced by ellipses, depending on the zoom level. Each of the list entries is of the form "Zoom Level:Integer". For each specified zoom level, if the given integer is larger than 0, the file name will not exceed the given number of lines. If the integer is 0 or smaller, no limit is imposed on the specified zoom level. A default entry of the form "Integer" without any specified zoom level is also allowed. It defines the maximum number of lines for all other zoom levels. Examples: 0 - always display overlong file names; 3 - shorten file names if they exceed three lines; smallest:5,smaller:4,0 - shorten file names if they exceed five lines for zoom level "smallest". Shorten file names if they exceed four lines for zoom level "smaller". Do not shorten file names for other zoom levels. Available zoom levels: smallest (33%), smaller (50%), small (66%), standard (100%), large (150%), larger (200%), largest (400%) - - - - Предел многоточия - Строка, определяющая, как будут опускаться части слишком длинных имён файлов, в зависимости от масштаба. Каждый элемент списка имеет вид «Масштаб:Число». Для каждого масштаба, если это число больше нуля, имя файла не будет превышать заданное число строк. Если число меньше или равно 0, предел для данного масштаба не устанавливается. Значение по умолчанию (вида «Число», без указания масштаба) также допускается. Оно определяет максимальное число строк для всех масштабов. Например, 0 — всегда отображать имя файла целиком; 3 — укорачивать имена файлов, если они не вмещаются в три строки, smallest:5,smaller:4,0 — укорачивать имена файлов, не вмещающихся в пять строк для масштаба "smallest", укорачивать имена файлов, не вмещающихся в четыре строки для масштаба "smaller" и не ограничивать длину имён файлов в других масштабах. Существующие масштабы: smallest (33%), smaller (50%), small (66%), standard (100%), large (150%), larger (200%), largest (400%) - - - - - - /schemas/apps/nautilus/compact_view/default_zoom_level - /apps/nautilus/compact_view/default_zoom_level - nautilus - string - standard - - Default compact view zoom level - - Default zoom level used by the compact view. - - - - - Voreingestellte Symbolvergrößerungsstufe für die kompakte Ansicht - Voreingestellte Vergrößerungsstufe der kompakten Ansicht. - - - - Default compact view zoom level - Default zoom level used by the compact view. - - - - Масштаб значков по умолчанию в компактном режиме - Масштаб по умолчанию при просмотре в компактном режиме - - - - - /schemas/apps/nautilus/compact_view/all_columns_have_same_width - /apps/nautilus/compact_view/all_columns_have_same_width - nautilus - bool - true - - All columns have same width - - If this preference is set, all columns in the compact view have the same - width. Otherwise, the width of each column is determined seperately. - - - - - Gleiche Spaltenbreiten - Falls dieser Schlüssel wahr ist, haben alle Spalten in der kompakten Ansicht die gleiche Breite. Andernfalls wird die Breite jeder Spalte unabhängig von den anderen gewählt. - - - - All columns have same width - If this preference is set, all columns in the compact view have the same width. Otherwise, the width of each column is determined separately. - - - - У всех столбцов одинаковая ширина - Если этот ключ установлен, все столбцы в компактном виде будут иметь одинаковую ширину. В противном случае ширина каждого столбца будет определяться отдельно. - - - - - - - /schemas/apps/nautilus/list_view/default_sort_order - /apps/nautilus/list_view/default_sort_order - nautilus - string - name - - Default sort order - - The default sort-order for the items in the list view. Possible - values are "name", "size", "type", and "modification_date". - - - - - Voreingestellte Sortierreihenfolge - Die voreingestellte Sortierreihenfolge für Objekte in der Listenansicht. Zulässige Werte: »name« (Name), »size« (Größe), »type« (Typ) sowie »modification_date« (Änderungsdatum). - - - - Default sort order - The default sort-order for the items in the list view. Possible values are "name", "size", "type", and "modification_date". - - - - Порядок сортировки по умолчанию - Порядок сортировки объектов по умолчанию в режиме списка. Допустимые значения: "name", "size", "type", "modification_date". - - - - - /schemas/apps/nautilus/list_view/default_sort_in_reverse_order - /apps/nautilus/list_view/default_sort_in_reverse_order - nautilus - bool - false - - Reverse sort order in new windows - - If true, files in new windows will be sorted in reverse order. - ie, if sorted by name, then instead of sorting the files from - "a" to "z", they will be sorted from "z" to "a". - - - - - Sortierreihenfolge in neu geöffneten Fenstern umkehren? - Falls dieser Schlüssel wahr ist, werden Dateien in neu geöffneten Fenstern in umgekehrter Reihenfolge sortiert. Falls sie dem Namen nach sortiert werden, so werden die Dateien nicht von »a« nach »z«, sondern von »z« nach »a« angezeigt. - - - - Reverse sort order in new windows - If true, files in new windows will be sorted in reverse order. ie, if sorted by name, then instead of sorting the files from "a" to "z", they will be sorted from "z" to "a". - - - - Использовать обратный порядок сортировки для новых окон - Если этот ключ установлен, файлы в новых окнах будут сортироваться в обратном порядке. Например, если включена сортировка по имени, то вместо сортировки файлов в порядке от «а» до «я» файлы будут отсортированы в порядке от «я» до «а». - - - - - /schemas/apps/nautilus/list_view/default_zoom_level - /apps/nautilus/list_view/default_zoom_level - nautilus - string - smaller - - Default list zoom level - - Default zoom level used by the list view. - - - - - Voreingestellte Listenvergrößerungsstufe - Voreingestellte Vergrößerungsstufe der Listenansicht. - - - - Default list zoom level - Default zoom level used by the list view. - - - - Масштаб списка по умолчанию - Масштаб по умолчанию при просмотре в виде списка. - - - - - /schemas/apps/nautilus/list_view/default_visible_columns - /apps/nautilus/list_view/default_visible_columns - nautilus - list - string - [name,size,type,date_modified] - - Default list of columns visible in the list view - - Default list of columns visible in the list view. - - - - - Vorgabeliste in der Listenansicht anzuzeigender Spalten - Vorgabeliste in der Listenansicht anzuzeigender Spalten. - - - - Default list of columns visible in the list view - Default list of columns visible in the list view. - - - - Перечень столбцов списка по умолчанию - Перечень столбцов, показываемых по умолчанию при просмотре в виде списка. - - - - - /schemas/apps/nautilus/list_view/default_column_order - /apps/nautilus/list_view/default_column_order - nautilus - list - string - [name,size,type,date_modified] - - Default column order in the list view - - Default column order in the list view. - - - - - Voreingestellte Spaltenreihenfolge der Listenansicht - Voreingestellte Spaltenreihenfolge der Listenansicht. - - - - Default column order in the list view - Default column order in the list view. - - - - Порядок столбцов списка по умолчанию - Порядок столбцов по умолчанию при просмотре в виде списка. - - - - - /schemas/apps/nautilus/preferences/date_format - /apps/nautilus/preferences/date_format - nautilus - string - locale - - Date Format - - The format of file dates. Possible values are "locale", - "iso", and "informal". - - - - - Datumsformat - Das Format der Dateidaten. Zulässige Werte: »locale«, »iso« sowie »informal«. - - - - Date Format - The format of file dates. Possible values are "locale", "iso", and "informal". - - - - Формат даты - Формат даты файлов. Возможные значения: "locale", "iso" и "informal". - - - - - /schemas/apps/nautilus/preferences/sidebar_width - /apps/nautilus/preferences/sidebar_width - nautilus - int - 148 - - Width of the side pane - - The default width of the side pane in new windows. - - - - - Breite der Seitenleiste - Die Vorgabebreite der Seitenleiste in neu geöffneten Fenstern. - - - - Width of the side pane - The default width of the side pane in new windows. - - - - Ширина боковой панели - Ширина боковой панели в новых окнах по умолчанию. - - - - - /schemas/apps/nautilus/preferences/start_with_toolbar - /apps/nautilus/preferences/start_with_toolbar - nautilus - bool - true - - Show toolbar in new windows - - If set to true, newly opened windows will have toolbars visible. - - - - - Werkzeugleiste in neu geöffneten Fenstern anzeigen? - Falls dieser Schlüssel wahr ist, wird in neu geöffneten Fenstern die Werkzeugleiste angezeigt. - - - - Show toolbar in new windows - If set to true, newly opened windows will have toolbars visible. - - - - Показывать панель инструментов в новых окнах - Если этот ключ установлен, во вновь создаваемых окнах будут видны панели инструментов. - - - - - /schemas/apps/nautilus/preferences/start_with_location_bar - /apps/nautilus/preferences/start_with_location_bar - nautilus - bool - true - - Show location bar in new windows - - If set to true, newly opened windows will have the - location bar visible. - - - - - Adressleiste in neu geöffneten Fenstern anzeigen? - Falls dieser Schlüssel wahr ist, wird in neu geöffneten Fenstern die Adressleiste angezeigt. - - - - Show location bar in new windows - If set to true, newly opened windows will have the location bar visible. - - - - Показывать строку адреса в новых окнах - Если этот ключ установлен, во вновь создаваемых окнах будет видна строка адреса. - - - - - /schemas/apps/nautilus/preferences/start_with_status_bar - /apps/nautilus/preferences/start_with_status_bar - nautilus - bool - true - - Show status bar in new windows - - If set to true, newly opened windows will have the status - bar visible. - - - - - Statusleiste in neu geöffneten Fenstern anzeigen? - Falls dieser Schlüssel wahr ist, wird in neu geöffneten Fenstern die Statusleiste angezeigt. - - - - Show status bar in new windows - If set to true, newly opened windows will have the status bar visible. - - - - Показывать строку состояния в новых окнах - Если этот ключ установлен, во вновь создаваемых окнах будет видна строка состояния. - - - - - /schemas/apps/nautilus/preferences/start_with_sidebar - /apps/nautilus/preferences/start_with_sidebar - nautilus - bool - true - - Show side pane in new windows - - If set to true, newly opened windows will have the side - pane visible. - - - - - Seitenleiste in neu geöffneten Fenstern anzeigen? - Falls dieser Schlüssel wahr ist, wird in neu geöffneten Fenstern die Seitenleiste angezeigt. - - - - Show side pane in new windows - If set to true, newly opened windows will have the side pane visible. - - - - Показывать боковую панель в новых окнах - Если этот ключ установлен, во вновь создаваемых окнах будет видна боковая панель. - - - - - /schemas/apps/nautilus/preferences/side_pane_view - /apps/nautilus/preferences/side_pane_view - nautilus - string - - - Side pane view - - The side pane view to show in newly opened windows. - - - - - Seitenleistenansicht - Die in neu geöffneten Fenstern anzuzeigende Seitenleistenansicht. - - - - Side pane view - The side pane view to show in newly opened windows. - - - - Режим боковой панели - Какой именно режим (компонент просмотра) использовать на боковой панели в новых окнах. - - - - - /schemas/apps/nautilus/sidebar_panels/tree/show_only_directories - /apps/nautilus/sidebar_panels/tree/show_only_directories - nautilus - bool - true - - Only show folders in the tree side pane - - If set to true, Nautilus will only show folders - in the tree side pane. Otherwise it will show both folders - and files. - - - - - Ausschließlich Ordner in der Baum-Seitenleiste anzeigen - Falls dieser Schlüssel wahr ist, zeigt Nautilus in der Baumseitenleiste ausschließlich Ordner an. Andernfalls werden sowohl Ordner als auch Dateien angezeigt. - - - - Only show folders in the tree side pane - If set to true, Nautilus will only show folders in the tree side pane. Otherwise it will show both folders and files. - - - - Показывать только папки в боковой панели «Дерево» - Если этот ключ установлен, в боковой панели в режиме «Дерево» будут показываться только папки. В противном случае будут показываться и папки, и файлы. - - - - - /schemas/apps/nautilus/desktop/home_icon_visible - /apps/nautilus/desktop/home_icon_visible - nautilus - bool - true - - Home icon visible on desktop - - If this is set to true, an icon linking to the home folder - will be put on the desktop. - - - - - Symbol »Persönlicher Ordner« auf der Arbeitsfläche anzeigen - Falls dieser Schlüssel wahr ist, wird auf der Arbeitsfläche eine Verknüpfung mit dem persönlichen Ordner angezeigt. - - - - Home icon visible on desktop - If this is set to true, an icon linking to the home folder will be put on the desktop. - - - - Значок домашней папки присутствует на рабочем столе - Если этот ключ установлен, на рабочий стол будет помещён значок, ссылающийся на домашнюю папку. - - - - - /schemas/apps/nautilus/desktop/computer_icon_visible - /apps/nautilus/desktop/computer_icon_visible - nautilus - bool - true - - Computer icon visible on desktop - - If this is set to true, an icon linking to the computer location - will be put on the desktop. - - - - - Rechnersymbol auf der Arbeitsfläche anzeigen - Falls dieser Schlüssel wahr ist, wird auf der Arbeitsfläche eine Verknüpfung mit dem Ort »Rechner« angezeigt. - - - - Computer icon visible on desktop - If this is set to true, an icon linking to the computer location will be put on the desktop. - - - - Показывать значок «Компьютер» на рабочем столе - Если этот ключ установлен, на рабочий стол будет помещён значок, ссылающийся на «Компьютер». - - - - - /schemas/apps/nautilus/desktop/trash_icon_visible - /apps/nautilus/desktop/trash_icon_visible - nautilus - bool - true - - Trash icon visible on desktop - - If this is set to true, an icon linking to the trash - will be put on the desktop. - - - - - Müllsymbol auf Arbeitsfläche anzeigen - Falls dieser Schlüssel wahr ist, wird auf der Arbeitsfläche eine Verknüpfung mit dem Müll angezeigt. - - - - Wastebasket icon visible on desktop - If this is set to true, an icon linking to the wastebasket will be put on the desktop. - - - - Значок корзины присутствует на рабочем столе - Если этот ключ установлен, на рабочий стол будет помещён значок, ссылающийся на корзину. - - - - - /schemas/apps/nautilus/desktop/volumes_visible - /apps/nautilus/desktop/volumes_visible - nautilus - bool - true - - Show mounted volumes on the desktop - - If this is set to true, icons linking to mounted - volumes will be put on the desktop. - - - - - Eingebundene Datenträger auf der Arbeitsfläche anzeigen - Falls dieser Schlüssel wahr ist, werden auf der Arbeitsfläche Symbole angezeigt, die mit eingebundenen Datenträgern verknüpft sind. - - - - Show mounted volumes on the desktop - If this is set to true, icons linking to mounted volumes will be put on the desktop. - - - - Показывать подсоединённые тома на рабочем столе - Если этот ключ установлен, на рабочий стол будут помещаться значки, ссылающиеся на присоединённые тома. - - - - - /schemas/apps/nautilus/desktop/network_icon_visible - /apps/nautilus/desktop/network_icon_visible - nautilus - bool - false - - Network Servers icon visible on the desktop - - If this is set to true, an icon linking to the Network Servers view - will be put on the desktop. - - - - - Symbol »Netzwerk-Server« auf der Arbeitsfläche anzeigen - Falls dieser Schlüssel wahr ist, wird auf der Arbeitsfläche eine Verknüpfung mit den Netzwerk-Servern angezeigt. - - - - Network Servers icon visible on the desktop - If this is set to true, an icon linking to the Network Servers view will be put on the desktop. - - - - Значок «Сетевые серверы» присутствует на рабочем столе - Если этот ключ установлен, на рабочий стол будет помещён значок, ссылающийся на «Сетевые серверы». - - - - - /schemas/apps/nautilus/desktop/computer_icon_name - /apps/nautilus/desktop/computer_icon_name - nautilus - string - - Desktop computer icon name - - This name can be set if you want a custom name - for the computer icon on the desktop. - - - - - Name des Arbeitsflächensymbols »Rechner« - Dieser Wert legt einen benutzerdefinierten Namen für das Symbol »Rechner« auf der Arbeitsfläche fest. - - - - Desktop computer icon name - This name can be set if you want a custom name for the computer icon on the desktop. - - - - Имя значка «Компьютер» на рабочем столе - Это имя может быть установлено, если необходимо переименовать значок компьютера на рабочем столе. - - - - - /schemas/apps/nautilus/desktop/home_icon_name - /apps/nautilus/desktop/home_icon_name - nautilus - string - - Desktop home icon name - - This name can be set if you want a custom name - for the home icon on the desktop. - - - - - Name des Arbeitsflächensymbols »Personlicher Ordner« - Dieser Wert legt einen benutzerdefinierten Namen für das Symbol »Persönlichen Ordner« auf der Arbeitsfläche fest. - - - - Desktop home icon name - This name can be set if you want a custom name for the home icon on the desktop. - - - - Имя значка «Домашняя папка» на рабочем столе - Это имя может быть установлено, если необходимо переименовать значок домашней папки на рабочем столе. - - - - - /schemas/apps/nautilus/desktop/trash_icon_name - /apps/nautilus/desktop/trash_icon_name - nautilus - string - - Desktop trash icon name - - This name can be set if you want a custom name - for the trash icon on the desktop. - - - - - Name des Arbeitsflächensymbols »Müll« - Dieser Wert legt einen benutzerdefinierten Namen für das Symbol »Müll« auf der Arbeitsfläche fest. - - - - Desktop wastebasket icon name - This name can be set if you want a custom name for the wastebasket icon on the desktop. - - - - Имя значка «Корзина» на рабочем столе - Это имя может быть установлено, если необходимо переименовать значок корзины на рабочем столе. - - - - - /schemas/apps/nautilus/desktop/network_icon_name - /apps/nautilus/desktop/network_icon_name - nautilus - string - - Network servers icon name - - This name can be set if you want a custom name - for the network servers icon on the desktop. - - - - - Name des Arbeitsflächensymbols »Netzwerk-Server« - Dieser Wert legt einen benutzerdefinierten Namen für das Symbol »Netzwerk-Server« auf der Arbeitsfläche fest. - - - - Network servers icon name - This name can be set if you want a custom name for the network servers icon on the desktop. - - - - Имя значка сетевых серверов - Это имя может быть установлено, если необходимо переименовать значок сетевых серверов на рабочем столе. - - - - - /schemas/apps/nautilus/desktop/text_ellipsis_limit - /apps/nautilus/desktop/text_ellipsis_limit - int - 3 - - Text Ellipsis Limit - - An integer specifying how parts of overlong file names - should be replaced by ellipses on the desktop. - If the number is larger than 0, the file name will not exceed - the given number of lines. If the number is 0 or smaller, no - limit is imposed on the number of displayed lines. - - - - - Lange Dateinamen kürzen - Diese Ganzzahl legt fest, wann überlange Dateinamen auf der Arbeitsfläche gekürzt werden. Ist die Zahl größer als 0, so wird der Dateiname diese Länge in Zeilen nicht überschreiten. Wird eine Zahl kleiner oder gleich 0 angegeben, wird die Länge nicht begrenzt. - - - - Text Ellipsis Limit - An integer specifying how parts of overlong file names should be replaced by ellipses on the desktop. If the number is larger than 0, the file name will not exceed the given number of lines. If the number is 0 or smaller, no limit is imposed on the number of displayed lines. - - - - Предел многоточия - Целое число, определяющее, как будут опускаться части слишком длинных имён файлов на рабочем столе. Если это число больше нуля, то имя файла не будет превышать заданное число строк. Если число меньше или равно нулю, ограничение на число строк не устанавливается. - - - - - diff --git a/gconf/schemas/baobab.schemas b/gconf/schemas/baobab.schemas deleted file mode 100644 index 9af899c..0000000 --- a/gconf/schemas/baobab.schemas +++ /dev/null @@ -1,145 +0,0 @@ - - - - /schemas/apps/baobab/ui/toolbar_visible - /apps/baobab/ui/toolbar_visible - baobab - bool - TRUE - - Toolbar is Visible - Whether the toolbar should be visible in main window. - - - - Werkzeugleiste anzeigen - Legt fest, ob die Werkzeugleiste im Hauptfenster angezeigt wird. - - - - Toolbar is Visible - Whether the toolbar should be visible in main window. - - - - Панель инструментов видима - Должна ли быть видима панель инструментов в главном окне. - - - - - /schemas/apps/baobab/ui/statusbar_visible - /apps/baobab/ui/statusbar_visible - baobab - bool - FALSE - - Status Bar is Visible - Whether the status bar at the bottom of main window - should be visible. - - - - Statusleiste anzeigen - Legt fest, ob die Statusleiste am unteren Rand des Hauptfensters angezeigt wird. - - - - Status Bar is Visible - Whether the status bar at the bottom of main window should be visible. - - - - Строка состояния видима - Должна ли быть видима строка состояния внизу главного окна. - - - - - /schemas/apps/baobab/properties/enable_home_monitor - /apps/baobab/properties/enable_home_monitor - baobab - bool - FALSE - - Enable monitoring of home directory - Whether any change to the home directory should - be monitored. - - - - Persönlichen Ordner überwachen - Legt fest, ob der persönliche Ordner auf Änderungen überwacht werden soll. - - - - Enable monitoring of home directory - Whether any change to the home directory should be monitored. - - - - Включить наблюдение за домашним каталогом - Наблюдать ли за изменениями в домашнем каталоге. - - - - - - /schemas/apps/baobab/properties/skip_scan_uri_list - /apps/baobab/properties/skip_scan_uri_list - baobab - list - string - [] - - Excluded partitions URIs - A list of URIs for partitions to be excluded from scanning. - - - - Adressen der ausgeschlossenen Partitionen - Eine Liste von Adressen der Partitionen, die nicht eingelesen werden sollen. - - - - Excluded partitions URIs - A list of URIs for partitions to be excluded from scanning. - - - - Исключённые разделы - Список разделов, которые не будут сканироваться. - - - - - /schemas/apps/baobab/ui/baobab_subfoldertips_visible - /apps/baobab/ui/baobab_subfoldertips_visible - baobab - bool - TRUE - - Subfolders tooltips visible - Whether the subfolder tooltips of the selected folder - are drawn. - - - - Minihilfen für Unterordner sichtbar - Legt fest, ob die Minihilfen der Unterordner eines ausgewählten Ordners dargestellt werden. - - - - Subfolder tooltips visible - Whether the subfolder tooltips of the selected folder are drawn. - - - - Отображать подкаталоги в подсказках - Будут ли видны всплывающие подсказки с названиями папок, вложенных в данную папку. - - - - - - diff --git a/gconf/schemas/blackjack.schemas b/gconf/schemas/blackjack.schemas deleted file mode 100644 index 8f0ff15..0000000 --- a/gconf/schemas/blackjack.schemas +++ /dev/null @@ -1,193 +0,0 @@ - - - - - /schemas/apps/blackjack/toolbar - /apps/blackjack/toolbar - blackjack - bool - TRUE - - Whether or not to show the toolbar - Whether or not to show the toolbar. - - - - Legt fest, ob die Werkzeugleiste angezeigt wird - Werkzeugleiste anzeigen? - - - - Whether to show the toolbar - Whether to show the toolbar. - - - - Показать или скрыть панель инструментов - Показать или скрыть панель инструментов. - - - - - /schemas/apps/blackjack/settings/variation - /apps/blackjack/settings/variation - blackjack - string - Vegas_Strip.rules - - The variation of the rules file to use - The name of the rules file containing the variation of the rules to play. - - - - Die zu verwendende Regeldatei - Der Name der Regeldatei, die die Regeln des zu spielenden Solitaire-Spiels enthält. - - - - The variation of the rules file to use - The name of the rules file containing the variation of the rules to play. - - - - Файл вариантов условий игр. - Имя файла правил, содержащего варианты условий игр. - - - - - /schemas/apps/blackjack/deck/card_style - /apps/blackjack/deck/card_style - blackjack - string - - - Theme file name - The name of the file with the graphics for the cards. - - - - Name der Themadatei - Der Name der Datei, die die grafische Gestaltung der Karten festlegt. - - - - Theme file name - The name of the file with the graphics for the cards. - - - - Имя файла темы - Имя файла с изображениями карт. - - - - - /schemas/apps/blackjack/global/balance - /apps/blackjack/global/balance - blackjack - float - 500.0 - - The amount of money in your bank - The amount of money in your bank. - - - - Die Menge des Geldes in Ihrer Bank - Die Menge des Geldes in Ihrer Bank. - - - - The amount of money in your bank - The amount of money in your bank. - - - - Количество денег на вашем счету - Количество денег на вашем счету. - - - - - /schemas/apps/blackjack/settings/show_probabilities - /apps/blackjack/settings/show_probabilities - blackjack - bool - FALSE - - Display probabilities - Display the probabilities of each dealer hand outcome and the expected value of your hand. - - - - Wahrscheinlichkeiten anzeigen - Die Wahrscheinlichkeiten der Geberhandergebnisse und den erwarteten Wert Ihrer Hand anzeigen. - - - - Display probabilities - Display the probabilities of each dealer hand outcome and the expected value of your hand. - - - - Показывать вероятности - Показывать вероятности при каждой сдаче карты и ожидаемое значение у вас на руках. - - - - - /schemas/apps/blackjack/settings/quick_deal - /apps/blackjack/settings/quick_deal - blackjack - bool - FALSE - - Use a quick deal - Use a quick deal with no delay between each card. - - - - Züge schnell ausführen - Züge schnell ausführen, d.h. ohne Verzögerung zwischen den Karten. - - - - Use a quick deal - Use a quick deal with no delay between each card. - - - - Использовать быструю сдачу карт - Использовать быструю сдачу без задержек между сдачей каждой карты. - - - - - /schemas/apps/blackjack/settings/never_insurance - /apps/blackjack/settings/never_insurance - blackjack - bool - FALSE - - Never take insurance - Never take insurance with a dealer showing an ace. - - - - Nie eine Versicherung nehmen - Nie eine Versicherung nehmen, wenn der Geber ein Ass zeigt. - - - - Never take insurance - Never take insurance with a dealer showing an ace. - - - - Никогда не брать страховку - Никогда не брать страховку от сдачи туза. - - - - diff --git a/gconf/schemas/bogo-junk-plugin.schemas b/gconf/schemas/bogo-junk-plugin.schemas deleted file mode 100644 index 2787256..0000000 --- a/gconf/schemas/bogo-junk-plugin.schemas +++ /dev/null @@ -1,33 +0,0 @@ - - - - /schemas/apps/evolution/mail/junk/bogofilter/unicode - /apps/evolution/mail/junk/bogofilter/unicode - bf-eplugin - bool - true - - Convert mail messages to Unicode - - Convert message text to Unicode UTF-8 to unify spam/ham tokens - coming from different character sets. - - - - - E-Mails nach Unicode konvertieren - E-Mail-Text in Unicode/UTF-8 umwandeln, um die unerwünschten Elemente aus verschiedenen Zeichenkodierungen einheitlich zu erkennen. - - - - Convert mail messages to Unicode - Convert message text to Unicode UTF-8 to unify spam/ham tokens coming from different character sets. - - - - Преобразовывать почтовые сообщения в Юникод - Преобразовывать текст сообщения в кодировку UTF-8 для облегчения работы фильтров спама, имеющих проблемы с различными кодировками. - - - - diff --git a/gconf/schemas/bug-buddy.schemas b/gconf/schemas/bug-buddy.schemas deleted file mode 100644 index 70db1e1..0000000 --- a/gconf/schemas/bug-buddy.schemas +++ /dev/null @@ -1,58 +0,0 @@ - - - - - /schemas/apps/bug-buddy/name - /apps/bug-buddy/name - bug-buddy - string - - - Bug reporter name - Real name of user reporting the bug. - - - - - /schemas/apps/bug-buddy/email_address - /apps/bug-buddy/email_address - bug-buddy - string - - - Email Address - Email Address for submitting bug reports to GNOME Bugzilla. - This address will be used for correspondence regarding the bug you - are submitting. If you already have a GNOME Bugzilla account, - please use it as your Email Address. - - - - - /schemas/apps/bug-buddy/bugfile - /apps/bug-buddy/bugfile - bug-buddy - string - - - File to store unsent bug reports. - File where bug-buddy will save your bug report in case it - can't be sent immediately to Bugzilla. - - - - - /schemas/apps/gnome_settings_daemon/gtk-modules/gnomesegvhandler - /apps/gnome_settings_daemon/gtk-modules/gnomesegvhandler - gnome - bool - true - - GTK+ module for crash collection support. - This key determines the GTK+ module to load for crash collection - support. - - - - - diff --git a/gconf/schemas/charpick.schemas b/gconf/schemas/charpick.schemas deleted file mode 100644 index 304d17b..0000000 --- a/gconf/schemas/charpick.schemas +++ /dev/null @@ -1,81 +0,0 @@ - - - - - /schemas/apps/charpick/prefs/default_list - charpick_applet2 - string - - DEPRECATED - Characters shown on applet startup - - - - - VERALTET - Beim Start des Applets anzuzeigende Zeichen - - - - - DEPRECATED — Characters shown on applet startup - - - - - НЕ РЕКОМЕНДУЕТСЯ - Символы, показываемые при запуске апплета - - - - - - /schemas/apps/charpick/prefs/current_list - charpick_applet2 - string - - Characters shown on applet startup - The string that the user had selected when the applet was last used. This string will be displayed when the user starts the applet. - - - - Beim Applet-Start anzuzeigende Zeichen - Die Zeichenkette, die der Benutzer beim letzten Einsatz des Applets gewählt hat. Diese Zeichenkette wird angezeigt, sobald der Benutzer das Applet startet. - - - - Characters shown on applet startup - The string that the user had selected when the applet was last used. This string will be displayed when the user starts the applet. - - - - Символы, показываемые при запуске - Строка, выбранная пользователем при последнем использовании. Эта строка будет показываться при дальнейших запусках. - - - - - /schemas/apps/charpick/prefs/chartable - charpick_applet2 - list - string - - List of available palettes - List of strings containing the available palettes. - - - - Liste der verfügbaren Paletten - Liste der Zeichenketten, die die verfügbaren Paletten enthalten. - - - - List of available palettes - List of strings containing the available palettes. - - - - Список доступных шаблонов символов - Список строк, содержащих доступные шаблоны. - - - - - diff --git a/gconf/schemas/cheese.schemas b/gconf/schemas/cheese.schemas deleted file mode 100644 index dc68b63..0000000 --- a/gconf/schemas/cheese.schemas +++ /dev/null @@ -1,442 +0,0 @@ - - - - /schemas/apps/cheese/countdown - /apps/cheese/countdown - cheese - bool - 1 - - Use a countdown - Set to True to show countdown when taking a photo - - - - Countdown benutzen - Legt fest, ob ein Countdown beim Aufnehmen eines Fotos angezeigt werden soll - - - - Use a countdown - Set to True to show countdown when taking a photo - - - - Использовать обратный отсчёт - Если этот ключ установлен, будет использоваться обратный отсчёт при фотографировании. - - - - - /schemas/apps/cheese/flash - /apps/cheese/flash - cheese - bool - 1 - - Use a flash - Set to True to use flash when taking a photo - - - - Blitz verwenden - Legt fest, ob der Blitz beim Aufnehmen eines Fotos verwendet werden soll - - - - Use a flash - Set to True to use flash when taking a photo - - - - Использовать вспышку - Если этот ключ установлен, при съёмке фотографий будет использоваться вспышка. - - - - - /schemas/apps/cheese/camera - /apps/cheese/camera - cheese - string - - - Camera device string indicator - The device which points to the camera (e.g. /dev/video0) - - - - Geräte-Pfad zur Kamera - Geräte-Pfad, der auf die Kamera zeigt (z.B. /dev/video0) - - - - Camera device string indicator - The device which points to the camera (e.g. /dev/video0) - - - - Строка-индикатор веб-камеры - Строка устройства, которая указывает на веб-камеру, например /dev/video0. - - - - - /schemas/apps/cheese/selected_effects - /apps/cheese/selected_effects - cheese - list - string - [] - - Selected Effects - - A list of effects applied on startup. Possible values are: "mauve", - "noir_blanc", "saturation", "hulk", "vertical-flip", "horizontal-flip", - "shagadelic", "vertigo", "edge", "dice" and "warp" - - - - Ausgewählte Effekte - Effekte, die beim Starten aktiviert werden. Mögliche Werte sind: »mauve« (Violett), »noir_blanc« (Schwarz-weiß), »saturation« (Sättigung), »hulk«, »vertical-flip« (Vertikale Spiegelung), »horizontal-flip« (Horizontale Spiegelung), »shagadelic« (Psychedelisch), »vertigo«, »edge« (Ecken), »dice« (Würfel), »warp« - - - - Selected Effects - A list of effects applied on startup. Possible values are: "mauve", "noir_blanc", "saturation", "hulk", "vertical-flip", "horizontal-flip", "shagadelic", "vertigo", "edge", "dice" and "warp" - - - - Выбранные эффекты - Эффекты, применяемые при запуске. Возможные значения: «Лиловость», «Чёрное и белое», «Насыщенность», «Зомби», «Зеркало», «С ног на голову», «Психоделия», «Головокружение», «Границы», «Кусочки» и «Искривление». - - - - - /schemas/apps/cheese/x_resolution - /apps/cheese/x_resolution - cheese - int - 0 - - Width resolution - The width resolution of the image captured from the camera - - - - Horizontale Auflösung - Horizontale Auflösung des Bildes, das von der Kamera aufgenommen wurde - - - - Width resolution - The width resolution of the image captured from the camera - - - - Разрешение по горизонтали - Разрешение по горизонтали изображения, которое будет получаться с камеры - - - - - /schemas/apps/cheese/y_resolution - /apps/cheese/y_resolution - cheese - int - 0 - - Height resolution - The height resolution of the image captured from the camera - - - - Vertikale Auflösung - Vertikale Auflösung des Bildes, das von der Kamera aufgenommen wurde - - - - Height resolution - The height resolution of the image captured from the camera - - - - Разрешение по вертикали - Разрешение по вертикали изображения, которое будет получаться с камеры - - - - - /schemas/apps/cheese/brightness - /apps/cheese/brightness - cheese - float - 0 - - Picture brightness - Adjusts brightness level of the picture coming from the camera - - - - Helligkeit - Stellt die Helligkeit des Bildes der Kamera ein - - - - Picture brightness - Adjusts brightness level of the picture coming from the camera - - - - Яркость - Регулировка уровня яркости изображения с камеры - - - - - /schemas/apps/cheese/contrast - /apps/cheese/contrast - cheese - float - 1 - - Picture contrast - Adjusts contrast level of the picture coming from the camera - - - - Kontrast - Stellt den Kontrast des Bildes der Kamera ein - - - - Picture contrast - Adjusts contrast level of the picture coming from the camera - - - - Контраст - Регулировка уровня контрастности изображения с камеры - - - - - /schemas/apps/cheese/saturation - /apps/cheese/saturation - cheese - float - 1 - - Picture saturation - Adjusts saturation level of the picture coming from the camera - - - - Sättigung - Stellt die Sättigung des Bildes der Kamera ein - - - - Picture saturation - Adjusts saturation level of the picture coming from the camera - - - - Насыщенность - Регулировка уровня насыщения изображения с камеры - - - - - /schemas/apps/cheese/hue - /apps/cheese/hue - cheese - float - 0 - - Picture hue - Adjusts hue level of the picture coming from the camera - - - - Farbton - Stellt den Farbton des Bildes der Kamera ein - - - - Picture hue - Adjusts hue level of the picture coming from the camera - - - - Оттенок - Регулировка уровня оттенка изображения с камеры - - - - - /schemas/apps/cheese/video_path - /apps/cheese/video_path - cheese - string - - - Video Path - Defines the path where the videos are stored, if empty "XDG_VIDEO/Webcam" will be used. - - - - Videopfad - Definiert den Pfad, wo Videos gespeichert werden. Falls man das Feld leer lässt, wird »XDG_VIDEO/Webcam« verwendet. - - - - Video Path - Defines the path where the videos are stored, if empty "XDG_VIDEO/Webcam" will be used. - - - - Расположение видеозаписей - Определяет путь к каталогу, в котором будут храниться видеозаписи. Если ключ не задан, будет использоваться путь «XDG_VIDEO/Webcam». - - - - - /schemas/apps/cheese/photo_path - /apps/cheese/photo_path - cheese - string - - - Photo Path - Defines the path where the photos are stored, if empty "XDG_PHOTO/Webcam" will be used. - - - - Fotopfad - Definiert den Pfad, wo Fotos gespeichert werden. Falls man das Feld leer lässt, wird »XDG_PHOTO/Webcam« verwendet. - - - - Photo Path - Defines the path where the photos are stored, if empty "XDG_PHOTO/Webcam" will be used. - - - - Расположение фотографий - Определяет путь к каталогу, в котором будут храниться фотографии. Если ключ не задан, будет использоваться путь «XDG_PHOTO/Webcam». - - - - - /schemas/apps/cheese/enable_delete - /apps/cheese/enable_delete - cheese - bool - 0 - - Whether to enable immediate deletion - If set to true, then Cheese will have a feature allowing you to delete a file immediately and in-place, instead of moving it to the trash. This feature can be dangerous, so use caution. - - - - Legt fest, ob sofortiges Löschen aktiviert wird - Falls man diese Option aktiviert, löscht Cheese Dateien sofort, anstatt sie in den Mülleimer zu verschieben. Diese Einstellung kann gefährlich sein, daher ist Vorsicht geboten. - - - - Whether to enable immediate deletion - If set to true, then Cheese will have a feature allowing you to delete a file immediately and in-place, instead of moving it to the wastebasket. This feature can be dangerous, so use caution. - - - - Включить немедленное удаление - Если этот ключ установлен, Cheese будет предоставлять возможность немедленного удаления файлов, без перемещения их в корзину. Эта возможность может быть опасна, используйте её осторожно. - - - - - /schemas/apps/cheese/wide_mode - /apps/cheese/wide_mode - cheese - bool - 0 - - Whether to start in wide mode - If set to true, Cheese will start up in a wide mode with - the image collection placed on the right-hand side. Useful with - small screens. - - - - Legt fest, ob im breiten Modus gestartet werden soll - Falls auf »wahr« gesetzt, startet Cheese im breiten Modus mit einer rechts befindlichen Bildersammlung. Dies ist nützlich für kleine Bildschirme. - - - - Whether to start in wide mode - If set to true, Cheese will start up in a wide mode with the image collection placed on the right-hand side. Useful with small screens. - - - - Запускаться в широкоэкранном режиме - Если включено, Cheese будет запускаться в широкоформатном режиме с коллекцией изображений с правой стороны. Удобно на маленьком экране. - - - - - /schemas/apps/cheese/burst_delay - /apps/cheese/burst_delay - cheese - int - 1000 - - Milliseconds between photos in burst mode. - The length of time, in milliseconds, to delay between taking each photo in a burst sequence of photos. - - - - Millisekunden zwischen Fotos im Serienaufnahmemodus. - Zeit in Millisekunden, die zwischen einzelnen Bildern bei Serienaufnahmen gewartet wird. - - - - Milliseconds between photos in burst mode. - The length of time, in milliseconds, to delay between taking each photo in a burst sequence of photos. - - - - Миллисекунд между кадрами в режиме серии. - Продолжительность задержки между фотографиями в режиме серии, в миллисекундах. - - - - - /schemas/apps/cheese/burst_repeat - /apps/cheese/burst_repeat - cheese - int - 4 - - Number of photos in burst mode. - The number of photos to take in a single burst. - - - - Anzahl der Fotos im Serienaufnahmemodus. - Anzahl der Fotos, die in einer Serie aufgenommen werden. - - - - Number of photos in burst mode. - The number of photos to take in a single burst. - - - - Количество фотографий в режиме серии. - Сколько фотографий снять в режиме серии. - - - - diff --git a/gconf/schemas/clock.schemas b/gconf/schemas/clock.schemas deleted file mode 100644 index 649f524..0000000 --- a/gconf/schemas/clock.schemas +++ /dev/null @@ -1,631 +0,0 @@ - - - - - - /schemas/apps/clock_applet/prefs/format - clock-applet - string - - - - 24-hour - - Hour format - - This key specifies the hour format used by the clock applet. - Possible values are "12-hour", "24-hour", "internet", "unix" and - "custom". - If set to "internet", the clock will display Internet time. - The Internet time system divides the day into 1000 ".beats". There - are no time zones in this system, so time is the same all over the - world. - If set to "unix", the clock will display time in seconds since - Epoch, i.e. 1970-01-01. - If set to "custom", the clock will display time according to the - format specified in the custom_format key. - - - - - 24-hour - Stundenformat - Dieser Schlüssel legt das vom Uhren-Applet verwendete Stundenformat fest. Zulässige Werte: »12-hour« (12 Stunden-Format), »24-hour« (24 Stunden-Format), »internet« (Internet-Zeit, ein Tag hat 1000 sog. ».beats«), »unix« (UNIX, also Zeit in Sekunden seit dem 1.1.1970) sowie »custom« (benutzerdefiniert, entsprechend des vom Schlüssel »custom_format« angegebenen Formats). - - - - 24-hour - Hour format - This key specifies the hour format used by the clock applet. Possible values are "12-hour", "24-hour", "internet", "unix" and "custom". If set to "internet", the clock will display Internet time. The Internet time system divides the day into 1000 ".beats". There are no time zones in this system, so time is the same all over the world. If set to "unix", the clock will display time in seconds since Epoch, i.e. 1970-01-01. If set to "custom", the clock will display time according to the format specified in the custom_format key. - - - - 24-hour - Формат часов - Этот ключ определяет формат часов, используемый апплетом часов. Возможные значения: «12-hour», «24-hour», «internet», «unix» и «custom». Если этот ключ установлен в значение «internet», часы будут отображать время Интернета. В этой системе день делится на 1000 «ударов» (beats). Часовые пояса в этой системе отсутствуют, так что время одинаково во всём мире. Если ключ установлен в значение «unix», часы будут отображать время в секундах с начала «эпохи», то есть 1 января 1970 года. Если ключ установлен в значение «custom», часы будут отображать время в соответствии с форматом, определённым ключом «custom_format». - - - 12-hour - - - - - /schemas/apps/clock_applet/prefs/custom_format - clock-applet - string - - - Custom format of the clock - - This key specifies the format used by the clock applet when the - format key is set to "custom". You can use conversion specifiers - understood by strftime() to obtain a specific format. See the - strftime() manual for more information. - - - - - Benutzerdefiniertes Uhrenformat - Dieser Schlüssel gibt das vom Uhren-Applet verwendete Format an, falls der Format-Schlüssel »custom« (benutzerdefiniert) ist. Sie können von »strftime()« akzeptierte Platzhalter verwenden, um ein bestimmtes Format zu erzielen. - - - - Custom format of the clock - This key specifies the format used by the clock applet when the format key is set to "custom". You can use conversion specifiers understood by strftime() to obtain a specific format. See the strftime() manual for more information. - - - - Другой формат часов - Этот ключ определяет формат, используемый апплетом часов, когда ключ формата установлен в значение «custom». Можно использовать последовательности, понимаемые функцией strftime(), для достижения желаемого формата. Для получения дополнительной информации смотрите руководство по функции strftime(). - - - - - /schemas/apps/clock_applet/prefs/show_seconds - clock-applet - bool - false - - Show time with seconds - If true, display seconds in time. - - - - Zeit sekundengenau anzeigen - Falls dieser Schlüssel WAHR ist, wird die Zeit sekundengenau angezeigt. - - - - Show time with seconds - If true, display seconds in time. - - - - Показывать секунды - Если этот ключ установлен, показываются секунды. - - - - - /schemas/apps/clock_applet/prefs/show_date - clock-applet - bool - true - - Show date in clock - If true, display date in the clock, in addition to time. - - - - Datum in Uhr anzeigen - Falls dieser Schlüssel WAHR ist, wird in der Uhr zusätzlich zur Zeit das Datum angezeigt. - - - - Show date in clock - If true, display date in the clock, in addition to time. - - - - Показывать дату в апплете часов - Если этот ключ установлен, в апплете показывается не только время, но и дата. - - - - - /schemas/apps/clock_applet/prefs/show_tooltip - clock-applet - bool - true - - Show date in tooltip - - If true, show date in a tooltip when the pointer is over the clock. - - - - - Datum in Minihilfe anzeigen - Falls dieser Schlüssel WAHR ist, wird das Datum in einer Minihilfe angezeigt, wenn sich die Maus über der Uhr befindet. - - - - Show date in tooltip - If true, show date in a tooltip when the pointer is over the clock. - - - - Показывать дату в подсказке - Если этот ключ установлен, при наведении указателя на апплет часов показывается всплывающая подсказка с датой. - - - - - /schemas/apps/clock_applet/prefs/show_weather - clock-applet - bool - true - - Show weather in clock - If true, display a weather icon. - - - - Das Wetter in der Uhr anzeigen - Legt fest, ob ein Wettersymbol angezeigt wird. - - - - Show weather in clock - If true, display a weather icon. - - - - Показывать погоду в часах - Если этот ключ установлен, показывается значок погоды. - - - - - /schemas/apps/clock_applet/prefs/show_temperature - clock-applet - bool - true - - Show temperature in clock - If true, show the temperature next to the weather icon. - - - - Die Temperatur in der Uhr anzeigen - Falls dieser Schlüssel WAHR ist, wird die Temperatur neben dem Wettersymbol angezeigt. - - - - Show temperature in clock - If true, show the temperature next to the weather icon. - - - - Показывать температуру в часах - Если этот ключ установлен, рядом со значком погоды показывается температура. - - - - - /schemas/apps/clock_applet/prefs/gmt_time - clock-applet - bool - false - - Use UTC - - The use of this key was deprecated in GNOME 2.28 in favour of the - use of timezones. The schema is retained for compatibility with - older versions. - - - - - UTC verwenden - Mit GNOME 2.28 wurde dieser Schlüssel in Verbindung mit der Nutzung der Zeitzonen für nichtig erklärt. Das Schema wird zwecks Rückwärtskompatibilität beibehalten. - - - - Use UTC - The use of this key was deprecated in GNOME 2.28 in favour of the use of timezones. The schema is retained for compatibility with older versions. - - - - Показывать время по Гринвичу (UTC) - Использовать этот ключ не рекомендуется начиная с GNOME версии 2.28. Предпочтительнее пользоваться настройками часовых поясов. Данный ключ остаётся только для совместимости с предыдущими версиями. - - - - - /schemas/apps/clock_applet/prefs/config_tool - clock-applet - string - - - Time configuration tool - - The use of this key was deprecated in GNOME 2.22 with the use - of an internal time configuration tool. The schema is retained for - compatibility with older versions. - - - - - Werkzeug zur Zeitkonfiguration - Im Zuge von GNOME 2.26 wurde dieser Schlüssel zu Gunsten eines internen Werkzeugs zur Zeiteinstellung für nichtig erklärt. Das Schema wird zwecks Rückwärtskompatibilität beibehalten. - - - - Time configuration tool - The use of this key was deprecated in GNOME 2.22 with the use of an internal time configuration tool. The schema is retained for compatibility with older versions. - - - - Программа установки часов - Использование этого ключа было объявлено устаревшим в GNOME 2.22 с помощью внутренних инструментов конфигурирования. Эта схема остаётся для совместимости с предыдущими версиями. - - - - - /schemas/apps/clock_applet/prefs/show_week_numbers - clock-applet - bool - true - - Show week numbers in calendar - - If true, show week numbers in the calendar. - - - - - Wochennummern im Kalender anzeigen - Falls dieser Schlüssel WAHR ist, werden die Wochennummern im Kalender angezeigt. - - - - Show week numbers in calendar - If true, show week numbers in the calendar. - - - - Показывать номера недель в календаре - Если этот ключ установлен, в календаре показываются номера недель. - - - - - /schemas/apps/clock_applet/prefs/expand_appointments - clock-applet - bool - false - - Expand list of appointments - - If true, expand the list of appointments in the calendar window. - - - - - Liste mit Terminen ausklappen - Falls dieser Schlüssel WAHR ist, wird die Liste der Termine im Kalenderfenster ausgeklappt. - - - - Expand list of appointments - If true, expand the list of appointments in the calendar window. - - - - Разворачивать список встреч - Если этот ключ установлен, список встреч в окне календаря разворачивается. - - - - - /schemas/apps/clock_applet/prefs/expand_birthdays - clock-applet - bool - false - - Expand list of birthdays - - If true, expand the list of birthdays in the calendar window. - - - - - Liste mit Geburtstagen ausklappen - Falls dieser Schlüssel WAHR ist, wird die Liste der Geburtstage im Kalenderfenster ausgeklappt. - - - - Expand list of birthdays - If true, expand the list of birthdays in the calendar window. - - - - Разворачивать список дней рождения - Если этот ключ установлен, список дней рождений в окне календаря разворачивается. - - - - - /schemas/apps/clock_applet/prefs/expand_tasks - clock-applet - bool - false - - Expand list of tasks - - If true, expand the list of tasks in the calendar window. - - - - - Liste mit Aufgaben ausklappen - Falls dieser Schlüssel WAHR ist, wird die Liste der Aufgaben im Kalenderfenster ausgeklapptt. - - - - Expand list of tasks - If true, expand the list of tasks in the calendar window. - - - - Разворачивать список задач - Если этот ключ установлен, список задач в окне календаря разворачивается. - - - - - /schemas/apps/clock_applet/prefs/expand_weather - clock-applet - bool - false - - Expand list of weather information - - If true, expand the list of weather information in the calendar - window. - - - - - Liste mit Wetterinformationen ausklappen - Falls dieser Schlüssel WAHR ist, wird die Liste der Wetterinformationen im Kalenderfenster ausgeklappt. - - - - Expand list of weather information - If true, expand the list of weather information in the calendar window. - - - - Разворачивать список сведений о погоде - Если этот ключ установлен, список прогнозов погоды в окне календаря разворачивается. - - - - - /schemas/apps/clock_applet/prefs/expand_locations - clock-applet - bool - false - - Expand list of locations - - If true, expand the list of locations in the calendar - window. - - - - - Liste mit Orten ausklappen - Legt fest, ob die Liste der Orte im Kalenderfenster ausgeklappt ist. - - - - Expand list of locations - If true, expand the list of locations in the calendar window. - - - - Разворачивать список местностей - Если этот ключ установлен, список мест в окне календаря разворачивается. - - - - - /schemas/apps/clock_applet/prefs/hour_format - clock-applet - int - 12 - - Hour format - - The use of this key was deprecated in GNOME 2.6 in favour of the - 'format' key. The schema is retained for compatibility with older - versions. - - - - - Stundenformat - Im Zuge von GNOME 2.6 wurde dieser Schlüssel zu Gunsten des »format«-Schlüssels für nichtig erklärt. Das Schema wird zwecks Rückwärtskompatibilität beibehalten. - - - - Hour format - The use of this key was deprecated in GNOME 2.6 in favour of the 'format' key. The schema is retained for compatibility with older versions. - - - - Формат часов - Использовать этот ключ не рекомендуется начиная с GNOME версии 2.6. Предпочтительнее использовать ключ «format». Данный ключ остаётся только для совместимости с предыдущими версиями. - - - - - /schemas/apps/clock_applet/prefs/unix_time - clock-applet - bool - false - - Use UNIX time - - The use of this key was deprecated in GNOME 2.6 in favour of the - 'format' key. The schema is retained for compatibility with older - versions. - - - - - UNIX-Zeit verwenden - Im Zuge von GNOME 2.6 wurde dieser Schlüssel zu Gunsten des »format«-Schlüssels für nichtig erklärt. Das Schema wird zwecks Rückwärtskompatibilität beibehalten. - - - - Use UNIX time - The use of this key was deprecated in GNOME 2.6 in favour of the 'format' key. The schema is retained for compatibility with older versions. - - - - Показывать время UNIX - Использовать этот ключ не рекомендуется начиная с GNOME версии 2.6. Предпочтительнее использовать ключ «format». Данный ключ остаётся только для совместимости с предыдущими версиями. - - - - - /schemas/apps/clock_applet/prefs/internet_time - clock-applet - bool - false - - Use Internet time - - The use of this key was deprecated in GNOME 2.6 in favour of the - 'format' key. The schema is retained for compatibility with older - versions. - - - - - Internet-Zeit verwenden - Im Zuge von GNOME 2.6 wurde dieser Schlüssel zu Gunsten des »format«-Schlüssels für nichtig erklärt. Das Schema wird zwecks Rückwärtskompatibilität beibehalten. - - - - Use Internet time - The use of this key was deprecated in GNOME 2.6 in favour of the 'format' key. The schema is retained for compatibility with older versions. - - - - Показывать время Интернета - Использовать этот ключ не рекомендуется начиная с GNOME версии 2.6. Предпочтительнее использовать ключ «format». Данный ключ остаётся только для совместимости с предыдущими версиями. - - - - - /schemas/apps/clock_applet/prefs/cities - clock-applet - list - string - [] - - List of locations - - A list of locations to display in the calendar window. - - - - - Liste der Orte - Eine Liste der im Kalenderfenster anzuzeigenden Orte. - - - - List of locations - A list of locations to display in the calendar window. - - - - Список местностей - Список мест, которые нужно показывать в окне календаря. - - - - - /schemas/apps/clock_applet/prefs/temperature_unit - clock-applet - string - Default - - Temperature unit - - The unit to use when showing temperatures. - - - - - Temperatureinheit - Die für die Anzeige von Temperaturen zu benutzende Einheit. - - - - Temperature unit - The unit to use when showing temperatures. - - - - Единица температуры - Единица измерения, используемая для температур. - - - - - /schemas/apps/clock_applet/prefs/speed_unit - clock-applet - string - Default - - Speed unit - - The unit to use when showing wind speed. - - - - - Geschwindigkeitseinheit - Die für die Anzeige der Windgeschwindigkeit zu benutzende Einheit. - - - - Speed unit - The unit to use when showing wind speed. - - - - Единица скорости - Единица измерения, используемая для скорости ветра. - - - - - - diff --git a/gconf/schemas/control-center.schemas b/gconf/schemas/control-center.schemas deleted file mode 100644 index c4a200f..0000000 --- a/gconf/schemas/control-center.schemas +++ /dev/null @@ -1,164 +0,0 @@ - - - - /schemas/apps/control-center/cc_actions_list - /apps/control-center/cc_actions_list - control-center - list - string - - [Change Theme;gtk-theme-selector.desktop,Set Preferred Applications;default-applications.desktop,Add Printer;gnome-cups-manager.desktop] - Task names and associated .desktop files - The task name to be displayed in the control-center followed by a ";" separator then the filename of an associated .desktop file to launch for that task. - - - - [Thema ändern;gtk-theme-selector.desktop,Bevorzugte Anwendungen festlegen;default-applications.desktop,Drucker hinzufügen;gnome-cups-manager.desktop] - Aktionen und zugewiesene .desktop-Dateien - Der im Kontrollzentrum angezeigte Name einer Aktion, gefolgt von einem »;«-Trenner, dann der Dateiname einer zugewiesenen .desktop-Datei, die für diese Aktion gestartet wird. - - - - [Change Theme;gtk-theme-selector.desktop,Set Preferred Applications;default-applications.desktop,Add Printer;gnome-cups-manager.desktop] - Task names and associated .desktop files - The task name to be displayed in the control-centre followed by a ";" separator then the filename of an associated .desktop file to launch for that task. - - - - [Изменить тему;gtk-theme-selector.desktop,Установить предпочтительные приложения;default-applications.desktop,Добавить принтер;gnome-cups-manager.desktop] - Имена заданий и связанные с ними файлы .desktop - Имя задачи, отображаемое в центре управления после разделителя ";" — имя связанного файла .desktop для запуска этой задачи. - - - - /schemas/apps/control-center/cc_exit_shell_on_static_action - /apps/control-center/cc_exit_shell_on_static_action - control-center - bool - false - - Close the control-center when a task is activated - if true, the control-center will close when a "Common Task" is activated. - - - - Das Kontrollzentrum schließen, nachdem die Aktion aktiviert wurde - Legt fest, ob das Kontrollzentrum nach dem Aktivieren einer »Häufigen Aktion« beendet wird. - - - - Close the control-centre when a task is activated - if true, the control-centre will close when a "Common Task" is activated. - - - - Закрывать центр управления, когда задача активирована - Если этот параметр установлен, центр управления будет закрыт при активации "Общей задачи". - - - - /schemas/apps/control-center/cc_exit_shell_on_action_start - /apps/control-center/cc_exit_shell_on_action_start - control-center - bool - false - - Exit shell on start action performed - Indicates whether to close the shell when a start action is performed. - - - - Kontrollzentrum nach dem Starten eines Objektes beenden - Legt fest, ob das Kontrollzentrum nach dem Starten eines Objektes beendet werden soll. - - - - Exit shell on start action performed - Indicates whether to close the shell when a start action is performed. - - - - Выходить из оболочки при выполнении действия запуска - Указывает, закрывать ли оболочку при выполнении действия запуска. - - - - /schemas/apps/control-center/cc_exit_shell_on_action_help - /apps/control-center/cc_exit_shell_on_action_help - control-center - bool - false - - Exit shell on help action performed - Indicates whether to close the shell when a help action is performed. - - - - Kontrollzentrum nach dem Aufrufen der Hilfe beenden - Legt fest, ob das Kontrollzentrum nach dem Aufrufen der Hilfe beendet werden soll. - - - - Exit shell on help action performed - Indicates whether to close the shell when a help action is performed. - - - - Выходить из оболочки при вызове действия справки - Указывает, закрывать ли оболочку при выполнении действия справки. - - - - /schemas/apps/control-center/cc_exit_shell_on_action_add_remove - /apps/control-center/cc_exit_shell_on_action_add_remove - control-center - bool - false - - Exit shell on add or remove action performed - Indicates whether to close the shell when an add or remove action is performed. - - - - Kontrollzentrum nach dem Hinzufügen oder Entfernen eines Objektes beenden - Legt fest, ob das Kontrollzentrum nach dem Hinzufügen oder Entfernen eines Objektes beendet werden soll. - - - - Exit shell on add or remove action performed - Indicates whether to close the shell when an add or remove action is performed. - - - - Выходить из оболочки при выполнении действия удаления или добавления - Указывает, закрывать ли оболочку при выполнении действия добавления или удаления. - - - - /schemas/apps/control-center/cc_exit_shell_on_action_upgrade_uninstall - /apps/control-center/cc_exit_shell_on_action_upgrade_uninstall - control-center - bool - false - - Exit shell on upgrade or uninstall action performed - Indicates whether to close the shell when an upgrade or uninstall action is performed. - - - - Kontrollzentrum nach dem Aktualisieren oder Deinstallieren eines Objektes beenden - Legt fest, ob das Kontrollzentrum nach dem Aktualisieren oder Deinstallieren eines Objektes beendet werden soll. - - - - Exit shell on upgrade or uninstall action performed - Indicates whether to close the shell when an upgrade or uninstall action is performed. - - - - Выходить из оболочки при выполнении действия обновления или удаления - Указывает, закрывать ли оболочку при выполнении действия установки или удаления. - - - - diff --git a/gconf/schemas/cpufreq-applet.schemas b/gconf/schemas/cpufreq-applet.schemas deleted file mode 100644 index 876dbfc..0000000 --- a/gconf/schemas/cpufreq-applet.schemas +++ /dev/null @@ -1,81 +0,0 @@ - - - - - /schemas/apps/cpufreq-applet/prefs/cpu - cpufreq-applet - int - 0 - - CPU to Monitor - Set the CPU to monitor. In a single processor system you don't have to change it. - - - - Zu überwachender Prozessor - Den zu überwachenden Prozessor festlegen. In einem Ein-Prozessorsystem kann dieser Wert nicht geändert werden. - - - - CPU to Monitor - Set the CPU to monitor. In a single processor system you don't have to change it. - - - - Отслеживаемый процессор - Устанавливает отслеживаемый процессор. На однопроцессорной системе изменять не надо. - - - - /schemas/apps/cpufreq-applet/prefs/show_mode - cpufreq-applet - int - 2 - - Mode to show cpu usage - A 0 value means to show the applet in graphic mode (pixmap only), 1 to show the applet in text mode (not to show the pixmap) and 2 to show the applet in graphic and text mode. - - - - Modus zur Anzeige der Prozessorlast - Der Wert 0 bedeutet, dass das Applet im Grafikmodus (nur Bilder), der Wert 1 dass das Applet im Textmodus (ohne Grafiken) und der Wert 2 dass das Applet im Grafik- und Textmodus angezeigt wird. - - - - Mode to show cpu usage - A 0 value means to show the applet in graphic mode (pixmap only), 1 to show the applet in text mode (not to show the pixmap) and 2 to show the applet in graphic and text mode. - - - - Режим показа использования ЦП - 0 - показывать апплет в графическом режиме (только изображение), 1 - текстовый режим (не показывать изображение), 2 - показывать и текст, и изображение. - - - - /schemas/apps/cpufreq-applet/prefs/show_text_mode - cpufreq-applet - int - 1 - - The type of text to display (if the text is enabled). - A 0 value means to show cpu frequency, 1 to show frequency and units, and 2 to show percentage instead of frequency. - - - - Die Art des anzuzeigenden Textes (falls der Text aktiviert ist). - Der Wert 0 bedeutet, dass der Prozessortakt angezeigt wird, der Wert 1 dass der Takt und die Einheiten angezeigt und der Wert 2 dass ein Prozentwert anstatt des Taktes angezeigt wird. - - - - The type of text to display (if the text is enabled). - A 0 value means to show cpu frequency, 1 to show frequency and units, and 2 to show percentage instead of frequency. - - - - Тип отображаемого текста (если текст разрешён). - 0 - показывать частоту ЦП, 1 - частоту и единицы, 2 - проценты вместо частоты. - - - - - diff --git a/gconf/schemas/deskbar-applet.schemas b/gconf/schemas/deskbar-applet.schemas deleted file mode 100644 index 5cf7002..0000000 --- a/gconf/schemas/deskbar-applet.schemas +++ /dev/null @@ -1,418 +0,0 @@ - - - - /schemas/apps/deskbar/minchars - /apps/deskbar/minchars - deskbar - int - 1 - - Minimum number of characters needed to start searching - The minimum number of characters that need to be typed before the applet starts showing matches - - - - Die Anzahl von Buchstaben, die eingetippt werden müssen, bevor die Suche gestartet wird - Die Anzahl von Buchstaben, die eingetippt werden müssen, bevor Suchergebnisse angezeigt werden. - - - - Minimum number of characters needed to start searching - The minimum number of characters that need to be typed before the applet starts showing matches - - - - Минимальное число символов, необходимое для начала поиска - Минимальное число символов, которое нужно ввести, чтобы начали появляться результаты поиска. - - - - /schemas/apps/deskbar/typingdelay - /apps/deskbar/typingdelay - deskbar - int - 250 - - Milliseconds to wait before starting to search - The time in milliseconds between a keystroke in the search entry and the actual search being performed - - - - Zeit in Millisekunden, die vor dem Starten der Suche gewartet wird - Zeit in Millisekunden zwischen einem Tastendruck im Suchfeld und dem Start der eigentlichen Suche. - - - - Milliseconds to wait before starting to search - The time in milliseconds between a keystroke in the search entry and the actual search being performed - - - - Сколько миллисекунд ждать перед началом поиска - Время в миллисекундах между нажатием клавиши в строке поиска и запуском поиска. - - - - /schemas/apps/deskbar/use_selection - /apps/deskbar/use_selection - deskbar - bool - FALSE - - Whether triggering Deskbar-Applet pastes the current selection - Choose whether triggering the keyboard shortcut also pastes the current selection in the search box. - - - - Legt fest, ob das Aktivieren des Deskbar-Applets die momentane Auswahl in das Eingabefeld einfügt - Legt fest, ob das Tastenkürzel auch die aktuelle Auswahl in das Suchfeld einfügen soll. - - - - Whether triggering Deskbar-Applet pastes the current selection - Choose whether triggering the keyboard shortcut also pastes the current selection in the search box. - - - - Вставлять ли выделение при активации Deskbar - Должно ли содержимое текущего выделения автоматически передаваться в окно поиска при его активации через клавиатуру. - - - - /schemas/apps/deskbar/keybinding - /apps/deskbar/keybinding - deskbar - string - <Alt>F3 - - Keybinding - The key sequence will focus Deskbar-Applet, allowing to type quickly - - - - Tastenbelegung - Die Tastenfolge, welche den Fokus in das Eingabefeld des Deskbar Applets verschiebt und eine schnelle Eingabe erlaubt - - - - Keybinding - The key sequence will focus Deskbar-Applet, allowing to type quickly - - - - Комбинация клавиш - Последовательность нажатых клавиш, вызывающая окно ввода Deskbar для поиска. - - - - /schemas/apps/deskbar/enabled_handlers - /apps/deskbar/enabled_handlers - deskbar - list - string - [HistoryHandler,RecentHandler,CalculatorModule,WebAddressHandler,ProgramsHandler,EvolutionHandler,FileFolderHandler,EpiphanyBookmarksHandler,EpiphanySearchHandler,GdmHandler,TemplateHandler] - - Enabled handlers - The list of exported class names of the enabled handlers sorted by priority. The leftmost has the highest priority. - - - - Aktivierte Handler - Eine Liste der exportierten Klassennamen der aktivierten Handler sortiert nach Priorität. Die Priorität ist ganz links am höchsten. - - - - Enabled handlers - The list of exported class names of the enabled handlers sorted by priority. The leftmost has the highest priority. - - - - Включённые обработчики - Список имён экспортированных классов включённых обработчиков, упорядоченных по приоритету. Чем левее расположен класс, тем выше его приоритет. - - - - /schemas/apps/deskbar/collapsed_cat - /apps/deskbar/collapsed_cat - deskbar - list - string - [] - - Collapsed categories - - The list of categories to be collapsed when displayed. - Valid categories are: default, history, documents, emails, - conversations, files, people, places, actions, web, websearch, - news and notes. - - - - - Eingeklappte Kategorien - Liste von Kategorien, die eingeklappt angezeigt werden. Gültige Kategorien sind: default, history, documents, emails, conversations, files, people, places, actions, web, websearch, news und notes. - - - - Collapsed categories - The list of categories to be collapsed when displayed. Valid categories are: default, history, documents, emails, conversations, files, people, places, actions, web, websearch, news and notes. - - - - Свёрнутые категории - Список категорий, сворачиваемых при показе. Допустимыми являются следующие категории: default, history, documents, emails, conversations, files, people, places, actions, web, websearch, news и notes. - - - - /schemas/apps/deskbar/clear_entry - /apps/deskbar/clear_entry - deskbar - bool - TRUE - - Clear entry after match has been selected - If enabled it will clear the entry after a search result has been selected - - - - Text im Eingabefeld löschen, nachdem ein Ergebnis ausgewählt wurde - Legt fest, ob das Suchfeld geleert werden soll, nachdem ein Ergebnis ausgewählt wurde - - - - Clear entry after match has been selected - If enabled it will clear the entry after a search result has been selected - - - - Очищать ли поле поиска после выбора результата - Если этот ключ установлен, после выбора одного из результатов поиска содержимое поля поиска будет стёрто. - - - - /schemas/apps/deskbar/window_width - /apps/deskbar/window_width - deskbar - int - 560 - - Window width - The default width of the window in pixels - - - - Fensterbreite - Vorgabe für die Breite des Fensters in Pixel - - - - Window width - The default width of the window in pixels - - - - Ширина окна - Ширина окна в пикселах по умолчанию - - - - /schemas/apps/deskbar/window_height - /apps/deskbar/window_height - deskbar - int - 400 - - Window height - The default height of the window in pixels - - - - Fensterhöhe - Vorgabe für der Höhe des Fensters in Pixel - - - - Window height - The default height of the window in pixels - - - - Высота окна - Высота окна в пикселах по умолчанию - - - - /schemas/apps/deskbar/window_x - /apps/deskbar/window_x - deskbar - int - 100 - - X-coordinate of window - The default position of the window on the screen (X coordinate) - - - - X-Koordinate des Fensters - Vorgabe für die Position des Fensters auf dem Bildschirm in Pixel (X-Koordinate) - - - - X-coordinate of window - The default position of the window on the screen (X-coordinate) - - - - X-координата окна - Положение окна на экране по умолчанию (по оси X) - - - - /schemas/apps/deskbar/window_y - /apps/deskbar/window_y - deskbar - int - 100 - - Y-coordinate of window - The default position of the window on the screen (Y coordinate) - - - - Y-Koordinate des Fensters - Vorgabe für die Position des Fensters auf dem Bildschirm in Pixel (Y-Koordinate) - - - - Y-coordinate of window - The default position of the window on the screen (Y coordinate) - - - - Y-координата окна - Положение окна на экране по умолчанию (по оси Y) - - - - /schemas/apps/deskbar/hide_after_action - /apps/deskbar/hide_after_action - deskbar - bool - TRUE - - Whether to close the window after an action has been activated - If enabled, the window will be closed after an action has been activated - - - - Legt fest, ob das Fenster geschlossen wird, sobald eine Aktion aktiviert wurde - Legt fest, ob das Fenster nach Auswählen einer Aktion geschlossen wird - - - - Whether to close the window after an action has been activated - If enabled, the window will be closed after an action has been activated - - - - Закрывать ли окно после запуска действия - Если этот ключ установлен, после запуска действия окно поиска будет закрыто. - - - - /schemas/apps/deskbar/max_history_items - /apps/deskbar/max_history_items - deskbar - int - 50 - - The maximum number of items stored in history - - - - Die maximale Anzahl von Chronik-Einträgen - - - - The maximum number of items stored in history - - - - Максимальное число записей, хранимых в истории - - - - - /schemas/apps/deskbar/mozilla/show_only_primary_search - /apps/deskbar/mozilla/show_only_primary_search - deskbar - bool - FALSE - - Whether to show only the preferred search engine, rather than all available engines. This only affects Mozilla-based web browsers such as Firefox. - - - - Legt fest, ob nur die bevorzugten Suchmaschinen angezeigt werden sollen anstatt aller verfügbaren. Dies beeinflusst nur Mozilla-basierte Webbrowser wie z.B. Firefox. - - - - Whether to show only the preferred search engine, rather than all available engines. This only affects Mozilla-based web browsers such as Firefox. - - - - Показывать ли результаты от предпочитаемого поискового механизма вместо результатов поиска всеми механизмами. Относится только к браузерам на основе Mozilla вроде Firefox. - - - - - /schemas/apps/deskbar/ui_name - /apps/deskbar/ui_name - deskbar - string - Button - - Selects the user interface to use: one of "Window" or "Button" - - - - Bestimmt die gewählte Benutzerschnittstelle; mögliche Werte sind »Window« (Fenster) oder »Button« (Knopf) - - - - Selects the user interface to use: one of "Window" or "Button" - - - - Применяемый пользовательский интерфейс: «Window» или «Button» - - - - - /schemas/apps/deskbar/entry_width - /apps/deskbar/entry_width - deskbar - int - 40 - - The applet's entry width in number of characters - This value only takes effect when "ui_name" is set to "Button" - - - - Die Breite des Eingabefeldes in Zeichen - Dieser Schlüssel tritt nur in Kraft, wenn »ui_name« auf »Button« (Knopf) gesetzt ist - - - - The applet's entry width in number of characters - This value only takes effect when "ui_name" is set to "Button" - - - - Ширина строки ввода в символах - Используется только в случае, если "ui_name" имеет значение "Button" - - - - diff --git a/gconf/schemas/desktop_gnome_font_rendering.schemas b/gconf/schemas/desktop_gnome_font_rendering.schemas deleted file mode 100644 index b925f51..0000000 --- a/gconf/schemas/desktop_gnome_font_rendering.schemas +++ /dev/null @@ -1,128 +0,0 @@ - - - - - /schemas/desktop/gnome/font_rendering/dpi - /desktop/gnome/font_rendering/dpi - gnome - float - - DPI - - The resolution used for converting font sizes to pixel sizes, - in dots per inch. - - - - - DPI - Die zu verwendende Auflösung, um Schriftgrößen auf Pixelgrößen umzuwandeln, Angabe erfolgt in Punkten pro Zoll. - - - - DPI - The resolution used for converting font sizes to pixel sizes, in dots per inch. - - - - DPI - Разрешение, используемое для преобразования размеров шрифтов в количество пикселов, в точках на дюйм. - - - - /schemas/desktop/gnome/font_rendering/antialiasing - /desktop/gnome/font_rendering/antialiasing - gnome - string - grayscale - - Antialiasing - - 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). - - - - - Kantenglättung - 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). - - - - Antialiasing - The type of antialiasing to use when rendering fonts. Possible values are: "none" for no antialiasing, "grayscale" for standard greyscale antialiasing, and "rgba" for subpixel antialiasing (LCD screens only). - - - - Сглаживание - Тип сглаживания, используемый при растеризации шрифтов. Возможные значения: «none» - без сглаживания, «grayscale» - стандартное черно-белое сглаживание, «rgba» - субпиксельное сглаживание (только для ЖК-мониторов). - - - - /schemas/desktop/gnome/font_rendering/hinting - /desktop/gnome/font_rendering/hinting - gnome - string - medium - - Hinting - - 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). - - - - - Hinting - 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), - - - - Hinting - 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). - - - - Хинтинг - Тип хинтинга, используемый при растеризации шрифтов. Возможные значения: «none» — без хинтинга, «slight» — базовый, «medium» - умеренный, «full» — максимальный хинтинг (может вызвать искажение формы символов). - - - - /schemas/desktop/gnome/font_rendering/rgba_order - /desktop/gnome/font_rendering/rgba_order - gnome - string - rgb - - RGBA order - - 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. - - - - - RGBA-Abfolge - Die Abfolge der Sub-Pixel-Elemente eines Flachbildschirms. Wird nur verwendet, wenn die Kantenglättung auf »rgba« gesetzt ist. Mögliche Werte 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. - - - - RGBA order - 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. - - - - Порядок RGBA - Порядок субпиксельных элементов на ЖК экране; только если установлен тип сглаживания «rgba». Возможные значения: «rgb» (красный слева, наиболее часто), «bgr» (синий слева), «vrgb» (красный сверху), «vbgr» (красный снизу). - - - - diff --git a/gconf/schemas/desktop_gnome_keybindings.schemas b/gconf/schemas/desktop_gnome_keybindings.schemas deleted file mode 100644 index f0af991..0000000 --- a/gconf/schemas/desktop_gnome_keybindings.schemas +++ /dev/null @@ -1,35 +0,0 @@ - - - - - /schemas/desktop/gnome/keybindings/allowed_keys - /desktop/gnome/keybindings/allowed_keys - gnome - list - string - [] - - Allowed keys - - If non-empty, keybindings will be ignored unless their GConf - directory is in the list. This is useful for lockdown. - - - - - Erlaubte Tasten - Falls nicht leer, werden Tastenkürzel ignoriert, sofern deren GConf-Ordner sich in der Liste befindet. Dies ist nützlich zum Sperren. - - - - Allowed keys - If non-empty, keybindings will be ignored unless their GConf directory is in the list. This is useful for lockdown. - - - - Разрешённые клавиши - Если список не пуст, то привязки комбинаций клавиш будут игнорироваться если их каталог GConf не будет присутствовать в этом списке. Это полезно для их блокировки. - - - - diff --git a/gconf/schemas/desktop_gnome_peripherals_keyboard_xkb.schemas b/gconf/schemas/desktop_gnome_peripherals_keyboard_xkb.schemas deleted file mode 100644 index 5c353f6..0000000 --- a/gconf/schemas/desktop_gnome_peripherals_keyboard_xkb.schemas +++ /dev/null @@ -1,607 +0,0 @@ - - - - - /schemas/desktop/gnome/peripherals/keyboard/kbd/model - /desktop/gnome/peripherals/keyboard/kbd/model - gnome - string - - - Keyboard model - keyboard model - - - - Tastatur-Modell - Tastatur-Modell - - - - Keyboard model - keyboard model - - - - Модель клавиатуры - модуль клавиатуры - - - - - /schemas/desktop/gnome/peripherals/keyboard/kbd/layouts - /desktop/gnome/peripherals/keyboard/kbd/layouts - gnome - list - string - [] - - Keyboard layout - keyboard layout - - - - Tastaturbelegung - Tastaturbelegung - - - - Keyboard layout - keyboard layout - - - - Раскладка клавиатуры - раскладка клавиатуры - - - - - /schemas/desktop/gnome/peripherals/keyboard/kbd/options - /desktop/gnome/peripherals/keyboard/kbd/options - gnome - list - string - [] - - Keyboard options - Keyboard options - - - - Tastatur-Optionen - Tastatur-Optionen - - - - Keyboard options - Keyboard options - - - - Дополнительные параметры клавиатуры - Дополнительные параметры клавиатуры - - - - - /schemas/desktop/gnome/peripherals/keyboard/general/update_handlers - /desktop/gnome/peripherals/keyboard/general/update_handlers - gnome - list - string - [] - - Keyboard Update Handlers - A collection of scripts to run whenever the keyboard state is - reloaded. Useful for re-applying xmodmap based adjustments - - - - Tastatur-Aktualisierungsroutine - Skriptsammlung, die beim Neuladen des Tastaturstatus ausgeführt wird. Nützlich, wenn auf xmodpmap basierende Anpassungen wiederholt angewendet werden. - - - - Keyboard Update Handlers - A collection of scripts to run whenever the keyboard state is reloaded. Useful for re-applying xmodmap based adjustments - - - - Обработчики обновления клавиатуры - Набор сценариев, запускаемых при перенастройке состояния клавиатуры. Используется для внесения исправлений в xmodmap - - - - - /schemas/desktop/gnome/peripherals/keyboard/general/known_file_list - /desktop/gnome/peripherals/keyboard/general/known_file_list - gnome - list - string - [] - - modmap file list - A list of modmap files available in the $HOME directory. - - - - modmap-Dateiliste - Eine Liste von modmap-Dateien, die im Persönlichen Ordner verfügbar ist. - - - - modmap file list - A list of modmap files available in the $HOME directory. - - - - список modmap-файлов - Список modmap-файлов, доступных в домашнем каталоге. - - - - - - /schemas/desktop/gnome/peripherals/keyboard/general/defaultGroup - /desktop/gnome/peripherals/keyboard/general/defaultGroup - gnome - int - -1 - - Default group, assigned on window creation - Default group, assigned on window creation - - - - Vorgegebene Gruppe, zugewiesen bei der Fenstererstellung - Vorgegebene Gruppe, zugewiesen bei der Fenstererstellung - - - - Default group, assigned on window creation - Default group, assigned on window creation - - - - Группа по умолчанию, назначаемая при создании окна - Группа по умолчанию, назначаемая при создании окна - - - - - /schemas/desktop/gnome/peripherals/keyboard/general/groupPerWindow - /desktop/gnome/peripherals/keyboard/general/groupPerWindow - gnome - bool - true - - Keep and manage separate group per window - Keep and manage separate group per window - - - - Separate Gruppe pro Fenster beibehalten und verwalten - Separate Gruppe pro Fenster beibehalten und verwalten - - - - Keep and manage separate group per window - Keep and manage separate group per window - - - - Сохранять и поддерживать разные группы, пооконно - Сохранять и поддерживать разные группы, пооконно - - - - - /schemas/desktop/gnome/peripherals/keyboard/general/handleIndicators - /desktop/gnome/peripherals/keyboard/general/handleIndicators - gnome - bool - false - - Save/restore indicators together with layout groups - Save/restore indicators together with layout groups - - - - Speichern und Wiederherstellen der Anzeigen zusammen mit den Belegungsgruppen - Speichern und Wiederherstellen der Anzeigen zusammen mit den Belegungsgruppen - - - - Save/Restore indicators together with layout groups - Save/Restore indicators together with layout groups - - - - Сохранять/восстанавливать индикаторы вместе с группами раскладок - Сохранять/восстанавливать индикаторы вместе с группами раскладок - - - - - /schemas/desktop/gnome/peripherals/keyboard/general/layoutNamesAsGroupNames - /desktop/gnome/peripherals/keyboard/general/layoutNamesAsGroupNames - gnome - bool - true - - Show layout names instead of group names - Show layout names instead of group names (only for versions of XFree supporting multiple layouts) - - - - Belegungsnamen anstatt Gruppennamen zeigen - Belegungsnamen anstatt Gruppennamen anzeigen (Nur für XFree-Versionen, die mehrere Tastaturbelegungen unterstützen) - - - - Show layout names instead of group names - Show layout names instead of group names (only for versions of XFree supporting multiple layouts) - - - - Показывать названия раскладок вместо названий групп - Показывать названия раскладок вместо названий групп (только для версий XFree, поддерживающих множественные раскладки) - - - - - /schemas/desktop/gnome/peripherals/keyboard/general/loadExtraItems - /desktop/gnome/peripherals/keyboard/general/loadExtraItems - gnome - bool - false - - Load extra configuration items - Load exotic, rarely used layouts and options - - - - Zusätzliche Konfigurationsobjekte laden - Exotische, wenig verwendete Belegungen und Optionen laden - - - - Load extra configuration items - Load exotic, rarely-used layouts and options - - - - Загружать дополнительные параметры - Загружать редко используемые раскладки и параметры - - - - - /schemas/desktop/gnome/peripherals/keyboard/general/disable_sysconfig_changed_warning - /desktop/gnome/peripherals/keyboard/general/disable_sysconfig_changed_warning - gnome - bool - false - - Suppress the "X sysconfig changed" warning message - Suppress the "X sysconfig changed" warning message - - - - Die »X sysconfig changed«-Warnmeldung unterdrücken - Die »X sysconfig changed«-Warnmeldung unterdrücken - - - - Suppress the "X sysconfig changed" warning message - Suppress the "X sysconfig changed" warning message - - - - Подавить вывод предупреждения «Системная конфигурация X изменена» - Подавить вывод предупреждения «Системная конфигурация X изменена» - - - - - /schemas/desktop/gnome/peripherals/keyboard/preview/x - /desktop/gnome/peripherals/keyboard/preview/x - gnome - int - -1 - - The Keyboard Preview, X offset - The Keyboard Preview, X offset - - - - Die Tastaturvorschau, X-Position - Die Tastaturvorschau, X-Position - - - - The Keyboard Preview, X offset - The Keyboard Preview, X offset - - - - Просмотр клавиатуры, смещение по X - Просмотр клавиатуры, смещение по X - - - - - /schemas/desktop/gnome/peripherals/keyboard/preview/y - /desktop/gnome/peripherals/keyboard/preview/y - gnome - int - -1 - - The Keyboard Preview, Y offset - The Keyboard Preview, Y offset - - - - Die Tastaturvorschau, Y-Position - Die Tastaturvorschau, Y-Position - - - - The Keyboard Preview, Y offset - The Keyboard Preview, Y offset - - - - Просмотр клавиатуры, смещение по Y - Просмотр клавиатуры, смещение по Y - - - - - /schemas/desktop/gnome/peripherals/keyboard/preview/width - /desktop/gnome/peripherals/keyboard/preview/width - gnome - int - -1 - - The Keyboard Preview, width - The Keyboard Preview, width - - - - Die Tastaturvorschau, Breite - Die Tastaturvorschau, Breite - - - - The Keyboard Preview, width - The Keyboard Preview, width - - - - Просмотр клавиатуры, ширина - Просмотр клавиатуры, ширина - - - - - /schemas/desktop/gnome/peripherals/keyboard/preview/height - /desktop/gnome/peripherals/keyboard/preview/height - gnome - int - -1 - - The Keyboard Preview, height - The Keyboard Preview, height - - - - Die Tastaturvorschau, Höhe - Die Tastaturvorschau, Höhe - - - - The Keyboard Preview, height - The Keyboard Preview, height - - - - Просмотр клавиатуры, высота - Просмотр клавиатуры, высота - - - - - /schemas/desktop/gnome/peripherals/keyboard/indicator/secondary - /desktop/gnome/peripherals/keyboard/indicator/secondary - gnome - int - 0 - - Secondary groups - Secondary groups - - - - Sekundäre Gruppen - Sekundäre Gruppen - - - - Secondary groups - Secondary groups - - - - Второстепенные группы - Второстепенные группы - - - - - /schemas/desktop/gnome/peripherals/keyboard/indicator/showFlags - /desktop/gnome/peripherals/keyboard/indicator/showFlags - gnome - bool - false - - - Show flags in the applet - - Show flags in the applet to indicate the current layout - - - - Markierungen im Applet zeigen - Markierungen im Applet zeigen, um die aktuelle Belegung anzuzeigen - - - - Show flags in the applet - Show flags in the applet to indicate the current layout - - - - Показывать флаги в апплете - Показывать флаги в апплете для указания текущей раскладки - - - - - /schemas/desktop/gnome/peripherals/keyboard/indicator/fontFamily - /desktop/gnome/peripherals/keyboard/indicator/fontFamily - gnome - string - - - The font family - The font family for the layout indicator - - - - Die Schriftfamilie - Die Schriftfamilie für den Tastaturindikator - - - - The font family - The font family for the layout indicator - - - - Семейство шрифтов - Семейство шрифтов для индикатора раскраски - - - - - /schemas/desktop/gnome/peripherals/keyboard/indicator/fontSize - /desktop/gnome/peripherals/keyboard/indicator/fontSize - gnome - int - 10 - - The font size - The font size for the layout indicator - - - - Die Schriftgröße - Die Schriftgröße für den Tastaturindikator - - - - The font size - The font size for the layout indicator - - - - Размер шрифта - Размер шрифта для индикатора раскладки - - - - - /schemas/desktop/gnome/peripherals/keyboard/indicator/foregroundColor - /desktop/gnome/peripherals/keyboard/indicator/foregroundColor - gnome - string - - - The foreground color - The foreground color for the layout indicator - - - - Die Vordergrundfarbe - Die Vordergrundfarbe für den Tastaturindikator - - - - The foreground colour - The foreground colour for the layout indicator - - - - Цвет переднего плана - Цвет переднего плана для индикатора раскладки - - - - - /schemas/desktop/gnome/peripherals/keyboard/indicator/backgroundColor - /desktop/gnome/peripherals/keyboard/indicator/backgroundColor - gnome - string - - - The background color - The background color for the layout indicator - - - - Die Hintergrundfarbe - Die Hintergrundfarbe für den Tastaturindikator - - - - The background colour - The background colour for the layout indicator - - - - Цвет фона - Цвет фона для раскладки клавиатуры - - - - - /schemas/desktop/gnome/peripherals/keyboard/indicator/enabledPlugins - /desktop/gnome/peripherals/keyboard/indicator/enabledPlugins - gnome - list - string - [] - - The list of enabled Keyboard Indicator plugins - The list of enabled Keyboard Indicator plugins - - - - Die Liste der aktivierten Tastatur-Anzeige-Plugins - Die Liste der aktivierten Tastatur-Anzeige-Plugins - - - - The list of enabled Keyboard Indicator plugins - The list of enabled Keyboard Indicator plugins - - - - Список включённых модулей клавиатурного индикатора - Список включённых модулей клавиатурного индикатора - - - - diff --git a/gconf/schemas/desktop_gnome_peripherals_smartcard.schemas b/gconf/schemas/desktop_gnome_peripherals_smartcard.schemas deleted file mode 100644 index 3e939e1..0000000 --- a/gconf/schemas/desktop_gnome_peripherals_smartcard.schemas +++ /dev/null @@ -1,32 +0,0 @@ - - - - - /schemas/desktop/gnome/peripherals/smartcard/removal_action - /desktop/gnome/peripherals/smartcard/removal_action - gnome - string - none - - Smartcard removal action - 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. - - - - Smartcard-Entfernung - 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. - - - - Smartcard removal action - 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. - - - - Действие при извлечении смарт-карты - Установите в «none», «lock_screen» или «force_logout». Действие будет выполнено при извлечении смарт-карты, использовавшейся для входа в систему. - - - - diff --git a/gconf/schemas/desktop_gnome_peripherals_touchpad.schemas b/gconf/schemas/desktop_gnome_peripherals_touchpad.schemas deleted file mode 100644 index 2d3143e..0000000 --- a/gconf/schemas/desktop_gnome_peripherals_touchpad.schemas +++ /dev/null @@ -1,140 +0,0 @@ - - - - - - /schemas/desktop/gnome/peripherals/touchpad/disable_while_typing - /desktop/gnome/peripherals/touchpad/disable_while_typing - gnome - bool - FALSE - - Disable touchpad while typing - Set this to TRUE if you have problems with accidentally hitting the touchpad while typing. - - - - Touchpad während des Tippens deaktivieren - Setzen Sie dies auf »WAHR«, falls Sie Probleme mit unbeabsichtigtem Berühren des Touchpads während des Tippens haben. - - - - Disable touchpad while typing - Set this to TRUE if you have problems with accidentally hitting the touchpad while typing. - - - - Отключать сенсорную панель при наборе - Установите в TRUE если у вас проблемы со срабатыванием touchpad'а при наборе текста. - - - - - /schemas/desktop/gnome/peripherals/touchpad/tap_to_click - /desktop/gnome/peripherals/touchpad/tap_to_click - gnome - bool - FALSE - - Enable mouse clicks with touchpad - Set this to TRUE to be able to send mouse clicks by tapping on the touchpad. - - - - Mausklicks mit dem Touchpad aktivieren - Setzen Sie dies auf »WAHR«, um Mausklicks mit dem Touchpad auslösen zu können. - - - - Enable mouse clicks with touchpad - Set this to TRUE to be able to send mouse clicks by tapping on the touchpad. - - - - Использовать щелчки мышью через сенсорную панель - Установите в TRUE чтобы посылать щелчки мышки короткими прикосновениями к сенсорной панели. - - - - - /schemas/desktop/gnome/peripherals/touchpad/scroll_method - /desktop/gnome/peripherals/touchpad/scroll_method - gnome - int - 1 - - Select the touchpad scroll method - Select the touchpad scroll method. Supported values are: 0: disabled, 1: edge scrolling, and 2: two-finger scrolling - - - - Rollmethode für Touchpad auswählen - Wählen Sie die Rollmethode für das Touchpad aus. Mögliche Werte sind: 0 - deaktiviert, 1 - Kantenrollen, 2 - Rollen mit zwei Fingern - - - - Select the touchpad scroll method - Select the touchpad scroll method. Supported values are: 0: disabled, 1: edge scrolling and 2: two-finger scrolling - - - - Выберите способ прокрутки - Выберите способ прокрутки. Допустимые значения: 0: отключена, 1: прокрутка по краю, 2: прокрутка двумя пальцами - - - - - /schemas/desktop/gnome/peripherals/touchpad/horiz_scroll_enabled - /desktop/gnome/peripherals/touchpad/horiz_scroll_enabled - gnome - bool - FALSE - - Enable horizontal scrolling - Set this to TRUE to allow horizontal scrolling by the same method selected with the scroll_method key. - - - - Horizontales Rollen aktivieren - Setzen Sie dies auf »WAHR«, um horizontales Rollen mit der Methode zu erlauben, die im Schlüssel »scroll_method« festgelegt ist. - - - - Enable horizontal scrolling - Set this to TRUE to allow horizontal scrolling by the same method selected with the scroll_method key. - - - - Использовать горизонтальную прокрутку - Установите в TRUE чтобы включить горизонтальную прокрутку по методу установленному ключем scroll_method - - - - - /schemas/desktop/gnome/peripherals/touchpad/touchpad_enabled - /desktop/gnome/peripherals/touchpad/touchpad_enabled - gnome - bool - TRUE - - Enable touchpad - Set this to TRUE to enable all touchpads. - - - - Touchpad aktivieren - Setzen Sie dies auf »WAHR«, um alle Touchpads zu aktivieren. - - - - Enable touchpad - Set this to TRUE to enable all touchpads. - - - - Включить сенсорную панель - Установите в TRUE, чтобы разрешить все сенсорные панели. - - - - diff --git a/gconf/schemas/drivemount.schemas b/gconf/schemas/drivemount.schemas deleted file mode 100644 index 330ae2d..0000000 --- a/gconf/schemas/drivemount.schemas +++ /dev/null @@ -1,79 +0,0 @@ - - - - /schemas/apps/drivemount-applet/prefs/interval - drivemount-applet - int - 10 - - Interval timeout to check mount point status - Time in seconds between status updates - - - - Intervall zur Statusüberprüfung der Einhängepunkte - Zeit in Sekunden bis zur erneuten Statusaktualisierung - - - - Interval timeout to check mount point status - Time in seconds between status updates - - - - Время таймера на проверку состояния точки подключения - Время в секундах между обновлениями состояния - - - - /schemas/apps/drivemount-applet/prefs/pixmap - drivemount-applet - int - 0 - - - - - - - /schemas/apps/drivemount-applet/prefs/scale - drivemount-applet - bool - false - - - - - - - /schemas/apps/drivemount-applet/prefs/auto_eject - drivemount-applet - bool - false - - - - - - - /schemas/apps/drivemount-applet/prefs/mount_point - drivemount-applet - string - /mnt/floppy - - - - - - - /schemas/apps/drivemount-applet/prefs/autofs_friendly - drivemount-applet - bool - false - - - - - - - diff --git a/gconf/schemas/eog.schemas b/gconf/schemas/eog.schemas deleted file mode 100644 index a5fb080..0000000 --- a/gconf/schemas/eog.schemas +++ /dev/null @@ -1,624 +0,0 @@ - - - - /schemas/apps/eog/view/autorotate - /apps/eog/view/autorotate - eog - bool - 1 - - Automatic orientation - Whether the image should be rotated automatically based on - EXIF orientation. - - - - Automatische Drehung des Bildes - Legt fest, ob das Bild automatisch auf Grund der EXIF-Information gedreht wird. - - - - Automatic orientation - Whether the image should be rotated automatically based on EXIF orientation. - - - - Автоматическая ориентация - Должно ли изображение быть автоматически повёрнуто в соответствии с данными EXIF. - - - - - /schemas/apps/eog/view/background-color - /apps/eog/view/background-color - eog - string - #000000 - - Background Color - The color that is used to fill the area behind the image. - If the use-background-color key is not set, the color is determined - by the active GTK+ theme instead. - - - - Hintergrundfarbe - Die Farbe, die zum Füllen der Hintergrundfläche hinter dem Bild verwendet wird. Falls der Schlüssel »background-color« nicht gesetzt ist, so wird die Farbe durch das aktuelle GTK+-Thema bestimmt. - - - - Background Colour - The colour that is used to fill the area behind the image. If the use-background-color key is not set, the colour is determined by the active GTK+ theme instead. - - - - Цвет фона - Цвет, использующийся для заливки области вне изображения. Если ключ use-background-color не установлен, цвет будет определён из используемой темы GTK+. - - - - - /schemas/apps/eog/view/use-background-color - /apps/eog/view/use-background-color - eog - bool - 1 - - Use a custom background color - If this is active, the color set by the background-color key will be used to fill the area behind the image. If it is not set, the current GTK+ theme will determine the fill color. - - - - Eine benutzerdefinierte Hintergrundfarbe verwenden - Wenn dieser Wert festgelegt ist, so wird die im Schlüssel »background-color« festgelegte Farbe verwendet, um die Bereiche hinter dem Bild zu füllen. Falls der Wert nicht gesetzt ist, dann wird das aktuelle GTK+-Thema die Füllfarbe bestimmen. - - - - Use a custom background colour - If this is active, the colour set by the background-color key will be used to fill the area behind the image. If it is not set, the current GTK+ theme will determine the fill colour. - - - - Использовать другой цвет фона - Если включено, для заливки области вне изображния будет использоваться цвет, установленный ключом background-color. В противном случае, цвет заливки будет определён текущей темой GTK+. - - - - - /schemas/apps/eog/view/interpolate - /apps/eog/view/interpolate - eog - bool - 1 - - Interpolate Image - Whether the image should be interpolated on zoom-out. - This leads to better quality but is somewhat slower than - non-interpolated images. - - - - Bild interpolieren - Legt fest, ob das Bild beim Verkleinern interpoliert wird. Dies führt zu einer besseren Bildqualität, ist jedoch etwas langsamer als eine nicht interpolierte Darstellung. - - - - Interpolate Image - Whether the image should be interpolated on zoom-out. This leads to better quality but is somewhat slower than non-interpolated images. - - - - Интерполировать изображение - Должно ли интерполироваться изображение при уменьшении (масштабировании). Это позволяет улучшить качество, но уменьшает скорость обработки изображения. - - - - - /schemas/apps/eog/view/extrapolate - /apps/eog/view/extrapolate - eog - bool - 1 - - Extrapolate Image - Whether the image should be extrapolated on zoom-in. - This leads to blurry quality and is somewhat slower than - non-extrapolated images. - - - - Bild interpolieren - Legt fest, ob das Bild beim Vergrößern interpoliert wird. Dies führt zu einer leicht verschwommenen Bildqualität und ist etwas langsamer als eine nicht interpolierte Darstellung. - - - - Extrapolate Image - Whether the image should be extrapolated on zoom-in. This leads to blurry quality and is somewhat slower than non-extrapolated images. - - - - Экстраполировать изображение - Должно ли изображение быть экстраполировано при увеличении (масштабировании). Это приводит к размытости и уменьшает скорость обработки изображения. - - - - - /schemas/apps/eog/view/transparency - /apps/eog/view/transparency - eog - string - CHECK_PATTERN - - Transparency indicator - Determines how transparency should be indicated. Valid values - are CHECK_PATTERN, COLOR and NONE. If COLOR is chosen, then - the trans-color key determines the color value used. - - - - - Transparenzanzeiger - Legt fest, wie Transparenz dargestellt werden soll. Zulässige Werte sind: »CHECK_PATTERN«, »COLOR« sowie »NONE«. Falls Sie »COLOR« wählen, legt der »trans_color«-Schlüssel fest, welcher Farbwert verwendet werden soll. - - - - Transparency indicator - Determines how transparency should be indicated. Valid values are CHECK_PATTERN, COLOR and NONE. If COLOR is chosen, then the trans_color key determines the used colour value. - - - - Индикатор прозрачности - Определяет, как отрисовывать (обозначать в пользовательском интерфейсе) прозрачность. Допустимые значения: CHECK_PATTERN, COLOR и NONE. Если выбрано значение COLOR, ключ trans_color устанавливает используемый цвет. - - - - - /schemas/apps/eog/view/scroll_wheel_zoom - /apps/eog/view/scroll_wheel_zoom - eog - bool - 1 - - Scroll wheel zoom - Whether the scroll wheel should be used for zooming. - - - - Vergrößerung per Mausrad - Legt fest, ob das Mausrad zum Vergrößern verwendet wird. - - - - Scroll wheel zoom - Whether the scroll wheel should be used for zooming. - - - - Масштабирование вращением колёсика мыши - Должно ли колёсико мыши использоваться для масштабирования. - - - - - /schemas/apps/eog/view/zoom_multiplier - /apps/eog/view/zoom_multiplier - eog - float - 0.05 - - Zoom multiplier - The multiplier to be applied when using the mouse scroll wheel - for zooming. This value defines the zooming step used for each scroll - event. For example, 0.05 results in a 5% zoom increment for each - scroll event and 1.00 result in a 100% zoom increment. - - - - Vergrößerungsfaktor - Der anzuwendende Faktor, wenn mit dem Mausrad vergrößert werden soll. Dieser Wert definiert den Vergrößerungsschritt, der bei jedem Weiterschalten des Rades verwendet wird. 0.05 vergrößert die Ansicht des Bildes um 5%, 1.00 um 100%. - - - - Zoom multiplier - The multiplier to be applied when using the mouse scroll wheel for zooming. This value defines the zooming step used for each scroll event. For example, 0.05 results in a 5% zoom increment for each scroll event and 1.00 result in a 100% zoom increment. - - - - Коэффициент масштабирования - Множитель при использовании колёсика мыши для масштабирования. Это значение задаёт шаг масштаба, используемый при каждом событии вращения колёсика. Например, значение 0,05 даёт увеличение масштаба на 5% при каждом событии вращения, а 1,00 — на 100%. - - - - - /schemas/apps/eog/view/trans_color - /apps/eog/view/trans_color - eog - string - #000000 - - Transparency color - If the transparency key has the value COLOR, then this - key determines the color which is used for indicating transparency. - - - - - Transparenzfarbe - Falls der Transparenzschlüssel den Wert »COLOR« hat, legt dieser Schlüssel fest, welche Farbe zum Anzeigen der Transparenz verwendet werden soll. - - - - Transparency colour - If the transparency key has the value COLOR, then this key determines the colour which is used for indicating transparency. - - - - Цвет прозрачности - Если ключ «transparency» имеет значение COLOR, тогда данный ключ определяет цвет, который будет обозначать прозрачность. - - - - - /schemas/apps/eog/full_screen/loop - /apps/eog/full_screen/loop - eog - bool - 1 - - Loop through the image sequence - Whether the sequence of images should be shown in an - endless loop. - - - - Endlosschleife durch die Bildabfolge - Legt fest, ob die Bilder in einer Endlosschleife angezeigt werden. - - - - Loop through the image sequence - Whether the sequence of images should be shown in an endless loop. - - - - Зацикливать последовательность показа изображений - Следует ли показывать последовательность изображений в бесконечном цикле. - - - - - /schemas/apps/eog/full_screen/upscale - /apps/eog/full_screen/upscale - eog - bool - 1 - - Allow zoom greater than 100% initially - If this is set to FALSE small images will not be - stretched to fit into the screen initially. - - - - Anfangsvergrößerung größer als 100% erlauben - Wenn dieser Wert auf FALSCH gesetzt ist, werden kleine Bilder anfangs nicht vergrößert, um auf den Bildschirm zu passen. - - - - Allow zoom greater than 100% initially - If this is set to FALSE small images will not be stretched to fit into the screen initially. - - - - Разрешить изначальный масштаб более 100% - Если этот ключ имеет значение FALSE, небольшие изображения при их открытии не будут растягиваться до размера окна. - - - - - /schemas/apps/eog/full_screen/seconds - /apps/eog/full_screen/seconds - eog - int - 5 - - Delay in seconds until showing the next image - A value greater than 0 determines the seconds an image stays - on screen until the next one is shown automatically. Zero - disables the automatic browsing. - - - - Verzögerung in Sekunden, bis das nächste Bild angezeigt wird - Ein Wert größer 0 legt die Sekunden fest, die ein Bild angezeigt wird, bevor automatisch auf das nächste weitergeschaltet wird. Null schaltet die automatische Weiterschaltung ab. - - - - Delay in seconds until showing the next image - A value greater than 0 determines the seconds an image stays on screen until the next one is shown automatically. Zero disables the automatic browsing. - - - - Задержка в секундах перед показом следующего изображения - Значение больше 0 определяет количество секунд, в течение которого изображение остаётся на экране до автоматического показа следующего. Ноль запрещает автоматическую смену изображений. - - - - - /schemas/apps/eog/ui/toolbar - /apps/eog/ui/toolbar - eog - bool - 1 - - Show/Hide the window toolbar. - - - - Werkzeugleiste anzeigen/verbergen. - - - - Show/Hide the window toolbar. - - - - Показать/скрыть панель инструментов. - - - - - /schemas/apps/eog/ui/statusbar - /apps/eog/ui/statusbar - eog - bool - 1 - - Show/Hide the window statusbar. - - - - Statusleiste anzeigen/verbergen. - - - - Show/Hide the window statusbar. - - - - Показать/скрыть строку состояния. - - - - - /schemas/apps/eog/ui/image_collection - /apps/eog/ui/image_collection - eog - bool - 0 - - Show/Hide the image collection pane. - - - - Bildersammlungsleiste anzeigen/verbergen. - - - - Show/Hide the image collection pane. - - - - Показать/скрыть панель коллекции изображений. - - - - - /schemas/apps/eog/ui/image_collection_position - /apps/eog/ui/image_collection_position - eog - int - 0 - - Image collection pane position. Set to 0 for bottom; - 1 for left; 2 for top; 3 for right. - - - - Die Position der Bildersammlungsleiste. Gültige Werte sind: 0 (unten), 1 (links), 2 (oben), 3 (rechts) - - - - Image collection pane position. Set to 0 for bottom; 1 for left; 2 for top; 3 for right. - - - - Положение панели коллекции изображений. Установите в 0 для расположения снизу; 1 — слева; 2 — сверху; 3 — справа. - - - - - /schemas/apps/eog/ui/image_collection_resizable - /apps/eog/ui/image_collection_resizable - eog - bool - 0 - - Whether the image collection pane should be resizable. - - - - Legt fest, ob die Größe der Bildersammlungsleiste angepasst werden kann. - - - - Whether the image collection pane should be resizable. - - - - Можно ли изменять размер панели коллекции. - - - - - /schemas/apps/eog/ui/sidebar - /apps/eog/ui/sidebar - eog - bool - 1 - - Show/Hide the window side pane. - - - - Seitenleiste anzeigen/verbergen. - - - - Show/Hide the window side pane. - - - - Показать/скрыть боковую панель. - - - - - /schemas/apps/eog/ui/scroll_buttons - /apps/eog/ui/scroll_buttons - eog - bool - 1 - - Show/Hide the image collection pane scroll buttons. - - - - Bildlaufknöpfe der Bildersammlungsleiste zeigen/verbergen - - - - Show/Hide the image collection pane scroll buttons. - - - - Показать/скрыть кнопки прокрутки панели коллекции изображений. - - - - - /schemas/apps/eog/ui/disable_trash_confirmation - /apps/eog/ui/disable_trash_confirmation - eog - bool - 0 - - Trash images without asking - If activated, Eye of GNOME won't ask for confirmation when - moving images to the trash. It will still ask if any of the files - cannot be moved to the trash and would be deleted instead. - - - - Bilder ohne nachfragen löschen - Legt fest, ob Eye of GNOME nicht nach Bestätigung fragt, wenn Bilder in den Mülleimer verschoben werden. Es wird aber in jedem Fall nachgefragt, wenn das Bild nicht in den Müll verschoben werden kann und stattdessen gelöscht wird. - - - - Move images to the wastebasket without asking - If activated, Eye of GNOME won't ask for confirmation when moving images to the wastebasket. It will still ask if any of the files cannot be moved to the wastebasket and would be deleted instead. - - - - Перемещать изображения в корзину без запроса - Если функция активирована, программа «Глаз GNOME» не будет запрашивать подтверждение перед отправкой изображений в корзину; но запросит перед удалением, если какой-либо из файлов не может быть помещён в корзину. - - - - - /schemas/apps/eog/ui/filechooser_xdg_fallback - /apps/eog/ui/filechooser_xdg_fallback - eog - bool - 1 - - Whether the file chooser should show the user's pictures folder if no images are loaded. - If activated and no image is loaded in the active window, the file chooser will display the user's pictures folder using the XDG special user directories. If deactivated or the pictures folder has not been set up, it will show the current working directory. - - - - Legt fest, ob die Dateiauswahl den Bilderordner des Benutzers anzeigen soll, wenn keine Bilder geladen sind. - Wenn dieser Schlüssel auf »Wahr« gesetzt ist und kein Bild im aktiven Fenster geladen ist, zeigt die Dateiauswahl den Bilderordner des Benutzers unter Verwendung der speziellen XDG-Benutzerordner. Wenn dieser Schlüssel auf »Falsch« gesetzt ist oder der Bilderordner nicht eingerichtet ist, wird der aktuelle Arbeitsordner angezeigt. - - - - Whether the file chooser should show the user's pictures folder if no images are loaded. - If activated and no image is loaded in the active window, the file chooser will display the user's pictures folder using the XDG special user directories. If deactivated or the pictures folder has not been set up, it will show the current working directory. - - - - Отображать ли в окне выбора файлов папку изображений пользователя, если ни одно изображение не загружено. - Если функция активирована и в активном окне нет загруженных изображений, будет показана папка с изображениями, заданная средствами XDG. Если функция неактивна, или папка пользователя не задана, будет показан текущий рабочий каталог. - - - - - /schemas/apps/eog/ui/propsdialog_netbook_mode - /apps/eog/ui/propsdialog_netbook_mode - eog - bool - 1 - - Whether the metadata list in the properties dialog should have its own page. - If activated, the detailed metadata list in the properties dialog - will be moved to its own page in the dialog. This should make the dialog - more usable on smaller screens, e.g. as used by netbooks. If disabled, - the widget will be embedded on the "Metadata" page. - - - - Legt fest, ob die Liste der Metadaten im Eigenschaften-Dialog auf einer eigenen Seite angezeigt wird. - Wenn dieser Schlüssel auf »Wahr« gesetzt ist, wird die detaillierte Liste der Metadaten innerhalb des Eigenschaften-Dialogs als eigene Seite innerhalb des Dialogs angezeigt. Dies soll die Bedienbarkeit des Dialogs auf kleineren Bildschirmen verbessern, wie z.B. auf Netbooks. Wenn der Schlüssel auf »Falsch« gesetzt ist, wird das Dialogelement auf der Seite »Metadaten« eingebettet. - - - - Whether the metadata list in the properties dialogue should have its own page. - If activated, the detailed metadata list in the properties dialogue will be moved to its own page in the dialogue. This should make the dialogue more usable on smaller screens, e.g. as used by netbooks. If disabled, the widget will be embedded on the "Metadata" page. - - - - Отображать ли список метаданных на отдельной вкладке в диалоговом окне свойств. - Если функция активирована, подробный список метаданных в диалоговом окне свойств будет помещён в отдельную страницу в диалоговом окне. Это удобно при просмотре диалогового окна на малых экранах таких устройств, как нетбуки. Если функция отключена, виджет будет встроен в страницу «Метаданные». - - - - - /schemas/apps/eog/plugins/active_plugins - /apps/eog/plugins/active_plugins - eog - list - string - [] - - Active plugins - List of active plugins. It doesn't contain the "Location" of the active plugins. - See the .eog-plugin file for obtaining the "Location" of a given plugin. - - - - Aktivierte Plugins - Liste aktivierter Plugins. Sie enthält nicht den »Ort« aktiver Plugins. Sehen Sie in der ».eog-plugin«-Datei eines Plugins nach, um den »Ort« (»Location«) zu erfahren. - - - - Active plugins - List of active plugins. It doesn't contain the "Location" of the active plugins. See the .eog-plugin file for obtaining the "Location" of a given plugin. - - - - Активные модули - Список активных модулей. Не указывает расположения активных модулей. О расположении можно узнать из файла .eog-plugin. - - - - - diff --git a/gconf/schemas/epiphany-lockdown.schemas b/gconf/schemas/epiphany-lockdown.schemas deleted file mode 100644 index 4cc0db7..0000000 --- a/gconf/schemas/epiphany-lockdown.schemas +++ /dev/null @@ -1,269 +0,0 @@ - - - - /schemas/apps/epiphany/lockdown/disable_javascript_chrome - /apps/epiphany/lockdown/disable_javascript_chrome - epiphany - bool - false - - Disable JavaScript chrome control - Disable JavaScript's control over window chrome. - - - - JavaScript-Kontrolle über Chrome deaktivieren - JavaScript-Kontrolle über Chrome deaktivieren - - - - Disable JavaScript chrome control - Disable JavaScript's control over window chrome. - - - - Отключить JavaScript над пользовательским интерфейсом - Отключить управление внешним видом окна с помощью JavaScript. - - - - /schemas/apps/epiphany/lockdown/hide_menubar - /apps/epiphany/lockdown/hide_menubar - epiphany - bool - false - - Hide menubar by default - Hide the menubar by default. - - - - Menüleiste per Vorgabe verbergen - Soll die Menüleiste per Vorgabe verborgen werden? - - - - Hide menubar by default - Hide the menubar by default. - - - - Скрывать меню по умолчанию - Скрывать меню по умолчанию. - - - - /schemas/apps/epiphany/lockdown/disable_unsafe_protocols - /apps/epiphany/lockdown/disable_unsafe_protocols - epiphany - bool - false - - Disable unsafe protocols - Disables loading of content from unsafe protocols. Safe protocols - are http and https. - - - - Unsichere Protokolle deaktivieren - Deaktiviert das Laden von Inhalten mit Hilfe unsicherer Protokolle, wobei http: und https: sichere Protokolle sind. - - - - Disable unsafe protocols - Disables loading of content from unsafe protocols. Safe protocols are http and https. - - - - Отключить небезопасные протоколы - Запрещает загрузку содержимого через небезопасные протоколы. Безопасные протоколы - "http:" и "https:". - - - - /schemas/apps/epiphany/lockdown/additional_safe_protocols - /apps/epiphany/lockdown/additional_safe_protocols - epiphany - list - string - [] - - Additional safe protocols - A list of protocols to be considered safe in addition to the - default, when disable_unsafe_protocols is enabled. - - - - Zusätzliche sichere Protokolle - Eine Liste der zusätzlich zur Vorgabe als sicher anzusehenden Protokolle. Dieser Schlüssel wird ausschließlich wirksam, falls der Schlüssel »disable_unsafe_protocols« wahr ist. - - - - Additional safe protocols - A list of protocols to be considered safe in addition to the default, when disable_unsafe_protocols is enabled. - - - - Дополнительные безопасные протоколы - Список протоколов, в добавление к исходному считающихся безопасными, когда ключ "disable_unsafe_protocols" установлен. - - - - /schemas/apps/epiphany/lockdown/disable_arbitrary_url - /apps/epiphany/lockdown/disable_arbitrary_url - epiphany - bool - 0 - - Disable arbitrary URLs - Disable the user's ability to type in a URL to Epiphany. - - - - Beliebige URLs deaktivieren - Dem Benutzer die Möglichkeit nehmen, eine URL für Epiphany einzugeben. - - - - Disable arbitrary URLs - Disable the user's ability to type in a URL to Epiphany. - - - - Отключить произвольные URL - Запретить пользователям вручную вводить URL. - - - - /schemas/apps/epiphany/lockdown/disable_bookmark_editing - /apps/epiphany/lockdown/disable_bookmark_editing - epiphany - bool - 0 - - Disable bookmark editing - Disable the user's ability to add or edit bookmarks. - - - - Bearbeiten von Lesezeichen deaktivieren - Dem Benutzer die Möglichkeit nehmen, seine Lesezeichen zu bearbeiten. - - - - Disable bookmark editing - Disable the user's ability to add or edit bookmarks. - - - - Отключить редактирование закладок - Запретить пользователям редактировать свои закладки. - - - - /schemas/apps/epiphany/lockdown/disable_toolbar_editing - /apps/epiphany/lockdown/disable_toolbar_editing - epiphany - bool - 0 - - Disable toolbar editing - Disable the user's ability to edit toolbars. - - - - Bearbeiten von Werkzeugleisten deaktivieren - Dem Benutzer die Möglichkeit nehmen, seine Werkzeugleisten zu bearbeiten. - - - - Disable toolbar editing - Disable the user's ability to edit toolbars. - - - - Запретить редактирование панели инструментов - Запретить пользователям редактировать свои панели инструментов. - - - - /schemas/apps/epiphany/lockdown/disable_history - /apps/epiphany/lockdown/disable_history - epiphany - bool - 0 - - Disable history - Disable all historical information by disabling back and - forward navigation, not allowing the history dialog and hiding the - most used bookmarks list. - - - - Chronik deaktivieren - Alle Chronik-Informationen durch Deaktivieren der Navigationsknöpfe »Zurück« und »Vor« verbergen. Dies betrifft auch den Chronik-Dialog und die Lesezeichen. - - - - Disable history - Disable all historical information by disabling back and forward navigation, not allowing the history dialogue and hiding the most used bookmarks list. - - - - Отключить историю - Отключить всю информацию об истории посещений путём отключение кнопки "Назад", запрета диалога истории и сокрытия списка наиболее часто используемых закладок. - - - - /schemas/apps/epiphany/lockdown/fullscreen - /apps/epiphany/lockdown/fullscreen - epiphany - bool - 0 - - Lock in fullscreen mode - Locks Epiphany in fullscreen mode. - - - - Epiphany im Vollbildmodus ausführen - Epiphany im Vollbildmodus ausführen. - - - - Lock in fullscreen mode - Locks Epiphany in fullscreen mode. - - - - Заблокировать в полноэкранном режиме - Блокирует Epiphany в полноэкранном режиме. - - - - /schemas/apps/epiphany/lockdown/disable_quit - /apps/epiphany/lockdown/disable_quit - epiphany - bool - 0 - - Epiphany cannot quit - User is not allowed to close Epiphany - - - - Epiphany kann nicht beendet werden - Dem Benutzer ist nicht gestattet, Epiphany zu beenden - - - - Epiphany cannot quit - User is not allowed to close Epiphany - - - - Запрещено выходить Epiphany - Пользователю не позволяется закрывать Epiphany - - - - diff --git a/gconf/schemas/epiphany.schemas b/gconf/schemas/epiphany.schemas deleted file mode 100644 index 4fed47a..0000000 --- a/gconf/schemas/epiphany.schemas +++ /dev/null @@ -1,1139 +0,0 @@ - - - - /schemas/apps/epiphany/general/homepage - /apps/epiphany/general/homepage - epiphany - string - http://www.google.com - - Home page - Address of the user's home page. - - - - Startseite - Adresse der Startseite des Benutzers. - - - - Home page - Address of the user's home page. - - - - Начальная страница - Адрес начальной страницы. - - - - /schemas/apps/epiphany/general/url_search - /apps/epiphany/general/url_search - epiphany - string - http://www.google.com/search?q=%s&ie=UTF-8&oe=UTF-8 - - URL Search - Search string for keywords entered in the URL bar. - - - - Suche nach Adressen - Suchzeichenkette für Schlüsselwörter, die in der Adressleiste eingegeben werden. - - - - URL Search - Search string for keywords entered in the URL bar. - - - - Поиск URL - Искать ключевые слова в строке ввода URL. - - - - /schemas/apps/epiphany/dialogs/history_date_filter - /apps/epiphany/dialogs/history_date_filter - epiphany - string - ever - - History pages time range - Show the history pages visited "ever", - "last_two_days", "last_three_days", "today". - - - - - Zeitspanne für Seiten in Chronik - Die Zeitspanne, über die Seiten in der Chronik angezeigt werden sollen. Zulässige Werte: »ever« (alle), »last_two_days« (letzte zwei Tage), »last_three_days« (letzte drei Tage) sowie »today« (heute). - - - - History pages time range - Show the history pages visited "ever", "last_two_days", "last_three_days", "today". - - - - Временной диапазон страниц истории - Показывать страницы, посещённые когда-то ("ever"), за последние два дня ("last_two_days", за последние три дня ("last_three_days"), сегодня ("today"). - - - - /schemas/apps/epiphany/dialogs/bookmarks_view_details - /apps/epiphany/dialogs/bookmarks_view_details - epiphany - list - string - [title] - - The bookmark information shown in the editor view - - The bookmark information shown in the editor view. Valid values - in the list are "address" and "title". - - - - - Die in der Editoransicht angezeigten Lesezeicheninformationen - Die in der Editoransicht angezeigte Lesezeicheninformationen. Zulässige Listenwerte: »address« (Adresse) sowie »title« (Titel). - - - - The bookmark information shown in the editor view - The bookmark information shown in the editor view. Valid values in the list are "address" and "title". - - - - Информация из закладок, показываемая в окне редактирования - Информация из закладок, показываемая в окне редактирования. Допустимые значения в списке "address" (адрес) и "title" (заголовок). - - - - /schemas/apps/epiphany/dialogs/history_view_details - /apps/epiphany/dialogs/history_view_details - epiphany - list - string - [ViewTitle,ViewAddress] - - The page information shown in the history view - - The page information shown in the history view. Valid values - in the list are "ViewTitle", "ViewAddress" and "ViewDateTime". - - - - - Die in der Chronikansicht angezeigten Seiteninformationen - Die in der Chronikansicht angezeigten Seiteninformationen. Zulässige Listenwerte: »ViewTitle« (Titel), »ViewAdress« (Adresse) sowie »ViewDateTime« (Datum und Uhrzeit) - - - - The page information shown in the history view - The page information shown in the history view. Valid values in the list are "ViewTitle", "ViewAddress" and "ViewDateTime". - - - - Информация о странице, показываемая в окне истории - Сведения о странице, показываемые в окне истории. Допустимые значения в этом списке: «ViewTitle», «ViewAddress» и «ViewDateTime». - - - - /schemas/apps/epiphany/dialogs/preferences_font_language - /apps/epiphany/dialogs/preferences_font_language - epiphany - string - - x-western - The currently selected fonts language - - The currently selected fonts language. Valid values are "ar" (arabic), - "x-baltic" (baltic languages), "x-central-euro" (central european languages), - "x-cyrillic" (languages written with cyrillic alphabet), "el" (greek), - "he" (hebrew), "ja" (japanese), "ko" (korean), "zh-CN" (simplified chinese), - "th" (thai), "zh-TW" (traditional chinese), "tr" (turkish), "x-unicode" (other - languages), "x-western" (languages written in latin script), "x-tamil" (tamil) - and "x-devanagari" (devanagari). - - - - - x-western - Die momentan gewählte Schriftsprache - Die Sprache der momentan gewählten Schrift. Zulässige Werte: »ar« (Arabisch), »x-baltic« (Baltische Sprachen), »x-central-euro« (Zentraleuropäische Sprachen), »x-cyrillic« (im Kyrillischen Alphabet notierte Sprachen), »el« (Griechisch), »he« (Hebräisch), »ja« (Japanisch), »ko« (Koreanisch), »zh-CN« (Chinesisch, vereinfacht), »th« (Thai), »zh-TW« (Chinesisch, traditionell), »tr« (Türkisch), »x-unicode« (übrige Sprachen), »x-western« (In lateinischer Schrift notierte Sprachen), »x-tamil« (Tamil) sowie »x-devanagari« (Devanagari). - - - - x-western - The currently-selected font language - The currently-selected font language. Values are "ar" (arabic), "x-baltic" (baltic languages), "x-central-euro" (central european languages), "x-cyrillic" (languages written with cyrillic alphabet), "el" (greek), "he" (hebrew), "ja" (japanese), "ko" (korean), "zh-CN" (simplified chinese), "th" (thai), "zh-TW" (traditional chinese), "tr" (turkish), "x-unicode" (other languages), "x-western" (languages written in latin script), "x-tamil" (tamil) and "x-devanagari" (devanagari). - - - - x-western - Выбранный на настоящий момент язык шрифтов - Выбранный на настоящий момент язык шрифтов. Допустимые значения "ar" (арабский), "x-baltic" (балтийские языки), "x-central-euro" (центрально-европейские языки) , "x-cyrillic" (языки, использующие кириллицу), "el" (греческий), "he" (еврейский), "ja" (японский), "ko" (корейский), "zh-CN" (китайский упрощённый), "th" (тайский), "zh-TW" (китайский традиционный), "tr" (турецкий), "x-unicode" (прочие языки), "x-western" (языки, использующие латиницу), "x-tamil" (тамильский) and "x-devanagari" (деванагари). - - - - /schemas/apps/epiphany/web/smooth_scroll - /apps/epiphany/web/smooth_scroll - epiphany - bool - false - - Enable smooth scrolling - - - - Sanftes Scrollen aktivieren - - - - Enable smooth scrolling - - - - Включить плавную прокрутку - - - - /schemas/apps/epiphany/general/user_agent - /apps/epiphany/general/user_agent - epiphany - string - - - User agent - String that will be used as user agent, to identify the browser to the web servers. - - - - Benutzeragent - Als Benutzeragent zu verwendende Zeichenkette, um den Browser gegenüber einem Webserver zu identifizieren. - - - - User agent - String that will be used as user agent, to identify the browser to the web servers. - - - - Идентификатор браузера - Строка, используемая в качестве идентификатора браузера, передаваемая на веб-серверы. - - - - /schemas/apps/epiphany/web/minimum_font_size - /apps/epiphany/web/minimum_font_size - epiphany - int - 7 - - Minimum font size - - - - Minimale Schriftgröße - - - - Minimum font size - - - - Минимальный размер шрифта - - - - /schemas/apps/epiphany/web/use_own_colors - /apps/epiphany/web/use_own_colors - epiphany - bool - false - - Use own colors - Use your own colors instead of the colors the page - requests. - - - - Eigene Farben verwenden - Eigene anstelle der vom Dokument angeforderten Farben verwenden? - - - - Use own colours - Use your own colours instead of the colours the page requests. - - - - Использовать собственные цвета - Использовать собственные цвета вместо цветов документа - - - - /schemas/apps/epiphany/web/use_own_fonts - /apps/epiphany/web/use_own_fonts - epiphany - bool - false - - Use own fonts - Use your own fonts instead of the fonts the page - requests. - - - - Eigene Schriften verwenden - Eigene anstelle der vom Dokument angeforderten Schriften verwenden? - - - - Use own fonts - Use your own fonts instead of the fonts the page requests. - - - - Использовать собственные шрифты - Использовать собственные шрифты вместо шрифтов документа - - - - /schemas/apps/epiphany/general/always_show_tabs_bar - /apps/epiphany/general/always_show_tabs_bar - epiphany - bool - false - - Always show the tab bar - Show the tab bar also when there is only one tab open. - - - - Die Reiterleiste immer anzeigen - Soll die Reiterleiste auch angezeigt werden, wenn nur ein Reiter geöffnet ist? - - - - Always show the tab bar - Show the tab bar also when there is only one tab open. - - - - Всегда показывать ярлыки вкладок - Показывать панель вкладок, даже если открыта только одна вкладка. - - - - /schemas/apps/epiphany/general/automatic_downloads - /apps/epiphany/general/automatic_downloads - epiphany - bool - true - - Automatic downloads - When files cannot be opened by the browser they are - automatically downloaded to the download folder and opened - with the appropriate application. - - - - Auto-Downloads - Wenn Dateien nicht vom Browser geöffnet werden können, werden sie automatisch in den Download-Ordner heruntergeladen und mit der passenden Anwendung geöffnet. - - - - Automatic downloads - When files cannot be opened by the browser they are automatically downloaded to the download folder and opened with the appropriate application. - - - - Автоматическое скачивание - Если файлы не могут быть открыты браузером, они будут скачаны в папку и открыты соответствующим приложением. - - - - /schemas/apps/epiphany/general/middle_click_open_url - /apps/epiphany/general/middle_click_open_url - epiphany - bool - false - - Middle click to open the web page pointed to by the currently - selected text - Middle clicking on the main view pane will open the web page - pointed to by the currently selected text. - - - - Mittelklick öffnet Website, auf den markierter Text verweist - Soll ein Mittelklick auf das Hauptansichtsfeld die Website öffnen, auf die der momentan markierte Text verweist? - - - - Middle click to open the web page pointed to by the currently selected text - Middle clicking on the main view pane will open the web page pointed to by the currently selected text. - - - - Использовать среднюю кнопку мыши для открытия веб-страницы, на которую указывает выделенный текст. - Использовать щелчок средней кнопкой мыши в основной панели для открытия веб-страницы, на которую указывает выделенный текст. - - - - /schemas/apps/epiphany/general/toolbar_style - /apps/epiphany/general/toolbar_style - epiphany - string - - - Toolbar style - Toolbar style. Allowed values are "" (use GNOME default style), - "both" (text and icons), "both-horiz" (text besides icons), - "icons", and "text". - - - - _Werkzeugleisten - Knopfbeschriftungen in Werkzeugleisten. Erlaubte Werte sind »« (benutzt Vorgabe von GNOME), »both« (Text unter Symbolen), »both-horiz« (Text neben Symbolen), »icons« (nur Symbole) und »text« (nur Text). - - - - Toolbar style - Toolbar style. Allowed values are "" (use GNOME default style), "both" (text and icons), "both-horiz" (text besides icons), "icons", and "text". - - - - Стиль панели инструментов - Стиль панели инструментов. Доступные значения "" (Использовать стиль GNOME по умолчанию), "both" (текст и значки), "icons", и "text". - - - - /schemas/apps/epiphany/general/open_new_windows_in_tab - /apps/epiphany/general/open_new_windows_in_tab - epiphany - bool - false - - Force new windows to be opened in tabs - Force new window requests to be opened in tabs instead - of using a new window. - - - - Neue Fenster immer als Reiter öffnen - Neue Fenster immer als Reiter anstatt Fenstern öffnen. - - - - Force new windows to be opened in tabs - Force new window requests to be opened in tabs instead of using a new window. - - - - Все новые окна открывать во вкладках - Все новые окна открывать во вкладках, а не в виде отдельных окон. - - - - /schemas/apps/epiphany/general/show_toolbars - /apps/epiphany/general/show_toolbars - epiphany - bool - true - - Show toolbars by default - - - - Werkzeugleisten per Vorgabe anzeigen - - - - Show toolbars by default - - - - Показывать панели инструментов по умолчанию - - - - /schemas/apps/epiphany/general/show_bookmarks_bar - /apps/epiphany/general/show_bookmarks_bar - epiphany - bool - false - - Show bookmarks bar by default - - - - Lesezeichenleiste per Vorgabe anzeigen? - - - - Show bookmarks bar by default - - - - Показывать панель закладок по умолчанию - - - - /schemas/apps/epiphany/general/show_statusbar - /apps/epiphany/general/show_statusbar - epiphany - bool - true - - Show statusbar by default - - - - Statusleiste anzeigen (Vorgabe)? - - - - Show statusbar by default - - - - Показывать строку состояния по умолчанию - - - - /schemas/apps/epiphany/general/active_extensions - /apps/epiphany/general/active_extensions - epiphany - list - string - [extensions-manager-ui] - - Active extensions - Lists the active extensions. - - - - Aktive Erweiterungen - Liste der aktiven Erweiterungen. - - - - Active extensions - Lists the active extensions. - - - - Активные расширения - Список активных расширений. - - - - /schemas/apps/epiphany/web/default_encoding - /apps/epiphany/web/default_encoding - epiphany - string - - ISO-8859-1 - Default encoding - Default encoding. Accepted values are: "armscii-8", "Big5", - "Big5-HKSCS", "EUC-JP", "EUC-KR", "gb18030", "GB2312", "geostd8", - "HZ-GB-2312", "IBM850", "IBM852", "IBM855", "IBM857", "IBM862", - "IBM864", "IBM866", "ISO-2022-CN", "ISO-2022-JP", "ISO-2022-KR", - "ISO-8859-1", "ISO-8859-2", "ISO-8859-3", "ISO-8859-4", "ISO-8859-5", - "ISO-8859-6", "ISO-8859-7", "ISO-8859-8", "ISO-8859-8-I", "ISO-8859-9", - "ISO-8859-10", "ISO-8859-11", "ISO-8859-13", "ISO-8859-14", - "ISO-8859-15", "ISO-8859-16", "ISO-IR-111", "KOI8-R", "KOI8-U", - "Shift_JIS", "TIS-620", "UTF-7", "UTF-8", "VISCII", "windows-874", - "windows-1250", "windows-1251", "windows-1252", "windows-1253", - "windows-1254", "windows-1255", "windows-1256", "windows-1257", - "windows-1258", "x-euc-tw", "x-gbk", "x-johab", "x-mac-arabic", - "x-mac-ce", "x-mac-croatian", "x-mac-cyrillic", "x-mac-devanagari", - "x-mac-farsi", "x-mac-greek", "x-mac-gujarati", "x-mac-gurmukhi", - "x-mac-hebrew", "x-mac-icelandic", "x-mac-roman", "x-mac-romanian", - "x-mac-turkish", "x-mac-ukrainian", "x-user-defined", "x-viet-tcvn5712", - "x-viet-vps" and "x-windows-949". - - - - ISO-8859-1 - Voreingestellter Zeichensatz - Der voreingestellte Zeichensatz. Zulässige Werte: »armscii-8«, »Big5«, »Big5-HKSCS«, »EUC-JP«, »EUC-KR«, »gb18030«, »GB2312«, »geostd8«, »HZ-GB-2312«, »IBM850«, »IBM852«, »IBM855«, »IBM857«, »IBM862«, »IBM864«, »IBM866«, »ISO-2022-CN«, »ISO-2022-JP«, »ISO-2022-KR«, »ISO-8859-1«, »ISO-8859-2«, »ISO-8859-3«, »ISO-8859-4«, »ISO-8859-5«, »ISO-8859-6«, »ISO-8859-7«, »ISO-8859-8«, »ISO-8859-8-I«, ISO-8859-9«, »ISO-8859-10«, »ISO-8859-11«, »ISO-8859-13«, »ISO-8859-14«, »ISO-8859-15«, »ISO-8859-16«, »ISO-IR-111«, »KOI8-R«, »KOI8-U«, »Shift_JIS«, »TIS-620«, »UTF-7«, »UTF-8«, »VISCII«, »windows-874«, »windows-1250«, »windows-1251«, »windows-1252«, »windows-1253«, »windows-1254«, »windows-1255«, »windows-1256«, »windows-1257«, »windows-1258«, »x-euc-tw«, »x-gbk«, »x-johab«, »x-mac-arabic«, »x-mac-ce«, »x-mac-croatian«, »x-mac-cyrillic«, »x-mac-devanagari«, »x-mac-farsi«, »x-mac-greek«, »x-mac-gujarati«, »x-mac-gurmukhi«, »x-mac-hebrew«, »x-mac-icelandic«, »x-mac-roman«, »x-mac-romanian«, »x-mac-turkish«, »x-mac-ukrainian«, »x-user-defined«, »x-viet-tcvn5712«, »x-viet-vps« sowie »x-windows-949«. - - - - ISO-8859-1 - Default encoding - Default encoding. Accepted values are: "armscii-8", "Big5", "Big5-HKSCS", "EUC-JP", "EUC-KR", "gb18030", "GB2312", "geostd8", "HZ-GB-2312", "IBM850", "IBM852", "IBM855", "IBM857", "IBM862", "IBM864", "IBM866", "ISO-2022-CN", "ISO-2022-JP", "ISO-2022-KR", "ISO-8859-1", "ISO-8859-2", "ISO-8859-3", "ISO-8859-4", "ISO-8859-5", "ISO-8859-6", "ISO-8859-7", "ISO-8859-8", "ISO-8859-8-I", "ISO-8859-9", "ISO-8859-10", "ISO-8859-11", "ISO-8859-13", "ISO-8859-14", "ISO-8859-15", "ISO-8859-16", "ISO-IR-111", "KOI8-R", "KOI8-U", "Shift_JIS", "TIS-620", "UTF-7", "UTF-8", "VISCII", "windows-874", "windows-1250", "windows-1251", "windows-1252", "windows-1253", "windows-1254", "windows-1255", "windows-1256", "windows-1257", "windows-1258", "x-euc-tw", "x-gbk", "x-johab", "x-mac-arabic", "x-mac-ce", "x-mac-croatian", "x-mac-cyrillic", "x-mac-devanagari", "x-mac-farsi", "x-mac-greek", "x-mac-gujarati", "x-mac-gurmukhi", "x-mac-hebrew", "x-mac-icelandic", "x-mac-roman", "x-mac-romanian", "x-mac-turkish", "x-mac-ukrainian", "x-user-defined", "x-viet-tcvn5712", "x-viet-vps" and "x-windows-949". - - - - ISO-8859-1 - Кодировка по умолчанию - Кодировка по умолчанию. Допустимые значения: "armscii-8", "Big5", "Big5-HKSCS", "EUC-JP", "EUC-KR", "gb18030", "GB2312", "geostd8", "HZ-GB-2312", "IBM850", "IBM852", "IBM855", "IBM857", "IBM862", "IBM864", "IBM866", "ISO-2022-CN", "ISO-2022-JP", "ISO-2022-KR", "ISO-8859-1", "ISO-8859-2", "ISO-8859-3", "ISO-8859-4", "ISO-8859-5", "ISO-8859-6", "ISO-8859-7", "ISO-8859-8", "ISO-8859-8-I", "ISO-8859-9", "ISO-8859-10", "ISO-8859-11", "ISO-8859-13", "ISO-8859-14", "ISO-8859-15", "ISO-8859-16", "ISO-IR-111", "KOI8-R", "KOI8-U", "Shift_JIS", "TIS-620", "UTF-7", "UTF-8", "VISCII", "windows-874", "windows-1250", "windows-1251", "windows-1252", "windows-1253", "windows-1254", "windows-1255", "windows-1256", "windows-1257", "windows-1258", "x-euc-tw", "x-gbk", "x-johab", "x-mac-arabic", "x-mac-ce", "x-mac-croatian", "x-mac-cyrillic", "x-mac-devanagari", "x-mac-farsi", "x-mac-greek", "x-mac-gujarati", "x-mac-gurmukhi", "x-mac-hebrew", "x-mac-icelandic", "x-mac-roman", "x-mac-romanian", "x-mac-turkish", "x-mac-ukrainian", "x-user-defined", "x-viet-tcvn5712", "x-viet-vps" и "x-windows-949". - - - - /schemas/apps/epiphany/web/default_font_type - /apps/epiphany/web/default_font_type - epiphany - string - serif - - Default font type - Default font type. Possible values are "serif" and "sans-serif". - - - - - Vorgabe-Schrifttyp - Der voreingestellte Schrifttyp. Zulässige Werte: »serif« sowie »sans-serif«. - - - - Default font type - Default font type. Possible values are "serif" and "sans-serif". - - - - Шрифт по умолчанию - Тип шрифта по умолчанию. Возможные значения "serif" (с засечками) и "sans-serif" (без засечек). - - - - /schemas/apps/epiphany/web/cache_size - /apps/epiphany/web/cache_size - epiphany - int - 50 - - Size of disk cache - Size of disk cache, in MB. - - - - Größe des Platten-Caches - Die Größe des Platten-Caches in MB. - - - - Size of disk cache - Size of disk cache, in MB. - - - - Размер дискового кэша - Размер дискового кэша, в МБ. - - - - /schemas/apps/epiphany/web/language - /apps/epiphany/web/language - epiphany - list - string - [] - - Languages - Preferred languages, two letter codes. - - - - Sprachen - Bevorzugte Sprachen, jeweils als 2-Buchstaben-Kürzel. - - - - Languages - Preferred languages, two letter codes. - - - - Языки - Предпочтительные языки, двухбуквенные коды. - - - - /schemas/apps/epiphany/dialogs/print_page_title - /apps/epiphany/dialogs/print_page_title - epiphany - bool - true - - Whether to print the page title in the header - - - - Soll der Titel einer Seite beim Drucken in der Kopfzeile ausgegeben werden? - - - - Whether to print the page title in the header - - - - Печатать ли заголовок страницы в верхнем колонтитуле - - - - /schemas/apps/epiphany/dialogs/print_page_url - /apps/epiphany/dialogs/print_page_url - epiphany - bool - true - - Whether to print the page address in the header - - - - Soll die Adresse einer Seite beim Drucken in der Kopfzeile ausgegeben werden? - - - - Whether to print the page address in the header - - - - Печатать ли адрес страницы в верхнем колонтитуле - - - - /schemas/apps/epiphany/dialogs/print_date - /apps/epiphany/dialogs/print_date - epiphany - bool - true - - Whether to print the date in the footer - - - - Soll das Datum beim Drucken in der Fußzeile ausgegeben werden? - - - - Whether to print the date in the footer - - - - Печатать ли дату в нижнем колонтитуле - - - - /schemas/apps/epiphany/dialogs/print_background_colors - /apps/epiphany/dialogs/print_background_colors - epiphany - bool - false - - Whether to print the background color - - - - Soll die Hintergrundfarbe beim Drucken ausgegeben werden? - - - - Whether to print the background colour - - - - Печатать ли фоновый цвет - - - - /schemas/apps/epiphany/dialogs/print_background_images - /apps/epiphany/dialogs/print_background_images - epiphany - bool - true - - Whether to print the background images - - - - Sollen die Hintergrundbilder beim Drucken ausgegeben werden? - - - - Whether to print the background images - - - - Печатать ли фоновое изображение - - - - /schemas/apps/epiphany/dialogs/print_page_numbers - /apps/epiphany/dialogs/print_page_numbers - epiphany - bool - true - - Whether to print the page numbers (x of total) in the footer - - - - Soll die Seitennummerierung (x von y) beim Drucken in der Fußzeile ausgegeben werden? - - - - Whether to print the page numbers (x of total) in the footer - - - - Печатать ли номера страниц (х из всего) в нижнем колонтитуле - - - - /schemas/apps/epiphany/dialogs/print_frames - /apps/epiphany/dialogs/print_frames - epiphany - string - normal - - How to print frames - How to print pages containing frames. Allowed values are "normal", "separately" and "selected". - - - - Drucken von Frames - Legt fest, wie Seiten mit Frames gedruckt werden. Mögliche Werte sind »normal« (normal), »separately« (separat) und »selected« (ausgewählte). - - - - How to print frames - How to print pages containing frames. Allowed values are "normal", "separately" and "selected". - - - - Как печатать независимые области - Как печатать страницы, содержащие независимые области. Возможны следующие значения: "normal" (по умолчанию), "separately" (раздельно) и "selected" (выбранное). - - - - /schemas/apps/epiphany/directories/open - /apps/epiphany/directories/open - epiphany - string - ~ - - - - - /schemas/apps/epiphany/directories/save - /apps/epiphany/directories/save - epiphany - string - ~ - - - - - /schemas/apps/epiphany/directories/saveimage - /apps/epiphany/directories/saveimage - epiphany - string - ~ - - - - - /schemas/apps/epiphany/directories/upload - /apps/epiphany/directories/upload - epiphany - string - ~ - - - - - /schemas/apps/epiphany/directories/downloads_folder - /apps/epiphany/directories/downloads_folder - epiphany - string - Downloads - - The downloads folder - The path of the folder where to download files to; or "Downloads" to use the default downloads folder, or "Desktop" to use the desktop folder. - - - - Der Download-Ordner - Der Pfad des Ordners, in dem heruntergeladene Dateien gespeichert werden sollen; alternativ wählt »Downloads« den voreingestellten Ordner für heruntergeladene Dateien und »Desktop« die Arbeitsfläche. - - - - The downloads folder - The path of the folder where to download files to; or "Downloads" to use the default downloads folder, or "Desktop" to use the desktop folder. - - - - Папка для скачивания - Путь к папке для сохранения файлов; или "Downloads", чтобы использовать папку закачек по умолчанию; или "Desktop", чтобы использовать рабочий стол. - - - - /schemas/apps/epiphany/web/cookie_accept - /apps/epiphany/web/cookie_accept - epiphany - string - current site - - Cookie accept - Where to accept cookies from. Possible values are "anywhere", - "current site" and "nowhere". - - - - Cookies akzeptieren - Von wo sollen Cookies akzeptiert werden?. Zulässige Werte: »anywhere« (von allen Seiten), »current site« (nur von der momentan angezeigten Seite) sowie »nowhere« (keinesfalls akzeptieren). - - - - Cookie accept - Where to accept cookies from. Possible values are "anywhere", "current site" and "nowhere". - - - - Принимать cookie - Откуда принимать файлы cookie. Возможные варианты: "anywhere" (отовсюду), "current site" (текущий сайт) и "nowhere" (ниоткуда). - - - - /schemas/apps/epiphany/web/image_animation - /apps/epiphany/web/image_animation - epiphany - string - normal - - Image animation mode - How to present animated images. Possible values are "normal", - "once" and "disabled". - - - - Animierte Bilder - Legt fest, wie animierte Bilder dargestellt werden. Mögliche Werte sind »normal« (normal), »once« (einmalig abspielen) und »disabled« (nicht abspielen). - - - - Image animation mode - How to present animated images. Possible values are "normal", "once" and "disabled". - - - - Режим анимации изображений - Как показывать анимированные изображения. Возможны следующие значения: "normal" (по умолчанию), "once" (один раз) и "disabled" (не анимировать). - - - - /schemas/apps/epiphany/general/remember_passwords - /apps/epiphany/general/remember_passwords - epiphany - bool - true - - Remember passwords - Whether to store and prefill passwords in web sites. - - - - An passwörter erinnern - Sollen Passwörter gespeichert und automatisch in Formulare eingetragen werden? - - - - Remember passwords - Whether to store and prefill passwords in web sites. - - - - Запоминать пароли - Сохранять ли пароли к сайтам и заполнять ли пустые поля ввода паролей. - - - - /schemas/apps/epiphany/web/allow_popups - /apps/epiphany/web/allow_popups - epiphany - bool - true - - Allow popups - Allow sites to open new windows using JavaScript (if JavaScript - is enabled). - - - - Popups erlauben? - Aufgerufenen Seiten das Öffnen neuer Fenster mittels JavaScript erlauben (falls JavaScript erlaubt wurde)? - - - - Allow popups - Allow sites to open new windows using JavaScript (if JavaScript is enabled). - - - - Разрешить всплывающие окна - Позволять сайтам открывать новые окна используя сценарии JavaScript (если использование сценариев JavaScript включено). - - - - /schemas/apps/epiphany/web/plugins_enabled - /apps/epiphany/web/plugins_enabled - epiphany - bool - true - - Enable Plugins - - - - Plugins aktivieren - - - - Enable Plugins - - - - Включить модули - - - - /schemas/apps/epiphany/web/javascript_enabled - /apps/epiphany/web/javascript_enabled - epiphany - bool - true - - Enable JavaScript - - - - JavaScript erlauben? - - - - Enable JavaScript - - - - Включить JavaScript - - - - /schemas/apps/epiphany/web/browse_with_caret - /apps/epiphany/web/browse_with_caret - epiphany - bool - false - - Browse with caret - - - - Caret aktivieren - - - - Browse with caret - - - - Просматривать с курсором - - - - /schemas/apps/epiphany/general/managed_network - /apps/epiphany/general/managed_network - epiphany - bool - true - - Automatically manage offline status with NetworkManager - - - - Offline-Modus automatisch durch NetworkManager wählen lassen - - - - Automatically manage offline status with NetworkManager - - - - Автоматически следить за статусом подключения к сети с помощью программы NetworkManager - - - - /schemas/apps/epiphany/dialogs/downloads_hidden - /apps/epiphany/dialogs/downloads_hidden - epiphany - bool - false - - Visibility of the downloads window - Hide or show the downloads window. When hidden, a notification will be shown when new downloads are started. - - - - Sichtbarkeit des Download-Fensters - Legt fest, ob das Downloads-Fenster angezeigt oder verborgen wird. Wenn es verborgen wird, so informiert eine Benachrichtigung über den Start neuer Downloads. - - - - Visibility of the downloads window - Hide or show the downloads window. When hidden, a notification will be shown when new downloads are started. - - - - Видимость окна закачек - Показывать или скрывать окно закачек. Если окно скрыто, то при запуске новых закачек будет показываться уведомление. - - - - /schemas/apps/epiphany/dialogs/warn_on_close_unsubmitted_data - /apps/epiphany/dialogs/warn_on_close_unsubmitted_data - epiphany - bool - true - - - - - - - /schemas/apps/epiphany/web/inspector_enabled - /apps/epiphany/web/inspector_enabled - epiphany - bool - false - - Enable Web Inspector - - - - - Web-Analysierer aktivieren - - - - - Enable Web Inspector - - - - - Включить веб-инспектор - - - - - - diff --git a/gconf/schemas/evince-thumbnailer-comics.schemas b/gconf/schemas/evince-thumbnailer-comics.schemas deleted file mode 100644 index a474935..0000000 --- a/gconf/schemas/evince-thumbnailer-comics.schemas +++ /dev/null @@ -1,106 +0,0 @@ - - - - - /schemas/desktop/gnome/thumbnailers/application@x-cbz/enable - /desktop/gnome/thumbnailers/application@x-cbz/enable - evince - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@x-cbz/command - /desktop/gnome/thumbnailers/application@x-cbz/command - evince - string - evince-thumbnailer -s %s %u %o - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@x-cbr/enable - /desktop/gnome/thumbnailers/application@x-cbr/enable - evince - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@x-cbr/command - /desktop/gnome/thumbnailers/application@x-cbr/command - evince - string - evince-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@x-cb7/enable - /desktop/gnome/thumbnailers/application@x-cb7/enable - evince - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@x-cb7/command - /desktop/gnome/thumbnailers/application@x-cb7/command - evince - string - evince-thumbnailer -s %s %u %o - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@x-cbt/enable - /desktop/gnome/thumbnailers/application@x-cbt/enable - evince - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@x-cbt/command - /desktop/gnome/thumbnailers/application@x-cbt/command - evince - string - evince-thumbnailer -s %s %u %o - - - - - - - - diff --git a/gconf/schemas/evince-thumbnailer-djvu.schemas b/gconf/schemas/evince-thumbnailer-djvu.schemas deleted file mode 100644 index 017c757..0000000 --- a/gconf/schemas/evince-thumbnailer-djvu.schemas +++ /dev/null @@ -1,30 +0,0 @@ - - - - - /schemas/desktop/gnome/thumbnailers/image@vnd.djvu/enable - /desktop/gnome/thumbnailers/image@vnd.djvu/enable - evince - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/image@vnd.djvu/command - /desktop/gnome/thumbnailers/image@vnd.djvu/command - evince - string - evince-thumbnailer -s %s %u %o - - - - - - - - diff --git a/gconf/schemas/evince-thumbnailer-dvi.schemas b/gconf/schemas/evince-thumbnailer-dvi.schemas deleted file mode 100644 index 6e64eb2..0000000 --- a/gconf/schemas/evince-thumbnailer-dvi.schemas +++ /dev/null @@ -1,83 +0,0 @@ - - - - - /schemas/desktop/gnome/thumbnailers/application@x-dvi/enable - /desktop/gnome/thumbnailers/application@x-dvi/enable - evince - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@x-dvi/command - /desktop/gnome/thumbnailers/application@x-dvi/command - evince - string - evince-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@x-gzdvi/enable - /desktop/gnome/thumbnailers/application@x-gzdvi/enable - evince - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@x-gzdvi/command - /desktop/gnome/thumbnailers/application@x-gzdvi/command - evince - string - evince-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@x-bzdvi/enable - /desktop/gnome/thumbnailers/application@x-bzdvi/enable - evince - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@x-bzdvi/command - /desktop/gnome/thumbnailers/application@x-bzdvi/command - evince - string - evince-thumbnailer -s %s %u %o - - - - - - - - - diff --git a/gconf/schemas/evince-thumbnailer-ps.schemas b/gconf/schemas/evince-thumbnailer-ps.schemas deleted file mode 100644 index 1c6fe06..0000000 --- a/gconf/schemas/evince-thumbnailer-ps.schemas +++ /dev/null @@ -1,154 +0,0 @@ - - - - - /schemas/desktop/gnome/thumbnailers/application@postscript/enable - /desktop/gnome/thumbnailers/application@postscript/enable - evince - bool - true - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@postscript/command - /desktop/gnome/thumbnailers/application@postscript/command - evince - string - evince-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@x-bzpostscript/enable - /desktop/gnome/thumbnailers/application@x-bzpostscript/enable - evince - bool - true - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@x-bzpostscript/command - /desktop/gnome/thumbnailers/application@x-bzpostscript/command - evince - string - evince-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@x-gzpostscript/enable - /desktop/gnome/thumbnailers/application@x-gzpostscript/enable - evince - bool - true - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@x-gzpostscript/command - /desktop/gnome/thumbnailers/application@x-gzpostscript/command - evince - string - evince-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/image@x-eps/enable - /desktop/gnome/thumbnailers/image@x-eps/enable - evince - bool - true - - - - - - - - /schemas/desktop/gnome/thumbnailers/image@x-eps/command - /desktop/gnome/thumbnailers/image@x-eps/command - evince - string - evince-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/image@x-bzeps/enable - /desktop/gnome/thumbnailers/image@x-bzeps/enable - evince - bool - true - - - - - - - - /schemas/desktop/gnome/thumbnailers/image@x-bzeps/command - /desktop/gnome/thumbnailers/image@x-bzeps/command - evince - string - evince-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/image@x-gzeps/enable - /desktop/gnome/thumbnailers/image@x-gzeps/enable - evince - bool - true - - - - - - - - /schemas/desktop/gnome/thumbnailers/image@x-gzeps/command - /desktop/gnome/thumbnailers/image@x-gzeps/command - evince - string - evince-thumbnailer -s %s %u %o - - - - - - - - diff --git a/gconf/schemas/evince-thumbnailer.schemas b/gconf/schemas/evince-thumbnailer.schemas deleted file mode 100644 index f07dd57..0000000 --- a/gconf/schemas/evince-thumbnailer.schemas +++ /dev/null @@ -1,170 +0,0 @@ - - - - - /schemas/desktop/gnome/thumbnailers/application@pdf/enable - /desktop/gnome/thumbnailers/application@pdf/enable - evince - bool - true - - Enable thumbnailing of PDF Documents - Boolean options available: true enables thumbnailing and false disables the creation of new thumbnails - - - - Vorschaubilder von PDF-Dokumenten aktivieren - Verfügbare boolesche Werte: Wahr (true) aktiviert die Erstellung von Vorschaubildern, während unwahr (false) das Erzeugen neuer Vorschaubilder deaktiviert. - - - - Enable thumbnailing of PDF Documents - Boolean options available: true enables thumbnailing and false disables the creation of new thumbnails - - - - Включить создание образцов для документов PDF - Возможно логическое значение: true включает создание образцов, а false выключает создание новых образцов - - - - - - /schemas/desktop/gnome/thumbnailers/application@pdf/command - /desktop/gnome/thumbnailers/application@pdf/command - evince - string - evince-thumbnailer -s %s %u %o - - Thumbnail command for PDF Documents - Valid command plus arguments for the PDF Document thumbnailer. See Nautilus thumbnailer documentation for more information. - - - - Vorschaubefehl für PDF-Dokumente - Gültiger Befehl plus Argumente für die PDF-Dokumentenvorschau. Bitte schauen Sie für weiterführende Informationen in der Dokumentation der Nautilus-Dokumentvorschau nach. - - - - Thumbnail command for PDF Documents - Valid command plus arguments for the PDF Document thumbnailer. See Nautilus thumbnailer documentation for more information. - - - - Команда создания образцов для документов PDF - Команда и аргументы для запуска программы создания изображения документа PDF. Для получения дополнительной информации смотрите документацию по Nautilus. - - - - - /schemas/desktop/gnome/thumbnailers/application@x-bzpdf/enable - /desktop/gnome/thumbnailers/application@x-bzpdf/enable - evince - bool - true - - Enable thumbnailing of PDF Documents - Boolean options available: true enables thumbnailing and false disables the creation of new thumbnails - - - - Vorschaubilder von PDF-Dokumenten aktivieren - Verfügbare boolesche Werte: Wahr (true) aktiviert die Erstellung von Vorschaubildern, während unwahr (false) das Erzeugen neuer Vorschaubilder deaktiviert. - - - - Enable thumbnailing of PDF Documents - Boolean options available: true enables thumbnailing and false disables the creation of new thumbnails - - - - Включить создание образцов для документов PDF - Возможно логическое значение: true включает создание образцов, а false выключает создание новых образцов - - - - - - /schemas/desktop/gnome/thumbnailers/application@x-bzpdf/command - /desktop/gnome/thumbnailers/application@x-bzpdf/command - evince - string - evince-thumbnailer -s %s %u %o - - Thumbnail command for PDF Documents - Valid command plus arguments for the PDF Document thumbnailer. See Nautilus thumbnailer documentation for more information. - - - - Vorschaubefehl für PDF-Dokumente - Gültiger Befehl plus Argumente für die PDF-Dokumentenvorschau. Bitte schauen Sie für weiterführende Informationen in der Dokumentation der Nautilus-Dokumentvorschau nach. - - - - Thumbnail command for PDF Documents - Valid command plus arguments for the PDF Document thumbnailer. See Nautilus thumbnailer documentation for more information. - - - - Команда создания образцов для документов PDF - Команда и аргументы для запуска программы создания изображения документа PDF. Для получения дополнительной информации смотрите документацию по Nautilus. - - - - - /schemas/desktop/gnome/thumbnailers/application@x-gzpdf/enable - /desktop/gnome/thumbnailers/application@x-gzpdf/enable - evince - bool - true - - Enable thumbnailing of PDF Documents - Boolean options available: true enables thumbnailing and false disables the creation of new thumbnails - - - - Vorschaubilder von PDF-Dokumenten aktivieren - Verfügbare boolesche Werte: Wahr (true) aktiviert die Erstellung von Vorschaubildern, während unwahr (false) das Erzeugen neuer Vorschaubilder deaktiviert. - - - - Enable thumbnailing of PDF Documents - Boolean options available: true enables thumbnailing and false disables the creation of new thumbnails - - - - Включить создание образцов для документов PDF - Возможно логическое значение: true включает создание образцов, а false выключает создание новых образцов - - - - - - /schemas/desktop/gnome/thumbnailers/application@x-gzpdf/command - /desktop/gnome/thumbnailers/application@x-gzpdf/command - evince - string - evince-thumbnailer -s %s %u %o - - Thumbnail command for PDF Documents - Valid command plus arguments for the PDF Document thumbnailer. See Nautilus thumbnailer documentation for more information. - - - - Vorschaubefehl für PDF-Dokumente - Gültiger Befehl plus Argumente für die PDF-Dokumentenvorschau. Bitte schauen Sie für weiterführende Informationen in der Dokumentation der Nautilus-Dokumentvorschau nach. - - - - Thumbnail command for PDF Documents - Valid command plus arguments for the PDF Document thumbnailer. See Nautilus thumbnailer documentation for more information. - - - - Команда создания образцов для документов PDF - Команда и аргументы для запуска программы создания изображения документа PDF. Для получения дополнительной информации смотрите документацию по Nautilus. - - - - - diff --git a/gconf/schemas/evolution-mail.schemas b/gconf/schemas/evolution-mail.schemas deleted file mode 100644 index 490d25c..0000000 --- a/gconf/schemas/evolution-mail.schemas +++ /dev/null @@ -1,3293 +0,0 @@ - - - - - - - /schemas/apps/evolution/mail/composer/charset - /apps/evolution/mail/composer/charset - evolution-mail - string - - - Default charset in which to compose messages - - Default charset in which to compose messages. - - - - - Vorgabe-Zeichensatz beim Verfassen von Nachrichten - Vorgabe-Zeichensatz beim Verfassen von Nachrichten. - - - - Default charset in which to compose messages - Default charset in which to compose messages. - - - - Кодировка по умолчанию для составления сообщений - Кодировка по умолчанию для составления сообщений. - - - - - /schemas/apps/evolution/mail/composer/inline_spelling - /apps/evolution/mail/composer/inline_spelling - evolution-mail - bool - true - - Spell check inline - - Draw spelling error indicators on words as you type. - - - - - Rechtschreibprüfung an Ort und Stelle - Indikatoren für Rechtschreibfehler bei der Eingabe zeichnen. - - - - Spell check inline - Draw spelling error indicators on words as you type. - - - - Проверять орфографию при вводе - Подчеркивать ошибки орфографии при вводе текста - - - - - /schemas/apps/evolution/mail/composer/magic_links - /apps/evolution/mail/composer/magic_links - evolution-mail - bool - true - - Automatic link recognition - - Recognize links in text and replace them. - - - - - Automatische Link-Erkennung - Links im Text erkennen und ersetzen. - - - - Automatic link recognition - Recognise links in text and replace them. - - - - Автоматическое распознавание гиперссылок - Распознавать ссылки в тексте и заменять их. - - - - - /schemas/apps/evolution/mail/composer/magic_smileys - /apps/evolution/mail/composer/magic_smileys - evolution-mail - bool - false - - Automatic emoticon recognition - - Recognize emoticons in text and replace them with images. - - - - - Automatische Emoticon-Erkennung - Emoticons im Text erkennen und durch Bilder ersetzen. - - - - Automatic emoticon recognition - Recognise emoticons in text and replace them with images. - - - - Автоматическое распознавание эмоций - Распознавать эмоции в тексте и заменять их значками. - - - - - /schemas/apps/evolution/mail/composer/group_reply_to_list - /apps/evolution/mail/composer/group_reply_to_list - evolution-mail - bool - false - - Group Reply replies to list - - Instead of the normal "Reply to All" behaviour, this option will - make the 'Group Reply' toolbar button try to reply only to the - mailing list through which you happened to receive the copy of - the message to which you're replying. - - - - - Gruppenantwort wird an Mailingliste geleitet - Anstelle des normalen »Antwort an«-Verhaltens löst mit dieser Option der Werkzeugleistenknopf »Antwort an Gruppe« eine Antwort nur an die Mailingliste aus, über die Sie die Nachricht erhalten haben, auf die Sie antworten wollen. - - - - Group Reply replies to list - Instead of the normal "Reply to All" behaviour, this option will make the 'Group Reply' toolbar button try to reply only to the mailing list through which you happened to receive the copy of the message to which you're replying. - - - - «Ответить всем» отвечает в список - Вместо обычного поведения «Ответить всем», этот параметр настроит кнопку «Ответить всем» на панели инструментов на ответ только в список рассылки, через который вы получили копию сообщения, на которое отвечаете. - - - - - /schemas/apps/evolution/mail/composer/reply_start_bottom - /apps/evolution/mail/composer/reply_start_bottom - evolution-mail - bool - false - - Put the cursor at the bottom of replies - Users get all up in arms over where the cursor should go when - replying to a message. This determines whether the cursor is placed - at the top of the message or the bottom. - - - - Beim Antworten auf Mails unten mit dem Schreiben beginnen - Benutzer streiten sich, wo die Eingabemarke beim Verfassen einer Antwort platziert werden soll. Dies legt fest, ob die Marke zu Beginn oder am Ende der Nachricht platziert wird. - - - - Put the cursor at the bottom of replies - Users get all up in arms over where the cursor should go when replying to a message. This determines whether the cursor is placed at the top of the message or the bottom. - - - - Помещать курсор в начало при ответе - Пользователь получает полный контроль над тем, куда должен попадать курсор при ответе на сообщения. Этот параметр определяет, будет ли курсор в начале или в конце сообщения. - - - - - /schemas/apps/evolution/mail/composer/request_receipt - /apps/evolution/mail/composer/request_receipt - evolution-mail - bool - false - - Always request read receipt - - Whether a read receipt request gets added to every message by default. - - - - - Lesebestätigung immer anfordern - Legt fest, ob die Anforderung einer Lesebestätigung standardmäßig zu jeder Nachricht hinzugefügt wird. - - - - Always request read receipt - Whether a read receipt request gets added to every message by default. - - - - Всегда запрашивать отчёт о прочтении - Добавлять ли отчёт о прочтении к каждому сообщению. - - - - - /schemas/apps/evolution/mail/composer/send_html - /apps/evolution/mail/composer/send_html - evolution-mail - bool - false - - Send HTML mail by default - - Send HTML mail by default. - - - - - Per Vorgabe HTML-E-Mails verschicken? - Per Vorgabe HTML-E-Mails verschicken? - - - - Send HTML mail by default - Send HTML mail by default. - - - - Отправлять почту в формате HTML по умолчанию - Отправлять почту в формате HTML по умолчанию. - - - - - /schemas/apps/evolution/mail/composer/spell_color - /apps/evolution/mail/composer/spell_color - evolution-mail - string - #FFFF00000000 - - Spell checking color - - Underline color for misspelled words when using inline spelling. - - - - - Farbe für Rechtschreibprüfung - Farbe für falsch geschriebene Wörter während der Eingabe - - - - Spell checking colour - Underline colour for misspelt words when using inline spelling. - - - - Цвет проверки орфографии - Цвет подчёркивания для слов с ошибкой при проверке орфографии. - - - - - /schemas/apps/evolution/mail/composer/spell_languages - /apps/evolution/mail/composer/spell_languages - evolution-mail - list - string - - Spell checking languages - - List of dictionary language codes used for spell checking. - - - - - Sprachen für Rechtschreibprüfung - Liste der Sprach-Codes der Wörterbücher, die für die Rechtschreibprüfung verwendet werden. - - - - Spell checking languages - List of dictionary language codes used for spell checking. - - - - Языки проверки орфографии - Список языков, используемый для проверки орфографии. - - - - - /schemas/apps/evolution/mail/composer/show_mail_bcc - /apps/evolution/mail/composer/show_mail_bcc - evolution-mail - bool - false - - Show "Bcc" field when sending a mail message - - Show the "Bcc" field when sending a mail message. This is - controlled from the View menu when a mail account is chosen. - - - - - Das Feld »Blindkopie an« beim Verfassen einer Nachricht anzeigen - Das Feld »Blindkopie an« beim Verfassen einer Nachricht anzeigen. Die Einstellung kann im Menü »Ansicht« beim Verfassen angepasst werden. - - - - Show "Bcc" field when sending a mail message - Show the "Bcc" field when sending a mail message. This is controlled from the View menu when a mail account is chosen. - - - - Отображать поле «Скрытая копия» при отправке почтового сообщения - Показывать поле «Скрытая копия» при отправке почтового сообщения. Этот параметр управляется из меню Вид, когда выбрана учётная запись почты. - - - - - /schemas/apps/evolution/mail/composer/show_mail_cc - /apps/evolution/mail/composer/show_mail_cc - evolution-mail - bool - true - - Show "Cc" field when sending a mail message - - Show the "Cc" field when sending a mail message. This is - controlled from the View menu when a mail account is chosen. - - - - - Das Feld »Kopie an« beim Verfassen einer Nachricht anzeigen - Das Feld »Kopie an« beim Verfassen einer Nachricht anzeigen. Die Einstellung kann im Menü »Ansicht« beim Verfassen angepasst werden. - - - - Show "Cc" field when sending a mail message - Show the "Cc" field when sending a mail message. This is controlled from the View menu when a mail account is chosen. - - - - Отображать поле «Копия» при отправке почтового сообщения - Показывать поле «Копия» при отправке почтового сообщения. Этот параметр управляется из меню Вид, когда выбрана учётная запись почты. - - - - - /schemas/apps/evolution/mail/composer/show_mail_reply_to - /apps/evolution/mail/composer/show_mail_reply_to - evolution-mail - bool - false - - Show "Reply To" field when sending a mail message - - Show the "Reply To" field when sending a mail message. This - is controlled from the View menu when a mail account is chosen. - - - - - Das Feld »Antwort an« beim Verfassen einer Nachricht anzeigen - Das Feld »Antwort an« beim Verfassen einer Nachricht anzeigen. Die Einstellung kann im Menü »Ansicht« beim Verfassen angepasst werden. - - - - Show "Reply To" field when sending a mail message - Show the "Reply To" field when sending a mail message. This is controlled from the View menu when a mail account is chosen. - - - - Отображать поле «Адрес для ответа» при отправке почтовых сообщений - Показывать поле «Адрес для ответа» при отправке почтового сообщения. Этот параметр управляется из меню Вид, когда выбрана почтовая учётная запись. - - - - - /schemas/apps/evolution/mail/composer/show_post_from - /apps/evolution/mail/composer/show_post_from - evolution-mail - bool - true - - Show "From" field when posting to a newsgroup - - Show the "From" field when posting to a newsgroup. This is - controlled from the View menu when a news account is chosen. - - - - - Das Feld »Von« beim Verfassen einer Nachricht an eine Newsgroup anzeigen - Das Feld »Von« beim Verfassen einer Nachricht an eine Newsgroup anzeigen. Die Einstellung kann im Menü »Ansicht« beim Verfassen angepasst werden. - - - - Show "From" field when posting to a newsgroup - Show the "From" field when posting to a newsgroup. This is controlled from the View menu when a news account is chosen. - - - - Отображать поле «От» при отправке в группу новостей - Показывать поле «От» при отправке в группу новостей. Этот параметр управляется из меню Вид, когда выбрана учётная запись новостей. - - - - - /schemas/apps/evolution/mail/composer/show_post_reply_to - /apps/evolution/mail/composer/show_post_reply_to - evolution-mail - bool - false - - Show "Reply To" field when posting to a newsgroup - - Show the "Reply To" field when posting to a newsgroup. This - is controlled from the View menu when a news account is chosen. - - - - - Das Feld »Antwort an« beim Verfassen einer Nachricht an eine Newsgroup anzeigen - Das Feld »Antwort an« beim Verfassen einer Nachricht an eine Newsgroup anzeigen. Die Einstellung kann im Menü »Ansicht« beim Verfassen angepasst werden. - - - - Show "Reply To" field when posting to a newsgroup - Show the "Reply To" field when posting to a newsgroup. This is controlled from the View menu when a news account is chosen. - - - - Отображать поле «Адрес для ответа» при отправке в группу новостей - Показывать поле «Адрес для ответа» при отправке в группу новостей. Этот параметр управляется из меню Вид, когда выбрана учётная запись новостей. - - - - - /schemas/apps/evolution/mail/composer/outlook_filenames - /apps/evolution/mail/composer/outlook_filenames - evolution-mail - bool - false - - Encode file names in an Outlook/GMail way - - Encode file names in the mail headers same as Outlook or GMail do, to let them display correctly file names with UTF-8 letters sent by Evolution, because they do not follow the RFC 2231, but use the incorrect RFC 2047 standard. - - - - - Dateinamen wie Outlook und GMail kodieren - Dateinamen in E-Mail-Kopfzeilen wie Outlook und GMail kodieren, damit sie Dateinamen mit Umlauten, die von Evolution verschickt wurden, korrekt darstellen. Beide ignorieren den Standard RFC 2231 und benutzen den inkorrekten Standard RFC 2047. - - - - Encode file names in an Outlook/GMail way - Encode file names in the mail headers same as Outlook or GMail do, to let them display correctly file names with UTF-8 letters sent by Evolution, because they do not follow the RFC 2231, but use the incorrect RFC 2047 standard. - - - - Кодировать имена файлов в стиле Outlook/GMail - Кодировать имена файлов в заголовках таким же образ, как это делают Outlook и GMail, чтобы они могли открывать отправленные из Evolution файлы с именами в формате UTF-8, потому что они не полностью следуют RFC 2231, но используют некорректный стандарт RFC 2047. - - - - - /schemas/apps/evolution/mail/composer/top_signature - /apps/evolution/mail/composer/top_signature - evolution-mail - bool - false - - Put personalized signatures at the top of replies - Users get all up in arms over where their signature should go - when replying to a message. This determines whether the signature is - placed at the top of the message or the bottom. - - - - Beim Antworten eigene Signaturen an den Anfang stellen - Benutzer streiten sich wo die Signatur beim Verfassen einer Antwort platziert werden soll. Dies legt fest, ob die Signatur zu Beginn oder am Ende der Nachricht platziert wird. - - - - Put personalised signatures at the top of replies - Users get all up in arms over where their signature should go when replying to a message. This determines whether the signature is placed at the top of the message or the bottom. - - - - Помещать персональную подпись в верхней части ответов - Пользователь может определить, где должна размещаться его подпись при ответе на сообщение. Этот параметр определяет, будет ли подпись в начале или в конце сообщения. - - - - - /schemas/apps/evolution/mail/composer/no_signature_delim - /apps/evolution/mail/composer/no_signature_delim - evolution-mail - bool - false - - Do not add signature delimiter - Set to TRUE in case you do not want to add signature delimiter - before your signature when composing a mail. - - - - Kein Signaturtrennzeichen hinzufügen - Setzen Sie dies auf »wahr«, wenn Sie kein beim Verfassen von Nachrichten kein Signaturtrennzeichen vor Ihre Signatur setzen wollen. - - - - Do not add signature delimiter - Set to TRUE in case you do not want to add signature delimiter before your signature when composing a mail. - - - - Не добавлять разделитель для подписи. - Установите в значение ИСТИНА, если вы не хотите добавлять разделитель подписи при создании почтового сообщения - - - - - /schemas/apps/evolution/mail/composer/width - /apps/evolution/mail/composer/width - evolution-mail - int - 600 - - Composer Window default width - Default width of the Composer Window. - - - - Voreingestellte Breite des Editorfensters - Die voreingestellte Breite des Editorfensters. - - - - Composer Window default width - Default width of the Composer Window. - - - - Ширина окна редактора по умолчанию - Ширина окна редактора по умолчанию. - - - - - /schemas/apps/evolution/mail/composer/height - /apps/evolution/mail/composer/height - evolution-mail - int - 500 - - Composer Window default height - Default height of the Composer Window. - - - - Voreingestellte Höhe des Editorfensters - Die voreingestellte Höhe des Editorfensters. - - - - Composer Window default height - Default height of the Composer Window. - - - - Высота окна редактора по умолчанию - Высота окна редактора по умолчанию. - - - - - /schemas/apps/evolution/mail/composer/ignore_list_reply_to - /apps/evolution/mail/composer/ignore_list_reply_to - evolution-mail - bool - false - - Ignore list Reply-To: - - Some mailing lists set a Reply-To: header to trick users into - sending replies to the list, even when they ask Evolution to - make a private reply. Setting this option to TRUE will attempt - to ignore such Reply-To: headers, so that Evolution will do - as you ask it. If you use the private reply action, it will - reply privately, while if you use the 'Reply to List' action - it will do that. It works by comparing the Reply-To: header - with a List-Post: header, if there is one. - - - - - »Antwort an« der Mailingliste ignorieren - Einige Mailinglisten legen eine »Antwort an«-Kopfzeile fest, damit Benutzer ihre Antworten an die Liste senden, auch wenn Sie Evolution anweisen, eine private Antwort zu senden. Wenn Sie diese Option auf »wahr« setzen, dann werden diese »Antwort an«-Kopfzeilen ignoriert, so dass Evolution genau das Gewünschte tut: Wenn Sie eine private Antwort senden wollen, wird privat geantwortet, wenn Sie »Antwort an Liste« wünschen, wird dies ausgeführt. Geregelt wird dieses Verhalten durch Vergleichen der Kopfzeilenfelder »Antwort an« und »Antwort an Liste«, sofern letzteres vorhanden ist. - - - - Ignore list Reply-To: - Some mailing lists set a Reply-To: header to trick users into sending replies to the list, even when they ask Evolution to make a private reply. Setting this option to TRUE will attempt to ignore such Reply-To: headers, so that Evolution will do as you ask it. If you use the private reply action, it will reply privately, while if you use the 'Reply to List' action it will do that. It works by comparing the Reply-To: header with a List-Post: header, if there is one. - - - - Игнорировать «Обратный адрес» списка - Некоторые списки рассылки устанавливают заголовок обратного адреса, чтобы принудить пользователей отправлять ответы в список, даже если они попросили Evolution отправить ответ лично. Установка этого параметра заставит Evolution пытаться игнорировать заголовки обратного адреса. Если вы отправляете ответ лично, то он будет отправлен лично. Действие «Ответить в список» отправит ответ в список. Работа этого параметра основана на сравнении заголовков обратного адреса и списка рассылки. - - - - - - - /schemas/apps/evolution/mail/display/animated_images - /apps/evolution/mail/display/animated_images - evolution-mail - bool - false - - Show image animations - Enable animated images in HTML mail. Many users find animated - images annoying and prefer to see a static image instead. - - - - Bildanimationen anzeigen - Bewegte Bilder in HTML-Nachrichten einschalten. Viele Benutzer empfinden animierte Bilder als störend und bevorzugen, ein statisches Bild zu sehen. - - - - Show image animations - Enable animated images in HTML mail. Many users find animated images annoying and prefer to see a static image instead. - - - - Показывать анимацию изображений - Включить анимацию изображений в сообщениях HTML. Многие пользователи находят анимированные изображения раздражающими и вместо этого предпочитают видеть статические изображения. - - - - - /schemas/apps/evolution/mail/display/side_bar_search - /apps/evolution/mail/display/side_bar_search - evolution-mail - bool - true - - Enable or disable type ahead search feature - - Enable the side bar search feature to allow interactive searching of folder names. - - - - - Schnellsuche an- oder abschalten - Die Suchfunktion in der Seitenleiste einschalten für die interaktive Suche nach Ordnernamen. - - - - Enable or disable type ahead search feature - Enable the side bar search feature to allow interactive searching of folder names. - - - - Enable or disable type ahead search feature - Включить функцию поиска в боковой панели, для интерактивного поиска названий папкок. - - - - - /schemas/apps/evolution/mail/display/no_folder_dots - /apps/evolution/mail/display/no_folder_dots - evolution-mail - bool - false - - Disable or enable ellipsizing of folder names in side bar - - Whether disable ellipsizing feature of folder names in side bar. - - - - - Zu lange Ordnernamen in Seitenleiste abkürzen - Legt fest, ob zu lange Ordnernamen in der Seitenleiste abgekürzt werden. - - - - Disable or enable ellipsizing of folder names in side bar - Whether to disable ellipsizing feature of folder names in the side bar. - - - - Включить или выключить сокращение имён папок в боковой панели - Выключить ли сокращение имён в дереве папок в боковой панели. - - - - - /schemas/apps/evolution/mail/display/magic_spacebar - /apps/evolution/mail/display/magic_spacebar - evolution-mail - bool - true - - Enable or disable magic space bar - Enable this to use Space bar key to scroll in message preview, message list and folders. - - - - - Magische Leertaste ein-/ausschalten - Legt fest, ob die Leertaste zum Blättern in der Nachrichtenvorschau, der Nachrichtenliste und den Ordnern benutzt werden soll. - - - - Enable or disable magic space bar - Enable this to use Space bar key to scroll in message preview, message list and folders. - - - - Включить или выключить «волшебный пробел» - Установите этот ключ, чтобы можно было использовать клавишу пробела для прокрутки предпросмотра сообщения, списка сообщений и папок. - - - - - /schemas/apps/evolution/mail/display/global_view_setting - /apps/evolution/mail/display/global_view_setting - evolution-mail - bool - false - - Enable to use a similar message list view settings for all folders - Enable to use a similar message list view settings for all folders. - - - - - Ähnliche Ansichten der Nachrichtenliste für alle Ordner aktivieren - Ähnliche Ansichten der Nachrichtenliste für alle Ordner aktivieren. - - - - Enable use of a similar message list view settings for all folders - Enable use of a similar message list view settings for all folders. - - - - Использовать установленные параметры отображения списка сообщений для всех папок. - Использовать установленные параметры отображения списка сообщений для всех папок. - - - - - /schemas/apps/evolution/mail/display/mark_citations - /apps/evolution/mail/display/mark_citations - evolution-mail - bool - true - - Mark citations in the message "Preview" - - Mark citations in the message "Preview". - - - - - Zitate in der Nachrichtenvorschau kennzeichnen - Zitate in der Nachrichtenvorschau kennzeichnen. - - - - Mark citations in the message "Preview" - Mark citations in the message "Preview". - - - - Помечать цитирование в сообщении в панели предварительного просмотра - Помечать цитирование в сообщении в панели предварительного просмотра. - - - - - /schemas/apps/evolution/mail/display/citation_colour - /apps/evolution/mail/display/citation_colour - evolution-mail - string - #737373 - - Citation highlight color - - Citation highlight color. - - - - - Hervorhebungsfarbe für Zitate - Hervorhebungsfarbe für Zitate. - - - - Citation highlight colour - Citation highlight colour. - - - - Цвет подсветки цитирования - Цвет подсветки цитирования. - - - - - /schemas/apps/evolution/mail/display/caret_mode - /apps/evolution/mail/display/caret_mode - evolution-mail - bool - false - - Enable/disable caret mode - - Enable caret mode, so that you can see a cursor when reading mail. - - - - - Eingabezeiger aktivieren/deaktivieren - Eingabezeiger aktivieren, so dass beim Lesen von E-Mails ein Cursor angezeigt wird. - - - - Enable/Disable caret mode - Enable caret mode, so that you can see a cursor when reading mail. - - - - Включить/выключить режим каретки - Включить режим каретки, то есть вы сможете видеть курсор при чтении почты. - - - - - /schemas/apps/evolution/mail/display/charset - /apps/evolution/mail/display/charset - evolution-mail - string - - - Default charset in which to display messages - - Default charset in which to display messages. - - - - - Vorgabe-Zeichensatz beim Anzeigen von Nachrichten - Vorgabe-Zeichensatz beim Anzeigen von Nachrichten. - - - - Default charset in which to display messages - Default charset in which to display messages. - - - - Кодировка по умолчанию для отображения сообщений - Кодировка по умолчанию для отображения сообщений. - - - - - /schemas/apps/evolution/mail/display/load_http_images - /apps/evolution/mail/display/load_http_images - evolution-mail - int - 0 - - Load images for HTML messages over HTTP - - Load images for HTML messages over HTTP(S). Possible values are: - "0" - Never load images off the net. - "1" - Load images in messages from contacts. - "2" - Always load images off the net. - - - - - Bilder für HTML-Nachrichten per HTTP laden - Bilder von HTML-Nachrichten per HTTP(S) laden. Mögliche Werte sind: »0« - Niemals Bilder aus dem Netz laden, »1« - Bilder laden falls Absender im Adressbuch, »2« - Immer Bilder aus dem Netz laden. - - - - Load images for HTML messages over HTTP - Load images for HTML messages over HTTP(S). Possible values are: "0" — Never load images off the net. "1" — Load images in messages from contacts. "2" — Always load images off the net. - - - - Загружать сообщения для HTML-сообщений по HTTP - Загружать изображения для HTML-сообщений по HTTP(S). Возможные значения: «0» — никогда не загружать изображения из сети; «1» — загружать изображения, если отправитель есть в адресной книге; «2» — всегда загружать изображения из сети. - - - - - /schemas/apps/evolution/mail/display/animate_images - /apps/evolution/mail/display/animate_images - evolution-mail - bool - true - - Show Animations - - Show animated images as animations. - - - - - Animationen anzeigen - Animierte Bilder als Animationen anzeigen. - - - - Show Animations - Show animated images as animations. - - - - Показывать анимацию - Показывать анимированные изображения как анимации. - - - - - /schemas/apps/evolution/mail/display/show_all_headers - /apps/evolution/mail/display/show_all_headers - evolution-mail - bool - false - - Show all message headers - - Show all the headers when viewing a messages. - - - - - Alle Nachrichtenköpfe anzeigen - Beim Anzeigen von Nachrichten alle Nachrichtenköpfe anzeigen. - - - - Show all message headers - Show all the headers when viewing a messages. - - - - Показывать все заголовки сообщений - Показывать все заголовки при просмотре сообщений. - - - - - /schemas/apps/evolution/mail/display/headers - /apps/evolution/mail/display/headers - evolution-mail - list - string - - List of custom headers and whether they are enabled. - - This key should contain a list of XML structures specifying custom headers, - and whether they are to be displayed. The format of the XML structure is - <header enabled> - set enabled if the header is to be displayed - in the mail view. - - - - - Liste der benutzerdefinierten Kopfzeilen und ihres Aktivierungszustands. - - - - - List of custom headers and whether they are enabled. - - - - - Список дополнительных заголовков и включены ли они. - - - - - - /schemas/apps/evolution/mail/display/sender_photo - /apps/evolution/mail/display/sender_photo - evolution-mail - bool - false - - Show photo of the sender - - Show the photo of the sender in the message reading pane. - - - - - Foto des Absenders anzeigen - Fotos des Absenders in der Nachrichtenvorschau anzeigen. - - - - Show photo of the sender - Show the photo of the sender in the message reading pane. - - - - Показать фотографию отправителя - Показывать фотографию отправителя в панели чтения сообщений. - - - - /schemas/apps/evolution/mail/display/photo_local - /apps/evolution/mail/display/photo_local - evolution-mail - bool - true - - Search for the sender photo in local address books - - This option would help in improving the speed of fetching. - - - - - In den lokalen Adressbüchern nach dem Foto des Absenders suchen - Beschleunigt das Abrufen. - - - - Search for the sender photo in local address books - This option would help in improving the speed of fetching. - - - - Искать фотографии отправителя в локальных адресных книгах - Этот параметр должен увеличить скорость загрузки. - - - - - /schemas/apps/evolution/mail/display/mime_types - /apps/evolution/mail/display/mime_types - evolution-mail - list - string - - List of MIME types to check for Bonobo component viewers - - If there isn't a builtin viewer for a particular MIME type inside Evolution, - any MIME types appearing in this list which map to a Bonobo component viewer - in GNOME's MIME type database may be used for displaying content. - - - - - Liste der MIME-Typen, die auf Bonobo-Komponentenbetrachter hin überprüft werden sollen - Falls es in Evolution keinen eingebauten Betrachter für einen bestimmten in dieser Liste vorhandenen MIME-Typ gibt, so wird der Inhalt mit einem in der GNOME-MIME-Datenbank verknüpften Bonobo-Komponentenbetrachter angezeigt. - - - - List of MIME types to check for Bonobo component viewers - If there isn't a built-in viewer for a particular MIME type inside Evolution, any MIME types appearing in this list which map to a Bonobo component viewer in GNOME's MIME type database may be used for displaying content. - - - - Список типов mime для подбора компонента просмотра через Bonobo - Если в программе Evolution отсутствует встроенная программа просмотра для определённого типа MIME, все типы MIME из этого списка, которые связаны с компонентом просмотра Bonobo среды GNOME будут отображаться с использованием этого компонента. - - - - - /schemas/apps/evolution/mail/display/mark_seen - /apps/evolution/mail/display/mark_seen - evolution-mail - bool - true - - Mark as Seen after specified timeout - - Mark as Seen after specified timeout. - - - - - Nach angegebenem Intervall als gelesen markieren - Nach angegebenem Intervall als gelesen markieren. - - - - Mark as Seen after specified timeout - Mark as Seen after specified timeout. - - - - Помечать как просмотренные через указанное время - Помечать сообщение как просмотренное через указанный период времени. - - - - - /schemas/apps/evolution/mail/display/show_email - /apps/evolution/mail/display/show_email - evolution-mail - bool - false - - Sender email-address column in the message list - - Show the email-address of the sender in a separate column in the message list. - - - - - Spalte mit der E-Mail-Adresse des Absenders in der Nachrichtenliste - Zeigt die E-Mail-Adresse des Absenders in einer eigenen Spalte in der Nachrichtenliste an. - - - - Sender e-mail address column in the message list - Show the e-mail address of the sender in a separate column in the message list. - - - - Показывать адрес отправителя в столбце списка сообщений - Показывать адрес отправителя в отдельном столбце списка сообщений. - - - - - /schemas/apps/evolution/mail/display/vertical_view_fonts - /apps/evolution/mail/display/vertical_view_fonts - evolution-mail - bool - false - - Determines whether to use the same fonts for both "From" and "Subject" lines in the "Messages" column in vertical view. - - Determines whether to use the same fonts for both "From" and "Subject" lines in the "Messages" column in vertical view. - - - - - Legt fest, ob die gleichen Schriften für die »Von«- und die »Betreff«-Zeile in der »Nachrichten«-Spalte der vertikalen Ansicht verwendet werden. - Legt fest, ob die gleichen Schriften für die »Von«- und die »Betreff«-Zeile in der »Nachrichten«-Spalte der vertikalen Ansicht verwendet werden. - - - - Determines whether to use the same fonts for both "From" and "Subject" lines in the "Messages" column in vertical view. - Determines whether to use the same fonts for both "From" and "Subject" lines in the "Messages" column in vertical view. - - - - Определяет, надо ли использовать одинаковые шрифты для строк «От» и «Тема» в столбце «Сообщения» в вертикальном режиме просмотра. - Определяет, надо ли использовать одинаковые шрифты для строк «От» и «Тема» в столбце «Сообщения» в вертикальном режиме просмотра. - - - - - /schemas/apps/evolution/mail/display/mark_seen_timeout - /apps/evolution/mail/display/mark_seen_timeout - evolution-mail - int - 1500 - - Timeout for marking message as seen - - Timeout for marking message as seen. - - - - - Intervall zum Markieren von Nachrichten als gelesen - Intervall zum Markieren von Nachrichten als gelesen. - - - - Timeout for marking message as seen - Timeout for marking message as seen. - - - - Задержка перед помечанием сообщения как просмотренное - Задержка перед помечанием сообщения как просмотренное. - - - - - /schemas/apps/evolution/mail/display/show_deleted - /apps/evolution/mail/display/show_deleted - evolution-mail - bool - false - - Show deleted messages in the message-list - - Show deleted messages (with a strike-through) in the message-list. - - - - - Gelöschte Nachrichten in der Nachrichtenliste anzeigen - Gelöschte Nachrichten (durchgestrichen) in der Nachrichtenliste anzeigen - - - - Show deleted messages in the message-list - Show deleted messages (with a strike-through) in the message-list. - - - - Показывать удалённые сообщения в списке сообщений - Показывать удалённые сообщения (как перечеркнутые) в списке сообщений. - - - - - /schemas/apps/evolution/mail/display/enable_vfolders - /apps/evolution/mail/display/enable_vfolders - evolution-mail - bool - true - - Enable search folders - - Enable search folders on startup. - - - - - Suchordner aktivieren - Aktiviert die Suchordner beim Starten von Evolution. - - - - Enable search folders - Enable search folders on startup. - - - - Включить папки поиска - Включить папки поиска при запуске. - - - - - /schemas/apps/evolution/mail/display/safe_list - /apps/evolution/mail/display/safe_list - evolution-mail - bool - false - - Hides the per-folder preview and removes the selection - - This key is read only once and reset to "false" after read. This - unselects the mail in the list and removes the preview for that - folder. - - - - - Deaktiviert das Vorschaufenster und entfernt die Auswahl - Dieser Wert wird einmalig beim Aufruf von Evolution eingelesen und danach wieder auf den Vorgabewert »FALSCH« zurückgesetzt. Falls WAHR, so wird das Vorschaufenster für diesen Ordner nicht angezeigt und keine Auswahl in der Nachrichtenliste gesetzt. - - - - Hides the per-folder preview and removes the selection - This key is read only once and reset to "false" after read. This unselects the mail in the list and removes the preview for that folder. - - - - Скрыть предварительный просмотр для каждого каталога и удалить выделение - Этот ключ читается только один раз и сбрасывается в ложь после чтения. С помощью него можно отменить выделение почты и отключить панель просмотра текущего каталога. - - - - - /schemas/apps/evolution/mail/display/paned_size - /apps/evolution/mail/display/paned_size - evolution-mail - int - 144 - - Height of the message-list pane - - Height of the message-list pane. - - - - - Höhe des Nachrichtenlistenfelds - Höhe des Nachrichtenlistenfelds. - - - - Height of the message-list pane - Height of the message-list pane. - - - - Высота панели списка сообщений - Высота панели спика сообщений. - - - - - /schemas/apps/evolution/mail/display/hpaned_size - /apps/evolution/mail/display/hpaned_size - evolution-mail - int - 450 - - Width of the message-list pane - - Width of the message-list pane. - - - - - Breite der Nachrichtenliste - Breite der Nachrichtenliste. - - - - Width of the message-list pane - Width of the message-list pane. - - - - Ширина панели списка сообщений - Высота панели спика сообщений. - - - - - /schemas/apps/evolution/mail/display/layout - /apps/evolution/mail/display/layout - evolution-mail - int - 0 - - Layout style - - The layout style determines where to place the preview pane - in relation to the message list. "0" (Classic View) places - the preview pane below the message list. "1" (Vertical View) - places the preview pane next to the message list. - - - - - Anordnung - Die Anordnung legt fest, wo die Vorschauleiste in Bezug auf die Nachrichtenliste angezeigt wird. »0« (klassische Ansicht) setzt die Vorschauleiste unter die Nachrichtenliste. »1« (vertikale Ansicht) setzt die Vorschauleiste neben die Nachrichtenliste. - - - - Layout style - The layout style determines where to place the preview pane in relation to the message list. "0" (Classic View) places the preview pane below the message list. "1" (Vertical View) places the preview pane next to the message list. - - - - Стиль размещения - Стиль размещения задаёт место для панели предварительного просмотра относительно списка сообщений. «0» (классический вид) помещает панель под список сообщений. «1» (вертикальный вид) помещает панель рядом со списком сообщений. - - - - - /schemas/apps/evolution/mail/display/fonts/variable - /apps/evolution/mail/display/fonts/variable - evolution-mail - string - Sans 12 - - Variable width font - - The variable width font for mail display. - - - - - Schrift variabler Breite - Die zum Anzeigen von E-Mails verwendete Schrift variabler Breite. - - - - Variable width font - The variable width font for mail display. - - - - Шрифт переменной ширины - Пропорциональный шрифт для основного дисплея. - - - - - /schemas/apps/evolution/mail/display/fonts/monospace - /apps/evolution/mail/display/fonts/monospace - evolution-mail - string - Monospace 12 - - Terminal font - - The terminal font for mail display. - - - - - Terminal-Schrift - Die zum Anzeigen von E-Mails verwendete Terminal-Schrift. - - - - Terminal font - The terminal font for mail display. - - - - Шрифт терминала - Шрифт терминала для отображения почты. - - - - - /schemas/apps/evolution/mail/display/fonts/use_custom - /apps/evolution/mail/display/fonts/use_custom - evolution-mail - bool - false - - Use custom fonts - - Use custom fonts for displaying mail. - - - - - Benutzerdefinierte Schriften verwenden - Benutzerdefinierte Schriften zum Anzeigen von E-Mails verwenden. - - - - Use custom fonts - Use custom fonts for displaying mail. - - - - Использовать другие шрифты - Использовать другие шрифты для отображения почты. - - - - - /schemas/apps/evolution/mail/display/address_compress - /apps/evolution/mail/display/address_compress - evolution-mail - bool - true - - Compress display of addresses in TO/CC/BCC - - Compress display of addresses in TO/CC/BCC to the number - specified in address_count. - - - - - Kürzen der Adressanzeige in den Empfängerfeldern (An/Kopie/Blindkopie) - Die Anzeige der Adressen in den Empfängerfeldern (An/Kopie/Blindkopie) auf die im Schlüssel »address_count« angegebene Anzahl reduzieren. - - - - Compress display of addresses in TO/CC/BCC - Compress display of addresses in TO/CC/BCC to the number specified in address_count. - - - - Сжимать отображение адресов в TO/CC/BCC - Уменьшить количество адресов отображаемых в TO/CC/BCC адресов до числа, указанного в address_count. - - - - - /schemas/apps/evolution/mail/display/force_message_limit - /apps/evolution/mail/display/force_message_limit - evolution-mail - bool - true - - Display only message texts not exceeding certain size - - Enable to display only message texts not exceeding size defined in 'message_text_part_limit' key. - - - - - Nur Nachrichtentexte anzeigen, die eine bestimmte Größe nicht überschreiten - Nur Nachrichtentexte anzeigen, welche die im Schlüssel »message_text_part_limit« angegebene Größe nicht übersteigen. - - - - Display only message texts not exceeding certain size - Enable display only of message texts not exceeding size defined in 'message_text_part_limit' key. - - - - Показывать тексты сообщений, не превышающих определённого размера - Показываеть текст сообщений, размер которых не превышает размера, определённого ключом 'message_text_part_limit'. - - - - - /schemas/apps/evolution/mail/display/message_text_part_limit - /apps/evolution/mail/display/message_text_part_limit - evolution-mail - int - 4096 - - Message text limit for display - - This decides the max size of the message text that will be displayed under - Evolution, specified in terms of KB. The default is 4096 (4MB). This value - is used only when 'force_message_limit' key is activated. - - - - - Anzeigebegrenzung des Nachrichtentexts - Dies bestimmt die maximale Größe des Textteils, der von Evolution formatiert wird, angegeben in kB. Die Vorgabe sind 4MB/4096kB. Dieser Wert wird nur dann verwendet, wenn der Schlüssel »force_message_limit« aktiviert ist. - - - - Message text limit for display - This decides the maximum size of the message text that will be displayed under Evolution, specified in terms of KB. The default is 4096 (4MB). This value is used only when the 'force_message_limit' key is activated. - - - - Ограничение отображаемого текста сообщения - Определяет максимальный размер текста сообщения, который может быть показан в Evolution. Размер по умолчанию: 4МБ (4096 КБ). Это значение используется только при включённом ключе 'force_message_limit'. - - - - - /schemas/apps/evolution/mail/display/address_count - /apps/evolution/mail/display/address_count - evolution-mail - int - 5 - - Number of addresses to display in TO/CC/BCC - - This sets the number of addresses to show in default message list - view, beyond which a '...' is shown. - - - - - Anzahl der Adressen, die in den Empfängerfeldern (An/Kopie/Blindkopie( angezeigt werden - Dies setzt die Anzahl der Adressen, die in der Standardansicht angezeigt werden, bevor »…« angezeigt wird. - - - - Number of addresses to display in TO/CC/BCC - This sets the number of addresses to show in default message list view, beyond which a '…' is shown. - - - - Количество адресов, отображаемых в TO/CC/BCC - Устанавливает количество адресов, отображаемых при просмотре сообщения, за которыми отображается «...». - - - - - /schemas/apps/evolution/mail/display/thread_subject - /apps/evolution/mail/display/thread_subject - evolution-mail - bool - false - - Thread the message-list based on Subject - - Whether or not to fall back on threading by subjects when the - messages do not contain In-Reply-To or References headers. - - - - - Die Nachrichtenliste themenbasiert nach Threads sortieren - Auf Betreffbasis auf die Thread-Ordnung zurückgreifen, falls die Kopfzeilen einer Nachricht auf keine Referenznachricht verweisen. - - - - Thread the message-list based on Subject - Whether to fall back on threading by subjects when the messages do not contain In-Reply-To or References headers. - - - - Подшивать список сообщений по полю «Тема» - Переходить ли к разворачиванию подшивок по теме, если сообщения не содержат заголовков In-Reply-To и References. - - - - - /schemas/apps/evolution/mail/display/thread_expand - /apps/evolution/mail/display/thread_expand - evolution-mail - bool - true - - Default value for thread expand state - - This setting specifies whether the threads should be in expanded - or collapsed state by default. Evolution requires a restart. - - - - - Vorgabewert, ob Threads ausgeklappt angezeigt werden sollen - Legt fest, ob Threads standardmäßig ausgeklappt oder eingeklappt dargestellt werden sollen. Evolution muss nach Ändern dieses Wertes hierfür neu gestartet werden. - - - - Default value for thread expand state - This setting specifies whether the threads should be in expanded or collapsed state by default. Evolution requires a restart. - - - - Состояние подшивки по умолчанию - Этот ключ определяет, должна ли подшивка по умолчанию раскрываться или быть свёрнутой. Чтобы изменение этого ключа вступило в силу, надо перезапустить Evolution. - - - - - /schemas/apps/evolution/mail/display/thread_latest - /apps/evolution/mail/display/thread_latest - evolution-mail - bool - true - - Whether sort threads based on latest message in that thread - - This setting specifies whether the threads should be sorted based - on latest message in each thread, rather than by message's date. - Evolution requires a restart. - - - - - Threads nach der letzten Nachricht im jeweiligen Thread sortieren - Legt fest, ob Threads nach der letzten Nachricht in einem Thread sortiert werden sollen anstatt nach dem Datum der Nachricht. Evolution muss nach Ändern dieses Wertes hierfür neu gestartet werden. - - - - Whether sort threads based on latest message in that thread - This setting specifies whether the threads should be sorted based on latest message in each thread, rather than by message's date. Evolution requires a restart. - - - - Сортировать ли подшивки по последнему сообщению в этой подшивке - Этот ключ определяет, должны ли подшивки упорядочиваться по последнему сообщению в каждой подшивке, а не по дате сообщения. Чтобы изменение этого ключа вступило в силу, надо перезапустить Evolution. - - - - - - - /schemas/apps/evolution/mail/mail_browser_width - /apps/evolution/mail/mail_browser_width - evolution-mail - int - 600 - - Mail browser width - Default width of the mail browser window. - - - - Breite des Nachrichtenbrowsers - Die voreingestellte Breite des Nachrichtenbrowserfensters. - - - - Mail browser width - Default width of the mail browser window. - - - - Ширина браузера почты - Ширина окна браузера почты по умолчанию - - - - - /schemas/apps/evolution/mail/mail_browser_height - /apps/evolution/mail/mail_browser_height - evolution-mail - int - 400 - - Mail browser height - Default height of the mail browser window. - - - - Höhe des Nachrichtenbrowsers - Die voreingestellte Höhe des Nachrichtenbrowserfensters. - - - - Mail browser height - Default height of the mail browser window. - - - - Высота браузера почты - Высота окна браузера почты по умолчанию. - - - - - /schemas/apps/evolution/mail/mail_browser_maximized - /apps/evolution/mail/mail_browser_maximized - evolution-mail - bool - false - - Mail browser maximized - Default maximized state of the mail browser window. - - - - Nachrichtenbrowser ist maximiert - Der vorgegebene Maximierungsstatus des Nachrichtenbrowserfensters. - - - - Mail browser maximised - Default maximised state of the mail browser window. - - - - Браузер почты имеет максимальные размеры - Развёрнутое состояние окна браузера почты по умолчанию - - - - - - - /schemas/apps/evolution/mail/subscribe_window/width - /apps/evolution/mail/subscribe_window/width - evolution-mail - int - 600 - - Subscribe dialog default width - Default width of the subscribe dialog. - - - - Voreingestellte Breite des Abonnementdialogs - Die voreingestellte Breite des Abonnementdialogs. - - - - Subscribe dialogue default width - Default width of the subscribe dialogue. - - - - Ширина окна диалога подписки по умолчанию - Ширина окна подписки по умолчанию. - - - - - /schemas/apps/evolution/mail/subscribe_window/height - /apps/evolution/mail/subscribe_window/height - evolution-mail - int - 400 - - Subscribe dialog default height - Default height of the subscribe dialog. - - - - Voreingestellte Höhe des Abonnementdialogs - Die voreingestellte Höhe des Abonnementdialogs. - - - - Subscribe dialogue default height - Default height of the subscribe dialogue. - - - - Высота диалога подписки по умолчанию - Высота диалога подписки по умолчанию. - - - - - - - /schemas/apps/evolution/mail/filters/log - /apps/evolution/mail/filters/log - evolution-mail - bool - false - - Log filter actions - - Log filter actions to the specified log file. - - - - - Filteraktionen protokollieren - Filteraktionen in der angegebenen Protokolldatei protokollieren. - - - - Log filter actions - Log filter actions to the specified log file. - - - - Регистрировать действия фильтра - Регистрировать действия фильтра в указанном файле журнала. - - - - - /schemas/apps/evolution/mail/filters/logfile - /apps/evolution/mail/filters/logfile - evolution-mail - string - - - Logfile to log filter actions - - Logfile to log filter actions. - - - - - Protokolldatei für Filteraktionen - Protokolldatei für Filteraktionen. - - - - Logfile to log filter actions - Logfile to log filter actions. - - - - Файл журнала действий фильтра - Файл журнала действий фильтра. - - - - - /schemas/apps/evolution/mail/filters/flush-outbox - /apps/evolution/mail/filters/flush-outbox - evolution-mail - bool - false - - Flush Outbox after filtering - - Whether to flush Outbox after filtering is done. Outbox flush will happen - only when there was used any 'Forward to' filter action and approximately - one minute after the last action invocation. - - - - - Nachrichtenausgang nach dem Filtern leeren - Legt fest. ob der Nachrichtenausgang nach dem Filtern geleert werden soll. Das geschieht nur, wenn ein »Weiterleiten an«-Filtervorgang angewendet wurde, etwa eine Minute nach der letzten Aktion. - - - - Flush Outbox after filtering - Whether to flush Outbox after filtering is done. Outbox flush will happen only when a 'Forward to' filter action is used and approximately one minute after the last action invocation. - - - - Отправить исходящие после фильтрации - Отправлять ли исходящие сообщения после применения фильтрации. Отправка произойдёт только при использовании какого-либо действия фильтра «Перенаправить» и примерно через минуту после выполнения последнего действия. - - - - - - - /schemas/apps/evolution/mail/format/forward_style - /apps/evolution/mail/format/forward_style - evolution-mail - int - 0 - - Default forward style - - - - - - - Vorgabe-Weiterleitungsstil - - - - - Default forward style - - - - - Стиль пересылки по умолчанию - - - - - - /schemas/apps/evolution/mail/format/reply_style - /apps/evolution/mail/format/reply_style - evolution-mail - int - 0 - - Default reply style - - - - - - - Vorgabe-Antwortstil - - - - - Default reply style - - - - - Стиль ответа по умолчанию - - - - - - /schemas/apps/evolution/mail/format/message_display_style - /apps/evolution/mail/format/message_display_style - evolution-mail - int - 0 - - Message-display style ("normal", "full headers", "source") - - - - - - - Stil der Nachrichtenanzeige. Zulässige Werte: »normal« (normal), »full headers« (alle Kopfzeilen), »source« (Quelltext) - - - - - Message-display style ("normal", "full headers", "source") - - - - - Тип отображения сообщения («normal», «full headers», «source») - - - - - - - - /schemas/apps/evolution/mail/prompts/empty_subject - /apps/evolution/mail/prompts/empty_subject - evolution-mail - bool - true - - Prompt on empty subject - - Prompt the user when he or she tries to send a message - without a Subject. - - - - - Bei leerem Betreff nachfragen - Rückfragen, falls ein Benutzer versucht, eine Nachricht ohne Betreff zu verschicken. - - - - Prompt on empty subject - Prompt the user when he or she tries to send a message without a Subject. - - - - Предупреждать, если тема пустая - Предупреждать, если пользователь пытается отправить сообщение без темы. - - - - - /schemas/apps/evolution/mail/prompts/expunge - /apps/evolution/mail/prompts/expunge - evolution-mail - bool - true - - Prompt when user expunges - - Prompt the user when he or she tries to expunge a folder. - - - - - Beim Säubern nachfragen - Rückfragen, falls ein Benutzer versucht, einen Ordner zu säubern. - - - - Prompt when user expunges - Prompt the user when he or she tries to expunge a folder. - - - - Предупреждать при очистке пользователем - Предупреждать, если пользователь пытается очистить удалённые сообщения в папке. - - - - - /schemas/apps/evolution/mail/prompts/only_bcc - /apps/evolution/mail/prompts/only_bcc - evolution-mail - bool - true - - Prompt when user only fills Bcc - - Prompt when user tries to send a message with no To or Cc recipients. - - - - - Rückfragen, falls der Benutzer nur das Blindkopie-Feld ausfüllt - Beim Verschicken von Nachrichten ohne An- und Kopie-Feld nachfragen. - - - - Prompt when user only fills Bcc - Prompt when user tries to send a message with no To or Cc recipients. - - - - Предупреждать, если пользователь заполнил только поле скрытой копии - Предупреждать при попытке отправки сообщений с пустыми полями «Кому» или «Копия». - - - - - /schemas/apps/evolution/mail/prompts/unwanted_html - /apps/evolution/mail/prompts/unwanted_html - evolution-mail - bool - true - - Prompt when user tries to send unwanted HTML - - Prompt when user tries to send HTML mail to recipients that - may not want to receive HTML mail. - - - - - Rückfragen, falls der Benutzer versucht, nicht erwünschtes HTML zu verschicken - Beim Verschicken von HTML-Nachrichten an Kontakte, die keine wollen, nachfragen. - - - - Prompt when user tries to send unwanted HTML - Prompt when user tries to send HTML mail to recipients that may not want to receive HTML mail. - - - - Предупреждать, когда пользователь пытается отправить нежелательный HTML - Предупреждать при отправке сообщений в формате HTML тем, кто не желает этого. - - - - - /schemas/apps/evolution/mail/prompts/open_many - /apps/evolution/mail/prompts/open_many - evolution-mail - bool - true - - Prompt when user tries to open 10 or more messages at once - - If a user tries to open 10 or more messages at one time, ask the user - if they really want to do it. - - - - - Vor gleichzeitigem Öffnen von 10 oder mehr Nachrichten einen Hinweis anzeigen - Wenn ein Benutzer versucht, 10 oder mehr Nachrichten auf einmal zu öffnen, wird er gefragt, ob er es wirklich tun will. - - - - Prompt when user tries to open 10 or more messages at once - If a user tries to open 10 or more messages at one time, ask the user if they really want to do it. - - - - Выводить запрос при попытке пользователя открыть 10 или более сообщений одновременно - Если пользователь пытается открыть 10 или более сообщений одновременно, выводить диалог запроса, действительно ли пользователь хочет это сделать. - - - - - /schemas/apps/evolution/mail/prompts/mark_all_read - /apps/evolution/mail/prompts/mark_all_read - evolution-mail - bool - true - - Prompt while marking multiple messages - - Enable or disable the prompt whilst marking multiple messages. - - - - - Anzeigen wenn mehrere Nachrichten markiert werden - Die Anzeige beim Markieren mehrerer Nachrichten ein-/ausschalten - - - - Prompt while marking multiple messages - Enable or disable the prompt whilst marking multiple messages. - - - - Предупреждать при пометке нескольких сообщений - Включает/выключает запрос подтверждения при пометке нескольких сообщений. - - - - - /schemas/apps/evolution/mail/prompts/delete_in_vfolder - /apps/evolution/mail/prompts/delete_in_vfolder - evolution-mail - bool - false - - Prompt when deleting messages in search folder - - It disables/enables the repeated prompts to warn that deleting - messages from a search folder permanently deletes the message, not - simply removing it from the search results. - - - - - Nachfrage beim Löschen von Nachrichten in Suchordner - Legt fest, ob der Benutzer gewarnt werden soll, dass das Löschen einer Nachricht in einem Suchordner die Nachricht wirklich löscht und nicht nur aus den Suchergebnissen entfernt. - - - - Prompt when deleting messages in search folder - It disables/enables the repeated prompts to warn that deleting messages from a search folder permanently deletes the message, not simply removing it from the search results. - - - - Предупреждать при удалении сообщений в папке поиска - Включает/выключает повторяющиеся предупреждения о том, что при удалении сообщений из папки поиска они удаляются совсем, а не только из результатов поиска. - - - - - /schemas/apps/evolution/mail/prompts/private_list_reply - /apps/evolution/mail/prompts/private_list_reply - evolution-mail - bool - true - - Prompt when replying privately to list messages - - It disables/enables the repeated prompts to warn that you are - sending a private reply to a message which arrived via a - mailing list. - - - - - Bei privater Antwort auf Listennachrichten nachfragen - Legt fest, ob der Benutzer wiederholt gewarnt werden soll, dass er eine private Antwort auf eine Nachricht versendet, die über eine Mailingliste eingegangen ist. - - - - Prompt when replying privately to list messages - It disables/enables the repeated prompts to warn that you are sending a private reply to a message which arrived via a mailing list. - - - - Предупреждать при личном ответе в список сообщений - Включает/выключает повторяющиеся предупреждения при отправке личного сообщения, попадающего в список рассылки. - - - - - /schemas/apps/evolution/mail/prompts/list_reply_to - /apps/evolution/mail/prompts/list_reply_to - evolution-mail - bool - true - - Prompt when mailing list hijacks private replies - It disables/enables the repeated prompts to warn that you are trying sending a private reply to a message which arrived via a mailing list, but the list sets a Reply-To: header which redirects your reply back to the list - - - - Nachfragen, wenn Mailinglisten versuchen private Antworten an die Liste umzuleiten - Dadurch werden die wiederholten Warnhinweise aktiviert oder deaktiviert, welche erscheinen, wenn Sie auf eine über eine Mailingliste erhaltene Nachricht an den privaten Absender antworten wollen, aber die »Antwort an«-Kopfzeile die Antwort normalerweise an die Mailingliste leiten würde. - - - - Prompt when mailing list hijacks private replies - It disables/enables the repeated prompts to warn that you are trying to send a private reply to a message which arrived via a mailing list, but the list sets a Reply-To: header which redirects your reply back to the list. - - - - Предупреждать, когда список рассылки захватывает личные ответы - Включает/выключает повторяющиеся предупреждения при попытке отправки личных ответов на сообщения, полученные через список рассылки, в заголовке которых установлен обратный адрес, перенаправляющий ответы обратно в список. - - - - - /schemas/apps/evolution/mail/prompts/reply_many_recips - /apps/evolution/mail/prompts/reply_many_recips - evolution-mail - bool - true - - Prompt when replying to many recipients - - It disables/enables the repeated prompts to warn that you are - sending a reply to many people. - - - - - Beim Antworten an viele Empfänger nachfragen - Legt fest, ob der Benutzer wiederholt gewarnt werden soll, dass er eine Anwort an viele Personen versendet. - - - - Prompt when replying to many recipients - It disables/enables the repeated prompts to warn that you are sending a reply to many people. - - - - Предупреждать при ответе нескольким получателям - Включает/выключает предупреждения - - - - - - - /schemas/apps/evolution/mail/trash/empty_on_exit - /apps/evolution/mail/trash/empty_on_exit - evolution-mail - bool - false - - Empty Trash folders on exit - - Empty all Trash folders when exiting Evolution. - - - - - Müllordner beim Beenden leeren - Alle Müllordner beim Beenden von Evolution leeren. - - - - Empty Wastebasket folders on exit - Empty all Wastebasket folders when exiting Evolution. - - - - Очищать корзину при выходе - Очищать все корзины при выходе из Evolution. - - - - - /schemas/apps/evolution/mail/trash/empty_on_exit_days - /apps/evolution/mail/trash/empty_on_exit_days - evolution-mail - int - 0 - - Minimum days between emptying the trash on exit - - Minimum time between emptying the trash on exit, in days. - - - - - Minimale Anzahl der Tage zwischen dem Leeren des Mülls beim Beenden - Minimale Anzahl der Tage zwischen dem Leeren des Mülls beim Beenden. - - - - Minimum number of days between emptying the wastebasket on exit - Minimum time between emptying the wastebasket on exit, in days. - - - - Минимальное количество дней между очисткой корзины при выходе - Минимальное время между очисткой корзины при выходе, в днях. - - - - - /schemas/apps/evolution/mail/trash/empty_date - /apps/evolution/mail/trash/empty_date - evolution-mail - int - 0 - - Last time Empty Trash was run - - The last time Empty Trash was run, in days since January 1st, 1970 (Epoch). - - - - - Letzte Müllleerung - Die Zeit seit der letzten Müllleerung in Tagen seit dem 01.01.1970. - - - - Last time Empty Wastebasket was run - The last time Empty Wastebasket was run, in days since January 1st, 1970 (Epoch). - - - - Последний раз мусорная корзина очищалась - Время последней очистки корзины (в днях с начала эпохи (1 января 1970)). - - - - - /schemas/apps/evolution/mail/display/error_timeout - /apps/evolution/mail/display/error_timeout - evolution-mail - int - 60 - - Amount of time in seconds the error should be shown on the status bar. - - Amount of time in seconds the error should be shown on the status bar. - - - - - Anzahl der Sekunden, die eine Fehlermeldung in der Statusleiste angezeigt wird. - Anzahl der Sekunden, die eine Fehlermeldung in der Statusleiste angezeigt wird. - - - - Amount of time in seconds the error should be shown on the status bar. - Amount of time in seconds the error should be shown on the status bar. - - - - Количество времени в секундах, в течение которого ошибка должна показываться в строке состояния. - Количество времени в секундах, в течение которого ошибка должна показываться в строке состояния. - - - - /schemas/apps/evolution/mail/display/error_level - /apps/evolution/mail/display/error_level - evolution-mail - int - 0 - - Level beyond which the message should be logged. - - This can have three possible values. "0" for errors. - "1" for warnings. "2" for debug messages. - - - - - Protokolltyp, ab welchem die Nachricht protokolliert werden soll. - Hier sind drei verschiedene Werte möglich: »0« für Fehler, »1« für Warnungen, »2« für Diagnosemeldungen. - - - - Level beyond which the message should be logged. - This can have three possible values. "0" for errors. "1" for warnings. "2" for debug messages. - - - - Уровень, за которым сообщение должно заноситься в журнал. - У этого ключа может быть одно из трёх значений: 0 — ошибки, 1 — предупреждения; 2 — отладочные сообщения. - - - - - /schemas/apps/evolution/mail/display/show_real_date - /apps/evolution/mail/display/show_real_date - evolution-mail - bool - true - - Show original "Date" header value. - - Show the original "Date" header (with a local time only if the time zone differs). - Otherwise always show "Date" header value in a user preferred format and local time zone. - - - - - Den originalen Wert der Kopfzeile »Datum« anzeigen. - Den originalen Wert der Kopfzeile »Datum« anzeigen, mit einer lokalen Zeit, falls sich die Zeitzonen unterscheiden. Anderenfalls wird der Wert der Kopfzeile »Datum« in einem benutzerdefinierten Format und der lokalen Zeitzone dargestellt. - - - - Show original "Date" header value. - Show the original "Date" header (with a local time only if the time zone differs). Otherwise always show "Date" header value in a user preferred format and local time zone. - - - - Показать исходное значение заголовка «Дата» - Показать исходный заголовок «Дата» (с локальным временем, только если отличается часовой пояс). В противном случае, всегда показывать значение заголовка «Дата» в формате и с часовым поясом, выбранным пользователем. - - - - - - - - /schemas/apps/evolution/mail/labels - /apps/evolution/mail/labels - evolution-mail - list - string - [I_mportant:#EF2929,_Work:#F57900,_Personal:#4E9A06,_To Do:#3465A4,_Later:#75507B] - - List of Labels and their associated colors - - List of labels known to the mail component of - Evolution. The list contains strings containing name:color - where color uses the HTML hex encoding. - - - - - Liste mit Beschriftungen und damit assoziierter Farben - Liste der Beschriftungen, die Evolutions E-Mail-Komponenete bekannt sind. Die Liste enthält Zeichenketten der Form Name:Farbe, wobei die Farbe als HTML-Hextriplet anzugeben ist. - - - - List of Labels and their associated colours - List of labels known to the mail component of Evolution. The list contains strings containing name:colour where colour uses the HTML hex encoding. - - - - Список меток и связанных с ними цветов - Список меток, известных почтовому компоненту Evolution. Список содержит строки имя:цвет, где цвет использует кодировку цвета HTML. - - - - - - - /schemas/apps/evolution/mail/junk/check_incoming - /apps/evolution/mail/junk/check_incoming - evolution-mail - bool - true - - Check incoming mail being junk - - Run junk test on incoming mail. - - - - - Eingehende E-Mails daraufhin überprüfen, ob sie unerwünscht sind - Unerwünscht-Test auf eingehende E-Mails anwenden. - - - - Check incoming mail being junk - Run junk test on incoming mail. - - - - Проверять, являются ли входящие сообщения спамом - Проверять на спам входящую почту. - - - - - /schemas/apps/evolution/mail/junk/empty_on_exit - /apps/evolution/mail/junk/empty_on_exit - evolution-mail - bool - false - - Empty Junk folders on exit - - Empty all Junk folders when exiting Evolution. - - - - - Unerwünscht-Ordner beim Beenden leeren - Alle Unerwünscht-Ordner beim Beenden von Evolution leeren. - - - - Empty Junk folders on exit - Empty all Junk folders when exiting Evolution. - - - - Очищать каталог спама при выходе - Очищать все каталоги со спамом при выходе из Evolution. - - - - - /schemas/apps/evolution/mail/junk/empty_on_exit_days - /apps/evolution/mail/junk/empty_on_exit_days - evolution-mail - int - 0 - - Minimum days between emptying the junk on exit - - Minimum time between emptying the junk on exit, in days. - - - - - Minimale Anzahl der Tage zwischen dem Leeren des Unerwünscht-Ordners beim Beenden - Minimale Anzahl der Tage zwischen dem Leeren des Unerwünscht-Ordners beim Beenden. - - - - Minimum days between emptying the junk on exit - Minimum time between emptying the junk on exit, in days. - - - - Минимальное количество дней между очисткой спама при выходе - Минимальное время между очисткой спама при выходе, в днях. - - - - - /schemas/apps/evolution/mail/junk/empty_date - /apps/evolution/mail/junk/empty_date - evolution-mail - int - 0 - - Last time Empty Junk was run - - The last time Empty Junk was run, in days since January 1st, 1970 (Epoch). - - - - - Letzte Leerung des Unerwünscht-Ordners - Die Zeit seit der letzten Unerwünscht-Ordner-Leerung in Tagen seit dem 01.01.1970. - - - - Last time Empty Junk was run - The last time Empty Junk was run, in days since January 1st, 1970 (Epoch). - - - - Последний раз спам очищался - Время последней очистки от спама (в днях с начала эпохи (1 января 1970)). - - - - - /schemas/apps/evolution/mail/junk/default_plugin - /apps/evolution/mail/junk/default_plugin - evolution-mail - string - Bogofilter - - The default plugin for Junk hook - - This is the default junk plugin, even though there are multiple plugins - enabled. If the default listed plugin is disabled, then it won't fall back - to the other available plugins. - - - - - Vorgabe-Plugin für die Unerwünscht-Erkennung - Dies ist das Vorgabe-Unerwünscht-Plugin, auch falls mehrere Plugins aktiviert sind. Falls das als Vorgabe aufgelistete Plugin deaktiviert ist, so wird nicht auf eines der anderen Plugins zurückgegriffen. - - - - The default plugin for Junk hook - This is the default junk plugin, even though there are multiple plugins enabled. If the default listed plugin is disabled, then it won't fall back to the other available plugins. - - - - Модуль, обрабатывающий спам по умолчанию - Это модуль обработки спама по умолчанию, даже если несколько модулей обработки спама включены одновременно. Если модуль по умолчанию выключен, доступные модули обработки спама всё равно не будут использоваться. - - - - - /schemas/apps/evolution/mail/junk/sa/local_only - /apps/evolution/mail/junk/sa/local_only - evolution-mail - bool - true - - Use only local spam tests. - - Use only the local spam tests (no DNS). - - - - - Ausschließlich lokale Spam-Tests verwenden. - Ausschließlich lokale Spam-Tests verwenden (kein DNS). - - - - Use only local spam tests. - Use only the local spam tests (no DNS). - - - - Использовать только локальные спам-тесты. - Использовать только локальные спам-тесты (без DNS). - - - - - /schemas/apps/evolution/mail/junk/sa/use_daemon - /apps/evolution/mail/junk/sa/use_daemon - evolution-mail - bool - true - - Use SpamAssassin daemon and client - - Use SpamAssassin daemon and client (spamc/spamd). - - - - - SpamAssassin-Daemon und -Client verwenden - SpamAssassin-Daemon und -Client verwenden (spamc/spamd). - - - - Use SpamAssassin daemon and client - Use SpamAssassin daemon and client (spamc/spamd). - - - - Использовать клиент и демон SpamAssassin - Использовать клиент и демон SpamAssassin (spamc/spamd). - - - - - /schemas/apps/evolution/mail/junk/lookup_addressbook - /apps/evolution/mail/junk/lookup_addressbook - evolution-mail - bool - false - - Determines whether to lookup in address book for sender email - - Determines whether to lookup the sender email in address book. If found, it shouldn't be a spam. It looks up in the books marked for autocompletion. It can be slow, if remote address books (like LDAP) are marked for autocompletion. - - - - - Legt fest, ob im Adressbuch nach der E-Mail-Adresse des Absenders gesucht wird - Legt fest, ob im Adressbuch nach der E-Mail-Adresse des Absenders gesucht wird. Falls die Adresse gefunden wird, so ist die E-Mail nicht unerwünscht. Es wird nur in Adressbüchern gesucht, die für Auto-Vervollständigung markiert sind. Diese Funktion kann langsam sein falls entfernte Adressbücher (wie LDAP) für die Auto-Vervollständigung aktiviert sind. - - - - Determines whether to look up in address book for sender e-mail - Determines whether to look up the sender e-mail in the address book. If found, it shouldn't be a spam. It looks up in the books marked for autocompletion. It can be slow, if remote address books (like LDAP) are marked for autocompletion. - - - - Определяет, нужно ли искать отправителя в адресной книге - Определяет, нужно ли искать электронный адрес отправителя в адресной книге. Если он там есть, то сообщение, видимо, не является спамом. Поиск производится в адресных книгах, помеченных для автодополнения. Поиск может быть медленным, если для автодополнения помечены удалённые книги (например, LDAP). - - - - - /schemas/apps/evolution/mail/junk/lookup_addressbook_local_only - /apps/evolution/mail/junk/lookup_addressbook_local_only - evolution-mail - bool - false - - Determines whether to look up addresses for junk filtering in local address book only - - This option is related to the key lookup_addressbook and is used to determine whether to look up addresses in local address book only to exclude mail sent by known contacts from junk filtering. - - - - - Legt fest, ob nur in lokalen Adressbüchern nach der E-Mail-Adresse des Absenders für das Filtern unerwünschter Nachrichten gesucht wird - Diese Option bezieht sich auf den Schlüssel »lookup_addressbook« und legt fest, ob Adressen im lokalen Adressbuch gesucht werden um sicherzustellen, dass E-Mails von Bekannten nicht als unerwünscht markiert werden. - - - - Determines whether to look up addresses for junk filtering in local address book only - This option is related to the key lookup_addressbook and is used to determine whether to look up addresses in local address book only to exclude mail sent by known contacts from junk filtering. - - - - Определяет, нужно ли искать адреса для фильтрации спама только в локальной адресной книге - Этот параметр относится к ключу lookup_addressbook и определяет, использовать ли только локальные адресные книги при исключении известных контактов при фильтрации спама. - - - - - /schemas/apps/evolution/mail/junk/check_custom_header - /apps/evolution/mail/junk/check_custom_header - evolution-mail - bool - true - - Determines whether to use custom headers to check for junk - - Determines whether to use custom headers to check for junk. If this option is enabled and the headers are mentioned, it will be improve the junk checking speed. - - - - - Legt fest, ob benutzerdefinierte Kopfzeilen für die Unerwünscht-Prüfung benutzt werden sollen - Legt fest, ob benutzerdefinierte Kopfzeilen für die Prüfung auf Unerwünschtheit benutzt werden sollen. Wenn diese Option aktiviert ist und eine angegebene Kopfzeile auftritt, so wird hierdurch die Prüfung auf Unerwünschtheit beschleunigt. - - - - Determines whether to use custom headers to check for junk - Determines whether to use custom headers to check for junk. If this option is enabled and the headers are mentioned, it will be improve the junk checking speed. - - - - Определяет, надо ли использовать указанные пользователем заголовки для выявления спама - Определяет, надо ли использовать указанные пользователем заголовки для выявления спама. Если этот ключ установлен и заголовки указаны, то скорость проверки на спам повысится. - - - - /schemas/apps/evolution/mail/junk/custom_header - /apps/evolution/mail/junk/custom_header - evolution-mail - list - string - [X-Spam-Flag=YES,X-Spam-Level=*****] - - Custom headers to use while checking for junk. - - Custom headers to use while checking for junk. The list elements - are string in the format "headername=value". - - - - - Benutzerdefinierte Kopfzeilen, die für die Prüfung auf Unerwünschtheit genutzt werden. - Benutzerdefinierte Kopfzeilen, die für die Prüfung auf Unerwünschtheit genutzt werden.Das Format ist »Kopfzeilenname=Wert« im GConf-Schlüssel. - - - - Custom headers to use while checking for junk. - Custom headers to use while checking for junk. The list elements are strings in the format "headername=value". - - - - Указанные пользователем заголовки для выявления спама - Указанные пользователем заголовки для выявления спама. Формат в GConf: заголовок=значение. - - - - - - /schemas/apps/evolution/mail/default_account - /apps/evolution/mail/default_account - evolution-mail - string - - UID string of the default account. - - UID string of the default account. - - - - - UID-Zeichenkette für das Vorgabekonto. - UID-Zeichenkette für das Vorgabekonto. - - - - UID string of the default account. - UID string of the default account. - - - - Строка UID основной учётной записи. - Строка UID основной учётной записи. - - - - - /schemas/apps/evolution/mail/accounts - /apps/evolution/mail/accounts - evolution-mail - list - string - - List of accounts - - List of accounts known to the mail component of - Evolution. The list contains strings naming - subdirectories relative to /apps/evolution/mail/accounts. - - - - - Kontenliste - Liste der Konten, die Evolutions E-Mail-Komponente bekannt sind. Die Liste enthält Zeichenketten, die Unterordner relativ zu »/apps«/evolution/mail/accounts« angeben. - - - - List of accounts - List of accounts known to the mail component of Evolution. The list contains strings naming subdirectories relative to /apps/evolution/mail/accounts. - - - - Список учётных записей - Список учётных записей, известных почтовому компоненту Evolution. Этот список содержит строки, соответствующие именам каталогов в /apps/evolution/mail/accounts. - - - - - /schemas/apps/evolution/mail/licenses - /apps/evolution/mail/licenses - evolution-mail - list - string - - List of accepted licenses - - List of protocol names whose license has been accepted. - - - - - Liste akzeptierter Lizenzen - Liste der Protokollnamen, deren Lizenzen akzeptiert wurden. - - - - List of accepted licences - List of protocol names whose licence has been accepted. - - - - Список принятых лицензий - Список имен протоколов, чьи лицензии были приняты. - - - - - - - /schemas/apps/evolution/mail/save_dir - /apps/evolution/mail/save_dir - evolution-mail - string - - Save directory - - Directory for saving mail component files. - - - - - Ordner speichern - Ordner zum Speichern der E-Mailkomponenten-Dateien. - - - - Save directory - Directory for saving mail component files. - - - - Сохранить каталог - Каталог для сохранения файлов компонентов почты. - - - - - /schemas/apps/evolution/mail/composer/current_folder - /apps/evolution/mail/composer/current_folder - evolution-mail - string - - Composer load/attach directory - - Directory for loading/attaching files to composer. - - - - - Vorgabeordner für Anlagen im Nachrichteneditor - Vorgabeordner für Anlagen im Nachrichteneditor. - - - - Composer load/attach directory - Directory for loading/attaching files to composer. - - - - Каталог загрузки/прикрепления при написании сообщения - Каталог для сохранения файлов компонентов почты. - - - - - - - /schemas/apps/evolution/mail/filter_editor_height - /apps/evolution/mail/filter_editor_height - int - 650 - - "Filter Editor" window height - - Initial height of the "Filter Editor" window. - The value updates as the user resizes the window vertically. - - - - - Höhe des Fensters »Filtereditor« - Legt fest, wie hoch das Fenster »Filtereditor« anfänglich ist. Der Wert ändert sich, wenn der Benutzer das Fenster vertikal vergrößert. - - - - "Filter Editor" window height - Initial height of the "Filter Editor" window. The value updates as the user resizes the window vertically. - - - - Высота окна «Редактор фильтров» - Исходное значение высоты окна «Редактор фильтров». Значение обновляется, когда пользователь изменяет вертикальные размеры окна. - - - - - /schemas/apps/evolution/mail/filter_editor_maximized - /apps/evolution/mail/filter_editor_maximized - bool - - "Filter Editor" window maximize state - - Initial maximize state of the "Filter Editor" window. - The value updates when the user maximizes or unmaximizes the - window. Note, this particular value is not used by Evolution - since the "Filter Editor" window cannot be maximized. This - key exists only as an implementation detail. - - - - - Maximierungs-Status des Fensters »Filtereditor« - Legt fest, ob das Fenster »Filtereditor« anfänglich maximiert ist. Der Wert ändert sich, wenn der Benutzer das Fenster maximiert oder wiederherstellt. Hinweis: dieser Schlüssel wird von Evolution nicht verwendet, da das Fenster nicht maximiert werden kann. Dieser Schlüssel existiert nur als Implementierungsdetail. - - - - "Filter Editor" window maximise state - Initial maximise state of the "Filter Editor" window. The value updates when the user maximises or unmaximises the window. Note, this particular value is not used by Evolution since the "Filter Editor" window cannot be maximised. This key exists only as an implementation detail. - - - - Развёрнутое состояние окна «Редактор фильтров» - Исходное состояние окна «Редактор фильтров». Значение обновляется, когда пользователь разворачивает окно на весь экран или восстанавливает его. Заметьте, что значение не используется Evolution, так как окно «Редактор фильтров» не может быть развёрнуто на весь экран. Этот ключ существует только из-за деталей реализации. - - - - - /schemas/apps/evolution/mail/filter_editor_width - /apps/evolution/mail/filter_editor_width - int - 400 - - "Filter Editor" window width - - Initial width of the "Filter Editor" window. - The value updates as the user resizes the window horizontally. - - - - - Breite des Fensters »Filtereditor« - Legt fest, wie breit des Fenster »Filtereditor« anfänglich ist. Der Wert ändert sich, wenn der Benutzer das Fenster horizontal vergrößert. - - - - "Filter Editor" window width - Initial width of the "Filter Editor" window. The value updates as the user resizes the window horizontally. - - - - Ширина окна «Редактор фильтров» - Исходное значение ширины окна «Редактор фильтров». Значение обновляется, когда пользователь изменяет горизонтальные размеры окна. - - - - - /schemas/apps/evolution/mail/send_recv_height - /apps/evolution/mail/send_recv_height - evolution-mail - int - 200 - - "Send and Receive Mail" window height - - Initial height of the "Send and Receive Mail" window. - The value updates as the user resizes the window vertically. - - - - - Höhe des Fensters »E-Mails verschicken und abrufen« - Legt fest, wie hoch das Fenster »E-Mails verschicken und abrufen« ist. Der Wert ändert sich, wenn der Benutzer das Fenster vertikal vergrößert. - - - - "Send and Receive Mail" window height - Initial height of the "Send and Receive Mail" window. The value updates as the user resizes the window vertically. - - - - Высота окна «Получение и отправка почты» - Исходное значение высоты окна «Отправка и получение почты». Это значение изменяется, когда пользователь изменяет размер окна по вертикали. - - - - - /schemas/apps/evolution/mail/send_recv_maximized - /apps/evolution/mail/send_recv_maximized - evolution-mail - bool - - "Send and Receive Mail" window maximize state - - Initial maximize state of the "Send and Receive Mail" window. - The value updates when the user maximizes or unmaximizes the - window. Note, this particular value is not used by Evolution - since the "Send and Receive Mail" window cannot be maximized. - This key exists only as an implementation detail. - - - - - Maximierungs-Status des Fensters »E-Mails verschicken und abrufen« - Legt fest, ob das Fenster »E-Mails verschicken und abrufen« maximiert ist. Der Wert ändert sich, wenn der Benutzer das Fenster maximiert oder wiederherstellt. Hinweis: dieser Schlüssel wird von Evolution nicht verwendet, da das Fenster nicht maximiert werden kann. Dieser Schlüssel existiert nur als Implementierungsdetail. - - - - "Send and Receive Mail" window maximise state - Initial maximise state of the "Send and Receive Mail" window. The value updates when the user maximises or unmaximises the window. Note, this particular value is not used by Evolution since the "Send and Receive Mail" window cannot be maximised. This key exists only as an implementation detail. - - - - Развёрнутое состояние окна «Получение и отправка почты» - Исходное состояние окна «Отправка и получение почты». Это значение изменяется, когда пользователь разворачивает окно на весь экран или сворачивает его. Заметьте, что значение не используется Evolution, так как окно «Отправка и получение почты» не может быть развёрнуто на весь экран. Этот ключ существует только из-за деталей реализации. - - - - - /schemas/apps/evolution/mail/send_recv_width - /apps/evolution/mail/send_recv_width - evolution-mail - int - 600 - - "Send and Receive Mail" window width - - Initial width of the "Send and Receive Mail" window. - The value updates as the user resizes the window horizontally. - - - - - Weite des Fensters »E-Mails verschicken und abrufen« - Legt fest, wie breit des Fenster »E-Mails verschicken und empfangen« ist. Der Wert ändert sich, wenn der Benutzer das Fenster horizontal vergrößert. - - - - "Send and Receive Mail" window width - Initial width of the "Send and Receive Mail" window. The value updates as the user resizes the window horizontally. - - - - Ширина окна «Получение и отправка почты» - Исходное значение ширины окна «Отправка и получение почты». Это значение изменяется, когда пользователь изменяет размер окна по горизонтали. - - - - - /schemas/apps/evolution/mail/vfolder_editor_height - /apps/evolution/mail/vfolder_editor_height - int - 650 - - "Search Folder Editor" window height - - Initial height of the "Search Folder Editor" window. - The value updates as the user resizes the window vertically. - - - - - Höhe des Fensters »Editor für Suchordner« - Legt fest, wie hoch das Fenster »Editor für Suchordner« ist. Der Wert ändert sich, wenn der Benutzer das Fenster vertikal vergrößert. - - - - "Search Folder Editor" window height - Initial height of the "Search Folder Editor" window. The value updates as the user resizes the window vertically. - - - - Высота окна «Редактор папок поиска» - Исходное значение высоты окна «Редактор папок поиска». Значение обновляется, когда пользователь изменяет вертикальные размеры окна. - - - - - /schemas/apps/evolution/mail/vfolder_editor_maximized - /apps/evolution/mail/vfolder_editor_maximized - bool - - "Search Folder Editor" window maximize state - - Initial maximize state of the "Search Folder Editor" window. - The value updates when the user maximizes or unmaximizes the - window. Note, this particular value is not used by Evolution - since the "Search Folder Editor" window cannot be maximized. - This key exists only as an implementation detail. - - - - - Maximierungs-Status des Fensters »Editor für Suchordner« - Legt fest, ob das Fenster »Editor für Suchordner« maximiert ist. Der Wert ändert sich, wenn der Benutzer das Fenster maximiert oder wiederherstellt. Hinweis: dieser Schlüssel wird von Evolution nicht verwendet, da das Fenster nicht maximiert werden kann. Dieser Schlüssel existiert nur als Implementierungsdetail. - - - - "Search Folder Editor" window maximise state - Initial maximise state of the "Search Folder Editor" window. The value updates when the user maximises or unmaximises the window. Note, this particular value is not used by Evolution since the "Search Folder Editor" window cannot be maximised. This key exists only as an implementation detail. - - - - Развёрнутое состояние окна «Редактор папок поиска» - Исходное состояние окна «Редактор папок поиска». Значение обновляется, когда пользователь разворачивает окно на весь экран или восстанавливает его. Заметьте, что значение не используется Evolution, так как окно «Редактор папок поиска» не может быть развёрнуто на весь экран. Этот ключ существует только из-за деталей реализации. - - - - - /schemas/apps/evolution/mail/vfolder_editor_width - /apps/evolution/mail/vfolder_editor_width - int - 400 - - "Search Folder Editor" window width - - Initial width of the "Search Folder Editor" window. - The value updates as the user resizes the window horizontally. - - - - - Breite des Fensters »Editor für Suchordner« - Legt fest, wie breit des Fenster »Editor für Suchordner« ist. Der Wert ändert sich, wenn der Benutzer das Fenster horizontal vergrößert. - - - - "Search Folder Editor" window width - Initial width of the "Search Folder Editor" window. The value updates as the user resizes the window horizontally. - - - - Ширина окна «Редактор папок поиска» - Исходное значение ширины окна «Редактор папок поиска». Значение обновляется, когда пользователь изменяет горизонтальные размеры окна. - - - - - - - /schemas/apps/evolution/mail/sync_interval - /apps/evolution/mail/sync_interval - evolution-mail - int - 60 - - Server synchronization interval - - Controls how frequently local changes are synchronized with the - remote mail server. The interval must be at least 30 seconds. - - - - - Intervall für Datenabgleich mit Servern - Legt fest, wie oft lokale Änderungen mit dem entfernen Mail-Server abgeglichen werden. Der Intervall muss mindestens 30 Sekunden betragen. - - - - Server synchronisation interval - Controls how frequently local changes are synchronised with the remote mail server. The interval must be at least 30 seconds. - - - - Интервал синхронизации с сервером - Определяет, как часто локальны изменения синхронизируются с удалённым почтовым сервером. Интервал должен быть хотя бы 30 секунд. - - - - - diff --git a/gconf/schemas/evolution-webcal.schemas b/gconf/schemas/evolution-webcal.schemas deleted file mode 100644 index 7eaf718..0000000 --- a/gconf/schemas/evolution-webcal.schemas +++ /dev/null @@ -1,85 +0,0 @@ - - - - /schemas/desktop/gnome/url-handlers/webcal/enabled - /desktop/gnome/url-handlers/webcal/enabled - evolution-webcal - bool - true - - How to handle webcal URLs - Set to true to have a program specified in command handle webcal URLs - - - - webcal-URLs handhaben - Falls dieser Schlüssel wahr ist, handhabt das in »command« angegebene Programm webcal-URLs. - - - - How to handle webcal URLs - Set to true to have a program specified in command handle webcal URLs - - - - Как обрабатывать URL webcal - Если установлен, для обработки URL webcal будет использоваться программа, указанная в ключе command - - - - - /schemas/desktop/gnome/url-handlers/webcal/command - /desktop/gnome/url-handlers/webcal/command - evolution-webcal - string - /usr/libexec/evolution-webcal %s - - URL handler for webcal URIs - URL handler for webcal URIs - - - - URL-Handler für Webcal-URIs - URL-Handler für Webcal-URIs - - - - URL handler for webcal URIs - URL handler for webcal URIs - - - - Обработчик URL для URI webcal - Обработчик URL для URI webcal - - - - - /schemas/desktop/gnome/url-handlers/webcal/need-terminal - /desktop/gnome/url-handlers/webcal/need-terminal - evolution-webcal - bool - false - - Run program in terminal - True if the program to handle this URL should be run in a terminal - - - - Programm im Terminal ausführen - Falls dieser Schlüssel wahr ist, wird das Programm, das diese URL handhaben soll, in einem Terminal ausgeführt. - - - - Run program in terminal - True if the program to handle this URL should be run in a terminal - - - - Запускать программу в терминале - Если установлен, программа-обработчик этого типа ссылок будет запускаться в терминале - - - - - diff --git a/gconf/schemas/file-roller.schemas b/gconf/schemas/file-roller.schemas deleted file mode 100644 index 85265d1..0000000 --- a/gconf/schemas/file-roller.schemas +++ /dev/null @@ -1,426 +0,0 @@ - - - - - /schemas/apps/file-roller/listing/sort_method - /apps/file-roller/listing/sort_method - file-roller - string - name - - How to sort files - What criteria must be used to arrange files. Possible values: - name, size, type, time, path. - - - - - - /schemas/apps/file-roller/listing/sort_type - /apps/file-roller/listing/sort_type - file-roller - string - ascending - - Sort type - Whether to sort in ascending or descending direction. Possible - values: ascending, descending. - - - - - /schemas/apps/file-roller/listing/list_mode - /apps/file-roller/listing/list_mode - file-roller - string - as_folder - - List Mode - Whether to view all files in the archive (all_files), or - view the archive as a folder (as_folder). - - - - - /schemas/apps/file-roller/listing/show_type - /apps/file-roller/listing/show_type - file-roller - bool - true - - Display type - Display the Type column in the main window. - - - - - /schemas/apps/file-roller/listing/show_size - /apps/file-roller/listing/show_size - file-roller - bool - true - - Display size - Display the Size column in the main window. - - - - - /schemas/apps/file-roller/listing/show_time - /apps/file-roller/listing/show_time - file-roller - bool - true - - Display time - Display the Time column in the main window. - - - - - /schemas/apps/file-roller/listing/show_path - /apps/file-roller/listing/show_path - file-roller - bool - true - - Display path - Display the Path column in the main window. - - - - - /schemas/apps/file-roller/listing/use_mime_icons - /apps/file-roller/listing/use_mime_icons - file-roller - bool - true - - Use mime icons - if TRUE will display icons depending on the file type (slower), - otherwise will use always the same icon for all files (faster). - - - - - - /schemas/apps/file-roller/listing/name_column_width - /apps/file-roller/listing/name_column_width - file-roller - int - 250 - - Name column width - The default width ofthe name column the file list. - - - - - /schemas/apps/file-roller/ui/history_len - /apps/file-roller/ui/history_len - file-roller - int - 5 - - Max history length - Max number of items in the Open Recents menu. - - - - - /schemas/apps/file-roller/ui/window_width - /apps/file-roller/ui/window_width - file-roller - int - 600 - - - - - - - - - /schemas/apps/file-roller/ui/window_height - /apps/file-roller/ui/window_height - file-roller - int - 480 - - - - - - - - - /schemas/apps/file-roller/ui/sidebar_width - /apps/file-roller/ui/sidebar_width - file-roller - int - 200 - - - - - - - - - /schemas/apps/file-roller/ui/view_toolbar - /apps/file-roller/ui/view_toolbar - file-roller - bool - true - - View toolbar - Whether to display the toolbar. - - - - - /schemas/apps/file-roller/ui/view_statusbar - /apps/file-roller/ui/view_statusbar - file-roller - bool - true - - View statusbar - Whether to display the statusbar. - - - - - /schemas/apps/file-roller/ui/view_folders - /apps/file-roller/ui/view_folders - file-roller - bool - false - - View the folders pane - Whether to display the folders pane. - - - - - /schemas/apps/file-roller/general/editors - /apps/file-roller/general/editors - file-roller - list - string - [] - - Editors - List of applications entered in the Open file dialog and not - associated with the file type. - - - - - /schemas/apps/file-roller/general/compression_level - /apps/file-roller/general/compression_level - file-roller - string - normal - - Compression level - Compression level used when adding files to an archive. - Possible values : very_fast, fast, normal, maximum. - - - - - /schemas/apps/file-roller/general/encrypt_header - /apps/file-roller/general/encrypt_header - file-roller - bool - false - - Encrypt the archive header - Whether to encrypt the archive header. If the header is encrypted the password will be required to list the archive content as well. - - - - - /schemas/apps/file-roller/general/migrate_directories - /apps/file-roller/general/migrate_directories - gthumb - bool - true - - - - - - - - - /schemas/apps/file-roller/dialogs/extract/overwrite - /apps/file-roller/dialogs/extract/overwrite - file-roller - bool - true - - Overwrite existing files - - - - - - /schemas/apps/file-roller/dialogs/extract/skip_newer - /apps/file-roller/dialogs/extract/skip_newer - file-roller - bool - false - - Do not overwrite newer files - - - - - - /schemas/apps/file-roller/dialogs/extract/recreate_folders - /apps/file-roller/dialogs/extract/recreate_folders - file-roller - bool - true - - Recreate the folders stored in the archive - - - - - - /schemas/apps/file-roller/dialogs/add/current_folder - /apps/file-roller/dialogs/add/current_folder - file-roller - string - - - - - - - - - /schemas/apps/file-roller/dialogs/add/filename - /apps/file-roller/dialogs/add/filename - file-roller - string - - - - - - - - - /schemas/apps/file-roller/dialogs/add/include_files - /apps/file-roller/dialogs/add/include_files - file-roller - string - - - - - - - - - /schemas/apps/file-roller/dialogs/add/exclude_files - /apps/file-roller/dialogs/add/exclude_files - file-roller - string - - - - - - - - - /schemas/apps/file-roller/dialogs/add/exclude_folders - /apps/file-roller/dialogs/add/exclude_folders - file-roller - string - - - - - - - - - /schemas/apps/file-roller/dialogs/extract/update - /apps/file-roller/dialogs/extract/update - file-roller - bool - false - - - - - - - - /schemas/apps/file-roller/dialogs/extract/recursive - /apps/file-roller/dialogs/extract/recursive - file-roller - bool - true - - - - - - - - /schemas/apps/file-roller/dialogs/extract/no_symlinks - /apps/file-roller/dialogs/extract/no_symlinks - file-roller - bool - false - - - - - - - - /schemas/apps/file-roller/dialogs/batch-add/default_extension - /apps/file-roller/dialogs/batch-add/default_extension - file-roller - string - .tar.gz - - - - - - - - /schemas/apps/file-roller/dialogs/batch-add/other_options - /apps/file-roller/dialogs/batch-add/other_options - file-roller - bool - false - - - - - - - - /schemas/apps/file-roller/dialogs/batch-add/volume_size - /apps/file-roller/dialogs/batch-add/volume_size - file-roller - int - 0 - - Default volume size - The default size for volumes. - - - - - diff --git a/gconf/schemas/fish.schemas b/gconf/schemas/fish.schemas deleted file mode 100644 index 784f32c..0000000 --- a/gconf/schemas/fish.schemas +++ /dev/null @@ -1,181 +0,0 @@ - - - - - /schemas/apps/fish_applet/prefs/name - fish-applet - string - Wanda - - The fish's name - - A fish without a name is a pretty dull fish. Bring your fish to - life by naming him. - - - - - Der Name des Fisches - Ein namenloser Fisch ist ein ziemlich dämlicher Fisch. Erwecken Sie Ihren Fisch zum Leben, indem Sie ihm einen Namen geben! - - - - The fish's name - A fish without a name is a pretty dull fish. Bring your fish to life by naming him. - - - - Имя рыбки - Рыбка без имени — скучная рыбка. Оживите рыбку, дав ей имя. - - - - - /schemas/apps/fish_applet/prefs/image - fish-applet - string - wanda.png - - The fish's animation pixmap - - This key specifies the filename of the pixmap which will be used - for the animation displayed in the fish applet relative to the - pixmap directory. - - - - - Die Animations-Pixmap des Fisches - Dieser Schlüssel gibt den Dateinamen der Pixmap an, die für die im Fisch-Applet angezeigte Animation verwendet wird, und zwar relativ zum Pixmap-Ordner. - - - - The fish's animation pixmap - This key specifies the filename of the pixmap which will be used for the animation displayed in the fish applet relative to the pixmap directory. - - - - Анимированное изображение рыбки - Этот ключ определяет имя файла изображения, которое будет использоваться для отображения анимации апплета рыбки, относительно каталога изображений (pixmap). - - - - - /schemas/apps/fish_applet/prefs/command - fish-applet - string - fortune - - Command to execute on click - - This key specifies the command that will be tried to execute when - the fish is clicked. - - - - - Beim Anklicken des Fisches auszuführender Befehl - Dieser Schlüssel gibt den Befehl an, der beim Anklicken des Fischs ausgeführt werden soll. - - - - Command to execute on click - This key specifies the command that will be tried to execute when the fish is clicked. - - - - Команда, выполняемая при нажатии - Этот ключ определяет команду, выполняемую при щелчке на рыбке. - - - - - /schemas/apps/fish_applet/prefs/frames - fish-applet - int - 8 - - Frames in fish's animation - - This key specifies the number of frames that will be displayed in - the fish's animation. - - - - - Einzelbilder in Fischanimation - Dieser Schlüssel gibt die Anzahl der darzustellenden Einzelbilder in der Fischanimation an. - - - - Frames in fish's animation - This key specifies the number of frames that will be displayed in the fish's animation. - - - - Число кадров в анимации рыбки - Этот ключ определяет число кадров, используемых в анимации рыбки. - - - - - /schemas/apps/fish_applet/prefs/speed - fish-applet - float - 0.3 - - Pause per frame - - This key specifies the number of seconds each frame will be - displayed. - - - - - Pause nach jedem Einzelbild - Dieser Schlüssel legt die Anzahl der Sekunden fest, die jedes Einzelbild angezeigt werden soll. - - - - Pause per frame - This key specifies the number of seconds each frame will be displayed. - - - - Задержка кадра - Этот ключ определяет количество секунд, в течение которых отображается каждый кадр. - - - - - /schemas/apps/fish_applet/prefs/rotate - fish-applet - bool - false - - Rotate on vertical panels - - If true, the fish's animation will be displayed rotated on vertical - panels. - - - - - Auf vertikalen Panels drehen - Falls dieser Schlüssel WAHR ist, wird die Fischanimation auf vertikalen Panels gedreht angezeigt. - - - - Rotate on vertical panels - If true, the fish's animation will be displayed rotated on vertical panels. - - - - Поворачивать на вертикальных панелях - Если этот ключ установлен, на вертикальных панелях анимация будет отображаться в повёрнутом виде. - - - - - - diff --git a/gconf/schemas/fontilus.schemas b/gconf/schemas/fontilus.schemas deleted file mode 100644 index 8fca0c4..0000000 --- a/gconf/schemas/fontilus.schemas +++ /dev/null @@ -1,229 +0,0 @@ - - - - - /schemas/desktop/gnome/thumbnailers/application@x-font-ttf/command - /desktop/gnome/thumbnailers/application@x-font-ttf/command - string - gnome-thumbnail-font %u %o - - Thumbnail command for TrueType fonts - - Set this key to the command used to create thumbnails for - TrueType fonts. - - - - - Vorschaubefehl für TrueType-Schriften - Setzen Sie diesen Schlüssel auf den zum Erstellen von Miniatur-Vorschaubildern auf TrueType-Schriften verwendeten Befehl. - - - - Thumbnail command for TrueType fonts - Set this key to the command used to create thumbnails for TrueType fonts. - - - - Команда создания миниатюр для шрифтов TrueType - Ключ задаёт команду для создания миниатюр шрифтов TrueType. - - - - /schemas/desktop/gnome/thumbnailers/application@x-font-ttf/enable - /desktop/gnome/thumbnailers/application@x-font-ttf/enable - bool - true - - Whether to thumbnail TrueType fonts - - If set to true, then TrueType fonts will be thumbnailed. - - - - - Vorschaubilder auf TrueType-Schriften anzeigen? - Sollen Miniatur-Vorschaubilder auf TrueType-Schriften angezeigt werden? - - - - Whether to thumbnail TrueType fonts - If set to true, then TrueType fonts will be thumbnailed. - - - - Создавать ли миниатюры для шрифтов TrueType - Если включено, будут создаваться миниатюры для шрифтов TrueType - - - - - /schemas/desktop/gnome/thumbnailers/application@x-font-type1/command - /desktop/gnome/thumbnailers/application@x-font-type1/command - string - gnome-thumbnail-font %u %o - - Thumbnail command for Type1 fonts - - Set this key to the command used to create thumbnails for - Type1 fonts. - - - - - Vorschaubefehl für Type1-Schriften - Setzen Sie diesen Schlüssel auf den zum Erstellen von Miniatur-Vorschaubildern auf Type1-Schriften verwendeten Befehl. - - - - Thumbnail command for Type1 fonts - Set this key to the command used to create thumbnails for Type1 fonts. - - - - Команда создания миниатюр для шрифтов Type1 - Ключ задаёт команду для создания миниатюр шрифтов Type1. - - - - /schemas/desktop/gnome/thumbnailers/application@x-font-type1/enable - /desktop/gnome/thumbnailers/application@x-font-type1/enable - bool - true - - Whether to thumbnail Type1 fonts - - If set to true, then Type1 fonts will be thumbnailed. - - - - - Vorschaubilder auf Type1-Schriften anzeigen? - Sollen Miniatur-Vorschaubilder auf Type1-Schriften angezeigt werden? - - - - Whether to thumbnail Type1 fonts - If set to true, then Type1 fonts will be thumbnailed. - - - - Создавать ли миниатюры для шрифтов Type1 - Если включено, будут создаваться миниатюры для шрифтов Type1 - - - - - /schemas/desktop/gnome/thumbnailers/application@x-font-pcf/command - /desktop/gnome/thumbnailers/application@x-font-pcf/command - string - gnome-thumbnail-font %u %o - - Thumbnail command for PCF fonts - - Set this key to the command used to create thumbnails for - PCF fonts. - - - - - Vorschaubefehl für PCF-Schriften - Setzen Sie diesen Schlüssel auf den zum Erstellen von Miniatur-Vorschaubildern auf PCF-Schriften verwendeten Befehl. - - - - Thumbnail command for PCF fonts - Set this key to the command used to create thumbnails for PCF fonts. - - - - Команда создания миниатюр для шрифтов PCF - Ключ задаёт команду для создания миниатюр шрифтов PCF. - - - - /schemas/desktop/gnome/thumbnailers/application@x-font-pcf/enable - /desktop/gnome/thumbnailers/application@x-font-pcf/enable - bool - true - - Whether to thumbnail PCF fonts - - If set to true, then PCF fonts will be thumbnailed. - - - - - Vorschaubilder auf PCF-Schriften anzeigen? - Sollen Miniatur-Vorschaubilder auf PCF-Schriften angezeigt werden? - - - - Whether to thumbnail PCF fonts - If set to true, then PCF fonts will be thumbnailed. - - - - Создавать ли миниатюры для шрифтов PCF - Если включено, будут создаваться миниатюры для шрифтов PCF - - - - - /schemas/desktop/gnome/thumbnailers/application@x-font-otf/command - /desktop/gnome/thumbnailers/application@x-font-otf/command - string - gnome-thumbnail-font %u %o - - Thumbnail command for OpenType fonts - - Set this key to the command used to create thumbnails for - OpenType fonts. - - - - - Vorschaubefehl für OpenType-Schriften - Setzen Sie diesen Schlüssel auf den zum Erstellen von Miniatur-Vorschaubildern auf OpenType-Schriften verwendeten Befehl. - - - - Thumbnail command for OpenType fonts - Set this key to the command used to create thumbnails for OpenType fonts. - - - - Команда создания миниатюр для шрифтов OpenType - Ключ задаёт команду для создания миниатюр шрифтов OpenType. - - - - /schemas/desktop/gnome/thumbnailers/application@x-font-otf/enable - /desktop/gnome/thumbnailers/application@x-font-otf/enable - bool - true - - Whether to thumbnail OpenType fonts - - If set to true, then OpenType fonts will be thumbnailed. - - - - - Vorschaubilder auf OpenType-Schriften anzeigen? - Sollen Miniatur-Vorschaubilder auf OpenType-Schriften angezeigt werden? - - - - Whether to thumbnail OpenType fonts - If set to true, then OpenType fonts will be thumbnailed. - - - - Создавать ли миниатюры для шрифтов OpenType - Если включено, будут создаваться миниатюры для шрифтов OpenType - - - - - diff --git a/gconf/schemas/gcdmaster.schemas b/gconf/schemas/gcdmaster.schemas deleted file mode 100644 index 166f378..0000000 --- a/gconf/schemas/gcdmaster.schemas +++ /dev/null @@ -1,31 +0,0 @@ - - - - /schemas/apps/gcdmaster/temp_dir - /apps/gcdmaster/temp_dir - gcdmaster - string - /tmp - - Temporary files directory - - Directory in which temporary decoded audio files are stored - - - - - /schemas/apps/gcdmaster/manual_devices - /apps/gcdmaster/manual_devices - gcdmaster - list - string - [] - - Manually configured devices - - List of manually configured devices - - - - - diff --git a/gconf/schemas/gedit-file-browser.schemas b/gconf/schemas/gedit-file-browser.schemas deleted file mode 100644 index 2a6c8a7..0000000 --- a/gconf/schemas/gedit-file-browser.schemas +++ /dev/null @@ -1,202 +0,0 @@ - - - - /schemas/apps/gedit-2/plugins/filebrowser/on_load/tree_view - /apps/gedit-2/plugins/filebrowser/on_load/tree_view - gedit - bool - TRUE - - Open With Tree View - Open the tree view when the file browser plugin gets loaded instead of the bookmarks view - - - - In der Baumansicht öffnen - Öffnet die Baumansicht, wenn das Dateiverwaltung-Plugin anstelle der Lesezeichenansicht geöffnet wurde - - - - Open With Tree View - Open the tree view when the file browser plugin gets loaded instead of the bookmarks view - - - - Открыть в режиме дерева - Открыть просмотр в режиме дерева при загрузке модуля обозревателя файлов вместо режима закладок - - - - - /schemas/apps/gedit-2/plugins/filebrowser/on_load/root - /apps/gedit-2/plugins/filebrowser/on_load/root - gedit - string - - - File Browser Root Directory - The file browser root directory to use when loading the file - browser plugin and onload/tree_view is TRUE. - - - - Wurzelordner der Dateiverwaltung - Der Wurzelordner der Dateiverwaltung, der beim Laden der Dateiverwaltung verwendet wird, wenn der Schlüssel »onload/tree_view« auf »TRUE« gesetzt ist. - - - - File Browser Root Directory - The file browser root directory to use when loading the file browser plugin and onload/tree_view is TRUE. - - - - Корневой каталог обозревателя файлов - Корневой каталог обозревателя файлов при загрузке модуля обозревателя файлов, когда onload/tree_view установлен. - - - - - /schemas/apps/gedit-2/plugins/filebrowser/on_load/virtual_root - /apps/gedit-2/plugins/filebrowser/on_load/virtual_root - gedit - string - - - File Browser Virtual Root Directory - The file browser virtual root directory to use when loading the - file browser plugin when onload/tree_view is TRUE. The virtual root - must always be below the actual root. - - - - Virtueller Wurzelordner der Dateiverwaltung - Der virtuelle Wurzelordner der Dateiverwaltung, der beim Laden des Datei-Browsers verwendet wird, wenn der Schlüssel »onload/tree_view« auf »TRUE« gesetzt ist. Der virtuelle Wurzelordner muss immer unterhalb des tatsächlichen Wurzelordner sein. - - - - File Browser Virtual Root Directory - The file browser virtual root directory to use when loading the file browser plugin when onload/tree_view is TRUE. The virtual root must always be below the actual root. - - - - Виртуальный корневой каталог обозревателя файлов - Виртуальный корневой каталог обозревателя файлов при загрузке модуля обозревателя, если установлен параметр onload/tree_view. Виртуальный корневой каталог всегда должен быть ниже настоящего корня.. - - - - - /schemas/apps/gedit-2/plugins/filebrowser/on_load/enable_remote - /apps/gedit-2/plugins/filebrowser/on_load/enable_remote - gedit - bool - FALSE - - Enable Restore of Remote Locations - Sets whether to enable restoring of remote locations. - - - - Wiederherstellen von entfernten Orten einschalten - Legt fest, ob Verbindungen zu entfernten Orten wiederhergestellt werden. - - - - Enable Restore of Remote Locations - Sets whether to enable restoring of remote locations. - - - - Включить или выключить удалённые адреса - Устанавливает, разрешено ли восстановление из удалённых адресов. - - - - - /schemas/apps/gedit-2/plugins/filebrowser/open_at_first_doc - /apps/gedit-2/plugins/filebrowser/open_at_first_doc - gedit - bool - TRUE - - Set Location to First Document - If TRUE the file browser plugin will view the directory of - the first opened document given that the file browser hasn't been - used yet. (Thus this generally applies to opening a document from - the command line or opening it with Nautilus, etc.) - - - - Das erste Dokument als Ort festlegen - Falls dieser Schlüssel auf »WAHR« gesetzt ist, dann öffnet das Plugin für die Dateiverwaltung den Ordner des zuerst geöffneten Dokuments, falls die Dateiverwaltung noch nicht verwendet wurde. (Das trifft allgemein dann zu, wenn eine Datei aus der Befehlszeile oder mit Nautilus etc. geöffnet wurde) - - - - Set Location to First Document - If TRUE the file browser plugin will view the directory of the first opened document given that the file browser hasn't been used yet. (Thus this generally applies to opening a document from the command line or opening it with Nautilus, etc.) - - - - Установить адрес на первый документ - Если этот параметр установлен, модуль обозревателя файлов откроется на каталоге первого открытого документа, не открывавшегося в обозревателе файлов (как правило, применимо при открытии документа из командной строки или из Nautius и тд) - - - - - /schemas/apps/gedit-2/plugins/filebrowser/filter_mode - /apps/gedit-2/plugins/filebrowser/filter_mode - gedit - string - hidden_and_binary - - File Browser Filter Mode - This value determines what files get filtered from the file - browser. Valid values are: none (filter nothing), - hidden (filter hidden files), binary (filter binary files) and - hidden_and_binary (filter both hidden and binary files). - - - - Dateiverwaltung Filtermodus - Dieser Wert bestimmt, welche Dateien in der Dateiverwaltung gefiltert werden. Gültige Werte sind: »none« (filtert nichts), »hidden« (filtert verborgene Dateien), »binary« (filtert binäre Dateien) und »hidden_and_binary« (filtert sowohl verborgene als auch binäre Dateien). - - - - File Browser Filter Mode - This value determines what files get filtered from the file browser. Valid values are: none (filter nothing), hidden (filter hidden files), binary (filter binary files) and hidden_and_binary (filter both hidden and binary files). - - - - Режим фильтра обозревателя файлов - Это значение определяет, какие файлы должны быть отфильтрованы из обозревателя. Допустимые значения: none (ничего не фильтровать), hidden (фильтровать скрытые файлы), binary (фильтровать бинарные файлы), hidden_and_binary (фильтровать скрытые и бинарные файлы). - - - - - /schemas/apps/gedit-2/plugins/filebrowser/filter_pattern - /apps/gedit-2/plugins/filebrowser/filter_pattern - gedit - string - - - File Browser Filter Pattern - The filter pattern to filter the file browser with. This filter - works on top of the filter_mode. - - - - Dateiverwaltung Filtermuster - Das Filtermuster zum Filtern innerhalb der Dateiverwaltung. Dieses Filtermuster wird im Filtermodus benutzt. - - - - File Browser Filter Pattern - The filter pattern to filter the file browser with. This filter works on top of the filter_mode. - - - - Шаблон фильтра обозревателя файлов - Шаблон фильтра для фильтрации файлов в обозревателе файлов. Этот фильтр работает поверх filter_mode. - - - - diff --git a/gconf/schemas/gedit.schemas b/gconf/schemas/gedit.schemas deleted file mode 100644 index e09ab2c..0000000 --- a/gconf/schemas/gedit.schemas +++ /dev/null @@ -1,1125 +0,0 @@ - - - - /schemas/apps/gedit-2/preferences/editor/font/use_default_font - /apps/gedit-2/preferences/editor/font/use_default_font - gedit - bool - TRUE - - Use Default Font - Whether to use the system's default fixed width font for editing - text instead of a font specific to gedit. If this option is turned - off, then the font named in the "Editor Font" option will be - used instead of the system font. - - - - Vorgabe-Schrift verwenden - Soll die standardmäßige dicktengleiche Schrift des Systems zum Bearbeiten von Text anstelle der in gedit angegeben Schrift verwendet werden? Falls diese Option deaktiviert ist, wird die unter »Editor-Schrift« angegeben Schrift anstelle der System-Schrift verwendet. - - - - Use Default Font - Whether to use the system's default fixed width font for editing text instead of a font specific to gedit. If this option is turned off, then the font named in the "Editor Font" option will be used instead of the system font. - - - - Использовать шрифт по умолчанию - Следует ли использовать исходный системный шрифт для отображения редактируемых документов. Если этот параметр отключён, для области редактирования будет использоваться шрифт, определённый в параметре «Шрифт редактора». - - - - - /schemas/apps/gedit-2/preferences/editor/font/editor_font - /apps/gedit-2/preferences/editor/font/editor_font - gedit - string - - Monospace 12 - Editor Font - A custom font that will be used for the editing area. - This will only take effect if the "Use Default Font" option is - turned off. - - - - Monospace 12 - Editor-Schrift - Die für den Editorbereich zu verwendende benutzerdefinierte Schrift. Diese wird ausschließlich verwendet, falls die »Voreingestellte Schrift verwenden«-Option deaktiviert ist. - - - - Monospace 12 - Editor Font - A custom font that will be used for the editing area. This will only take effect if the "Use Default Font" option is turned off. - - - - Monospace 12 - Шрифт редактора - Другой шрифт, который будет использован для области редактирования. Будет иметь эффект только если параметр «Использовать исходный шрифт» выключен. - - - - - /schemas/apps/gedit-2/preferences/editor/colors/scheme - /apps/gedit-2/preferences/editor/colors/scheme - gedit - string - classic - - Style Scheme - The ID of a GtkSourceView Style Scheme used to - color the text. - - - - Stilvorlage - Die Kennung der GtkSourceView-Stilvorlage, die zum Einfärben des Textes verwendet wird. - - - - Style Scheme - The ID of a GtkSourceView Style Scheme used to colour the text. - - - - Стильевые схемы - Идентификатор стилевой схемы GtkSourceView для подсветки текста. - - - - - /schemas/apps/gedit-2/preferences/editor/save/create_backup_copy - /apps/gedit-2/preferences/editor/save/create_backup_copy - gedit - bool - FALSE - - Create Backup Copies - Whether gedit should create backup copies for the files - it saves. You can set the backup file extension with the - "Backup Copy Extension" option. - - - - Sicherungskopien erstellen - Soll gedit Sicherungskopien der Dateien, die gespeichert werden, erstellen? Sie können die Erweiterung für diese Dateien mit der »Erweiterung für Sicherungskopien«-Option einstellen. - - - - Create Backup Copies - Whether gedit should create backup copies for the files it saves. You can set the backup file extension with the "Backup Copy Extension" option. - - - - Создавать резервные копии - Следует ли создавать резервные копии сохраняемых файлов. Расширение имен резервных файлов устанавливается параметром "Расширение резервных файлов". - - - - - /schemas/apps/gedit-2/preferences/editor/save/auto_save - /apps/gedit-2/preferences/editor/save/auto_save - gedit - bool - FALSE - - Autosave - Whether gedit should automatically save modified files - after a time interval. You can set the time interval with the - "Autosave Interval" option. - - - - Automatisches Speichern - Soll gedit veränderte Dateien automatisch nach einer bestimmten Zeit speichern? Sie können diese Zeit mit der »Intervall für automatisches Speichern«-Option einstellen. - - - - Autosave - Whether gedit should automatically save modified files after a time interval. You can set the time interval with the "Autosave Interval" option. - - - - Автосохранение - Следует ли автоматически сохранять изменённые файлы через промежуток времени. Интервал между сохранениями устанавливается параметром "Интервал автосохранения". - - - - - /schemas/apps/gedit-2/preferences/editor/save/auto_save_interval - /apps/gedit-2/preferences/editor/save/auto_save_interval - gedit - int - 10 - - Autosave Interval - Number of minutes after which gedit will automatically - save modified files. This will only take effect if the "Autosave" - option is turned on. - - - - Intervall für das automatische Speichern - Minuten, nach denen gedit automatisch veränderte Dateien speichert. Dies wird nur passieren, wenn die »Automatisch speichern«-Option aktiviert ist. - - - - Autosave Interval - Number of minutes after which gedit will automatically save modified files. This will only take effect if the "Autosave" option is turned on. - - - - Интервал автосохранения - Интервал в минутах, после которого все изменённые файлы будут автоматически сохранены. Будет иметь эффект, только если параметр "Автосохранение" включён. - - - - - /schemas/apps/gedit-2/preferences/editor/undo/undo_actions_limit - /apps/gedit-2/preferences/editor/undo/undo_actions_limit - gedit - int - 25 - - Undo Actions Limit (DEPRECATED) - Maximum number of actions that gedit will be able to - undo or redo. Use "-1" for unlimited number of actions. - Deprecated since 2.12.0 - - - - Limit der Rückgängig-Aktionen (VERALTET) - Maximal anzuzeigende Anzahl der Aktionen, die gedit rückgängig machen und wiederherstellen kann. Verwenden Sie »-1« für eine unbegrenzte Anzahl an Aktionen. Seit 2.12.0 veraltet. - - - - Undo Actions Limit (DEPRECATED) - Maximum number of actions that gedit will be able to undo or redo. Use "-1" for unlimited number of actions. Deprecated since 2.12.0 - - - - Лимит операций отмены (УСТАРЕВШИЙ) - Максимальное число действий, которые можно отменить или вернуть. "-1" означает неограниченное количество действий. Считается устаревшим после 2.12.0 - - - - - /schemas/apps/gedit-2/preferences/editor/undo/max_undo_actions - /apps/gedit-2/preferences/editor/undo/max_undo_actions - gedit - int - 2000 - - Maximum Number of Undo Actions - Maximum number of actions that gedit will be able to - undo or redo. Use "-1" for unlimited number of actions. - - - - Maximale Anzahl der Rückgängig-Aktionen - Maximal anzuzeigende Anzahl der Aktionen, die gedit rückgängig machen und wiederherstellen kann. Verwenden Sie »-1« für eine unbegrenzte Anzahl an Aktionen. - - - - Maximum Number of Undo Actions - Maximum number of actions that gedit will be able to undo or redo. Use "-1" for unlimited number of actions. - - - - Максимальное количество действий Undo - Максимальное число действий, которые можно отменить или вернуть. "-1" означает неограниченное количество действий. - - - - - /schemas/apps/gedit-2/preferences/editor/wrap_mode/wrap_mode - /apps/gedit-2/preferences/editor/wrap_mode/wrap_mode - gedit - string - GTK_WRAP_WORD - - Line Wrapping Mode - Specifies how to wrap long lines in the editing area. - Use "GTK_WRAP_NONE" for no wrapping, "GTK_WRAP_WORD" for - wrapping at word boundaries, and "GTK_WRAP_CHAR" for wrapping - at individual character boundaries. Note that the values are - case-sensitive, so make sure they appear exactly as mentioned - here. - - - - Zeilenumbruchs-Modus - Gibt an, ab welcher Länge Zeilen im Editor-Bereich umgebrochen werden. Verwenden Sie »GTK_WRAP_NONE« für keinen Umbruch, »GTK_WRAP_WORD«, um den Zeilenumbruch an Wortgrenzen durchzufügen oder »GTK_WRAP_CHAR« für den Umbruch an einzelnen Zeichengrenzen. Hinweis: Bei den Werten wird zwischen Groß- und Kleinschreibung unterschieden. Verwenden Sie daher die Werte genau wie hier angegeben. - - - - Line Wrapping Mode - Specifies how to wrap long lines in the editing area. Use "GTK_WRAP_NONE" for no wrapping, "GTK_WRAP_WORD" for wrapping at word boundaries, and "GTK_WRAP_CHAR" for wrapping at individual character boundaries. Note that the values are case-sensitive, so make sure they appear exactly as mentioned here. - - - - Режим переноса строк - Определяет, как переносить длинные строки в области редактирования. Используйте "GTK_WRAP_NONE" для отключения переноса, "GTK_WRAP_WORD" для переноса по границе слов, и "GTK_WRAP_CHAR" для посимвольного переноса. Имейте в виду, что значения регистрозависимы и должны появляться точно в указанном виде. - - - - - /schemas/apps/gedit-2/preferences/editor/tabs/tabs_size - /apps/gedit-2/preferences/editor/tabs/tabs_size - gedit - int - 8 - - Tab Size - Specifies the number of spaces that should be displayed - instead of Tab characters. - - - - Größe von Tabulatoren - Gibt die Anzahl der Leerzeichen an, die anstelle von Tabulator-Zeichen angezeigt werden. - - - - Tab Size - Specifies the number of spaces that should be displayed instead of Tab characters. - - - - Размер табуляции - Определяет число пробелов, которые следует отображать вместо символа табуляции. - - - - - /schemas/apps/gedit-2/preferences/editor/tabs/insert_spaces - /apps/gedit-2/preferences/editor/tabs/insert_spaces - gedit - bool - FALSE - - Insert spaces - Whether gedit should insert spaces instead of tabs. - - - - Leerzeichen einfügen - Soll gedit Leerzeichen an Stelle von Tabulatoren verwenden? - - - - Insert spaces - Whether gedit should insert spaces instead of tabs. - - - - Вставлять пробелы - Следует ли вставлять пробелы вместо табуляций. - - - - - /schemas/apps/gedit-2/preferences/editor/auto_indent/auto_indent - /apps/gedit-2/preferences/editor/auto_indent/auto_indent - gedit - bool - FALSE - - Automatic indent - Whether gedit should enable automatic indentation. - - - - Automatische Einrückung - Soll gedit den Auto-Einzug verwenden? - - - - Automatic indent - Whether gedit should enable automatic indentation. - - - - Автоматический отступ - Должен ли gedit автоматически расставлять отступы. - - - - - /schemas/apps/gedit-2/preferences/editor/line_numbers/display_line_numbers - /apps/gedit-2/preferences/editor/line_numbers/display_line_numbers - gedit - bool - FALSE - - Display Line Numbers - Whether gedit should display line numbers in the editing - area. - - - - Zeilennummern anzeigen - Soll gedit Zeilennummern im Editor-Bereich anzeigen? - - - - Display Line Numbers - Whether gedit should display line numbers in the editing area. - - - - Отображать номера строк - Следует ли отображать номера строк в области редактирования. - - - - - /schemas/apps/gedit-2/preferences/editor/current_line/highlight_current_line - /apps/gedit-2/preferences/editor/current_line/highlight_current_line - gedit - bool - FALSE - - Highlight Current Line - Whether gedit should highlight the current line. - - - - Aktuelle Zeile hervorheben - Soll gedit die aktuelle Zeile hervorheben? - - - - Highlight Current Line - Whether gedit should highlight the current line. - - - - Подчёркивать текущую строку - Подсвечивать ли текущую строку. - - - - - /schemas/apps/gedit-2/preferences/editor/bracket_matching/bracket_matching - /apps/gedit-2/preferences/editor/bracket_matching/bracket_matching - gedit - bool - FALSE - - Highlight Matching Bracket - Whether gedit should highlight the bracket matching the selected one. - - - - Übereinstimmende Klammern hervorheben - Soll gedit die zur gewählten Klammer gehörende Klammer hervorheben? - - - - Highlight Matching Bracket - Whether gedit should highlight the bracket matching the selected one. - - - - Подчёркивать совпадающие скобки - Подсвечивать ли скобку, соответствующую выделенной. - - - - - /schemas/apps/gedit-2/preferences/editor/right_margin/display_right_margin - /apps/gedit-2/preferences/editor/right_margin/display_right_margin - gedit - bool - FALSE - - Display Right Margin - Whether gedit should display the right margin in the editing - area. - - - - Rechten Rand anzeigen - Soll gedit den rechten Rand im Editor-Bereich anzeigen? - - - - Display Right Margin - Whether gedit should display the right margin in the editing area. - - - - Отображать правую границу - Следует ли отображать правую границу в области редактирования. - - - - - /schemas/apps/gedit-2/preferences/editor/right_margin/right_margin_position - /apps/gedit-2/preferences/editor/right_margin/right_margin_position - gedit - int - 80 - - Right Margin Position - Specifies the position of the right margin. - - - - Position des rechten Rands - Gibt die Position des rechten Rands an. - - - - Right Margin Position - Specifies the position of the right margin. - - - - Положение правой границы - Указывает положение правой границы. - - - - - /schemas/apps/gedit-2/preferences/editor/smart_home_end/smart_home_end - /apps/gedit-2/preferences/editor/smart_home_end/smart_home_end - gedit - string - after - - Smart Home End - Specifies how the cursor moves when the HOME and END keys - are pressed. Use "DISABLED" to always move at the start/end of - the line, "AFTER" to move to the start/end of the line the first - time the keys are pressed and to the start/end of the text ignoring - whitespaces the second time the keys are pressed, "BEFORE" to - move to the start/end of the text before moving to the start/end - of the line and "ALWAYS" to always move to the start/end of the - text instead of the start/end of the line. - - - - Intelligentes Pos1/Ende - Gibt an, wie sich der Zeiger beim Drücken der Tasten »Pos1« und »Ende« verhalten soll. »DISABLED« bewegt ihn immer an den Anfang bzw. das Ende einer Zeile. »AFTER« bewegt ihn beim ersten Drücken an den Anfang bzw. das Ende einer Zeile, und beim zweiten Drücken an den Anfang bzw. das Ende des Textes, wobei Leerzeichen ignoriert werden. »BEFORE« bewegt ihn an den Anfang bzw. das Ende des Textes und anschließend an den Anfang bzw. das Ende der Zeile. »ALWAYS« bewegt ihn immer an den Anfang bzw. das Ende des Textes anstatt an den Anfang bzw. das Ende der Zeile. - - - - Smart Home End - Specifies how the cursor moves when the HOME and END keys are pressed. Use "DISABLED" to always move at the start/end of the line, "AFTER" to move to the start/end of the line the first time the keys are pressed and to the start/end of the text ignoring whitespaces the second time the keys are pressed, "BEFORE" to move to the start/end of the text before moving to the start/end of the line and "ALWAYS" to always move to the start/end of the text instead of the start/end of the line. - - - - Умные Home и End - Задаёт способ перемещения курсора при нажатии клавиш HOME и END. Если значение "DISABLED", то курсор перемещается в начало и конец строки соответственно, Если "AFTER", то курсор при первом нажатии перемещается в начало или конец строки, а при втором в начало или конец текста без учёта пробельных символов. Если "BEFORE", по сначала курсор перемещается в начало текста и, только затем, в начало или конец строки. Если "ALWAYS", курсор всегда перемещается в начало или конец текста. - - - - - /schemas/apps/gedit-2/preferences/ui/toolbar/toolbar_visible - /apps/gedit-2/preferences/ui/toolbar/toolbar_visible - gedit - bool - TRUE - - Toolbar is Visible - Whether the toolbar should be visible in editing windows. - - - - Werkzeugleiste ist sichtbar - Soll die Werkzeugleiste in Bearbeitungsfenstern sichtbar sein? - - - - Toolbar is Visible - Whether the toolbar should be visible in editing windows. - - - - Панель инструментов видима - Будет ли видна панель инструментов в окне редактирования. - - - - - /schemas/apps/gedit-2/preferences/ui/toolbar/toolbar_buttons_style - /apps/gedit-2/preferences/ui/toolbar/toolbar_buttons_style - gedit - string - GEDIT_TOOLBAR_SYSTEM - - Toolbar Buttons Style - Style for the toolbar buttons. Possible values are - "GEDIT_TOOLBAR_SYSTEM" to use the system's default style, - "GEDIT_TOOLBAR_ICONS" to display icons only, - "GEDIT_TOOLBAR_ICONS_AND_TEXT" to display both icons and text, and - "GEDIT_TOOLBAR_ICONS_BOTH_HORIZ" to display prioritized text beside icons. - Note that the values are case-sensitive, so make sure they - appear exactly as mentioned here. - - - - Knopfstil der Werkzeugleiste - Stil der Knöpfe in der Werkzeugleiste. Mögliche Werte sind »GEDIT_TOOLBAR_SYSTEM« für den vom System vorgegebenen Stil, »GEDIT_TOOLBAR_ICONS«, um nur Symbole anzuzeigen, »GEDIT_TOOLBAR_ICONS_AND_TEXT«, um Symbole und Text anzuzeigen sowie »GEDIT_TOOLBAR_ICONS_BOTH_HORIZ«, um wichtigen Text neben Symbolen anzuzeigen. Hinweis: Bei den Werten wird zwischen Groß- und Kleinschreibung unterschieden. Verwenden Sie daher die Werte genau wie hier angegeben. - - - - Toolbar Buttons Style - Style for the toolbar buttons. Possible values are "GEDIT_TOOLBAR_SYSTEM" to use the system's default style, "GEDIT_TOOLBAR_ICONS" to display icons only, "GEDIT_TOOLBAR_ICONS_AND_TEXT" to display both icons and text, and "GEDIT_TOOLBAR_ICONS_BOTH_HORIZ" to display prioritised text beside icons. Note that the values are case-sensitive, so make sure they appear exactly as mentioned here. - - - - Стиль кнопок панели инструментов - Определяет стиль для кнопок панели инструментов. Возможные значения: "GEDIT_TOOLBAR_SYSTEM" для использования исходных системных значений, "GEDIT_TOOLBAR_ICONS" для отображения только пиктограмм и "GEDIT_TOOLBAR_ICONS_AND_TEXT" для отображения пиктограмм и текста, "GEDIT_TOOLBAR_ICONS_BOTH_HORIZ" для отображения текста за значками. Имейте в виду, что значения регистрозависимы и должны появляться точно в указанном виде. - - - - - /schemas/apps/gedit-2/preferences/ui/statusbar/statusbar_visible - /apps/gedit-2/preferences/ui/statusbar/statusbar_visible - gedit - bool - TRUE - - Status Bar is Visible - Whether the status bar at the bottom of editing windows - should be visible. - - - - Statusleiste ist sichtbar - Soll die Statusleiste am unteren Rand des Bearbeitungsfensters sichtbar sein? - - - - Status Bar is Visible - Whether the status bar at the bottom of editing windows should be visible. - - - - Видимость строки состояния - Будет ли видна строка состояния окна редактирования. - - - - - /schemas/apps/gedit-2/preferences/ui/side_pane/side_pane_visible - /apps/gedit-2/preferences/ui/side_pane/side_pane_visible - gedit - bool - FALSE - - Side Pane is Visible - Whether the side pane at the left of editing windows - should be visible. - - - - Seitenleiste ist sichtbar - Soll die Seitenleiste am linken Rand des Bearbeitungsfensters sichtbar sein? - - - - Side Pane is Visible - Whether the side pane at the left of editing windows should be visible. - - - - Боковая панель видима - Будет ли видна боковая панель, расположенная слева от окна редактирования. - - - - - /schemas/apps/gedit-2/preferences/ui/bottom_panel/bottom_panel_visible - /apps/gedit-2/preferences/ui/bottom_panel/bottom_panel_visible - gedit - bool - FALSE - - Bottom Panel is Visible - Whether the bottom panel at the bottom of editing windows - should be visible. - - - - Fußleiste ist sichtbar - Soll die Fußleiste am unteren Rand des Bearbeitungsfensters sichtbar sein? - - - - Bottom Panel is Visible - Whether the bottom panel at the bottom of editing windows should be visible. - - - - Нижняя панель видима - Будет ли видна нижняя панель, расположенная ниже окна редактирования. - - - - - /schemas/apps/gedit-2/preferences/print/page/print_syntax_highlighting - /apps/gedit-2/preferences/print/page/print_syntax_highlighting - gedit - bool - TRUE - - Print Syntax Highlighting - Whether gedit should print syntax highlighting when - printing documents. - - - - Beim Drucken Syntax hervorheben - Soll gedit im Ausdruck die Syntax hervorheben? - - - - Print Syntax Highlighting - Whether gedit should print syntax highlighting when printing documents. - - - - Печатать подсветку синтаксиса - Следует ли печатать подсветку синтаксиса при печати документа. - - - - - /schemas/apps/gedit-2/preferences/print/page/print_header - /apps/gedit-2/preferences/print/page/print_header - gedit - bool - TRUE - - Print Header - Whether gedit should include a document header when - printing documents. - - - - Kopfzeilen drucken - Soll gedit Dokumenten-Kopfzeilen im Ausdruck verwenden? - - - - Print Header - Whether gedit should include a document header when printing documents. - - - - Печатать заголовки страниц - Следует ли печатать заголовок документа. - - - - - /schemas/apps/gedit-2/preferences/print/page/print_wrap_mode - /apps/gedit-2/preferences/print/page/print_wrap_mode - gedit - string - GTK_WRAP_WORD - - Printing Line Wrapping Mode - Specifies how to wrap long lines for printing. Use - "GTK_WRAP_NONE" for no wrapping, "GTK_WRAP_WORD" for wrapping - at word boundaries, and "GTK_WRAP_CHAR" for wrapping at - individual character boundaries. Note that the values are - case-sensitive, so make sure they appear exactly as mentioned - here. - - - - Zeilenumbruchs-Modus im Ausdruck - Gibt an, wie lange Zeilen im Ausdruck umgebrochen werden. Verwenden Sie »GTK_WRAP_NONE« für keinen Umbruch, »GTK_WRAP_WORD« für Umbruch an Wortgrenzen oder »GTK_WRAP_CHAR« für Umbruch bei individuellen Zeichengrenzen. Hinweis: Bei den Werten wird zwischen Groß- und Kleinschreibung unterschieden. Verwenden Sie daher die Werte genau wie hier angegeben. - - - - Printing Line Wrapping Mode - Specifies how to wrap long lines for printing. Use "GTK_WRAP_NONE" for no wrapping, "GTK_WRAP_WORD" for wrapping at word boundaries, and "GTK_WRAP_CHAR" for wrapping at individual character boundaries. Note that the values are case-sensitive, so make sure they appear exactly as mentioned here. - - - - Режим переноса строк при печати - Определяет, как переносить длинные строки при печати. Используйте "GTK_WRAP_NONE" для отключения переноса, "GTK_WRAP_WORD" для переноса по границе слов, и "GTK_WRAP_CHAR" для посимвольного переноса. Имейте в виду, что значения зависят от регистра и должны появляться точно в указанном виде. - - - - - /schemas/apps/gedit-2/preferences/print/page/print_line_numbers - /apps/gedit-2/preferences/print/page/print_line_numbers - gedit - int - 0 - - Print Line Numbers - If this value is 0, then no line numbers will be - inserted when printing a document. Otherwise, gedit will - print line numbers every such number of lines. - - - - Zeilennummern drucken - Wenn dieser Wert 0 ist, werden keine Zeilennummern im Ausdruck eines Dokuments eingefügt. Andernfalls wird gedit alle oben angegeben Zeilennummern einfügen. - - - - Print Line Numbers - If this value is 0, then no line numbers will be inserted when printing a document. Otherwise, gedit will print line numbers every such number of lines. - - - - Печатать номера строк - Если значение установлено в 0, номера строк не будут вставлены при печати документа. Иначе номера строк будут печататься для каждой строки. - - - - - /schemas/apps/gedit-2/preferences/print/fonts/print_font_body_pango - /apps/gedit-2/preferences/print/fonts/print_font_body_pango - gedit - string - - Monospace 9 - Body Font for Printing - Specifies the font to use for a document's body when - printing documents. - - - - Monospace 9 - Druckschrift für den Fließtext - Gibt die Schrift an, die zum Drucken des Fließtextes verwendet werden soll. - - - - Monospace 9 - Body Font for Printing - Specifies the font to use for a document's body when printing documents. - - - - Monospace 9 - Основной шрифт для печати - Определяет шрифт, используемый при печати тела документов. - - - - - /schemas/apps/gedit-2/preferences/print/fonts/print_font_header_pango - /apps/gedit-2/preferences/print/fonts/print_font_header_pango - gedit - string - - Sans 11 - Header Font for Printing - Specifies the font to use for page headers when printing - a document. This will only take effect if the "Print Header" - option is turned on. - - - - Sans 11 - Druck-Schrift für die Kopfzeilen - Gibt die Schrift an, die zum Drucken der Seiten-Kopfzeilen verwendet werden soll. Diese wird nur verwendet, wenn die »Kopfzeilen drucken«-Option aktiviert ist. - - - - Sans 11 - Header Font for Printing - Specifies the font to use for page headers when printing a document. This will only take effect if the "Print Header" option is turned on. - - - - Sans 11 - Шрифт заголовка для печати - Определяет шрифт, используемый при печати заголовков. Будет иметь эффект, только если параметр "Печатать заголовки страниц" включён. - - - - - /schemas/apps/gedit-2/preferences/print/fonts/print_font_numbers_pango - /apps/gedit-2/preferences/print/fonts/print_font_numbers_pango - gedit - string - - Sans 8 - Line Number Font for Printing - Specifies the font to use for line numbers when - printing. This will only take effect if the "Print Line - Numbers" option is non-zero. - - - - Sans 8 - Druck-Schrift für Zeilennummern - Gibt die Schrift an, die zum Drucken der Zeilennummern verwendet werden soll. Diese wird nur verwendet, wenn die »Zeilennummern drucken«-Option nicht Null ist. - - - - Sans 8 - Line Number Font for Printing - Specifies the font to use for line numbers when printing. This will only take effect if the "Print Line Numbers" option is non-zero. - - - - Sans 8 - Шрифт номера строк для печати - Определяет шрифт, используемый при печати номеров строк. Будет иметь эффект, только если параметр "Печатать номера строк" не равен нулю. - - - - - /schemas/apps/gedit-2/preferences/ui/recents/max_recents - /apps/gedit-2/preferences/ui/recents/max_recents - gedit - int - 5 - - Maximum Recent Files - Specifies the maximum number of recently opened files - that will be displayed in the "Recent Files" submenu. - - - - Maximal anzuzeigende zuletzt geöffnete Dateien - Gibt die maximale Anzahl der zuletzt geöffneten Dateien an, die im »Zuletzt geöffnete Dateien«-Untermenü angezeigt werden. - - - - Maximum Recent Files - Specifies the maximum number of recently opened files that will be displayed in the "Recent Files" submenu. - - - - Максимальное число последних файлов - Определяет число недавно использованных файлов, которые будут отображаться в подменю "Открыть последние файлы". - - - - - /schemas/apps/gedit-2/preferences/encodings/auto_detected - /apps/gedit-2/preferences/encodings/auto_detected - gedit - list - string - - [UTF-8,CURRENT,ISO-8859-15,UTF-16] - Automatically Detected Encodings - Sorted list of encodings used by gedit for automatically detecting the encoding of - a file. "CURRENT" represents the current locale encoding. Only recognized encodings are used. - - - - [UTF-8,CURRENT,ISO-8859-15,UTF-16] - Automatisch erkannte Zeichenkodierungen - Eine sortierte Liste der von gedit zur Auto-Erkennung der Zeichenkodierung eines Dokuments verwendete Zeichenkodierungen, wobei »CURRENT« die Zeichenkodierung der derzeitigen Standorteinstellungen ist. Es werden ausschließlich bekannte Zeichenkodierungen verwendet. - - - - [UTF-8,CURRENT,ISO-8859-15,UTF-16] - Automatically Detected Encodings - Sorted list of encodings used by gedit for automatically detecting the encoding of a file. "CURRENT" represents the current locale encoding. Only recognised encodings are used. - - - - [UTF-8,CURRENT,WINDOWS-1251,KOI8R,ISO-8859-5] - Кодировки, определяемые автоматически - Сортированный список кодировок, используемых редактором для автоопределения кодировки файла. «ТЕКУЩАЯ» — это кодировка локали. Используются только распознаваемые кодировки. - - - - - /schemas/apps/gedit-2/preferences/encodings/shown_in_menu - /apps/gedit-2/preferences/encodings/shown_in_menu - gedit - list - string - - [ISO-8859-15] - Encodings shown in menu - List of encodings shown in the Character Encoding menu in open/save file selector. - Only recognized encodings are used. - - - - [ISO-8859-15] - Im Menü angezeigte Zeichenkodierungen - Eine Liste der im Zeichenkodierungsmenü im Öffnen/Speichern-Dateiwähler anzuzeigenden Zeichenkodierungen. Es werden ausschließlich erkannte Zeichenkodierungen verwendet. - - - - [ISO-8859-15] - Encodings shown in menu - List of encodings shown in the Character Encoding menu in open/save file selector. Only recognised encodings are used. - - - - [CP866,IBM855,ISO-8859-5,KOI8R,WINDOWS-1251] - Кодировки, отображаемые в меню - Список кодировок, отображаемый в меню "Кодировка символов" диалога выбора файлов. Используются только распознаваемые кодировки. - - - - - /schemas/apps/gedit-2/preferences/syntax_highlighting/enable - /apps/gedit-2/preferences/syntax_highlighting/enable - gedit - bool - TRUE - - Enable Syntax Highlighting - Whether gedit should enable syntax highlighting. - - - - Syntax hervorheben - Soll gedit die Syntax hervorheben? - - - - Enable Syntax Highlighting - Whether gedit should enable syntax highlighting. - - - - Включить подсветку синтаксиса - Следует ли включить подсветку синтаксиса. - - - - - /schemas/apps/gedit-2/plugins/active-plugins - /apps/gedit-2/plugins/active-plugins - gedit - list - string - [docinfo,modelines,filebrowser,spell,time] - - Active plugins - List of active plugins. It contains the "Location" of the active plugins. See the .gedit-plugin file for obtaining - the "Location" of a given plugin. - - - - Aktive Plugins - Liste der aktiven Plugins. Sie enthält den Ort (»Location«) der aktiven Plugins. Schauen Sie in die Datei ».gedit-plugin«, um den Ort eines bestimmten Plugins zu erfahren. - - - - Active plugins - List of active plugins. It contains the "Location" of the active plugins. See the .gedit-plugin file for obtaining the "Location" of a given plugin. - - - - Активные модули - Список активных модулей. Он содержит "Адрес" активного модуля. См. файл .gedit-plugin для получения "адреса" данного модуля. - - - - - /schemas/apps/gedit-2/preferences/editor/save/writable_vfs_schemes - /apps/gedit-2/preferences/editor/save/writable_vfs_schemes - gedit - list - string - [dav,davs,ftp,sftp,smb,ssh] - - Writable VFS schemes - List of VFS schemes gedit supports in write mode. The 'file' scheme - is writable by default. - - - - Schreibbare VFS-Schemata - Liste der von gedit im Schreibmodus unterstützen VFS-Schemata. Das »file«-Schema ist standardmäßig schreibbar. - - - - Writable VFS schemes - List of VFS schemes gedit supports in write mode. The 'file' scheme is writeable by default. - - - - Схемы VFS, поддерживаемые при записи - Список схем VFS поддерживаемых gedit в режиме записи. Схема "file" поддерживает запись по умолчанию. - - - - - /schemas/apps/gedit-2/preferences/editor/cursor_position/restore_cursor_position - /apps/gedit-2/preferences/editor/cursor_position/restore_cursor_position - gedit - bool - TRUE - - Restore Previous Cursor Position - Whether gedit should restore the previous cursor position when a file is loaded. - - - - Vorherige Zeigerposition wiederherstellen - Soll gedit die vorherige Zeigerposition wiederherstellen wenn eine Datei geöffnet wird? - - - - Restore Previous Cursor Position - Whether gedit should restore the previous cursor position when a file is loaded. - - - - Восстанавливать предыдущую позицию курсора - Должен ли gedit восстанавливать предыдущую позицию курсора после загрузки файла. - - - - - /schemas/apps/gedit-2/preferences/editor/search_highlighting/enable - /apps/gedit-2/preferences/editor/search_highlighting/enable - gedit - bool - TRUE - - Enable Search Highlighting - Whether gedit should highlight all the occurrences of the searched text. - - - - Suchergebnisse hervorheben - Soll gedit alle Suchergebnisse hervorheben? - - - - Enable Search Highlighting - Whether gedit should highlight all the occurrences of the searched text. - - - - Включить подсветку поиска - Должен ли gedit подсвечивать все найденные при поиске совпадения. - - - - - diff --git a/gconf/schemas/geyes.schemas b/gconf/schemas/geyes.schemas deleted file mode 100644 index 01e8da0..0000000 --- a/gconf/schemas/geyes.schemas +++ /dev/null @@ -1,32 +0,0 @@ - - - - - /schemas/apps/geyes/prefs/theme_path - geyes_applet2 - string - - Directory in which the theme is located - - - - - Ordner, in dem sich das Thema befindet - - - - - Directory in which the theme is located - - - - - Каталог, где расположены темы - - - - - - - - \ No newline at end of file diff --git a/gconf/schemas/gksu.schemas b/gconf/schemas/gksu.schemas deleted file mode 100644 index e0ebff5..0000000 --- a/gconf/schemas/gksu.schemas +++ /dev/null @@ -1,116 +0,0 @@ - - - - - /schemas/apps/gksu/disable-grab - /apps/gksu/disable-grab - gksu - bool - false - - Disable keyboard and mouse grab - - Whether the keyboard and mouse grabbing should be turned - off. This will make it possible for other X applications to - listen to keyboard input events, thus making it not possible - to shield from malicious applications which may be running. - - - - - - /schemas/apps/gksu/force-grab - /apps/gksu/force-grab - gksu - bool - false - - Force keyboard and mouse grab - - Grab keyboard and mouse even if -g has been passed as argument - on the command line. - - - - - - /schemas/apps/gksu/sudo-mode - /apps/gksu/sudo-mode - gksu - bool - false - - Sudo mode - - Whether sudo should be the default backend method. This method - is otherwise accessed though the -S switch or by running 'gksudo' - instead of 'gksu'. - - - - - - /schemas/apps/gksu/prompt - /apps/gksu/prompt - gksu - bool - false - - Prompt for grabbing - - This option will make gksu prompt the user if he wants to have - the screen grabbed before entering the password. Notice that this - only has an effect if force-grab is disabled. - - - - - - /schemas/apps/gksu/display-no-pass-info - /apps/gksu/display-no-pass-info - gksu - bool - true - - Display information message when no password is needed - - This option determines whether a message dialog will be displayed - informing the user that the program is being run without the need - of a password being asked for some reason. - - - - - - /schemas/apps/gksu/save-to-keyring - /apps/gksu/save-to-keyring - gksu - bool - true - - Save password to gnome-keyring - - gksu can save the password you type to the gnome-keyring so you'll - not be asked everytime - - - - - - /schemas/apps/gksu/save-keyring - /apps/gksu/save-keyring - gksu - string - session - - Keyring to which passwords will be saved - - The name of the keyring gksu should use. Usual values are "session", - which saves the password for the session, and "default", which saves the - password with no timeout. - - - - - - diff --git a/gconf/schemas/glchess.schemas b/gconf/schemas/glchess.schemas deleted file mode 100644 index c8f45dc..0000000 --- a/gconf/schemas/glchess.schemas +++ /dev/null @@ -1,626 +0,0 @@ - - - - - /schemas/apps/glchess/width - /apps/glchess/width - glchess - int - 500 - - The width of the window - The width of the main window in pixels. - - - - Die Breite des Fensters - Die angeforderte Breite des Hauptfensters in Pixel. - - - - The width of the window - The width of the main window in pixels. - - - - Ширина окна - Требуемая ширина основного окна, в пикселях. - - - - - /schemas/apps/glchess/height - /apps/glchess/height - glchess - int - 550 - - The height of the window - The height of the main window in pixels. - - - - Die Höhe des Fensters - Die angeforderte Höhe des Hauptfensters in Pixel. - - - - The height of the window - The height of the main window in pixels. - - - - Высота окна - Требуемая высота основного, в пикселях. - - - - - /schemas/apps/glchess/maximised - /apps/glchess/maximised - glchess - bool - FALSE - - A flag to enable maximised mode - A flag to enable maximised mode - - - - Legt fest, ob das Fenster maximiert angezeigt wird - Legt fest, ob das Fenster maximiert angezeigt wird - - - - A flag to enable maximised mode - A flag to enable maximised mode - - - - Включить режим развёрнутого окна - Включить режим развёрнутого окна - - - - - /schemas/apps/glchess/fullscreen - /apps/glchess/fullscreen - glchess - bool - FALSE - - A flag to enable fullscreen mode - A flag to enable fullscreen mode - - - - Legt fest, ob der Vollbildmodus aktiviert wird - Legt fest, ob der Vollbildmodus aktiviert wird - - - - A flag to enable fullscreen mode - A flag to enable fullscreen mode - - - - Работать в полноэкранном режиме - Работать в полноэкранном режиме - - - - - /schemas/apps/glchess/enable_networking - /apps/glchess/enable_networking - glchess - bool - TRUE - - A flag to enable network game support - A flag to enable network game support - - - - Aktiviert die Unterstützung für Netzwerkspiele - Aktiviert die Unterstützung für Netzwerkspiele - - - - A flag to enable network game support - A flag to enable network game support - - - - Включить поддержку сетевой игры - Включить поддержку сетевой игры - - - - - /schemas/apps/glchess/promotion_type - /apps/glchess/promotion_type - glchess - string - queen - - The piece to promote pawns to - The piece to promote to when a human player moves a pawn to the far rank. Can be one of: 'queen', 'knight', 'rook', 'bishop'. - - - - Die Figur, zu der der Bauer aufsteigt - Die aufzusteigende Figur, wenn ein menschlicher Spieler einen Bauern in die entfernteste Reihe bewegt. Mögliche Werte sind: »queen« (Dame), »knight« (Springer), »rook« (Turm), »bishop« (Läufer) - - - - The piece to promote pawns to - The piece to promote to when a human player moves a pawn to the far rank. Can be one of: 'queen', 'knight', 'rook', 'bishop'. - - - - Фигура, в которую нужно превращать пешку при проходе - Фигура, в которую нужно превращать пешку при проходе. Возможные значения: 'queen', 'knight', 'rook', 'bishop'. - - - - - /schemas/apps/glchess/show_3d - /apps/glchess/show_3d - glchess - bool - FALSE - - A flag to enable 3D mode - A flag to enable 3D mode - - - - Legt fest, ob der 3D-Modus aktiviert wird - Legt fest, ob der 3D-Modus aktiviert wird - - - - A flag to enable 3D mode - A flag to enable 3D mode - - - - Включить трёхмерный режим - Включить трёхмерный режим - - - - - /schemas/apps/glchess/show_3d_smooth - /apps/glchess/show_3d_smooth - glchess - bool - FALSE - - A flag to smooth (anti-alias) the 3D display - A flag to smooth (anti-alias) the 3D display - - - - Legt fest, ob die 3D-Anzeige geglättet wird (Anti-Alias) - Legt fest, ob die 3D-Anzeige geglättet wird (Anti-Alias) - - - - A flag to smooth (anti-alias) the 3D display - A flag to smooth (anti-alias) the 3D display - - - - Сглаживать трёхмерное поле - Сглаживать трёхмерное поле - - - - - /schemas/apps/glchess/show_move_hints - /apps/glchess/show_move_hints - glchess - bool - TRUE - - A flag to enable move hints - A flag to enable move hints - - - - Legt fest, ob Zug-Tipps angezeigt werden - Legt fest, ob Zug-Tipps angezeigt werden - - - - A flag to enable move hints - A flag to enable move hints - - - - Включить подсказки ходов - Включить подсказки ходов - - - - - /schemas/apps/glchess/show_numbering - /apps/glchess/show_numbering - glchess - bool - FALSE - - A flag to enable board numbering - A flag to enable board numbering - - - - Legt fest, ob die Tischnummerierung aktiviert wird - Legt fest, ob die Tischnummerierung aktiviert wird - - - - A flag to enable board numbering - A flag to enable board numbering - - - - Включить нумерацию полей - Включить нумерацию полей - - - - - /schemas/apps/glchess/show_comments - /apps/glchess/show_comments - glchess - bool - FALSE - - A flag to show move comments - A flag to show move comments - - - - Legt fest, ob Zug-Kommentare angezeigt werden - Legt fest, ob Zug-Kommentare angezeigt werden - - - - A flag to show move comments - A flag to show move comments - - - - Показывать комментарии к ходам - Показывать комментарии к ходам - - - - - /schemas/apps/glchess/show_history - /apps/glchess/show_history - glchess - bool - TRUE - - A flag to enable the move history browser - A flag to enable the move history browser - - - - Legt fest, ob die Zug-Historie angezeigt wird - Legt fest, ob die Zug-Historie angezeigt wird - - - - A flag to enable the move history browser - A flag to enable the move history browser - - - - Показать или скрыть просмотр истории - Показать или скрыть просмотр истории - - - - - /schemas/apps/glchess/show_toolbar - /apps/glchess/show_toolbar - glchess - bool - FALSE - - A flag to enable the toolbar - A flag to enable the toolbar - - - - Legt fest, ob die Werkzeugleiste angezeigt wird - Legt fest, ob die Werkzeugleiste angezeigt wird - - - - A flag to enable the toolbar - A flag to enable the toolbar - - - - Показать или скрыть панель инструментов - Показать или скрыть панель инструментов - - - - - /schemas/apps/glchess/save_directory - /apps/glchess/save_directory - glchess - string - - - The directory to open the save game dialog in - The directory to open the save game dialog in - - - - Das Verzeichnis, in dem der »Spiel speichern«-Dialog geöffnet werden soll - Das Verzeichnis, in dem der »Spiel speichern«-Dialog geöffnet werden soll - - - - The directory to open the save game dialogue in - The directory to open the save game dialogue in - - - - Каталог в котором открывать диалог сохранения игры - Каталог в котором открывать диалог сохранения игры - - - - - /schemas/apps/glchess/load_directory - /apps/glchess/load_directory - glchess - string - - - The directory to open the load game dialog in - The directory to open the load game dialog in - - - - Das Verzeichnis, in dem der »Spiel laden«-Dialog geöffnet werden soll - Das Verzeichnis, in dem der »Spiel laden«-Dialog geöffnet werden soll - - - - The directory to open the load game dialogue in - The directory to open the load game dialogue in - - - - Каталог в котором открывать диалог открытия игры - Каталог в котором открывать диалог открытия игры - - - - - /schemas/apps/glchess/move_format - /apps/glchess/move_format - glchess - string - human - - The format to display moves in - The format to display moves in, can be either 'human' (human readable), 'lan' (long algebraic notation) or 'san' (standard algebraic notation) - - - - Das Format, in dem Züge dargestellt werden - Das Format, in dem Züge dargestellt werden, kann die folgenden Werte annehmen: »human« (lesbar), »lan« (algebraische Notation) oder »san« (verkürzte algebraische Notation) - - - - The format to display moves in - The format to display moves in, can be either 'human' (human readable), 'lan' (long algebraic notation) or 'san' (standard algebraic notation) - - - - Формат для отображения ходов - Формат для отображения ходов. Возможные значения 'human' (приспособлен для чтения), 'lan' (длинная алгебраическая запись) или 'san' (стандартная алгебраическая запись). - - - - - /schemas/apps/glchess/board_view - /apps/glchess/board_side - glchess - string - human - - The board side to display - The side of the board that is in the foreground, either 'white', 'black', 'current' (the current player), 'human' (the side of the current human player) or 'facetoface' (suitable for players on each side of screen, e.g. handhelds) - - - - Die anzuzeigende Spielflächenseite - Die Brettseite, die im Vordergrund ist. Mögliche Werte sind: »white« (weiß), »black« (schwarz), »current« (des aktuellen Spielers), »human« (des aktuellen menschlichen Spielers) oder »facetoface« (geeignet für mehrere Spieler an einem Bildschirm, z.B. Handhelds) - - - - The board side to display - The side of the board that is in the foreground, either 'white', 'black', 'current' (the current player), 'human' (the side of the current human player) or 'facetoface' (suitable for players on each side of screen, e.g. handhelds) - - - - Сторона игрового поля - Сторона доски на переднем плане - 'white' (белые), 'black' (черные), 'current' (сторона игрока который делает ход), 'human' (сторона игрока-человека) или 'facetoface' (удобно для двух человек). - - - - - /schemas/apps/glchess/new_game_dialog/move_time - /apps/glchess/new_game_dialog/move_time - glchess - int - 0 - - The amount of time each player has to move in new games - The amount of time each player has to move in new games - - - - Die Zeit, die jeder Spieler maximal zum Ziehen in neuen Spielen hat - Die Zeit, die jeder Spieler maximal zum Ziehen in neuen Spielen hat - - - - The amount of time each player has to move in new games - The amount of time each player has to move in new games - - - - Промежуток времени на выполнение хода в новых играх - Промежуток времени на выполнение хода в новых играх - - - - - /schemas/apps/glchess/new_game_dialog/allow_spectators - /apps/glchess/new_game_dialog/allow_spectators - glchess - bool - TRUE - - A flag to allow remote players to watch new games - A flag to allow remote players to watch new games - - - - Legt fest, ob entfernte Personen bei neuen Spielen zuzusehen dürfen - Legt fest, ob entfernte Personen bei neuen Spielen zuzusehen dürfen - - - - A flag to allow remote players to watch new games - A flag to allow remote players to watch new games - - - - Позволять удалённым игрокам наблюдать за игрой - Позволять удалённым игрокам наблюдать за игрой - - - - - /schemas/apps/glchess/new_game_dialog/white/type - /apps/glchess/new_game_dialog/white/type - glchess - string - - - The default player type for white in new games - The default player type for white in new games - - - - Der Standardspieler für weiß in neuen Spielen - Der Standardspieler für weiß in neuen Spielen - - - - The default player type for white in new games - The default player type for white in new games - - - - Игрок за белых по умолчанию - Игрок за белых по умолчанию - - - - - /schemas/apps/glchess/new_game_dialog/white/difficulty - /apps/glchess/new_game_dialog/white/difficulty - glchess - string - - - The default player difficulty for white in new games - The default player difficulty for white in new games - - - - Der Standard-Schwierigkeitsgrad für Weiß in neuen Spielen - Der Standard-Schwierigkeitsgrad für Weiß in neuen Spielen - - - - The default player difficulty for white in new games - The default player difficulty for white in new games - - - - Сложность игры за белых в новых играх - Сложность игры за белых в новых играх - - - - - /schemas/apps/glchess/new_game_dialog/black/type - /apps/glchess/new_game_dialog/black/type - glchess - string - - - The default player type for black in new games - The default player type for black in new games - - - - Der Standardspieler für schwarz in neuen Spielen - Der Standardspieler für schwarz in neuen Spielen - - - - The default player type for black in new games - The default player type for black in new games - - - - Игрок за чёрных по умолчанию - Игрок за чёрных по умолчанию - - - - - /schemas/apps/glchess/new_game_dialog/black/difficulty - /apps/glchess/new_game_dialog/black/difficulty - glchess - string - - - The default player difficulty for black in new games - The default player difficulty for black in new games - - - - Der Standard-Schwierigkeitsgrad für Schwarz in neuen Spielen - Der Standard-Schwierigkeitsgrad für Schwarz in neuen Spielen - - - - The default player difficulty for black in new games - The default player difficulty for black in new games - - - - Сложность игры за чёрных в новых играх - Сложность игры за чёрных в новых играх - - - - - diff --git a/gconf/schemas/glines.schemas b/gconf/schemas/glines.schemas deleted file mode 100644 index e53a06d..0000000 --- a/gconf/schemas/glines.schemas +++ /dev/null @@ -1,196 +0,0 @@ - - - - - /schemas/apps/glines/preferences/size - /apps/glines/preferences/size - glines - int - 2 - - Playing field size - Playing field size. 1=Small, 2=Medium, 3=Large. Any other value is invalid. - - - - Spielfeldgröße - Spielfeldgröße. 1=Klein, 2=Mittel, 3=Groß. Jeder andere Wert ist ungültig. - - - - Playing field size - Playing field size. 1=Small, 2=Medium, 3=Large. Any other value is invalid. - - - - Размер игрового поля - Размер игрового поля. 1 - маленькое, 2 - среднее, 3 - большое. Другие значения некорректны. - - - - - /schemas/apps/glines/preferences/ball_theme - /apps/glines/preferences/ball_theme - glines - string - balls.svg - - Ball style - Ball style. The filename of the images to use for the balls. - - - - Kugelstil - Kugelstil. Der Dateiname der für die Kugeln zu verwendenden Bilder. - - - - Ball style - Ball style. The filename of the images to use for the balls. - - - - Стиль шариков - Стиль шариков. Это имя файла изображения шариков. - - - - - /schemas/apps/glines/preferences/background_color - /apps/glines/preferences/background_color - glines - string - #7590AE - - Background color - Background color. The hex specification of the background color. - - - - Hintergrundfarbe - Hintergrundfarbe. Die Hex-Angabe der Hintergrundfarbe. - - - - Background colour - Background colour. The hex specification of the background colour. - - - - Цвет фона - Цвет фона. Это шестнадцатеричное число, определяющее цвет фона. - - - - - /schemas/apps/glines/preferences/move_timeout - /apps/glines/preferences/move_timeout - glines - int - 100 - - Time between moves - Time between moves in milliseconds. - - - - Zeit zwischen Zügen - Zeit zwischen Zügen in Millisekunden - - - - Time between moves - Time between moves in milliseconds. - - - - Время между прыжками шариков - Время между прыжками шарика в миллисекундах - - - - - /schemas/apps/glines/saved/score - /apps/glines/saved/score - glines - int - 0 - - Game score - Game score from last saved session. - - - - Spielpunkte - Spielpunkte aus der letzten gespeicherten Sitzung. - - - - Game score - Game score from last saved session. - - - - Результаты игры - Таблица результатов из последнего сохраненного сеанса игры. - - - - - /schemas/apps/glines/saved/field - /apps/glines/saved/field - glines - string - - - Game field - Game field from last saved session. - - - - Spielfeld - Spielfeld aus der letzten gespeicherten Sitzung. - - - - Game field - Game field from last saved session. - - - - Игровое поле - Игровое поле из последнего сохраненного сеанса игры. - - - - - /schemas/apps/glines/saved/preview - /apps/glines/saved/preview - glines - string - - - Game preview - Game preview from last saved session. - - - - Spielvorschau - Vorschau auf Spiel aus der letzten gespeicherten Sitzung. - - - - Game preview - Game preview from last saved session. - - - - Просмотр игры - Просмотр игры из последнего сохраненного сеанса игры. - - - - - - - diff --git a/gconf/schemas/gnect.schemas b/gconf/schemas/gnect.schemas deleted file mode 100644 index edcc673..0000000 --- a/gconf/schemas/gnect.schemas +++ /dev/null @@ -1,222 +0,0 @@ - - - - - /schemas/apps/gnect/player1 - /apps/gnect/player1 - gnect - int - 0 - - Level of Player One - Zero is human; one through three correspond to the level of the computer player. - - - - Level von Spieler 1 - Null ist menschlich, eins bis drei entspricht dem Level des Computergegner. - - - - Level of Player One - Zero is human; one through three correspond to the level of the computer player. - - - - Уровень первого Игрока - Ноль обозначает игрока-человека, а значение от единицы до тройки обозначает уровень мастерства компьютерного игрока. - - - - - /schemas/apps/gnect/player2 - /apps/gnect/player2 - gnect - int - 1 - - Level of Player Two - Zero is human; one through three correspond to the level of the computer player. - - - - Level von Spieler 2 - Null ist menschlich, eins bis drei entspricht dem Level des Computergegner. - - - - Level of Player Two - Zero is human; one through three correspond to the level of the computer player. - - - - Уровень второго Игрока - Ноль обозначает игрока-человека, а значение от единицы до тройки обозначает уровень мастерства компьютерного игрока. - - - - - /schemas/apps/gnect/theme_id - /apps/gnect/theme_id - gnect - int - 3 - - Theme ID - A number specifying the preferred theme. - - - - Themenkennung - Eine Zahl, die das bevorzugte Thema angibt. - - - - Theme ID - A number specifying the preferred theme. - - - - Идентификатор темы - Число, указывающее выбранную тему. - - - - - /schemas/apps/gnect/animate - /apps/gnect/animate - gnect - bool - TRUE - - Animate - Whether or not to use animation. - - - - Animieren - Sollen Animationen angezeigt werden? - - - - Animate - Whether to use animation. - - - - Анимировать - Использовать анимацию или нет. - - - - - /schemas/apps/gnect/sound - /apps/gnect/sound - gnect - bool - TRUE - - Sound - Whether or not to play event sounds. - - - - Ton - Legt fest, ob bei bestimmten Ereignissen Klänge abgespielt werden. - - - - Sound - Whether to play event sounds. - - - - Звук - Воспроизводить звуки событий или нет. - - - - - /schemas/apps/gnect/keyleft - /apps/gnect/keyleft - gnect - int - 65361 - - Move left - Key press to move left. - - - - Nach links bewegen - Tastendruck zum Verschieben nach links. - - - - Move left - Key press to move left. - - - - Влево - Клавиша для перемещения влево. - - - - - /schemas/apps/gnect/keyright - /apps/gnect/keyright - gnect - int - 65363 - - Move right - Key press to move right. - - - - Nach rechts bewegen - Tastendruck zum Verschieben nach rechts. - - - - Move right - Key press to move right. - - - - Вправо - Клавиша для перемещения вправо. - - - - - /schemas/apps/gnect/keydrop - /apps/gnect/keydrop - gnect - int - 65364 - - Drop marble - Key press to drop a marble. - - - - Murmel abwerfen - Tastendruck zum Abwerfen einer Murmel - - - - Drop marble - Key press to drop a marble. - - - - Сбросить вкрапления - Нажмите клавишу для сброса вкрапления. - - - - - - diff --git a/gconf/schemas/gnibbles.schemas b/gconf/schemas/gnibbles.schemas deleted file mode 100644 index b838dae..0000000 --- a/gconf/schemas/gnibbles.schemas +++ /dev/null @@ -1,1164 +0,0 @@ - - - - - /schemas/apps/gnibbles/preferences/players - /apps/gnibbles/preferences/players - gnibbles - int - 1 - - Number of human players - Number of human players. - - - - Anzahl der menschlichen Spieler - Anzahl der menschlichen Spieler. - - - - Number of human players - Number of human players. - - - - Число игроков - Число игроков. - - - - - /schemas/apps/gnibbles/preferences/ai - /apps/gnibbles/preferences/ai - gnibbles - int - 3 - - Number of AI players - Number of AI players. - - - - Anzahl der Computerspieler - Anzahl der Computerspieler. - - - - Number of AI players - Number of AI players. - - - - Число компьютерных игроков - Число компьютерных игроков. - - - - - /schemas/apps/gnibbles/preferences/speed - /apps/gnibbles/preferences/speed - gnibbles - int - 3 - - Game speed - Game speed (1=fast, 4=slow). - - - - Spielgeschwindigkeit - Spielgeschwindigkeit (1=schnell, 4=schnell). - - - - Game speed - Game speed (1=fast, 4=slow). - - - - Скорость игры - Скорость игры (1=быстрая, 4=медленная). - - - - - /schemas/apps/gnibbles/preferences/fakes - /apps/gnibbles/preferences/fakes - gnibbles - bool - FALSE - - Enable fake bonuses - Enable fake bonuses. - - - - Unechte Boni aktivieren - Unechte Boni aktivieren. - - - - Enable fake bonuses - Enable fake bonuses. - - - - Разрешить фальшивые бонусы - Разрешить фальшивые бонусы. - - - - - /schemas/apps/gnibbles/preferences/random - /apps/gnibbles/preferences/random - gnibbles - bool - FALSE - - Play levels in random order - Play levels in random order. - - - - Level in zufälliger Reihenfolge spielen - Level in zufälliger Reihenfolge spielen. - - - - Play levels in random order - Play levels in random order. - - - - Случайно предлагать уровни - Случайно предлагать уровни. - - - - - /schemas/apps/gnibbles/preferences/start_level - /apps/gnibbles/preferences/start_level - gnibbles - int - 1 - - Game level to start on - Game level to start on. - - - - Spiellevel, mit dem begonnen werden soll - Spiellevel, mit dem begonnen werden soll. - - - - Game level to start on - Game level to start on. - - - - Уровень начала игры - Уровень начала игры. - - - - - /schemas/apps/gnibbles/preferences/sound - /apps/gnibbles/preferences/sound - gnibbles - bool - FALSE - - Enable sounds - Enable sounds. - - - - Klang aktivieren - Klang aktivieren. - - - - Enable sounds - Enable sounds. - - - - Включить звуки - Включить звуки. - - - - - /schemas/apps/gnibbles/preferences/tile_size - /apps/gnibbles/preferences/tile_size - gnibbles - int - 7 - - Size of game tiles - Size of game tiles. - - - - Größe der Spielkacheln - Größe der Spielkacheln. - - - - Size of game tiles - Size of game tiles. - - - - Размер узора - Размер узора. - - - - - /schemas/apps/gnibbles/preferences/worm/0/color - /apps/gnibbles/preferences/worm/0/color - gnibbles - string - red - - Color to use for worm - Color to use for worm. - - - - Wurmfarbe - Für den Wurm zu verwendende Farbe. - - - - Colour to use for worm - Colour to use for worm. - - - - Цвет червяка - Цвет червяка. - - - - /schemas/apps/gnibbles/preferences/worm/0/move_relative - /apps/gnibbles/preferences/worm/0/move_relative - gnibbles - bool - FALSE - - Use relative movement - Use relative movement (ie. left or right only). - - - - Relative Bewegungen verwenden - Relative Bewegungen verwenden (also lediglich rechts/links). - - - - Use relative movement - Use relative movement (ie. left or right only). - - - - Использовать относительное перемещение - Использовать относительное перемещение (т.е. только влево или вправо). - - - - /schemas/apps/gnibbles/preferences/worm/0/key_up - /apps/gnibbles/preferences/worm/0/key_up - gnibbles - string - Up - - Move up - Key to use for motion up. - - - - Nach oben bewegen - Zum Bewegen nach oben zu verwendende Taste. - - - - Move up - Key to use for motion up. - - - - Двигаться вверх - Кнопка для движения вверх. - - - - /schemas/apps/gnibbles/preferences/worm/0/key_down - /apps/gnibbles/preferences/worm/0/key_down - gnibbles - string - Down - - Move down - Key to use for motion down. - - - - Nach unten bewegen - Zum Bewegen nach unten zu verwendende Taste. - - - - Move down - Key to use for motion down. - - - - Двигаться вниз - Кнопка для движения вниз. - - - - /schemas/apps/gnibbles/preferences/worm/0/key_left - /apps/gnibbles/preferences/worm/0/key_left - gnibbles - string - Left - - Move left - Key to use for motion left. - - - - Nach links bewegen - Zum Bewegen nach links zu verwendende Taste. - - - - Move left - Key to use for motion left. - - - - Влево - Кнопка для движения влево. - - - - /schemas/apps/gnibbles/preferences/worm/0/key_right - /apps/gnibbles/preferences/worm/0/key_right - gnibbles - string - Right - - Move right - Key to use for motion right. - - - - Nach rechts bewegen - Zum Bewegen nach rechts zu verwendende Taste. - - - - Move right - Key to use for motion right. - - - - Вправо - Кнопка для движения вправо. - - - - - /schemas/apps/gnibbles/preferences/worm/1/color - /apps/gnibbles/preferences/worm/1/color - gnibbles - string - green - - Color to use for worm - Color to use for worm. - - - - Wurmfarbe - Für den Wurm zu verwendende Farbe. - - - - Colour to use for worm - Colour to use for worm. - - - - Цвет червяка - Цвет червяка. - - - - /schemas/apps/gnibbles/preferences/worm/1/move_relative - /apps/gnibbles/preferences/worm/1/move_relative - gnibbles - bool - FALSE - - Use relative movement - Use relative movement (ie. left or right only). - - - - Relative Bewegungen verwenden - Relative Bewegungen verwenden (also lediglich rechts/links). - - - - Use relative movement - Use relative movement (ie. left or right only). - - - - Использовать относительное перемещение - Использовать относительное перемещение (т.е. только влево или вправо). - - - - /schemas/apps/gnibbles/preferences/worm/1/key_up - /apps/gnibbles/preferences/worm/1/key_up - gnibbles - string - Up - - Move up - Key to use for motion up. - - - - Nach oben bewegen - Zum Bewegen nach oben zu verwendende Taste. - - - - Move up - Key to use for motion up. - - - - Двигаться вверх - Кнопка для движения вверх. - - - - /schemas/apps/gnibbles/preferences/worm/1/key_down - /apps/gnibbles/preferences/worm/1/key_down - gnibbles - string - Down - - Move down - Key to use for motion down. - - - - Nach unten bewegen - Zum Bewegen nach unten zu verwendende Taste. - - - - Move down - Key to use for motion down. - - - - Двигаться вниз - Кнопка для движения вниз. - - - - /schemas/apps/gnibbles/preferences/worm/1/key_left - /apps/gnibbles/preferences/worm/1/key_left - gnibbles - string - Left - - Move left - Key to use for motion left. - - - - Nach links bewegen - Zum Bewegen nach links zu verwendende Taste. - - - - Move left - Key to use for motion left. - - - - Влево - Кнопка для движения влево. - - - - /schemas/apps/gnibbles/preferences/worm/1/key_right - /apps/gnibbles/preferences/worm/1/key_right - gnibbles - string - Right - - Move right - Key to use for motion right. - - - - Nach rechts bewegen - Zum Bewegen nach rechts zu verwendende Taste. - - - - Move right - Key to use for motion right. - - - - Вправо - Кнопка для движения вправо. - - - - - /schemas/apps/gnibbles/preferences/worm/2/color - /apps/gnibbles/preferences/worm/2/color - gnibbles - string - blue - - Color to use for worm - Color to use for worm. - - - - Wurmfarbe - Für den Wurm zu verwendende Farbe. - - - - Colour to use for worm - Colour to use for worm. - - - - Цвет червяка - Цвет червяка. - - - - /schemas/apps/gnibbles/preferences/worm/2/move_relative - /apps/gnibbles/preferences/worm/2/move_relative - gnibbles - bool - FALSE - - Use relative movement - Use relative movement (ie. left or right only). - - - - Relative Bewegungen verwenden - Relative Bewegungen verwenden (also lediglich rechts/links). - - - - Use relative movement - Use relative movement (ie. left or right only). - - - - Использовать относительное перемещение - Использовать относительное перемещение (т.е. только влево или вправо). - - - - /schemas/apps/gnibbles/preferences/worm/2/key_up - /apps/gnibbles/preferences/worm/2/key_up - gnibbles - string - Up - - Move up - Key to use for motion up. - - - - Nach oben bewegen - Zum Bewegen nach oben zu verwendende Taste. - - - - Move up - Key to use for motion up. - - - - Двигаться вверх - Кнопка для движения вверх. - - - - /schemas/apps/gnibbles/preferences/worm/2/key_down - /apps/gnibbles/preferences/worm/2/key_down - gnibbles - string - Down - - Move down - Key to use for motion down. - - - - Nach unten bewegen - Zum Bewegen nach unten zu verwendende Taste. - - - - Move down - Key to use for motion down. - - - - Двигаться вниз - Кнопка для движения вниз. - - - - /schemas/apps/gnibbles/preferences/worm/2/key_left - /apps/gnibbles/preferences/worm/2/key_left - gnibbles - string - Left - - Move left - Key to use for motion left. - - - - Nach links bewegen - Zum Bewegen nach links zu verwendende Taste. - - - - Move left - Key to use for motion left. - - - - Влево - Кнопка для движения влево. - - - - /schemas/apps/gnibbles/preferences/worm/2/key_right - /apps/gnibbles/preferences/worm/2/key_right - gnibbles - string - Right - - Move right - Key to use for motion right. - - - - Nach rechts bewegen - Zum Bewegen nach rechts zu verwendende Taste. - - - - Move right - Key to use for motion right. - - - - Вправо - Кнопка для движения вправо. - - - - - /schemas/apps/gnibbles/preferences/worm/3/color - /apps/gnibbles/preferences/worm/3/color - gnibbles - string - yellow - - Color to use for worm - Color to use for worm. - - - - Wurmfarbe - Für den Wurm zu verwendende Farbe. - - - - Colour to use for worm - Colour to use for worm. - - - - Цвет червяка - Цвет червяка. - - - - /schemas/apps/gnibbles/preferences/worm/3/move_relative - /apps/gnibbles/preferences/worm/3/move_relative - gnibbles - bool - FALSE - - Use relative movement - Use relative movement (ie. left or right only). - - - - Relative Bewegungen verwenden - Relative Bewegungen verwenden (also lediglich rechts/links). - - - - Use relative movement - Use relative movement (ie. left or right only). - - - - Использовать относительное перемещение - Использовать относительное перемещение (т.е. только влево или вправо). - - - - /schemas/apps/gnibbles/preferences/worm/3/key_up - /apps/gnibbles/preferences/worm/3/key_up - gnibbles - string - Up - - Move up - Key to use for motion up. - - - - Nach oben bewegen - Zum Bewegen nach oben zu verwendende Taste. - - - - Move up - Key to use for motion up. - - - - Двигаться вверх - Кнопка для движения вверх. - - - - /schemas/apps/gnibbles/preferences/worm/3/key_down - /apps/gnibbles/preferences/worm/3/key_down - gnibbles - string - Down - - Move down - Key to use for motion down. - - - - Nach unten bewegen - Zum Bewegen nach unten zu verwendende Taste. - - - - Move down - Key to use for motion down. - - - - Двигаться вниз - Кнопка для движения вниз. - - - - /schemas/apps/gnibbles/preferences/worm/3/key_left - /apps/gnibbles/preferences/worm/3/key_left - gnibbles - string - Left - - Move left - Key to use for motion left. - - - - Nach links bewegen - Zum Bewegen nach links zu verwendende Taste. - - - - Move left - Key to use for motion left. - - - - Влево - Кнопка для движения влево. - - - - /schemas/apps/gnibbles/preferences/worm/3/key_right - /apps/gnibbles/preferences/worm/3/key_right - gnibbles - string - Right - - Move right - Key to use for motion right. - - - - Nach rechts bewegen - Zum Bewegen nach rechts zu verwendende Taste. - - - - Move right - Key to use for motion right. - - - - Вправо - Кнопка для движения вправо. - - - - - /schemas/apps/gnibbles/preferences/worm/4/color - /apps/gnibbles/preferences/worm/4/color - gnibbles - string - cyan - - Color to use for worm - Color to use for worm. - - - - Wurmfarbe - Für den Wurm zu verwendende Farbe. - - - - Colour to use for worm - Colour to use for worm. - - - - Цвет червяка - Цвет червяка. - - - - /schemas/apps/gnibbles/preferences/worm/4/move_relative - /apps/gnibbles/preferences/worm/4/move_relative - gnibbles - bool - FALSE - - Use relative movement - Use relative movement (ie. left or right only). - - - - Relative Bewegungen verwenden - Relative Bewegungen verwenden (also lediglich rechts/links). - - - - Use relative movement - Use relative movement (ie. left or right only). - - - - Использовать относительное перемещение - Использовать относительное перемещение (т.е. только влево или вправо). - - - - /schemas/apps/gnibbles/preferences/worm/4/key_up - /apps/gnibbles/preferences/worm/4/key_up - gnibbles - string - Up - - Move up - Key to use for motion up. - - - - Nach oben bewegen - Zum Bewegen nach oben zu verwendende Taste. - - - - Move up - Key to use for motion up. - - - - Двигаться вверх - Кнопка для движения вверх. - - - - /schemas/apps/gnibbles/preferences/worm/4/key_down - /apps/gnibbles/preferences/worm/4/key_down - gnibbles - string - Down - - Move down - Key to use for motion down. - - - - Nach unten bewegen - Zum Bewegen nach unten zu verwendende Taste. - - - - Move down - Key to use for motion down. - - - - Двигаться вниз - Кнопка для движения вниз. - - - - /schemas/apps/gnibbles/preferences/worm/4/key_left - /apps/gnibbles/preferences/worm/4/key_left - gnibbles - string - Left - - Move left - Key to use for motion left. - - - - Nach links bewegen - Zum Bewegen nach links zu verwendende Taste. - - - - Move left - Key to use for motion left. - - - - Влево - Кнопка для движения влево. - - - - /schemas/apps/gnibbles/preferences/worm/4/key_right - /apps/gnibbles/preferences/worm/4/key_right - gnibbles - string - Right - - Move right - Key to use for motion right. - - - - Nach rechts bewegen - Zum Bewegen nach rechts zu verwendende Taste. - - - - Move right - Key to use for motion right. - - - - Вправо - Кнопка для движения вправо. - - - - - /schemas/apps/gnibbles/preferences/worm/5/color - /apps/gnibbles/preferences/worm/5/color - gnibbles - string - purple - - Color to use for worm - Color to use for worm. - - - - Wurmfarbe - Für den Wurm zu verwendende Farbe. - - - - Colour to use for worm - Colour to use for worm. - - - - Цвет червяка - Цвет червяка. - - - - /schemas/apps/gnibbles/preferences/worm/5/move_relative - /apps/gnibbles/preferences/worm/5/move_relative - gnibbles - bool - FALSE - - Use relative movement - Use relative movement (ie. left or right only). - - - - Relative Bewegungen verwenden - Relative Bewegungen verwenden (also lediglich rechts/links). - - - - Use relative movement - Use relative movement (ie. left or right only). - - - - Использовать относительное перемещение - Использовать относительное перемещение (т.е. только влево или вправо). - - - - /schemas/apps/gnibbles/preferences/worm/5/key_up - /apps/gnibbles/preferences/worm/5/key_up - gnibbles - string - Up - - Move up - Key to use for motion up. - - - - Nach oben bewegen - Zum Bewegen nach oben zu verwendende Taste. - - - - Move up - Key to use for motion up. - - - - Двигаться вверх - Кнопка для движения вверх. - - - - /schemas/apps/gnibbles/preferences/worm/5/key_down - /apps/gnibbles/preferences/worm/5/key_down - gnibbles - string - Down - - Move down - Key to use for motion down. - - - - Nach unten bewegen - Zum Bewegen nach unten zu verwendende Taste. - - - - Move down - Key to use for motion down. - - - - Двигаться вниз - Кнопка для движения вниз. - - - - /schemas/apps/gnibbles/preferences/worm/5/key_left - /apps/gnibbles/preferences/worm/5/key_left - gnibbles - string - Left - - Move left - Key to use for motion left. - - - - Nach links bewegen - Zum Bewegen nach links zu verwendende Taste. - - - - Move left - Key to use for motion left. - - - - Влево - Кнопка для движения влево. - - - - /schemas/apps/gnibbles/preferences/worm/5/key_right - /apps/gnibbles/preferences/worm/5/key_right - gnibbles - string - Right - - Move right - Key to use for motion right. - - - - Nach rechts bewegen - Zum Bewegen nach rechts zu verwendende Taste. - - - - Move right - Key to use for motion right. - - - - Вправо - Кнопка для движения вправо. - - - - - - diff --git a/gconf/schemas/gnobots2.schemas b/gconf/schemas/gnobots2.schemas deleted file mode 100644 index 6d2581a..0000000 --- a/gconf/schemas/gnobots2.schemas +++ /dev/null @@ -1,521 +0,0 @@ - - - - - /schemas/apps/gnobots2/preferences/show_toolbar - /apps/gnobots2/preferences/show_toolbar - gnobots2 - bool - TRUE - - Show toolbar - Show toolbar. A standard option for toolbars. - - - - Werkzeugleiste anzeigen - Werkzeugleiste anzeigen. Eine Standardoption für Werkzeugleisten. - - - - Show toolbar - Show toolbar. A standard option for toolbars. - - - - Показывать панель инструментов - Показывать панель инструментов. Стандартная настройка для интерфейса. - - - - - - /schemas/apps/gnobots2/preferences/theme - /apps/gnobots2/preferences/theme - gnobots2 - string - robots - - Robot image theme - Robot image theme. The theme of the images to use for the robots. - - - - Bildthema für Roboter - Bildthema für Roboter. Das für die Roboter zu verwendende Bildthema. - - - - Robot image theme - Robot image theme. The theme of the images to use for the robots. - - - - Тема игры Роботы - Тема игры Роботы. Это используемый набор изображений роботов в игре. - - - - - /schemas/apps/gnobots2/preferences/background_color - /apps/gnobots2/preferences/background_color - gnobots2 - string - #7590AE - - Background color - Background color. The hex specification of the background color. - - - - Hintergrundfarbe - Hintergrundfarbe. Die Hex-Angabe der Hintergrundfarbe. - - - - Background colour - Background colour. The hex specification of the background colour. - - - - Цвет фона - Цвет фона. Это шестнадцатеричное число, определяющее цвет фона. - - - - - /schemas/apps/gnobots2/preferences/configuration - /apps/gnobots2/preferences/configuration - gnobots2 - string - classic_robots - - Game type - Game type. The name of the game variation to use. - - - - Spieltyp - Spieltyp. Der Name der zu verwendenden Spielvariation. - - - - Game type - Game type. The name of the game variation to use. - - - - Тип игры - Тип игры. Название используемого варианта игры. - - - - - /schemas/apps/gnobots2/preferences/use_safe_moves - /apps/gnobots2/preferences/use_safe_moves - gnobots2 - bool - TRUE - - Use safe moves - Use safe moves. The safe moves option will help you to avoid being killed due to a mistake. If you try to make a move that would lead to your death when there is a safe move available you will not be allowed to proceed. - - - - Sichere Züge verwenden - Sichere Züge verwenden. Sichere Züge helfen Ihnen dabei, zu vermeiden, aufgrund eines Fehler getötet zu werden. Sobald Sie versuchen, einen Zug auszuführen, der Sie in den Tod führen würde, wenn es einen sicheren Zug gibt, dürfen Sie nicht fortfahren. - - - - Use safe moves - Use safe moves. The safe moves option will help you to avoid being killed due to a mistake. If you try to make a move that would lead to your death when there is a safe move available you will not be allowed to proceed. - - - - Использовать безопасные ходы - Использовать безопасные ходы. Параметр использования безопасных ходов помогает вам спастись от безвременной кончины из-за ошибок в тактике. Если вы попробуете сделать неудачный ход, ведущий вас прямо в могилу - и при этом есть безопасный ход, то игра не даст вам ошибиться. - - - - - /schemas/apps/gnobots2/preferences/use_super_safe_moves - /apps/gnobots2/preferences/use_super_safe_moves - gnobots2 - bool - TRUE - - Use super safe moves - Use super safe moves. The player is alerted when there is no safe move and the only option is to teleport out. - - - - Extrem sichere Züge verwenden - Extrem sichere Züge verwenden. Der Spieler wird gewarnt, falls es keine sicheren Züge gibt und die einzige Möglichkeit ist, sich zu hinauszuteleportieren. - - - - Use super safe moves - Use super safe moves. The player is alerted when there is no safe move and the only option is to teleport out. - - - - Использовать особо безопасные ходы - Использовать особо безопасные ходы. Игрок предупреждается, если больше нет безопасных ходов и срочно необходима телепортация. - - - - - /schemas/apps/gnobots2/preferences/enable_sound - /apps/gnobots2/preferences/enable_sound - gnobots2 - bool - TRUE - - Enable game sounds - Enable game sounds. Play sounds for various events throughout the game. - - - - Klänge im Spiel aktivieren - Klänge im Spiel aktivieren. Klänge für verschiedenste Ereignisse im gesamten Spiel wiedergeben. - - - - Enable game sounds - Enable game sounds. Play sounds for various events throughout the game. - - - - Включить звуки игры - Включить звуки игры. Воспроизводит звуки при разных событиях в игре. - - - - - /schemas/apps/gnobots2/preferences/key00 - /apps/gnobots2/preferences/key00 - gnobots2 - string - KP_Home - - Key to move NW - The name of the key used to move north-west. The name is a standard X key name. - - - - Taste zum Bewegen nach NW - Der Name der zum Bewegen nach Nordosten verwendeten Taste im Standard-X-Tastennamenformat. - - - - Key to move NW - The name of the key used to move north-west. The name is a standard X key name. - - - - Клавиша для перемещения влево и вверх. - Клавиша для движения влево и вверх.Значение должно быть стандартным именем клавиши в X Window - - - - - /schemas/apps/gnobots2/preferences/key01 - /apps/gnobots2/preferences/key01 - gnobots2 - string - KP_Up - - Key to move N - The name of the key used to move north. The name is a standard X key name. - - - - Taste zum Bewegen nach N - Der Name der zum Bewegen nach Norden verwendeten Taste im Standard-X-Tastennamenformat. - - - - Key to move N - The name of the key used to move north. The name is a standard X key name. - - - - Клавиша для перемещения вверх. - Клавиша для движения вверх.Значение должно быть стандартным именем клавиши в X Window - - - - - /schemas/apps/gnobots2/preferences/key02 - /apps/gnobots2/preferences/key02 - gnobots2 - string - KP_Page_Up - - Key to move NE - The name of the key used to move north-east. The name is a standard X key name. - - - - Taste zum Bewegen nach NO - Der Name der zum Bewegen nach Nordosten verwendeten Taste im Standard-X-Tastennamenformat. - - - - Key to move NE - The name of the key used to move north-east. The name is a standard X key name. - - - - Клавиша для перемещения вправо и вверх. - Клавиша для движения вправо и вверх.Значение должно быть стандартным именем клавиши в X Window - - - - - /schemas/apps/gnobots2/preferences/key03 - /apps/gnobots2/preferences/key03 - gnobots2 - string - KP_Left - - Key to move W - The name of the key used to move west. The name is a standard X key name. - - - - Taste zum Bewegen nach W - Der Name der zum Bewegen nach Westen verwendeten Taste im Standard-X-Tastennamenformat. - - - - Key to move W - The name of the key used to move west. The name is a standard X key name. - - - - Клавиша для перемещения влево. - Клавиша для движения влево.Значение должно быть стандартным именем клавиши в X Window - - - - - /schemas/apps/gnobots2/preferences/key04 - /apps/gnobots2/preferences/key04 - gnobots2 - string - KP_Begin - - Key to hold - The name of the key used to hold still. The name is a standard X key name. - - - - Taste zum Verharren - Der Name der zum Verharren verwendeten Taste im Standard-X-Tastennamenformat. - - - - Key to hold - The name of the key used to hold still. The name is a standard X key name. - - - - Клавиша, чтобы остаться на месте - Клавиша, чтобы оставаться на месте.Значение должно быть стандартным именем клавиши в X Window - - - - - /schemas/apps/gnobots2/preferences/key05 - /apps/gnobots2/preferences/key05 - gnobots2 - string - KP_Right - - Key to move E - The name of the key used to move east. The name is a standard X key name. - - - - Taste zum Bewegen nach O - Der Name der zum Bewegen nach Osten verwendeten Taste im Standard-X-Tastennamenformat. - - - - Key to move E - The name of the key used to move east. The name is a standard X key name. - - - - Клавиша для перемещения вправо. - Клавиша для движения вправо.Значение должно быть стандартным именем клавиши в X Window - - - - - /schemas/apps/gnobots2/preferences/key06 - /apps/gnobots2/preferences/key06 - gnobots2 - string - KP_End - - Key to move SW - The name of the key used to move south-west. The name is a standard X key name. - - - - Taste zum Bewegen nach SW - Der Name der zum Bewegen nach Südwesten verwendeten Taste im Standard-X-Tastennamenformat. - - - - Key to move SW - The name of the key used to move south-west. The name is a standard X key name. - - - - Клавиша для перемещения влево и вниз. - Клавиша для движения влево и вниз.Значение должно быть стандартным именем клавиши в X Window - - - - - /schemas/apps/gnobots2/preferences/key07 - /apps/gnobots2/preferences/key07 - gnobots2 - string - KP_Down - - Key to move S - The name of the key used to move south. The name is a standard X key name. - - - - Taste zum Bewegen nach S - Der Name der zum Bewegen nach Süden verwendeten Taste im Standard-X-Tastennamenformat. - - - - Key to move S - The name of the key used to move south. The name is a standard X key name. - - - - Клавиша для перемещения вниз. - Клавиша для движения вниз.Значение должно быть стандартным именем клавиши в X Window - - - - - /schemas/apps/gnobots2/preferences/key08 - /apps/gnobots2/preferences/key08 - gnobots2 - string - KP_Page_Down - - Key to move SE - The name of the key used to move south-east. The name is a standard X key name. - - - - Taste zum Bewegen nach SO - Der Name der zum Bewegen nach Südosten verwendeten Taste im Standard-X-Tastennamenformat. - - - - Key to move SE - The name of the key used to move south-east. The name is a standard X key name. - - - - Клавиша для перемещения вправо и вниз. - Клавиша для движения вправо и вниз.Значение должно быть стандартным именем клавиши в X Window - - - - - /schemas/apps/gnobots2/preferences/key09 - /apps/gnobots2/preferences/key09 - gnobots2 - string - KP_Add - - Key to teleport - The name of the key used to teleport safely (if possible). The name is a standard X key name. - - - - Taste zum Teleportieren - Der Name der zum sicheren Teleport (falls möglich) verwendeten Taste im Standard-X-Tastennamenformat. - - - - Key to teleport - The name of the key used to teleport safely (if possible). The name is a standard X key name. - - - - Клавиша для телепортации - Клавиша для безопасной телепортации (если такая возможна).Значение должно быть стандартным именем клавиши в X Window - - - - - /schemas/apps/gnobots2/preferences/key10 - /apps/gnobots2/preferences/key10 - gnobots2 - string - KP_Multiply - - Key to teleport randomly - The name of the key used to teleport randomly. The name is a standard X key name. - - - - Taste zum Zufallsteleport - Der Name der zum Zufallsteleport verwendeten Taste im Standard-X-Tastennamenformat. - - - - Key to teleport randomly - The name of the key used to teleport randomly. The name is a standard X key name. - - - - Клавиша для случайной телепортации - Клавиша для случайной телепортации.Значение должно быть стандартным именем клавиши в X Window - - - - - /schemas/apps/gnobots2/preferences/key11 - /apps/gnobots2/preferences/key11 - gnobots2 - string - KP_Enter - - Key to wait - The name of the key used to wait. The name is a standard X key name. - - - - Taste zum Warten - Der Name der zum Warten verwendeten Taste im Standard-X-Tastennamenformat. - - - - Key to wait - The name of the key used to wait. The name is a standard X key name. - - - - Клавиша для ожидания - Клавиша для ожидания.Значение должно быть стандартным именем клавиши в X Window - - - - - - - diff --git a/gconf/schemas/gnome-audio-profiles.schemas b/gconf/schemas/gnome-audio-profiles.schemas deleted file mode 100644 index 635196a..0000000 --- a/gconf/schemas/gnome-audio-profiles.schemas +++ /dev/null @@ -1,1269 +0,0 @@ - - - - - - /schemas/system/gstreamer/0.10/audio/global/profile_list - /system/gstreamer/0.10/audio/global/profile_list - gnome-media - list - string - [cdlossy,cdlossless,aac,mp2,mp3,voicelossy,voicelossless] - - List of profiles - - List of audio recording profiles. The list contains - strings naming subdirectories relative to - /system/gstreamer/0.10/audio/profiles. - - - - - Profilliste - - - - - List of profiles - - - - - Список профилей - - - - - - - /schemas/system/gstreamer/0.10/audio/profiles/name - gnome-media - string - - - A short name for the audio profile - - A short name for the audio profile, to be used in selections - and uniquely identifying the profile. - - - - - Ein Kurzname für das Audio-Profil - Ein kurzer Name für das Audio-Profil, der zum Auswählen verwendet wird und das Profil eindeutig identifiziert. - - - - A short name for the audio profile - A short name for the audio profile, to be used in selections and uniquely identifying the profile. - - - - Краткое имя для этого аудио-профиля - Краткое имя для этого аудио-профиля, используемое для выбора и уникальной идентификации профиля. - - - - - /schemas/system/gstreamer/0.10/audio/profiles/description - gnome-media - string - - - A description for the audio profile - - A description of the profile, containing more information and - describing when to use this profile. - - - - - Eine Beschreibung des Audio-Profils - Eine Profilbeschreibung, die weitere Informationen enthält und beschreibt, wann dieses Profil eingesetzt werden sollte. - - - - A description for the audio profile - A description of the profile, containing more information and describing when to use this profile. - - - - Описание аудио-профиля - Описание профиля, содержащее дополнительную информацию и использование профиля. - - - - - /schemas/system/gstreamer/0.10/audio/profiles/pipeline - gnome-media - string - - - The partial GStreamer pipeline used - - A partial GStreamer pipeline to use for this profile. - - - - - Die zu verwendende unvollständige GStreamer-Weiterleitung - Eine unvollständige, für dieses Profil zu verwendende, GStreamer-Weiterleitung. - - - - The partial GStreamer pipeline used - A partial GStreamer pipeline to use for this profile. - - - - Используемый частичный канал - Частичный канал для использования с этим профилем. - - - - - /schemas/system/gstreamer/0.10/audio/profiles/extension - gnome-media - string - - - The default file extension for this profile - - A filename extension to be used when storing files encoded - with this profile. - - - - - Die voreingestellte Dateiendung für dieses Profil - Eine Dateiendung, die zum Speichern von mit diesem Profil kodierten Dateien verwendet werden soll. - - - - The default file extension for this profile - A filename extension to be used when storing files encoded with this profile. - - - - Расширение файла по умолчанию для этого профиля - Расширение файла, используемое для сохранения файлов, закодированных этим профилем. - - - - - /schemas/system/gstreamer/0.10/audio/profiles/active - gnome-media - bool - true - - Whether this profile is to be used - - Whether to use and display this profile. - - - - - Dieses Profil verwenden? - Soll dieses Profil verwendet und angezeigt werden? - - - - Whether this profile is to be used - Whether to use and display this profile. - - - - Используется ли данный профиль - Использовать и показывать ли данный профиль. - - - - - - - /schemas/system/gstreamer/0.10/audio/profiles/cdlossy/name - /system/gstreamer/0.10/audio/profiles/cdlossy/name - gnome-media - string - - CD Quality, Lossy - A short name for the audio profile - - A short name for the audio profile, to be used in selections - and uniquely identifying the profile. - - - - - CD-Qualität, verlustbehaftet - Ein Kurzname für das Audio-Profil - Ein kurzer Name für das Audio-Profil, der zum Auswählen verwendet wird und das Profil eindeutig identifiziert. - - - - CD Quality, Lossy - A short name for the audio profile - A short name for the audio profile, to be used in selections and uniquely identifying the profile. - - - - CD-качество, с потерями - Краткое имя для этого аудио-профиля - Краткое имя для этого аудио-профиля, используемое для выбора и уникальной идентификации профиля. - - - - - /schemas/system/gstreamer/0.10/audio/profiles/cdlossy/description - /system/gstreamer/0.10/audio/profiles/cdlossy/description - gnome-media - string - - Used for converting to CD-quality audio, but with a lossy compression codec. Use this for CD extraction and radio recordings. - A description for the audio profile - - A description of the profile, containing more information and - describing when to use this profile. - - - - - Wird zum Konvertieren von Audio-Daten in CD-Qualität verwendet, allerdings mit einem erlustbehafteten Kompressions-Codec. Verwenden Sie dies für das Rippen von CDs und Radio-Aufnahmen. - Eine Beschreibung des Audio-Profils - Eine Profilbeschreibung, die weitere Informationen enthält und beschreibt, wann dieses Profil eingesetzt werden sollte. - - - - Used for converting to CD-quality audio, but with a lossy compression codec. Use this for CD extraction and radio recordings. - A description for the audio profile - A description of the profile, containing more information and describing when to use this profile. - - - - Используется для преобразования в звук CD-качества, но с потерями. Используйте для оцифровки CD и записи радио. - Описание аудио-профиля - Описание профиля, содержащее дополнительную информацию и использование профиля. - - - - - /schemas/system/gstreamer/0.10/audio/profiles/cdlossy/pipeline - /system/gstreamer/0.10/audio/profiles/cdlossy/pipeline - gnome-media - string - audio/x-raw-float,rate=44100,channels=2 ! vorbisenc name=enc quality=0.5 ! oggmux - - The partial GStreamer pipeline used - - A partial GStreamer pipeline to use for this profile. - - - - - Die zu verwendende unvollständige GStreamer-Weiterleitung - Eine unvollständige, für dieses Profil zu verwendende, GStreamer-Weiterleitung. - - - - The partial GStreamer pipeline used - A partial GStreamer pipeline to use for this profile. - - - - Используемый частичный канал - Частичный канал для использования с этим профилем. - - - - - /schemas/system/gstreamer/0.10/audio/profiles/cdlossy/extension - /system/gstreamer/0.10/audio/profiles/cdlossy/extension - gnome-media - string - ogg - - The default file extension for this profile - - A filename extension to be used when storing files encoded - with this profile. - - - - - Die voreingestellte Dateiendung für dieses Profil - Eine Dateiendung, die zum Speichern von mit diesem Profil kodierten Dateien verwendet werden soll. - - - - The default file extension for this profile - A filename extension to be used when storing files encoded with this profile. - - - - Расширение файла по умолчанию для этого профиля - Расширение файла, используемое для сохранения файлов, закодированных этим профилем. - - - - - /schemas/system/gstreamer/0.10/audio/profiles/active - /system/gstreamer/0.10/audio/profiles/cdlossy/active - gnome-media - bool - true - - Whether this profile is to be used - - Whether to use and display this profile. - - - - - Dieses Profil verwenden? - Soll dieses Profil verwendet und angezeigt werden? - - - - Whether this profile is to be used - Whether to use and display this profile. - - - - Используется ли данный профиль - Использовать и показывать ли данный профиль. - - - - - - /schemas/system/gstreamer/0.10/audio/profiles/cdlossless/name - /system/gstreamer/0.10/audio/profiles/cdlossless/name - gnome-media - string - - CD Quality, Lossless - A short name for the audio profile - - A short name for the audio profile, to be used in selections - and uniquely identifying the profile. - - - - - CD-Qualität, verlustfrei - Ein Kurzname für das Audio-Profil - Ein kurzer Name für das Audio-Profil, der zum Auswählen verwendet wird und das Profil eindeutig identifiziert. - - - - CD Quality, Lossless - A short name for the audio profile - A short name for the audio profile, to be used in selections and uniquely identifying the profile. - - - - CD-качество, без потерь - Краткое имя для этого аудио-профиля - Краткое имя для этого аудио-профиля, используемое для выбора и уникальной идентификации профиля. - - - - - /schemas/system/gstreamer/0.10/audio/profiles/cdlossless/description - /system/gstreamer/0.10/audio/profiles/cdlossless/description - gnome-media - string - - Used for converting to CD-quality audio, but with a lossless compression codec. Use this if you later want to edit the file or burn it to CD. - A description for the audio profile - - A description of the profile, containing more information and - describing when to use this profile. - - - - - Wird zum Konvertieren von Audio-Daten in CD-Qualität verwendet, und zwar mit einem verlustbehafteten Kompressions-Codec. Verwenden Sie dies, falls Sie die Datei später bearbeiten oder auf CD brennen wollen. - Eine Beschreibung des Audio-Profils - Eine Profilbeschreibung, die weitere Informationen enthält und beschreibt, wann dieses Profil eingesetzt werden sollte. - - - - Used for converting to CD-quality audio, but with a lossless compression codec. Use this if you later want to edit the file or burn it to CD. - A description for the audio profile - A description of the profile, containing more information and describing when to use this profile. - - - - Используется для преобразования звука CD-качества, со сжатием без потерь. Используйте это сжатие, если вы захотите позже отредактировать файл или записать его на CD. - Описание аудио-профиля - Описание профиля, содержащее дополнительную информацию и использование профиля. - - - - - /schemas/system/gstreamer/0.10/audio/profiles/cdlossless/pipeline - /system/gstreamer/0.10/audio/profiles/cdlossless/pipeline - gnome-media - string - audio/x-raw-int,rate=44100,channels=2 ! flacenc name=enc - - The partial GStreamer pipeline used - - A partial GStreamer pipeline to use for this profile. - - - - - Die zu verwendende unvollständige GStreamer-Weiterleitung - Eine unvollständige, für dieses Profil zu verwendende, GStreamer-Weiterleitung. - - - - The partial GStreamer pipeline used - A partial GStreamer pipeline to use for this profile. - - - - Используемый частичный канал - Частичный канал для использования с этим профилем. - - - - - /schemas/system/gstreamer/0.10/audio/profiles/cdlossless/extension - /system/gstreamer/0.10/audio/profiles/cdlossless/extension - gnome-media - string - flac - - The default file extension for this profile - - A filename extension to be used when storing files encoded - with this profile. - - - - - Die voreingestellte Dateiendung für dieses Profil - Eine Dateiendung, die zum Speichern von mit diesem Profil kodierten Dateien verwendet werden soll. - - - - The default file extension for this profile - A filename extension to be used when storing files encoded with this profile. - - - - Расширение файла по умолчанию для этого профиля - Расширение файла, используемое для сохранения файлов, закодированных этим профилем. - - - - - /schemas/system/gstreamer/0.10/audio/profiles/active - /system/gstreamer/0.10/audio/profiles/cdlossless/active - gnome-media - bool - true - - Whether this profile is to be used - - Whether to use and display this profile. - - - - - Dieses Profil verwenden? - Soll dieses Profil verwendet und angezeigt werden? - - - - Whether this profile is to be used - Whether to use and display this profile. - - - - Используется ли данный профиль - Использовать и показывать ли данный профиль. - - - - - - - /schemas/system/gstreamer/0.10/audio/profiles/voicelossless/name - /system/gstreamer/0.10/audio/profiles/voicelossless/name - gnome-media - string - - Voice, Lossless - A short name for the audio profile - - A short name for the audio profile, to be used in selections - and uniquely identifying the profile. - - - - - Sprache, verlustfrei - Ein Kurzname für das Audio-Profil - Ein kurzer Name für das Audio-Profil, der zum Auswählen verwendet wird und das Profil eindeutig identifiziert. - - - - Voice, Lossless - A short name for the audio profile - A short name for the audio profile, to be used in selections and uniquely identifying the profile. - - - - Голос, без потерь - Краткое имя для этого аудио-профиля - Краткое имя для этого аудио-профиля, используемое для выбора и уникальной идентификации профиля. - - - - - /schemas/system/gstreamer/0.10/audio/profiles/voicelossless/description - /system/gstreamer/0.10/audio/profiles/voicelossless/description - gnome-media - string - - Used for converting to lossless voice-quality audio. Use this for recording and editing speech. - A description for the audio profile - - A description of the profile, containing more information and - describing when to use this profile. - - - - - Wird zum verlustfreien Konvertieren von Audio-Daten in Sprachqualität verwendet. Verwenden Sie dies für Sprachaufnahmen, die Sie bearbeiten möchten. - Eine Beschreibung des Audio-Profils - Eine Profilbeschreibung, die weitere Informationen enthält und beschreibt, wann dieses Profil eingesetzt werden sollte. - - - - Used for converting to lossless voice-quality audio. Use this for recording and editing speech. - A description for the audio profile - A description of the profile, containing more information and describing when to use this profile. - - - - Преобразование звука голосового качества без потерь. Используется для записи и редактирования речи. - Описание аудио-профиля - Описание профиля, содержащее дополнительную информацию и использование профиля. - - - - - /schemas/system/gstreamer/0.10/audio/profiles/voicelossless/pipeline - /system/gstreamer/0.10/audio/profiles/voicelossless/pipeline - gnome-media - string - audio/x-raw-int,rate=22050,channels=1 ! wavenc name=enc - - The partial GStreamer pipeline used - - A partial GStreamer pipeline to use for this profile. - - - - - Die zu verwendende unvollständige GStreamer-Weiterleitung - Eine unvollständige, für dieses Profil zu verwendende, GStreamer-Weiterleitung. - - - - The partial GStreamer pipeline used - A partial GStreamer pipeline to use for this profile. - - - - Используемый частичный канал - Частичный канал для использования с этим профилем. - - - - - /schemas/system/gstreamer/0.10/audio/profiles/voicelossless/extension - /system/gstreamer/0.10/audio/profiles/voicelossless/extension - gnome-media - string - wav - - The default file extension for this profile - - A filename extension to be used when storing files encoded - with this profile. - - - - - Die voreingestellte Dateiendung für dieses Profil - Eine Dateiendung, die zum Speichern von mit diesem Profil kodierten Dateien verwendet werden soll. - - - - The default file extension for this profile - A filename extension to be used when storing files encoded with this profile. - - - - Расширение файла по умолчанию для этого профиля - Расширение файла, используемое для сохранения файлов, закодированных этим профилем. - - - - - /schemas/system/gstreamer/0.10/audio/profiles/active - /system/gstreamer/0.10/audio/profiles/voicelossless/active - gnome-media - bool - true - - Whether this profile is to be used - - Whether to use and display this profile. - - - - - Dieses Profil verwenden? - Soll dieses Profil verwendet und angezeigt werden? - - - - Whether this profile is to be used - Whether to use and display this profile. - - - - Используется ли данный профиль - Использовать и показывать ли данный профиль. - - - - - - /schemas/system/gstreamer/0.10/audio/profiles/voicelossy/name - /system/gstreamer/0.10/audio/profiles/voicelossy/name - gnome-media - string - - Voice, Lossy - A short name for the audio profile - - A short name for the audio profile, to be used in selections - and uniquely identifying the profile. - - - - - Sprache, verlustbehaftet - Ein Kurzname für das Audio-Profil - Ein kurzer Name für das Audio-Profil, der zum Auswählen verwendet wird und das Profil eindeutig identifiziert. - - - - Voice, Lossy - A short name for the audio profile - A short name for the audio profile, to be used in selections and uniquely identifying the profile. - - - - Голос, с потерями - Краткое имя для этого аудио-профиля - Краткое имя для этого аудио-профиля, используемое для выбора и уникальной идентификации профиля. - - - - - /schemas/system/gstreamer/0.10/audio/profiles/voicelossy/description - /system/gstreamer/0.10/audio/profiles/voicelossy/description - gnome-media - string - - Used for converting to lossy voice-quality audio. Use this for recording speech that doesn't need to be edited. - A description for the audio profile - - A description of the profile, containing more information and - describing when to use this profile. - - - - - Wird zum verlustbehafteten Konvertieren von Audio-Daten in Sprachqualität verwendet. Verwenden Sie dies für Sprachaufnahmen, die Sie nicht bearbeiten möchten. - Eine Beschreibung des Audio-Profils - Eine Profilbeschreibung, die weitere Informationen enthält und beschreibt, wann dieses Profil eingesetzt werden sollte. - - - - Used for converting to lossy voice-quality audio. Use this for recording speech that doesn't need to be edited. - A description for the audio profile - A description of the profile, containing more information and describing when to use this profile. - - - - Преобразование звука голосового качества с потерями. Используйте для записи речи, которую не придётся редактировать. - Описание аудио-профиля - Описание профиля, содержащее дополнительную информацию и использование профиля. - - - - - /schemas/system/gstreamer/0.10/audio/profiles/voicelossy/pipeline - /system/gstreamer/0.10/audio/profiles/voicelossy/pipeline - gnome-media - string - audio/x-raw-int,rate=32000,channels=1 ! speexenc name=enc ! oggmux - - The partial GStreamer pipeline used - - A partial GStreamer pipeline to use for this profile. - - - - - Die zu verwendende unvollständige GStreamer-Weiterleitung - Eine unvollständige, für dieses Profil zu verwendende, GStreamer-Weiterleitung. - - - - The partial GStreamer pipeline used - A partial GStreamer pipeline to use for this profile. - - - - Используемый частичный канал - Частичный канал для использования с этим профилем. - - - - - /schemas/system/gstreamer/0.10/audio/profiles/voicelossy/extension - /system/gstreamer/0.10/audio/profiles/voicelossy/extension - gnome-media - string - spx - - The default file extension for this profile - - A filename extension to be used when storing files encoded - with this profile. - - - - - Die voreingestellte Dateiendung für dieses Profil - Eine Dateiendung, die zum Speichern von mit diesem Profil kodierten Dateien verwendet werden soll. - - - - The default file extension for this profile - A filename extension to be used when storing files encoded with this profile. - - - - Расширение файла по умолчанию для этого профиля - Расширение файла, используемое для сохранения файлов, закодированных этим профилем. - - - - - /schemas/system/gstreamer/0.10/audio/profiles/active - /system/gstreamer/0.10/audio/profiles/voicelossy/active - gnome-media - bool - true - - Whether this profile is to be used - - Whether to use and display this profile. - - - - - Dieses Profil verwenden? - Soll dieses Profil verwendet und angezeigt werden? - - - - Whether this profile is to be used - Whether to use and display this profile. - - - - Используется ли данный профиль - Использовать и показывать ли данный профиль. - - - - - - /schemas/system/gstreamer/0.10/audio/profiles/mp2/name - /system/gstreamer/0.10/audio/profiles/mp2/name - gnome-media - string - - CD Quality, MP2 - A short name for the audio profile - - A short name for the audio profile, to be used in selections - and uniquely identifying the profile. - - - - - CD-Qualität, MP2 - Ein Kurzname für das Audio-Profil - Ein kurzer Name für das Audio-Profil, der zum Auswählen verwendet wird und das Profil eindeutig identifiziert. - - - - CD Quality, MP2 - A short name for the audio profile - A short name for the audio profile, to be used in selections and uniquely identifying the profile. - - - - CD-качество, MP2 - Краткое имя для этого аудио-профиля - Краткое имя для этого аудио-профиля, используемое для выбора и уникальной идентификации профиля. - - - - - /schemas/system/gstreamer/0.10/audio/profiles/mp2/description - /system/gstreamer/0.10/audio/profiles/mp2/description - gnome-media - string - - Used for converting to CD-quality audio, but with the lossy MP2 codec. Use this for preparing files for copying to devices that only support the MP2 codec. Note that using this format may be illegal in your jurisdiction; contact your lawyer for advice. - A description for the audio profile - - A description of the profile, containing more information and - describing when to use this profile. - - - - - Wird zum Konvertieren von Audio-Daten in CD-Qualität, allerdings mit dem verlustbehafteten MP2-Codec, verwendet. Beachten Sie, dass die Benutzung dieses Formats unter Umständen in Ihrem Land illegal ist. Fragen Sie Ihren Rechtsanwalt für weitere Beratung. - Eine Beschreibung des Audio-Profils - Eine Profilbeschreibung, die weitere Informationen enthält und beschreibt, wann dieses Profil eingesetzt werden sollte. - - - - Used for converting to CD-quality audio, but with the lossy MP2 codec. Use this for preparing files for copying to devices that only support the MP2 codec. Note that using this format may be illegal in your jurisdiction; contact your lawyer for advice. - A description for the audio profile - A description of the profile, containing more information and describing when to use this profile. - - - - Используется для преобразования в звук CD-качества, но с кодеком MP2, который не обеспечивает полного сохранения. Таким образом можно подготовить файлы для устройств, которые поддерживают только кодек MP2. Заметьте, что использование этого кодека может быть нелегальным в некоторых странах, для получения дополнительной информации обратитесь к юристу. - Описание аудио-профиля - Описание профиля, содержащее дополнительную информацию и использование профиля. - - - - - /schemas/system/gstreamer/0.10/audio/profiles/mp2/pipeline - /system/gstreamer/0.10/audio/profiles/mp2/pipeline - gnome-media - string - audio/x-raw-int,rate=44100,channels=2 ! twolame name=enc mode=0 bitrate=192 ! id3v2mux - - The partial GStreamer pipeline used - - A partial GStreamer pipeline to use for this profile. - - - - - Die zu verwendende unvollständige GStreamer-Weiterleitung - Eine unvollständige, für dieses Profil zu verwendende, GStreamer-Weiterleitung. - - - - The partial GStreamer pipeline used - A partial GStreamer pipeline to use for this profile. - - - - Используемый частичный канал - Частичный канал для использования с этим профилем. - - - - - /schemas/system/gstreamer/0.10/audio/profiles/mp2/extension - /system/gstreamer/0.10/audio/profiles/mp2/extension - gnome-media - string - mp2 - - The default file extension for this profile - - A filename extension to be used when storing files encoded - with this profile. - - - - - Die voreingestellte Dateiendung für dieses Profil - Eine Dateiendung, die zum Speichern von mit diesem Profil kodierten Dateien verwendet werden soll. - - - - The default file extension for this profile - A filename extension to be used when storing files encoded with this profile. - - - - Расширение файла по умолчанию для этого профиля - Расширение файла, используемое для сохранения файлов, закодированных этим профилем. - - - - - /schemas/system/gstreamer/0.10/audio/profiles/active - /system/gstreamer/0.10/audio/profiles/mp2/active - gnome-media - bool - true - - Whether this profile is to be used - - Whether to use and display this profile. - - - - - Dieses Profil verwenden? - Soll dieses Profil verwendet und angezeigt werden? - - - - Whether this profile is to be used - Whether to use and display this profile. - - - - Используется ли данный профиль - Использовать и показывать ли данный профиль. - - - - - - /schemas/system/gstreamer/0.10/audio/profiles/mp3/name - /system/gstreamer/0.10/audio/profiles/mp3/name - gnome-media - string - - CD Quality, MP3 - A short name for the audio profile - - A short name for the audio profile, to be used in selections - and uniquely identifying the profile. - - - - - CD-Qualität, MP3 - Ein Kurzname für das Audio-Profil - Ein kurzer Name für das Audio-Profil, der zum Auswählen verwendet wird und das Profil eindeutig identifiziert. - - - - CD Quality, MP3 - A short name for the audio profile - A short name for the audio profile, to be used in selections and uniquely identifying the profile. - - - - CD-качество, MP3 - Краткое имя для этого аудио-профиля - Краткое имя для этого аудио-профиля, используемое для выбора и уникальной идентификации профиля. - - - - - /schemas/system/gstreamer/0.10/audio/profiles/mp3/description - /system/gstreamer/0.10/audio/profiles/mp3/description - gnome-media - string - - Used for converting to CD-quality audio, but with the lossy MP3 codec. Use this for preparing files for copying to devices that only support the MP3 codec. Note that using this format may be illegal in your jurisdiction; contact your lawyer for advice. - A description for the audio profile - - A description of the profile, containing more information and - describing when to use this profile. - - - - - Wird zum Konvertieren von Audio-Daten in CD-Qualität, allerdings mit dem verlustbehafteten MP3-Codec, verwendet. Beachten Sie, dass die Benutzung dieses Formats unter Umständen in Ihrem Land illegal ist. Fragen Sie Ihren Rechtsanwalt für weitere Beratung. - Eine Beschreibung des Audio-Profils - Eine Profilbeschreibung, die weitere Informationen enthält und beschreibt, wann dieses Profil eingesetzt werden sollte. - - - - Used for converting to CD-quality audio, but with the lossy MP3 codec. Use this for preparing files for copying to devices that only support the MP3 codec. Note that using this format may be illegal in your jurisdiction; contact your lawyer for advice. - A description for the audio profile - A description of the profile, containing more information and describing when to use this profile. - - - - Используется для преобразования в звук CD-качества, но с кодеком MP3, который не обеспечивает полного сохранения. Таким образом можно подготовить файлы для устройств, которые поддерживают только кодек MP3. Заметьте, что использование этого кодека может быть нелегальным в некоторых странах, для получения дополнительной информации обратитесь к юристу. - Описание аудио-профиля - Описание профиля, содержащее дополнительную информацию и использование профиля. - - - - - /schemas/system/gstreamer/0.10/audio/profiles/mp3/pipeline - /system/gstreamer/0.10/audio/profiles/mp3/pipeline - gnome-media - string - audio/x-raw-int,rate=44100,channels=2 ! lamemp3enc name=enc target=0 quality=6 ! xingmux ! id3v2mux - - The partial GStreamer pipeline used - - A partial GStreamer pipeline to use for this profile. - - - - - Die zu verwendende unvollständige GStreamer-Weiterleitung - Eine unvollständige, für dieses Profil zu verwendende, GStreamer-Weiterleitung. - - - - The partial GStreamer pipeline used - A partial GStreamer pipeline to use for this profile. - - - - Используемый частичный канал - Частичный канал для использования с этим профилем. - - - - - /schemas/system/gstreamer/0.10/audio/profiles/mp3/extension - /system/gstreamer/0.10/audio/profiles/mp3/extension - gnome-media - string - mp3 - - The default file extension for this profile - - A filename extension to be used when storing files encoded - with this profile. - - - - - Die voreingestellte Dateiendung für dieses Profil - Eine Dateiendung, die zum Speichern von mit diesem Profil kodierten Dateien verwendet werden soll. - - - - The default file extension for this profile - A filename extension to be used when storing files encoded with this profile. - - - - Расширение файла по умолчанию для этого профиля - Расширение файла, используемое для сохранения файлов, закодированных этим профилем. - - - - - /schemas/system/gstreamer/0.10/audio/profiles/active - /system/gstreamer/0.10/audio/profiles/mp3/active - gnome-media - bool - true - - Whether this profile is to be used - - Whether to use and display this profile. - - - - - Dieses Profil verwenden? - Soll dieses Profil verwendet und angezeigt werden? - - - - Whether this profile is to be used - Whether to use and display this profile. - - - - Используется ли данный профиль - Использовать и показывать ли данный профиль. - - - - - - /schemas/system/gstreamer/0.10/audio/profiles/aac/name - /system/gstreamer/0.10/audio/profiles/aac/name - gnome-media - string - - CD Quality, AAC - A short name for the audio profile - - A short name for the audio profile, to be used in selections - and uniquely identifying the profile. - - - - - CD-Qualität, AAC - Ein Kurzname für das Audio-Profil - Ein kurzer Name für das Audio-Profil, der zum Auswählen verwendet wird und das Profil eindeutig identifiziert. - - - - CD Quality, AAC - A short name for the audio profile - A short name for the audio profile, to be used in selections and uniquely identifying the profile. - - - - CD-качество, AAC - Краткое имя для этого аудио-профиля - Краткое имя для этого аудио-профиля, используемое для выбора и уникальной идентификации профиля. - - - - - /schemas/system/gstreamer/0.10/audio/profiles/aac/description - /system/gstreamer/0.10/audio/profiles/aac/description - gnome-media - string - - Used for converting to CD-quality audio, but with the lossy AAC codec. Use this for preparing files for copying to devices that only support the AAC codec. Note that using this format may be illegal in your jurisdiction; contact your lawyer for advice. - A description for the audio profile - - A description of the profile, containing more information and - describing when to use this profile. - - - - - Wird zum Konvertieren von Audio-Daten in den verlustbehafteten AAC-Codec verwendet. Benutzen Sie dies für Dateien, die für ein Gerät kopiert werden das nur AAC kodierte Dateien unterstützt. Beachten Sie, dass die Benutzung dieses Formats unter Umständen in Ihrem Land illegal ist. Fragen Sie Ihren Rechtsanwalt für weitere Beratung. - Eine Beschreibung des Audio-Profils - Eine Profilbeschreibung, die weitere Informationen enthält und beschreibt, wann dieses Profil eingesetzt werden sollte. - - - - Used for converting to CD-quality audio, but with the lossy AAC codec. Use this for preparing files for copying to devices that only support the AAC codec. Note that using this format may be illegal in your jurisdiction; contact your lawyer for advice. - A description for the audio profile - A description of the profile, containing more information and describing when to use this profile. - - - - Используется для преобразования в звук CD-качества, но с кодеком AAC, который не обеспечивает полного сохранения. Таким образом можно подготовить файлы для устройств, которые поддерживают только кодек AAC. Заметьте, что использование этого кодека может быть нелегальным в некоторых странах, для получения дополнительной информации обратитесь к юристу. - Описание аудио-профиля - Описание профиля, содержащее дополнительную информацию и использование профиля. - - - - - /schemas/system/gstreamer/0.10/audio/profiles/aac/pipeline - /system/gstreamer/0.10/audio/profiles/aac/pipeline - gnome-media - string - audio/x-raw-int,rate=44100,channels=2 ! faac profile=2 ! ffmux_mp4 - - The partial GStreamer pipeline used - - A partial GStreamer pipeline to use for this profile. - - - - - Die zu verwendende unvollständige GStreamer-Weiterleitung - Eine unvollständige, für dieses Profil zu verwendende, GStreamer-Weiterleitung. - - - - The partial GStreamer pipeline used - A partial GStreamer pipeline to use for this profile. - - - - Используемый частичный канал - Частичный канал для использования с этим профилем. - - - - - /schemas/system/gstreamer/0.10/audio/profiles/aac/extension - /system/gstreamer/0.10/audio/profiles/aac/extension - gnome-media - string - m4a - - The default file extension for this profile - - A filename extension to be used when storing files encoded - with this profile. - - - - - Die voreingestellte Dateiendung für dieses Profil - Eine Dateiendung, die zum Speichern von mit diesem Profil kodierten Dateien verwendet werden soll. - - - - The default file extension for this profile - A filename extension to be used when storing files encoded with this profile. - - - - Расширение файла по умолчанию для этого профиля - Расширение файла, используемое для сохранения файлов, закодированных этим профилем. - - - - - /schemas/system/gstreamer/0.10/audio/profiles/aac/active - /system/gstreamer/0.10/audio/profiles/aac/active - gnome-media - bool - true - - Whether this profile is to be used - - Whether to use and display this profile. - - - - - Dieses Profil verwenden? - Soll dieses Profil verwendet und angezeigt werden? - - - - Whether this profile is to be used - Whether to use and display this profile. - - - - Используется ли данный профиль - Использовать и показывать ли данный профиль. - - - - - diff --git a/gconf/schemas/gnome-control-center.schemas b/gconf/schemas/gnome-control-center.schemas deleted file mode 100644 index 51d9ee5..0000000 --- a/gconf/schemas/gnome-control-center.schemas +++ /dev/null @@ -1,94 +0,0 @@ - - - - - /schemas/apps/control-center/appearance/more_backgrounds_url - /apps/control-center/appearance/more_backgrounds_url - control-center - string - http://art.gnome.org/backgrounds/ - - More backgrounds URL - - URL for where to get more desktop backgrounds. If set to an - empty string the link will not appear. - - - - - Adresse für weitere Hintergründe - Adresse, unter der weitere Arbeitsflächen-Hintergründe zu finden sind. Wenn man die Zeichenkette leer lässt, erscheint kein Link. - - - - More backgrounds URL - URL for where to get more desktop backgrounds. If set to an empty string the link will not appear. - - - - URL хранилища фоновых рисунков - URL для получения дополнительных обоев рабочего стола. Если установить в пустую строку - ссылка не будет отображаться. - - - - /schemas/apps/control-center/appearance/more_themes_url - /apps/control-center/appearance/more_themes_url - control-center - string - http://art.gnome.org/themes/ - - More themes URL - - URL for where to get more desktop themes. If set to an - empty string the link will not appear. - - - - - Adresse für weitere Themen - Adresse, unter der weitere Arbeitsflächen-Themen zu finden sind. Wenn man die Zeichenkette leer lässt, erscheint kein Link. - - - - More themes URL - URL for where to get more desktop themes. If set to an empty string the link will not appear. - - - - URL хранилища тем - URL для получения дополнительных тем рабочего стола. Если установить в пустую строку - ссылка не будет отображаться. - - - - /schemas/apps/control-center/network/current_location - /apps/control-center/network/current_location - control-center - string - - - Current network location - - Set this to your current location name. This is used to - determine the appropriate network proxy configuration. - - - - - Aktueller Ort im Netzwerk - Legen Sie hier den aktuellen Ortsnamen fest. Er wird zur Bestimmung der richtigen Konfiguration des Netzwerk-Proxys verwendet. - - - - Current network location - Set this to your current location name. This is used to determine the appropriate network proxy configuration. - - - - Текущее расположение в сети - Установить название вашего текущего местоположения. Оно используется для определения соответствующей настройки прокси-сервера. - - - - - - diff --git a/gconf/schemas/gnome-dictionary.schemas b/gconf/schemas/gnome-dictionary.schemas deleted file mode 100644 index 6a25f93..0000000 --- a/gconf/schemas/gnome-dictionary.schemas +++ /dev/null @@ -1,411 +0,0 @@ - - - - /schemas/apps/gnome-dictionary/server - /apps/gnome-dictionary/server - gnome-dictionary - string - dict.org - - Dictionary server (Deprecated) - The dictionary server to connect to. The default server is - dict.org. See http://www.dict.org for details on other servers. - This key is deprecated and no longer in use. - - - - Wörterbuch-Server (Veraltet) - Der Wörterbuch-Server, mit dem die Verbindung aufgenommen werden soll. Der Vorgabe-Server ist dict.org. Unter http://www.dict.org erhalten Sie weitere Details zu anderen Servern. Dieser Schlüssel ist veraltet und wird nicht mehr verwendet. - - - - Dictionary server (Deprecated) - The dictionary server to connect to. The default server is dict.org. See http://www.dict.org for details on other servers. This key is deprecated and no longer in use. - - - - Сервер словаря (устарело) - Сервер словаря, с которым следует соединяться. Сервер по умолчанию — dict.org. Подробные сведения о других серверах можно найти на http://www.dict.org. Этот ключ устарел и больше не используется. - - - - - /schemas/apps/gnome-dictionary/port - /apps/gnome-dictionary/port - gnome-dictionary - int - 2628 - - Port used to connect to server (Deprecated) - The port number to connect to. The default port is 2628. - This key is deprecated and no longer in use. - - - - Port, der für die Verbindung zum Server verwendet wird (Veraltet) - Die Port-Nummer, mit der die Verbindung aufgenommen werden soll. Der Vorgabe-Port ist 2628. Dieser Schlüssel ist veraltet und wird nicht mehr verwendet. - - - - Port used to connect to server (Deprecated) - The port number to connect to. The default port is 2628. This key is deprecated and no longer in use. - - - - Порт, используемый для соединения с сервером (устарело) - Номер порта, с которым следует соединяться. Порт по умолчанию — 2628. Этот ключ устарел и больше не используется. - - - - - /schemas/apps/gnome-dictionary/smart - /apps/gnome-dictionary/smart - gnome-dictionary - bool - TRUE - - Use smart lookup (Deprecated) - Specify whether to use smart lookup. This key is dependant - on whether the dictionary server supports this option. The default - is TRUE. This key is deprecated and no longer in use. - - - - Intelligente Suche verwenden (Veraltet) - Soll die intelligente Suche verwendet werden? Dieser Schlüssel kommt ausschließlich zum Tragen, falls der Wörterbuch-Server diese unterstützt. Die Vorgabe ist WAHR. Dieser Schlüssel ist veraltet und wird nicht mehr verwendet. - - - - Use smart lookup (Deprecated) - Specify whether to use smart lookup. This key is dependant on whether the dictionary server supports this option. The default is TRUE. This key is deprecated and no longer in use. - - - - Использовать «умный» поиск (устарело) - Указывает, используется ли «умный» поиск. Ключ зависит от того, поддерживает ли сервер этот параметр. По умолчанию ключ установлен. Этот ключ устарел и больше не используется. - - - - - /schemas/apps/gnome-dictionary/database - /apps/gnome-dictionary/database - gnome-dictionary - string - ! - - The default database to use - The name of the default individual database or meta-database to - use on a dictionary source. An exclamation mark ("!") means that all - the databases present in a dictionary source should be searched - - - - Die zu verwendende Datenbank - Der Name der Vorgabe-(Meta-)Datenbank, die auf dem Wörterbuch-Server verwendet werden soll. Falls der Wert dieses Schlüssels »!« ist, werden alle Datenbanken auf dem angegebenen Wörterbuch-Server durchsucht - - - - The default database to use - The name of the default individual database or meta-database to use on a dictionary source. An exclamation mark ("!") means that all the databases present in a dictionary source should be searched - - - - Используемая по умолчанию база данных - Название индивидуальной или мета-базы данных по умолчанию, которую следует использовать в источнике словарей. Восклицательный знак («!») означает, что надо искать во всех базах данных, представленных в источнике словарей. - - - - - /schemas/apps/gnome-dictionary/strategy - /apps/gnome-dictionary/strategy - gnome-dictionary - string - exact - - The default search strategy to use - The name of the default search strategy to use on a dictionary - source, if available. The default strategy is 'exact', that is match - exact words. - - - - Die vorgegebene zu verwendende Suchmethode - Der Name der vorgegebenen Suchmethode einer Wörterbuchquelle, falls verfügbar. Die Vorgabe ist »exact«, sodass nur exakte Übereinstimmungen erkannt werden. - - - - The default search strategy to use - The name of the default search strategy to use on a dictionary source, if available. The default strategy is 'exact', that is match exact words. - - - - Используемая стратегия поиска по умолчанию - Название стратегии поиска, используемой по умолчанию в источнике словарей, если она доступна. Стратегия по умолчанию — «exact», что означает поиск в точности совпадающих слов. - - - - - /schemas/apps/gnome-dictionary/print-font - /apps/gnome-dictionary/print-font - gnome-dictionary - string - Serif 12 - - The font to be used when printing - The font to be used when printing a definition. - - - - Die beim Drucken zu verwendene Schriftart - Die beim Drucken von Definitionen zu verwendene Schriftart. - - - - The font to be used when printing - The font to be used when printing a definition. - - - - Шрифт, используемый для печати - Шрифт, который используется при печати определения. - - - - - /schemas/apps/gnome-dictionary/source-name - /apps/gnome-dictionary/source-name - gnome-dictionary - string - Default - - The name of the dictionary source used - The name of the dictionary source used to retrieve the - definitions of words. - - - - Die zu verwendene Wörterbuchquelle - Der Name der Wörterbuchquelle die zum Nachschlagen von Wortdefinitionen verwendet wird. - - - - The name of the dictionary source used - The name of the dictionary source used to retrieve the definitions of words. - - - - Название используемого источника словарей - Название источника словарей, используемого для получения определений слов. - - - - - /schemas/apps/gnome-dictionary/default-window-width - /apps/gnome-dictionary/default-window-width - gnome-dictionary - int - -1 - - The default width of the application window - This key defines the window width and it's used to remember - the size of the dictionary window across sessions. Setting it - to -1 will make the dictionary window use a width based on the - font size. - - - - Die Vorgabebreite des Wörterbuch-Fensters - Dieser Schlüssel legt die Breite des Wörterbuch-Fensters fest, damit diese bei weiteren Starts wiederhergestellt werden kann. Bei einem Wert von »-1« wird eine Breite basierend auf der Schriftgröße verwendet. - - - - The default width of the application window - This key defines the window width and it's used to remember the size of the dictionary window across sessions. Setting it to -1 will make the dictionary window use a width based on the font size. - - - - Ширина окна приложения по умолчанию - Этот ключ определяет ширину окна словаря и используется для сохранения размера окна между сеансами. Если установить этот ключ в -1, то будет использоваться ширина, основанная на размере шрифта. - - - - - /schemas/apps/gnome-dictionary/default-window-height - /apps/gnome-dictionary/default-window-height - gnome-dictionary - int - -1 - - The default height of the application window - This key defines the window height and it's used to remember - the size of the dictionary window across sessions. Setting it - to -1 will make the dictionary window use a height based on the - font size. - - - - Die Vorgabehöhe des Wörterbuch-Fensters - Dieser Schlüssel legt die Höhe des Wörterbuch-Fensters fest, damit diese bei weiteren Starts wiederhergestellt werden kann. Bei einem Wert von »-1« wird eine Höhe basierend auf der Schriftgröße verwendet. - - - - The default height of the application window - This key defines the window height and it's used to remember the size of the dictionary window across sessions. Setting it to -1 will make the dictionary window use a height based on the font size. - - - - Высота окна приложения по умолчанию - Этот ключ определяет высоту окна словаря и используется для сохранения размера окна между сеансами. Если установить этот ключ в -1, то будет использоваться высота, основанная на размере шрифта. - - - - - /schemas/apps/gnome-dictionary/window-is-maximized - /apps/gnome-dictionary/window-is-maximized - gnome-dictionary - bool - FALSE - - Whether the application window should be maximized - This key defines whether the window should be maximized and it's - used to remember the state of the dictionary window across sessions. - Setting it to TRUE will make the window always appear as - maximized. - - - - Legt fest, ob das Wörterbuch-Fenster maximiert gestartet wird - Dieser Schlüssel legt fest, ob das Fenster maximiert geöffnet wird, damit der Zustand des Wörterbuch-Fensters bei weiteren Starts wiederhergestellt werden kann. Bei einem Wert von »TRUE« wird das Fenster immer maximiert geöffnet. - - - - Whether the application window should be maximized - This key defines whether the window should be maximised and it's used to remember the state of the dictionary window across sessions. Setting it to TRUE will make the window always appear as maximised. - - - - Должно ли окно приложения быть развёрнуто - Этот ключ определяет, должно ли окно словаря быть развёрнутым, и используется для сохранения состояния окна между сеансами. Если этот ключ установлен, то окно развёрнуто. - - - - - /schemas/apps/gnome-dictionary/sidebar-visible - /apps/gnome-dictionary/sidebar-visible - gnome-dictionary - bool - FALSE - - Whether the sidebar should be visible - This key defines whether the sidebar should be visible - and it's used to remember the state of the sidebar across - sessions. Setting it to TRUE will make the sidebar always - be displayed. - - - - Legt fest, ob die Seitenleiste angezeigt wird - Dieser Schlüssel legt fest, ob die Seitenleiste angezeigt wird und speichert ihren Zustand über mehrere Sitzungen hinweg. Bei einem Wert von »TRUE« wird die Seitenleiste immer angezeigt. - - - - Whether the sidebar should be visible - This key defines whether the sidebar should be visible and it's used to remember the state of the sidebar across sessions. Setting it to TRUE will make the sidebar always be displayed. - - - - Должна ли боковая панель быть видимой - Этот ключ определяет, должна ли боковая панель быть видимой, и используется для запоминания состояния боковой панели между сеансами. Если этот ключ установлен, то боковая панель видима. - - - - - /schemas/apps/gnome-dictionary/statusbar-visible - /apps/gnome-dictionary/statusbar-visible - gnome-dictionary - bool - FALSE - - Whether the statusbar should be visible - This key defines whether the statusbar should be visible - and it's used to remember the state of the statusbar across - sessions. Setting it to TRUE will make the statusbar always - be displayed. - - - - Legt fest, ob die Statusleiste angezeigt wird - Dieser Schlüssel legt fest, ob die Statusleiste angezeigt wird und speichert ihren Zustand über mehrere Sitzungen hinweg. Bei einem Wert von »TRUE« wird die Statusleiste immer angezeigt. - - - - Whether the statusbar should be visible - This key defines whether the statusbar should be visible and it's used to remember the state of the statusbar across sessions. Setting it to TRUE will make the statusbar always be displayed. - - - - Должна ли строка состояния быть видимой - Этот ключ определяет, должна ли строка состояния быть видимой, и используется для запоминания её состояния между сеансами. Если этот ключ установлен, то строка состояния видима. - - - - - /schemas/apps/gnome-dictionary/sidebar-page - /apps/gnome-dictionary/sidebar-page - gnome-dictionary - string - speller - - The page of the sidebar to show - This key defines which page of the sidebar should be - displayed and it's used to remember the setting across - sessions.. It can be "speller" or "databases". - - - - Die anzuzeigende Seite der Seitenleiste - Dieser Schlüssel legt fest, welche Seite der Seitenleiste angezeigt wird und speichert die Einstellungen über mehrere Sitzungen hinweg. Mögliche Werte sind »speller« (Schreibweisen) und »databases« (Datenbanken). - - - - The page of the sidebar to show - This key defines which page of the sidebar should be displayed and it's used to remember the setting across sessions.. It can be "speller" or "databases". - - - - Показываемая страница боковой панели - Этот ключ определяет, какая страница боковой панели должна показываться, и используется для запоминания этого состояния между сеансами. Возможные значения — «speller» и «databases». - - - - - /schemas/apps/gnome-dictionary/sidebar-width - /apps/gnome-dictionary/sidebar-width - gnome-dictionary - int - -1 - - The width of the sidebar - This key defines the width of the sidebar and it's - used to remember the setting across sessions. - - - - Die Breite der Seitenleiste - Dieser Schlüssel legt die Breite der Seitenleiste fest und speichert die Einstellung über mehrer Sitzungen hinweg. - - - - The width of the sidebar - This key defines the width of the sidebar and it's used to remember the setting across sessions. - - - - Ширина боковой панели - Этот ключ определяет ширину боковой панели и используется для запоминания значения между сеансами. - - - - - - diff --git a/gconf/schemas/gnome-power-manager.schemas b/gconf/schemas/gnome-power-manager.schemas deleted file mode 100644 index ad0abda..0000000 --- a/gconf/schemas/gnome-power-manager.schemas +++ /dev/null @@ -1,1686 +0,0 @@ - - - - - /schemas/apps/gnome-power-manager/actions/sleep_type_battery - /apps/gnome-power-manager/actions/sleep_type_battery - string - hibernate - - Whether to hibernate, suspend or do nothing when inactive - The type of sleeping that should be performed when the computer is inactive. Possible values are "hibernate", "suspend" and "nothing". - - - - Legt fest, ob bei Leerlauf der Ruhezustand, die Bereitschaft oder nichts zu aktivieren ist. - Die auszuführende Aktion bei Leerlauf. Mögliche Werte sind »hibernate« (Ruhezustand), »suspend« (Bereitschaft) und »nothing« (nichts). - - - - Whether to hibernate, suspend or do nothing when inactive - The type of sleeping that should be performed when the computer is inactive. Possible values are "hibernate", "suspend" and "nothing". - - - - Перейти в спящий режим, ждущий режим или ничего не делать после периода бездействия - Тип приостановки компьютера после периода бездействия. Допустимые значения: «hibernate», «suspend» и «nothing». - - - - - /schemas/apps/gnome-power-manager/actions/critical_battery - /apps/gnome-power-manager/actions/critical_battery - string - hibernate - - Battery critical low action - The action to take when the battery is critically low. Possible values are "hibernate", "suspend", "shutdown" and "nothing". - - - - Aktion bei kritischem Akkuladezustand - Die auszuführende Aktion bei kritischem Ladezustand des Akkus. Mögliche Werte sind »hibernate« (Ruhezustand), »suspend« (Bereitschaft), »shutdown« (Ausschalten) und »nothing« (nichts). - - - - Battery critical low action - The action to take when the battery is critically low. Possible values are "hibernate", "suspend", "shutdown" and "nothing". - - - - Действие при критическом разряде батареи - Действие, выполняемое при критическом разряде батареи. Возможные значения: «hibernate», «suspend», «shutdown» и «nothing». - - - - - /schemas/apps/gnome-power-manager/actions/event_when_closed_battery - /apps/gnome-power-manager/actions/event_when_closed_battery - gnome-power-manager - bool - true - - If the battery event should occur when the lid is shut and the power disconnected - If the battery lid close event should occur (for example 'Suspend when lid closed on battery') when the lid is previously shut and the AC power disconnected at a later time. - - - - Legt fest, ob in den Akkubetrieb gewechselt werden soll, wenn der Deckel des Laptops geschlossen und das Stromkabel entfernt wird. - Legt fest, ob auf die Einstellungen für den Akkubetrieb zurückgegriffen werden soll (z.B. »Bereitschaft, wenn der Deckel im Akkubetrieb geschlossen wurde«), wenn der Deckel des Laptops zuvor geschlossen wurde und das Stromkabel später entfernt wird. - - - - If the battery event should occur when the lid is shut and the power disconnected - If the battery lid close event should occur (for example 'Suspend when lid closed on battery') when the lid is previously shut and the AC power disconnected at a later time. - - - - Должно ли происходить событие батареи, когда панель закрыта и питание отключено - Генерировать ли событие закрывания панели ноутбука (например, ждущий режим когда панель закрыта на батарее), когда панель была закрыта, а источник питания отключён позже. - - - - - /schemas/apps/gnome-power-manager/actions/sleep_type_ac - /apps/gnome-power-manager/actions/sleep_type_ac - string - suspend - - Whether to hibernate, suspend or do nothing when inactive - The type of sleeping that should be performed when the computer is inactive. Possible values are "hibernate", "suspend" and "nothing". - - - - Legt fest, ob bei Leerlauf der Ruhezustand, die Bereitschaft oder nichts zu aktivieren ist. - Die auszuführende Aktion bei Leerlauf. Mögliche Werte sind »hibernate« (Ruhezustand), »suspend« (Bereitschaft) und »nothing« (nichts). - - - - Whether to hibernate, suspend or do nothing when inactive - The type of sleeping that should be performed when the computer is inactive. Possible values are "hibernate", "suspend" and "nothing". - - - - Перейти в спящий режим, ждущий режим или ничего не делать после периода бездействия - Тип приостановки компьютера после периода бездействия. Допустимые значения: «hibernate», «suspend» и «nothing». - - - - - /schemas/apps/gnome-power-manager/actions/critical_ups - /apps/gnome-power-manager/actions/critical_ups - string - shutdown - - UPS critical low action - The action to take when the UPS is critically low. Possible values are "hibernate", "suspend", "shutdown" and "nothing". - - - - Aktion bei kritischem Ladezustand der Notstromversorgung - Die auszuführende Aktion bei kritischem Ladezustand der Notstromversorgung. Mögliche Werte sind »hibernate« (Ruhezustand), »suspend« (Bereitschaft), »shutdown« (Ausschalten) und »nothing« (nichts). - - - - UPS critical low action - The action to take when the UPS is critically low. Possible values are "hibernate", "suspend", "shutdown" and "nothing". - - - - Действие при критическом разряде ИБП - Действие, выполняемое при критическом разряде ИБП. Возможные значения: «hibernate», «suspend», «shutdown» и «nothing». - - - - - /schemas/apps/gnome-power-manager/actions/low_ups - /apps/gnome-power-manager/actions/low_ups - string - hibernate - - UPS low power action - The action to take when the UPS is low. Possible values are "hibernate", "suspend", "shutdown" and "nothing". - - - - Aktion bei kritischem Ladezustand der Notstromversorgung - Die auszuführende Aktion bei niedrigem Ladezustand der Notstromversorgung. Mögliche Werte sind »hibernate« (Ruhezustand), »suspend« (Bereitschaft), »shutdown« (Ausschalten) und »nothing« (nichts). - - - - UPS low power action - The action to take when the UPS is low. Possible values are "hibernate", "suspend", "shutdown" and "nothing". - - - - Действие при разряде ИБП - Действие, выполняемое при разряде ИБП. Возможные значения: «hibernate», «suspend», «shutdown» и «nothing». - - - - - /schemas/apps/gnome-power-manager/backlight/enable - /apps/gnome-power-manager/backlight/enable - gnome-power-manager - bool - true - - Allow backlight brightness adjustment - If the screen brightness should be changed when switching between AC and battery power. - - - - Anpassung der Helligkeit der Hintergrundbeleuchtung zulassen - Legt fest, ob die Bildschirmhelligkeit beim Wechsel zwischen Netz- und Akkubetrieb angepasst werden kann. - - - - Allow backlight brightness adjustment - If the screen brightness should be changed when switching between AC and battery power. - - - - Позволяет управлять яркостью ламп монитора - Должна ли изменяться яркость экрана при переключении питания между сетью и батареей. - - - - - /schemas/apps/gnome-power-manager/backlight/battery_reduce - /apps/gnome-power-manager/backlight/battery_reduce - gnome-power-manager - bool - true - - Reduce the backlight brightness when on battery power - If the screen should be reduced in brightness when the computer is on battery power. - - - - Hintergrundbeleuchtung im Akkubetrieb abdunkeln - Legt fest, ob der Bildschirm im Akkubetrieb abgedunkelt wird - - - - Reduce the backlight brightness when on battery power - If the screen should be reduced in brightness when the computer is on battery power. - - - - Приглушать яркость ламп монитора при питании от батареи - Должна ли приглушаться яркость экрана для сохранения энергии при работе от батареи. - - - - - /schemas/apps/gnome-power-manager/backlight/idle_brightness - /apps/gnome-power-manager/backlight/idle_brightness - gnome-power-manager - int - 30 - - The brightness of the screen when idle - This is the laptop panel screen brightness used when the session is idle. Only valid when use_time_for_policy is true. - - - - Helligkeit des Bildschirms im Leerlauf - Die Helligkeit des Bildschirms bei Leerlauf. Wird nur berücksichtigt, wenn use_time_for_policy den Wert »wahr« hat. - - - - The brightness of the screen when idle - This is the laptop panel screen brightness used when the session is idle. Only valid when use_time_for_policy is true. - - - - Яркость экрана при простое - Значение яркости панели ноутбука при простое сеанса. Действует только когда установлен ключ use_time_for_policy. - - - - - /schemas/apps/gnome-power-manager/backlight/idle_dim_battery - /apps/gnome-power-manager/backlight/idle_dim_battery - gnome-power-manager - bool - true - - Dim the screen after a period of inactivity when on battery power - If the screen should be dimmed to save power when the computer is idle when on battery power. - - - - Bildschirm nach längerem Leerlauf im Akkubetrieb abdunkeln - Legt fest, ob der Bildschirm nach einer festgelegten Leerlaufzeit im Akkubetrieb abgedunkelt wird, um Strom zu sparen - - - - Dim the screen after a period of inactivity when on battery power - If the screen should be dimmed to save power when the computer is idle when on battery power. - - - - Приглушать яркость экрана при бездействии при питании от батареи - Должна ли приглушаться яркость экрана для сохранения энергии при бездействии компьютера и работе от батареи. - - - - - /schemas/apps/gnome-power-manager/backlight/idle_dim_time - /apps/gnome-power-manager/backlight/idle_dim_time - gnome-power-manager - int - 10 - - The default amount of time to dim the screen after idle - The default amount of time to dim the screen after idle. - - - - Der Standardzeitraum bis der Bildschirm bei Untätigkeit abgedunkelt wird - Der Standardzeitraum bis der Bildschirm bei Untätigkeit abgedunkelt wird. - - - - The default amount of time to dim the screen after idle - The default amount of time to dim the screen after idle. - - - - Время погасания экрана при бездействии по умолчанию - Время погасания экрана при бездействии по умолчанию. - - - - - /schemas/apps/gnome-power-manager/backlight/brightness_dim_battery - /apps/gnome-power-manager/backlight/brightness_dim_battery - int - 50 - - LCD dimming amount when on battery - The amount to dim the brightness of the display when on battery power. Possible values are between 0 and 100. - - - - Grad der Bildschirmabdunkelung bei Akkubetrieb - Legt fest, wie stark der Bildschirm im Akkubetrieb abgedunkelt wird. Mögliche Werte liegen zwischen 0 und 100. - - - - LCD dimming amount when on battery - The amount to dim the brightness of the display when on battery power. Possible values are between 0 and 100. - - - - Снижение яркости LCD при питании от батареи - Уменьшение яркости дисплея при питании от батарей. Возможные значения - от 0 до 100. - - - - - /schemas/apps/gnome-power-manager/backlight/idle_dim_ac - /apps/gnome-power-manager/backlight/idle_dim_ac - gnome-power-manager - bool - false - - Dim the screen after a period of inactivity when on AC power - If the screen should be dimmed to save power when the computer is idle when on AC power. - - - - Bildschirm nach längerem Leerlauf im Netzbetrieb abdunkeln - Legt fest, ob der Bildschirm nach einer festgelegten Zeit des Leerlaufs im Netzbetrieb abgedunkelt wird, um Strom zu sparen - - - - Dim the screen after a period of inactivity when on AC power - If the screen should be dimmed to save power when the computer is idle when on AC power. - - - - Приглушать яркость экрана при бездействии при питании от сети - Должна ли приглушаться яркость экрана для сохранения энергии при бездействии компьютера и работе от сети. - - - - - /schemas/apps/gnome-power-manager/backlight/dpms_method_ac - /apps/gnome-power-manager/backlight/dpms_method_ac - string - off - - Method used to blank screen on AC - The DPMS method used to blank the screen when on AC power. Possible values are "standby", "suspend" and "off". - - - - Methode für die Abdunkelung des Bildschirms bei Netzversorgung - DPMS-Methode, die benutzt wird, um den Bildschirm bei Netzbetrieb abzudunkeln. Mögliche Werte sind »standby« (Ruhezustand), »suspend« (Bereitschaft) und »off« (aus). - - - - Method used to blank screen on AC - The DPMS method used to blank the screen when on AC power. Possible values are "standby", "suspend" and "off". - - - - Метод, используемый для сохранения экрана при работы от сети - Метод DPMS, используемый при очистке экрана при питании от сети. Возможные значения: «standby», «suspend» и «off». - - - - - /schemas/apps/gnome-power-manager/backlight/dpms_method_battery - /apps/gnome-power-manager/backlight/dpms_method_battery - string - off - - Method used to blank screen on battery - The DPMS method used to blank the screen when on battery power. Possible values are "standby", "suspend" and "off". - - - - Methode für die Abdunkelung des Bildschirms bei Akkubetrieb - DPMS-Methode, die benutzt wird, um den Bildschirm im Akkubetrieb abzudunkeln. Mögliche Werte sind »standby«, »suspend« (Bereitschaft)und »off« (aus). - - - - Method used to blank screen on battery - The DPMS method used to blank the screen when on battery power. Possible values are "standby", "suspend" and "off". - - - - Метод, используемый для сохранения экрана при работе на батарее - Метод DPMS, используемый при очистке экрана при питании от батареи. Возможные значения: «standby», «suspend» и «off». - - - - - /schemas/apps/gnome-power-manager/backlight/brightness_ac - /apps/gnome-power-manager/backlight/brightness_ac - int - 100 - - LCD brightness when on AC - The brightness of the display when on AC power. Possible values are between 0 and 100. - - - - Bildschirmhelligkeit bei Netzversorgung - Helligkeit des Bildschirms bei Netzversorgung. Mögliche Werte liegen zwischen 0 und 100. - - - - LCD brightness when on AC - The brightness of the display when on AC power. Possible values are between 0 and 100. - - - - Яркость LCD при питании от сети - Яркость дисплея при питании от сети. Возможные значения - от 0 до 100. - - - - - /schemas/apps/gnome-power-manager/buttons/suspend - /apps/gnome-power-manager/buttons/suspend - string - suspend - - Suspend button action - The action to take when the system suspend button is pressed. Possible values are "suspend", "hibernate", "interactive", "shutdown" and "nothing". - - - - Aktion bei Betätigung des Schalters für Bereitschaft - Die auszuführende Aktion bei Betätigung des Schalters für die Bereitschaft. Mögliche Werte sind »hibernate« (Ruhezustand), »suspend« (Bereitschaft), »interactive«, »shutdown« (Ausschalten) und »nothing« (nichts). - - - - Suspend button action - The action to take when the system suspend button is pressed. Possible values are "suspend", "hibernate", "interactive", "shutdown" and "nothing". - - - - Действие кнопки «Suspend» - Действие, выполняемое при нажатии кнопки «Suspend». Возможные значения: «suspend», «hibernate», «interactive», «shutdown» и «nothing». - - - - - /schemas/apps/gnome-power-manager/buttons/hibernate - /apps/gnome-power-manager/buttons/hibernate - string - hibernate - - Hibernate button action - The action to take when the system hibernate button is pressed. Possible values are "suspend", "hibernate", "interactive", "shutdown" and "nothing". - - - - Aktion bei Betätigung des Schalters für den Ruhezustand - Die auszuführende Aktion bei Betätigung des Schalters für Bereitschaft. Mögliche Werte sind »hibernate« (Ruhezustand), »suspend« (Bereitschaft), »interactive« (Interaktiv), »shutdown« (Ausschalten) und »nothing« (nichts). - - - - Hibernate button action - The action to take when the system hibernate button is pressed. Possible values are "suspend", "hibernate", "interactive", "shutdown" and "nothing". - - - - Действие кнопки «Hibernate» - Действие, выполняемое при нажатии кнопки «Hibernate». Возможные значения: «suspend», «hibernate», «interactive», «shutdown» и «nothing». - - - - - /schemas/apps/gnome-power-manager/buttons/power - /apps/gnome-power-manager/buttons/power - string - interactive - - Power button action - The action to take when the system power button is pressed. Possible values are "suspend", "hibernate", "interactive", "shutdown" and "nothing". - - - - Aktion wenn der Netzschalter betätigt wurde - Die auszuführende Aktion bei Betätigung des Netzschalters. Mögliche Werte sind »hibernate« (Ruhezustand), »suspend« (Bereitschaft), »interactive« (Interaktiv), »shutdown« (Ausschalten) und »nothing« (nichts). - - - - Power button action - The action to take when the system power button is pressed. Possible values are "suspend", "hibernate", "interactive", "shutdown" and "nothing". - - - - Действие кнопки «Power» - Действие, выполняемое при нажатии кнопки «Power». Возможные значения: «suspend», «hibernate», «interactive», «shutdown» и «nothing». - - - - - /schemas/apps/gnome-power-manager/buttons/lid_battery - /apps/gnome-power-manager/buttons/lid_battery - string - suspend - - Laptop lid close action on battery - The action to take when the laptop lid is closed and the laptop is on battery power. Possible values are "suspend", "hibernate", "blank", and "nothing". - - - - Aktion beim Schließen des Laptops bei Akkubetrieb - Die auszuführende Aktion beim Schließen des Laptops, wenn sich dieser im Akkubetrieb befindet. Mögliche Werte sind »hibernate« (Ruhezustand), »suspend« (Bereitschaft), »blank« (Abdunkeln) und »nothing« (nichts). - - - - Laptop lid close action on battery - The action to take when the laptop lid is closed and the laptop is on battery power. Possible values are "suspend", "hibernate", "blank", and "nothing". - - - - Действие закрытия панели при питании от батареи - Действие, выполняемое при закрытии панели ноутбука, питающегося от батареи. Возможные значения: «suspend», «hibernate», «blank» и «nothing». - - - - - /schemas/apps/gnome-power-manager/buttons/lid_ac - /apps/gnome-power-manager/buttons/lid_ac - string - suspend - - Laptop lid close action when on AC - The action to take when the laptop lid is closed and the laptop is on AC power. Possible values are "suspend", "hibernate", "blank" and "nothing". - - - - Aktion beim Schließen des Laptops bei Netzversorgung - Die auszuführende Aktion beim Schließen des Laptops, wenn dieser an die Netzversorgung angeschlossen ist. Mögliche Werte sind »hibernate« (Ruhezustand), »suspend« (Bereitschaft), »blank« (Abdunkeln) und »nothing« (nichts). - - - - Laptop lid close action when on AC - The action to take when the laptop lid is closed and the laptop is on AC power. Possible values are "suspend", "hibernate", "blank" and "nothing". - - - - Действие закрытия панели при питании от сети - Действие, выполняемое при закрытии панели ноутбука, питающегося от сети. Возможные значения: «suspend», «hibernate», «blank» и «nothing». - - - - - /schemas/apps/gnome-power-manager/general/installed_schema - /apps/gnome-power-manager/general/installed_schema - gnome-power-manager - int - 3 - - The default configuration version - The version of the installed version of the schema. Do not edit this value, it is used so that configure changes between versions can be detected. - - - - Die voreingestellte Konfigurationsversion - Die Version der installierten Schema-Version. Ändern Sie diesen Wert nicht, da er verwendet wird, um die Änderungen zwischen Versionen zu erkennen. - - - - The default configuration version - The version of the installed version of the schema. Do not edit this value; it is used so that configuration changes between versions can be detected. - - - - Версия конфигурации по умолчанию - Версия установленной схемы настроек. Не исправляйте это значение, оно будет использовано для обновления конфигурации при установке новых версий. - - - - - /schemas/apps/gnome-power-manager/general/use_profile_time - /apps/gnome-power-manager/general/use_profile_time - gnome-power-manager - bool - true - - If the learnt profile should be used to calculate the time remaining - If the learnt profile should be used to calculate the time remaining. Only turn this off for debugging. - - - - Legt fest, ob das gelernte Profil zur Berechnung der verbleibenden Zeit verwendet werden soll - Legt fest, ob das gelernte Profil zur Berechnung der verbleibenden Zeit verwendet werden soll. Schalten Sie dies nur zur Fehlersuche aus. - - - - If the learnt profile should be used to calculate the time remaining - If the learnt profile should be used to calculate the time remaining. Only turn this off for debugging. - - - - Использовать ли выведенный профиль для вычисления оставшегося времени работы. - Использовать ли выведенный профиль для вычисления оставшегося времени работы. Выключайте только для отладки. - - - - - /schemas/apps/gnome-power-manager/general/use_time_for_policy - /apps/gnome-power-manager/general/use_time_for_policy - gnome-power-manager - bool - true - - Whether to use time-based notifications - 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. - - - - Legt fest, ob Benachrichtigungen sich auf die verbleibende Zeit beziehen sollen - 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. - - - - Whether to use time-based notifications - 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. - - - - Использовать ли уведомления на основании времени - Должны ли использоваться уведомления на основе времени. Если этот параметр не установлен, вместо времени будет использоваться процент заряда батареи, что может исправить проблему с испорченными ACPI BIOS. - - - - - /schemas/apps/gnome-power-manager/general/check_type_cpu - /apps/gnome-power-manager/general/check_type_cpu - gnome-power-manager - bool - false - - Check CPU load before sleeping - If the CPU load should be checked before doing the idle action. - - - - Prozessorlast überprüfen, bevor in Bereitschaft gewechselt wird - Legt fest, ob die CPU-Last überprüft werden soll, bevor eine Leerlauf-Aktion durchgeführt wird. - - - - Check CPU load before sleeping - If the CPU load should be checked before doing the idle action. - - - - Проверять загрузку ЦП перед приостановкой - Проверять ли загрузку ЦП перед выполнением действия простоя. - - - - - /schemas/apps/gnome-power-manager/general/network_sleep - /apps/gnome-power-manager/general/network_sleep - gnome-power-manager - bool - false - - Whether NetworkManager should be connected and disconnected on sleep - Whether NetworkManager should disconnect before suspending or hibernating and connect on resume. - - - - Legt fest, ob »NetworkManager« vor bzw. nach Bereitschaft das Netzwerk trennen bzw. verbinden soll - Legt fest, ob »NetworkManager« vor dem Wechsel in Bereitschaft oder den Ruhezustand die Netzwerkverbindung trennen und nach dem Aufwachen wieder aufbauen soll. - - - - Whether NetworkManager should be connected and disconnected on sleep - Whether NetworkManager should disconnect before suspending or hibernating and connect on resume. - - - - Должен ли NetworkManager разрывать соединение при переходе в спящий режим - Должен ли NetworkManager разрывать соединение перед переходом в ждущий или спящий режим и восстанавливать его при возврате в обычный режим работы. - - - - - /schemas/apps/gnome-power-manager/lock/use_screensaver_settings - /apps/gnome-power-manager/lock/use_screensaver_settings - gnome-power-manager - bool - true - - Use gnome-screensaver lock setting - Whether to use the screen lock setting of gnome-screensaver to decide if the screen is locked after a hibernate, suspend or blank screen. - - - - Einstellung zum Sperren des Bildschirms von »gnome-screensaver« übernehmen - Legt fest, ob die Einstellung von »gnome-screensaver« zur Entscheidung verwendet werden soll, ob der Bildschirm nach einem Ruhezustand, einer Bereitschaft oder einem abgeschalteten Bildschirm gesperrt ist. - - - - Use gnome-screensaver lock setting - Whether to use the screen lock setting of gnome-screensaver to decide if the screen is locked after a hibernate, suspend or blank screen. - - - - Использовать параметр блокировки программы gnome-screensaver - Использовать ли параметр блокировки экрана программы gnome-screensaver чтобы определить, нужно ли блокировать экран после ждущего режима, спящего режима или отключения дисплея - - - - - /schemas/apps/gnome-power-manager/lock/blank_screen - /apps/gnome-power-manager/lock/blank_screen - gnome-power-manager - bool - true - - Lock screen when blanked - Whether the screen is locked when the screen is turned off. Only used if lock_use_screensaver_settings is false. - - - - Bildschirm beim Abdunkeln sperren - Legt fest, ob der Bildschirm gesperrt wird, nachdem der Bildschirm abgeschaltet wird. Wird nur berücksichtigt, falls »lock_use_screensaver_settings« den Wert »falsch« hat. - - - - Lock screen when blanked - Whether the screen is locked when the screen is turned off. Only used if lock_use_screensaver_settings is false. - - - - Блокировать экран при активировании сохранения экрана - Блокировать ли экран при отключении. Используется только в случае, если не установлен параметр lock_use_screensaver_settings. - - - - - /schemas/apps/gnome-power-manager/lock/suspend - /apps/gnome-power-manager/lock/suspend - gnome-power-manager - bool - true - - Lock screen on suspend - Whether the screen is locked when the computer wakes up from a suspend. Only used if lock_use_screensaver_settings is false. - - - - Bildschirm beim Wechsel in die Bereitschaft sperren - Legt fest, ob der Bildschirm gesperrt werden soll, wenn der Rechner aus der Bereitschaft aufwacht. Wird nur berücksichtigt, wenn »lock_use_screensaver_settings« den Wert »falsch« hat. - - - - Lock screen on suspend - Whether the screen is locked when the computer wakes up from a suspend. Only used if lock_use_screensaver_settings is false. - - - - Блокировать экран при переходе в ждущий режим - Блокировать ли экран после восстановления компьютера из ждущего режима. Используется только в случае, если не установлен параметр lock_use_screensaver_settings. - - - - - /schemas/apps/gnome-power-manager/lock/hibernate - /apps/gnome-power-manager/lock/hibernate - gnome-power-manager - bool - true - - Lock screen on hibernate - Whether the screen is locked when the computer wakes up from a hibernate. Only used if lock_use_screensaver_settings is false. - - - - Bildschirm beim Wechsel in den Ruhezustand sperren - Legt fest, ob der Bildschirm gesperrt ist, wenn der Rechner aus dem Ruhezustand aufwacht. Wird nur berücksichtigt, wenn »lock_use_screensaver_settings« den Wert »falsch« hat. - - - - Lock screen on hibernate - Whether the screen is locked when the computer wakes up from a hibernate. Only used if lock_use_screensaver_settings is false. - - - - Блокировать экран при переходе в спящий режим - Блокировать ли экран после восстановления компьютера из спящего режима. Используется только в случае, если не установлен параметр lock_use_screensaver_settings. - - - - - /schemas/apps/gnome-power-manager/lock/gnome_keyring_suspend - /apps/gnome-power-manager/lock/gnome_keyring_suspend - gnome-power-manager - bool - false - - Lock GNOME keyring on sleep - Whether the GNOME keyring is locked before the computer enters suspend. This means the keyring will have to be unlocked on resume. - - - - Schlüsselbund im Energiesparmodus sperren - Legt fest, der GNOME-Schlüsselbund gesperrt wird, bevor der Rechner in die Bereitschaft wechselt. Das bedeutet, dass der Schlüsselbund beim Fortsetzen entsperrt werden muss. - - - - Lock GNOME keyring on sleep - Whether the GNOME keyring is locked before the computer enters suspend. This means the keyring will have to be unlocked on resume. - - - - Блокировать связку ключей GNOME при переходе в спящий режим - Блокировать ли связку ключей GNOME во время входа в ждущий режим. Связку ключей необходимо разблокировать после возврата к работе. - - - - - /schemas/apps/gnome-power-manager/lock/gnome_keyring_hibernate - /apps/gnome-power-manager/lock/gnome_keyring_hibernate - gnome-power-manager - bool - true - - Lock GNOME keyring on sleep - Whether the GNOME keyring is locked before the computer enters hibernate. This means the keyring will have to be unlocked on resume. - - - - Schlüsselbund im Energiesparmodus sperren - Legt fest, ob der GNOME-Schlüsselbund gesperrt wird, bevor der Rechner in den Ruhezustand wechselt. Das bedeutet, dass der Schlüsselbund beim Fortsetzen entsperrt werden muss. - - - - Lock GNOME keyring on sleep - Whether the GNOME keyring is locked before the computer enters hibernate. This means the keyring will have to be unlocked on resume. - - - - Блокировать связку ключей GNOME при переходе в спящий режим - Блокировать ли связку ключей GNOME во время входа в спящий режим. Связку ключей необходимо разблокировать после возврата к работе. - - - - - /schemas/apps/gnome-power-manager/disks/spindown_enable_ac - /apps/gnome-power-manager/disks/spindown_enable_ac - gnome-power-manager - bool - false - - If the low-power mode should be enabled when on AC - If the system low-power mode should be enabled when on AC power. - - - - Legt fest, ob der Rechner in Bereitschaft gehen soll, wenn das Stromkabel angeschlossen ist. - Legt fest, ob der Energiesparmodus nach einer festgelegten Zeit des Leerlaufs im Netzbetrieb abgedunkelt wird, um Strom zu sparen. - - - - If the low-power mode should be enabled when on AC - If the system low-power mode should be enabled when on AC power. - - - - Включить ли режим пониженного потребления при работе от сети - Должен ли включаться режим пониженного потребления при работе от сети. - - - - - /schemas/apps/gnome-power-manager/disks/spindown_enable_battery - /apps/gnome-power-manager/disks/spindown_enable_battery - gnome-power-manager - bool - true - - If the low-power mode should be enabled when on battery - If the system low-power mode should be enabled when on laptop battery power. - - - - Legt fest, ob im Akkubetrieb in Bereitschaft gewechselt werden soll. - Legt fest, ob der Energiesparmodus im Akkubetrieb aktiviert werden soll. - - - - If the low-power mode should be enabled when on battery - If the system low-power mode should be enabled when on laptop battery power. - - - - Включить ли режим пониженного потребления при работе от батареи - Должен ли включаться режим пониженного потребления при работе системы от батареи. - - - - - /schemas/apps/gnome-power-manager/disks/spindown_timeout_ac - /apps/gnome-power-manager/disks/spindown_timeout_ac - gnome-power-manager - int - 600 - - Seconds of inactivity to spin down when on AC - The number of seconds of inactivity to spin down the disks when on AC power. - - - - Leerlaufzeit in Sekunden bis zum Herunterfahren der Festplatten im Netzbetrieb - Anzahl der Sekunden der Leerlaufzeit, bis die Festplatten im Netzbetrieb heruntergefahren werden. - - - - Seconds of inactivity to spin down when on AC - The number of seconds of inactivity to spin down the disks when on AC power. - - - - Время простоя для замедления жёсткого диска при питании от сети - Количество секунд простоя для замедления жёстких дисков при питании от сети. - - - - - /schemas/apps/gnome-power-manager/disks/spindown_timeout_battery - /apps/gnome-power-manager/disks/spindown_timeout_battery - gnome-power-manager - int - 60 - - Seconds of inactivity to spin down when on battery - The number of seconds of inactivity to spin down the disks when on battery power. - - - - Leerlaufzeit in Sekunden bis zum Herunterfahren der Festplatten im Akkubetrieb - Anzahl der Sekunden der Leerlaufzeit, bis die Festplatten im Akkubetrieb heruntergefahren werden. - - - - Seconds of inactivity to spin down when on battery - The number of seconds of inactivity to spin down the disks when on battery power. - - - - Время простоя для замедления жёсткого диска при питании от батареи - Количество секунд простоя для замедления жёстких дисков при питании от батареи. - - - - - /schemas/apps/gnome-power-manager/notify/perhaps_recall - /apps/gnome-power-manager/notify/perhaps_recall - gnome-power-manager - bool - true - - If we should show the recalled battery warning for a broken battery - If we should show the recalled battery warning for a broken battery. Set this to false only if you know your battery is okay. - - - - Legt fest, ob die Warnung für einen Rückruf bei einem defekten Akku angezeigt werden soll - 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. - - - - If we should show the recalled battery warning for a broken battery - If we should show the recalled battery warning for a broken battery. Set this to false only if you know your battery is okay. - - - - Показывать предупреждение об отзыве сломанной батареи - Показывать предупреждение об отзыве сломанной батареи. Снимайте эту настройку только если уверены в безопасности батареи. - - - - - /schemas/apps/gnome-power-manager/notify/low_capacity - /apps/gnome-power-manager/notify/low_capacity - gnome-power-manager - bool - true - - If we should show the low capacity warning for a broken battery - If we should show the low capacity warning for a broken battery. - - - - Legt fest, ob die Warnung für geringe Kapazität bei einem defekten Akku angezeigt werden soll - Legt fest, ob die Warnung für geringe Kapazität bei einem defekten Akku angezeigt werden soll. - - - - If we should show the low capacity warning for a broken battery - If we should show the low capacity warning for a broken battery. - - - - Показывать предупреждение о малом заряде для сломанных батарей - Показывать предупреждение о малом заряде для сломанных батарей. - - - - - /schemas/apps/gnome-power-manager/notify/discharging - /apps/gnome-power-manager/notify/discharging - gnome-power-manager - bool - true - - Notify when AC adapter is disconnected - If the user should be notified when the AC adapter is disconnected. - - - - Benachrichtigen, wenn der Rechner vom Netz getrennt wurde - Legt fest, ob der Benutzer benachrichtigt werden soll, wenn die Verbindung zum Stromnetz getrennt wurde. - - - - Notify when AC adapter is disconnected - If the user should be notified when the AC adapter is disconnected. - - - - Извещать при отключении сетевого адаптера - Уведомлять ли пользователя об отключении сетевого адаптера. - - - - - /schemas/apps/gnome-power-manager/notify/fully_charged - /apps/gnome-power-manager/notify/fully_charged - gnome-power-manager - bool - false - - Notify when fully charged - If a notification message should be displayed when the battery is fully charged. - - - - Benachrichtigen, wenn der Akku voll aufgeladen wurde - Legt fest, ob der Benutzer benachrichtigt werden soll, wenn der Akku vollständig aufgeladen wurde. - - - - Notify when fully charged - If a notification message should be displayed when the battery is fully charged. - - - - Извещать при полном заряде - Отображать ли сообщение, уведомляющее о полном заряде батареи. - - - - - /schemas/apps/gnome-power-manager/notify/sleep_failed - /apps/gnome-power-manager/notify/sleep_failed - gnome-power-manager - bool - true - - Notify on a sleep failure - If a notification message should be displayed after suspend or hibernate failed. - - - - Bei gescheitertem Wechsel in einen Energiesparmodus benachrichtigen - Legt fest, ob der Benutzer benachrichtigt werden soll, wenn Bereitschaft oder Ruhezustand scheitern. - - - - Notify on a sleep failure - If a notification message should be displayed after suspend or hibernate failed. - - - - Извещать об ошибках выхода в спящий режим - Отображать ли сообщение, уведомляющее о сбое перехода в ждущий или спящий режим. - - - - - /schemas/apps/gnome-power-manager/notify/sleep_failed_uri - /apps/gnome-power-manager/notify/sleep_failed_uri - gnome-power-manager - string - - - The URI to show to the user on sleep failure - When sleep fails we can show the user a button to help fix the situation. Leave this blank if the button should not be shown. - - - - Die dem Benutzer anzuzeigende Adresse bei gescheitertem Wechsel in den Energiesparmodus - Wenn der Wechsel in den Energiesparmodus scheitert, kann ein Knopf angezeigt werden, welcher dem Benutzer das vorübergehende Beheben des Problems erlaubt. Bitte leer lassen, wenn der Knopf nicht angezeigt werden soll. - - - - The URI to show to the user on sleep failure - When sleep fails we can show the user a button to help fix the situation. Leave this blank if the button should not be shown. - - - - URI для показа пользователю в случае ошибки ждущего режима. - При неудачном переходе в ждущий режим можно предложить пользователю кнопку для отправки сообщения об ошибке. Оставьте пустым, чтобы не показывать кнопку. - - - - - /schemas/apps/gnome-power-manager/notify/low_power - /apps/gnome-power-manager/notify/low_power - gnome-power-manager - bool - true - - Notify on a low power - If a notification message should be displayed when the battery is getting low. - - - - Bei niedrigem Akkuladezustand benachrichtigen - Legt fest, ob der Benutzer benachrichtigt werden soll, wenn der Ladezustand des Akkus niedrig ist. - - - - Notify on a low power - If a notification message should be displayed when the battery is getting low. - - - - Извещать о недостаточном питании - Отображать ли сообщение, уведомляющее о разряде батареи. - - - - - /schemas/apps/gnome-power-manager/statistics/show_axis_labels - /apps/gnome-power-manager/statistics/show_axis_labels - gnome-power-manager - bool - true - - Whether we should show the axis labels in the statistics window - Whether we should show the axis labels in the statistics window. - - - - Legt fest, ob Achsenbeschriftungen im Statistikfenster angezeigt werden sollen - Legt fest, ob Achsenbeschriftungen im Statistikfenster angezeigt werden sollen. - - - - Whether we should show the axis labels in the statistics window - Whether we should show the axis labels in the statistics window. - - - - Показывать ли метки координатных осей в окне статистики - Показывать ли метки координатных осей в окне статистики. - - - - - /schemas/apps/gnome-power-manager/statistics/show_events - /apps/gnome-power-manager/statistics/show_events - gnome-power-manager - bool - true - - Whether we should show the events in the statistics window - Whether we should show the events in the statistics window. - - - - Legt fest, ob energiebezogene Ereignisse im Statistikfenster angezeigt werden sollen - Legt fest, ob energiebezogene Ereignisse im Statistikfenster angezeigt werden sollen. - - - - Whether we should show the events in the statistics window - Whether we should show the events in the statistics window. - - - - Показывать события в окне статистики - Показывать события в окне статистики. - - - - - /schemas/apps/gnome-power-manager/statistics/smooth_data - /apps/gnome-power-manager/statistics/smooth_data - gnome-power-manager - bool - true - - Whether we should smooth the data in the graph - Whether we should smooth the data in the graph. - - - - Legt fest, ob Daten in der Grafik geglättet werden sollen - Legt fest, ob Daten in der Grafik geglättet werden sollen. - - - - Whether we should smooth the data in the graph - Whether we should smooth the data in the graph. - - - - Сглаживать ли данные на графике - Сглаживать ли данные на графике. - - - - - /schemas/apps/gnome-power-manager/statistics/graph_type - /apps/gnome-power-manager/statistics/graph_type - gnome-power-manager - string - power - - The default graph type to show in the statistics window - The default graph type to show in the statistics window. - - - - Der Graph, der im Statistikfenster standardmäßig angezeigt werden soll - Der Graph, der im Statistikfenster standardmäßig angezeigt werden soll - - - - The default graph type to show in the statistics window - The default graph type to show in the statistics window. - - - - Тип графика в окне статистики по умолчанию. - Тип графика в окне статистики по умолчанию. - - - - - /schemas/apps/gnome-power-manager/statistics/data_max_time - /apps/gnome-power-manager/statistics/data_max_time - gnome-power-manager - int - 21600 - - The maximum time displayed on the graph - The maximum duration of time displayed on the x-axis of the graph. - - - - Die maximale Zeitspanne, die in Grafiken dargestellt wird. - Die Zeitspanne, die auf der x-Achse der Grafiken maximal dargestellt wird. - - - - The maximum time displayed on the graph - The maximum duration of time displayed on the x-axis of the graph. - - - - Максимальное время, отображаемое на графике - Максимальная продолжительность времени по оси X. - - - - - /schemas/apps/gnome-power-manager/thresholds/percentage_low - /apps/gnome-power-manager/thresholds/percentage_low - gnome-power-manager - int - 10 - - Percentage considered low - The percentage of the battery when it is considered low. Only valid when use_time_for_policy is false. - - - - Ladezustand niedrig - Prozentwert, bei dem der Akkuladezustand als niedrig eingestuft wird. Wird nur berücksichtigt, wenn use_time_for_policy den Wert »falsch« hat. - - - - Percentage considered low - The percentage of the battery when it is considered low. Only valid when use_time_for_policy is false. - - - - Процент заряда, воспринимаемый как низкий - Процент заряда батареи, воспринимаемый как низкий. Действителен только если не установлен параметр use_time_for_policy. - - - - - /schemas/apps/gnome-power-manager/thresholds/percentage_critical - /apps/gnome-power-manager/thresholds/percentage_critical - gnome-power-manager - int - 3 - - Percentage considered critical - The percentage of the battery when it is considered critical. Only valid when use_time_for_policy is false. - - - - Ladezustand kritisch - Prozentwert, bei dem der Akkuladezustand als kritisch eingestuft wird. Wird nur berücksichtigt, wenn use_time_for_policy den Wert »falsch« hat. - - - - Percentage considered critical - The percentage of the battery when it is considered critical. Only valid when use_time_for_policy is false. - - - - Процент заряда, воспринимаемый как критический - Процент заряда батареи, воспринимаемый как критический. Параметр действителен только в том случае, если не установлен ключ use_time_for_policy. - - - - - /schemas/apps/gnome-power-manager/thresholds/percentage_action - /apps/gnome-power-manager/thresholds/percentage_action - gnome-power-manager - int - 2 - - Percentage action is taken - The percentage of the battery when the critical action is performed. Only valid when use_time_for_policy is false. - - - - Wegen des Ladezustands wird eine Aktion durchgeführt - Prozentwert, bei dem eine Aktion wegen kritischen Ladezustands durchgeführt wird. Wird nur berücksichtigt, wenn use_time_for_policy den Wert »falsch« hat. - - - - Percentage action is taken - The percentage of the battery when the critical action is performed. Only valid when use_time_for_policy is false. - - - - Действие выполняется по проценту заряда - Процент заряда батареи, при котором выполняется критическое действие. Действителен только если не установлен параметр use_time_for_policy. - - - - - /schemas/apps/gnome-power-manager/thresholds/time_low - /apps/gnome-power-manager/thresholds/time_low - gnome-power-manager - int - 1200 - - The time remaining when low - The time remaining in seconds of the battery when it is considered low. Only valid when use_time_for_policy is true. - - - - Die verbleibende Zeit bei niedrigem Ladezustand - 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. - - - - The time remaining when low - The time remaining in seconds of the battery when it is considered low. Only valid when use_time_for_policy is true. - - - - Оставшееся время, воспринимаемое как низкое - Оставшееся время работы на батарее в секундах, воспринимаемое как низкое. Действительно только в случае, когда установлен параметр use_time_for_policy. - - - - - /schemas/apps/gnome-power-manager/thresholds/time_critical - /apps/gnome-power-manager/thresholds/time_critical - gnome-power-manager - int - 300 - - The time remaining when critical - The time remaining in seconds of the battery when it is considered critical. Only valid when use_time_for_policy is true. - - - - Die verbleibende Laufzeit bei kritischem Ladezustand - Verbleibende Laufzeit des Akkus in Sekunden, bei der sein Ladezustand als kritisch angesehen wird. Wird nur berücksichtigt, wenn use_time_for_policy den Wert »wahr« hat. - - - - The time remaining when critical - The time remaining in seconds of the battery when it is considered critical. Only valid when use_time_for_policy is true. - - - - Оставшееся время, воспринимаемое как критическое - Оставшееся время работы на батарее в секундах, воспринимаемое как критическое. Действительно только в случае, когда установлен параметр use_time_for_policy. - - - - - /schemas/apps/gnome-power-manager/thresholds/time_action - /apps/gnome-power-manager/thresholds/time_action - gnome-power-manager - int - 120 - - The time remaining when action is taken - The time remaining in seconds of the battery when critical action is taken. Only valid when use_time_for_policy is true. - - - - Die verbleibende Laufzeit, bei der eine Aktion durchgeführt wird - 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. - - - - The time remaining when action is taken - The time remaining in seconds of the battery when critical action is taken. Only valid when use_time_for_policy is true. - - - - Оставшееся время, когда выполняется действие - Оставшееся время работы на батарее в секундах, когда выполняется критическое действие. Действительно только в случае, когда установлен параметр use_time_for_policy. - - - - - /schemas/apps/gnome-power-manager/timeout/sleep_computer_battery - /apps/gnome-power-manager/timeout/sleep_computer_battery - int - 0 - - Sleep timeout computer when on battery - The amount of time in seconds the computer on battery power needs to be inactive before it goes to sleep. - - - - Zeitspanne bis zur Aktivierung des Energiesparmodus bei Akkubetrieb - Leerlaufzeit in Sekunden bevor der Rechner in die Bereitschaft versetzt wird, wenn dieser im Akkubetrieb läuft. - - - - Sleep timeout computer when on battery - The amount of time in seconds the computer on battery power needs to be inactive before it goes to sleep. - - - - Задержка приостановки компьютера при питании от батареи - Сколько секунд компьютер должен простаивать при питании от батарей перед приостановкой. - - - - - /schemas/apps/gnome-power-manager/timeout/sleep_computer_ac - /apps/gnome-power-manager/timeout/sleep_computer_ac - int - 0 - - Sleep timeout computer when on AC - The amount of time in seconds the computer on AC power needs to be inactive before it goes to sleep. - - - - Zeitspanne bis zur Aktivierung des Energiesparmodus bei Netzversorgung - Leerlaufzeit in Sekunden bevor der Rechner in die Bereitschaft versetzt wird, wenn dieser im Netzbetrieb läuft. - - - - Sleep timeout computer when on AC - The amount of time in seconds the computer on AC power needs to be inactive before it goes to sleep. - - - - Задержка приостановки компьютера при питании от сети - Сколько секунд компьютер должен простаивать при питании от сети перед приостановкой. - - - - - /schemas/apps/gnome-power-manager/timeout/sleep_computer_ups - /apps/gnome-power-manager/timeout/sleep_computer_ups - int - 0 - - Sleep timeout computer when on UPS - The amount of time in seconds the computer on UPS power needs to be inactive before it goes to sleep. - - - - Zeitspanne bis zur Aktivierung des Energiesparmodus unter Notstromversorgung - Leerlaufzeit in Sekunden, bevor der Rechner in die Bereitschaft versetzt wird, wenn dieser unter Notstromversorgung läuft. - - - - Sleep timeout computer when on UPS - The amount of time in seconds the computer on UPS power needs to be inactive before it goes to sleep. - - - - Задержка приостановки компьютера при питании ИБП - Сколько секунд компьютер должен простаивать перед приостановкой при питании от ИБП. - - - - - /schemas/apps/gnome-power-manager/timeout/sleep_display_ac - /apps/gnome-power-manager/timeout/sleep_display_ac - int - 1800 - - Sleep timeout display when on AC - The amount of time in seconds before the display goes to sleep when the computer is on AC power. - - - - Zeitspanne bis zum Abdunkeln des Bildschirms bei Netzversorgung - Zeit in Sekunden vor Abdunkelung des Bildschirms bei Netzversorgung. - - - - Sleep timeout display when on AC - The amount of time in seconds before the display goes to sleep when the computer is on AC power. - - - - Задержка отключения дисплея при питании от сети - Время бездействия в секундах, по истечении которого дисплей будет отключён при работе от сети. - - - - - /schemas/apps/gnome-power-manager/timeout/sleep_display_battery - /apps/gnome-power-manager/timeout/sleep_display_battery - int - 600 - - Sleep timeout display when on battery - The amount of time in seconds the computer on battery power needs to be inactive before the display goes to sleep. - - - - Zeitspanne bis zum Abdunkeln des Bildschirms bei Akkubetrieb - Leerlaufzeit in Sekunden bevor im Akkubetrieb der Bildschirm abgedunkelt wird. - - - - Sleep timeout display when on battery - The amount of time in seconds the computer on battery power needs to be inactive before the display goes to sleep. - - - - Задержка отключения дисплея при питании от батареи - Сколько секунд компьютер должен простаивать при питании от батарей перед отключением дисплея. - - - - - /schemas/apps/gnome-power-manager/timeout/sleep_display_ups - /apps/gnome-power-manager/timeout/sleep_display_ups - int - 600 - - Sleep timeout display when on UPS - The amount of time in seconds the computer on UPS power needs to be inactive before the display goes to sleep. - - - - Zeitspanne bis zum Abdunkeln des Bildschirms unter Notstromversorgung - Leerlaufzeit in Sekunden, bevor bei Notstromversorgung der Bildschirm abgedunkelt wird. - - - - Sleep timeout display when on UPS - The amount of time in seconds the computer on UPS power needs to be inactive before the display goes to sleep. - - - - Задержка отключения дисплея при питании от ИБП - Сколько секунд компьютер должен простаивать перед отключением дисплея при питании от ИБП. - - - - - /schemas/apps/gnome-power-manager/ui/enable_sound - /apps/gnome-power-manager/ui/enable_sound - gnome-power-manager - bool - true - - If sounds should be used - If sounds should be used when the power is critically low, or inhibit requests have stopped the policy action. - - - - Legt fest, ob Klänge verwendet werden sollen - Legt fest, ob bei kritischem Ladezustand oder bei unterdrücktem Wechsel in den Energiesparmodus ein Klang als Warnmeldung ausgegeben werden soll. - - - - If sounds should be used - If sounds should be used when the power is critically low, or inhibit requests have stopped the policy action. - - - - Использовать ли звуковые уведомления - Должны ли использоваться звуковые уведомления для извещения о низком уровне батарей или о том, что блокирующие запросы остановили запланированное действие. - - - - - /schemas/apps/gnome-power-manager/ui/show_actions - /apps/gnome-power-manager/ui/show_actions - gnome-power-manager - bool - true - - If preferences and statistics items should be shown in the context menu - - - - - Legt fest, ob Einstellungs- und Statistik-Einträge im Kontextmenü angezeigt werden sollen - - - - - If preferences and statistics items should be shown in the context menu - - - - - Должны ли параметры и элементы статистики отображаться в контекстном меню - - - - - - /schemas/apps/gnome-power-manager/ui/icon_policy - /apps/gnome-power-manager/ui/icon_policy - gnome-power-manager - string - present - - When to show the notification icon - Display options for the notification icon. Valid options are "never", "low", "critical", "charge", "present" and "always". - - - - Legt fest, wann das Benachrichtigungssymbol angezeigt werden soll - Einstellungen für das Symbol im Benachrichtigungsfeld. Mögliche Zustände sind »never« (niemals), »low« (niedrig), »critical« (kritisch) »charge« (laden), »present« (Akku vorhanden) und »always« (immer). - - - - When to show the notification icon - Display options for the notification icon. Valid options are "never", "low", "critical", "charge", "present" and "always". - - - - Когда отображать значок уведомления - Параметры отображения значка уведомления. Возможные значения: «never», «low», «critical», «charge», «present» и «always». - - - - - diff --git a/gconf/schemas/gnome-screensaver.schemas b/gconf/schemas/gnome-screensaver.schemas deleted file mode 100644 index 92f8169..0000000 --- a/gconf/schemas/gnome-screensaver.schemas +++ /dev/null @@ -1,497 +0,0 @@ - - - - - /schemas/apps/gnome-screensaver/idle_activation_enabled - /apps/gnome-screensaver/idle_activation_enabled - gnome-screensaver - bool - TRUE - - Activate when idle - - Set this to TRUE to activate the screensaver - when the session is idle. - - - - - Bei Untätigkeit aktivieren - Setzen Sie diesen Wert auf TRUE (Wahr), um den Bildschirmschoner zu aktivieren, wenn der Benutzer untätig ist. - - - - Activate when idle - Set this to TRUE to activate the screensaver when the session is idle. - - - - Активировать при простое - Если установлено значение TRUE, хранитель экрана будет блокировать экран, когда сеанс простаивает. - - - - - /schemas/apps/gnome-screensaver/lock_enabled - /apps/gnome-screensaver/lock_enabled - gnome-screensaver - bool - TRUE - - Lock on activation - - Set this to TRUE to lock the screen when the screensaver - goes active. - - - - - Bei Aktivierung sperren - Setzen Sie diesen Wert auf TRUE (Wahr), um den Bildschirm zu sperren, wenn der Bildschirmschoner aktiviert wird. - - - - Lock on activation - Set this to TRUE to lock the screen when the screensaver goes active. - - - - Блокировать экран - Установите, чтобы хранитель экрана блокировал экран. - - - - - /schemas/apps/gnome-screensaver/mode - /apps/gnome-screensaver/mode - gnome-screensaver - string - blank-only - - Screensaver theme selection mode - - The selection mode used by screensaver. May be "blank-only" - to enable the screensaver without using any theme on activation, - "single" to enable screensaver using only one theme on activation - (specified in "themes" key), and "random" to enable the - screensaver using a random theme on activation. - - - - - Bildschirmschonerauswahlmodus - Der Auswahlmodus des Bildschirmschoners. Mögliche Werte sind »blank-only«, um den Bildschirm schwarz zu schalten, ohne dass irgendein Thema verwendet wird, »single«, damit der Bildschirmschoner genau ein Thema verwendet (dieses wird über den Schlüssel »themes« festgelegt) und »random«, damit der Bildschirmschoner ein zufälliges Thema auswählt. - - - - Screensaver theme selection mode - The selection mode used by screensaver. May be "blank-only" to enable the screensaver without using any theme on activation, "single" to enable screensaver using only one theme on activation (specified in "themes" key), and "random" to enable the screensaver using a random theme on activation. - - - - Режим выбора темы хранителя экрана - Режим выбора, используемый хранителем экрана. Возможные варианты: «disabled» - отключён, «blank-only» - чёрный экран, «single» - использовать одну тему, указанную ключом «темы», «random» - использовать произвольную тему при активации. - - - - - /schemas/apps/gnome-screensaver/themes - /apps/gnome-screensaver/themes - gnome-screensaver - list - string - [] - - Screensaver themes - - This key specifies the list of themes to be used by the - screensaver. It's ignored when "mode" key is - "blank-only", should provide the theme name when "mode" is - "single", and should provide a list of themes when "mode" is - "random". - - - - - Bildschirmschonerthemen - Dieser Schlüssel legt die vom Bildschirmschoner verwendeten Themen fest. Der Wert wird ignoriert, wenn der Schlüssel »mode« auf »blank-only« gesetzt ist. Im Modus »single« enthält der Schlüssel genau einen Themennamen und im Modus »random« eine Liste von Themennamen. - - - - Screensaver themes - This key specifies the list of themes to be used by the screensaver. It's ignored when "mode" key is "blank-only", should provide the theme name when "mode" is "single", and should provide a list of themes when "mode" is "random". - - - - Темы хранителя экрана - Этот ключ определяет список тем, используемых хранителем экрана. Он игнорируется, когда ключ «mode» установлен в «disabled» или «blank-only», должен предоставлять имя одной темы, если ключ «mode» установлен в «single», или список тем, если ключ «mode» установлен в «random». - - - - - /schemas/apps/gnome-screensaver/idle_delay - /apps/gnome-screensaver/idle_delay - gnome-screensaver - int - 10 - - Time before session is considered idle - - The number of minutes of inactivity before the - session is considered idle. - - - - - Zeitdauer, ab der die Sitzung als untätig gilt - Die Anzahl inaktiver Minuten, bis der Benutzer als untätig gilt. - - - - Time before session is considered idle - The number of minutes of inactivity before the session is considered idle. - - - - Интервал бездействия, по истечении которого сеанс считается простаивающим. - Интервал бездействия, по истечении которого сеанс считается простаивающим. - - - - - /schemas/apps/gnome-screensaver/power_management_delay - /apps/gnome-screensaver/power_management_delay - gnome-screensaver - int - 30 - - Time before power-management baseline - - The number of seconds of inactivity before signalling - to power-management. This key is set and maintained - by the session power-management agent. - - - - - Zeit bis zum Benachrichtigen der Energieverwaltung - Die Dauer der Untätigkeit in Sekunden, bevor die Energieverwaltung benachrichtigt wird. Dieser Schlüssel wird vom Energieverwaltungsdienst der Sitzung gesteuert. - - - - Time before power management baseline - The number of seconds of inactivity before signalling to power management. This key is set and maintained by the session power management agent. - - - - Время до выключения питания - Промежуток времени, по истечении которого система управления питанием получает сигнал о бездействии пользователя в сеансе. Этот ключ управляется агентом управления питанием. - - - - - /schemas/apps/gnome-screensaver/cycle_delay - /apps/gnome-screensaver/cycle_delay - gnome-screensaver - int - 10 - - Time before theme change - - The number of minutes to run before changing the - screensaver theme. - - - - - Zeit bis zum Wechsel des Bildschirmschoners - Die Anzahl an Minuten, bis der Bildschirmschoner gewechselt wird. - - - - Time before theme change - The number of minutes to run before changing the screensaver theme. - - - - Интервал изменения темы - Интервал между сменами тем хранителя экрана. - - - - - /schemas/apps/gnome-screensaver/lock_delay - /apps/gnome-screensaver/lock_delay - gnome-screensaver - int - 0 - - Time before locking - - The number of minutes after screensaver activation - before locking the screen. - - - - - Zeit bis zum Sperren - Die Anzahl an Minuten nach Aktivierung des Bildschirmschoners, bis der Bildschirm gesperrt wird. - - - - Time before locking - The number of minutes after screensaver activation before locking the screen. - - - - Интервал блокировки - Количество минут после активации хранителя экрана, по истечении которых экран будет заблокирован. - - - - - /schemas/apps/gnome-screensaver/embedded_keyboard_enabled - /apps/gnome-screensaver/embedded_keyboard_enabled - gnome-screensaver - bool - FALSE - - Allow embedding a keyboard into the window - - Set this to TRUE to allow embedding a keyboard into the - window when trying to unlock. The "keyboard_command" key - must be set with the appropriate command. - - - - - Bildschirmtastatur im Fenster zulassen - Setzen Sie diesen Wert auf TRUE (Wahr), um das Einbetten einer Bildschirmtastatur in den Entsperrdialog zu erlauben. Der Schlüssel »keyboard_command« muss einen entsprechenden Befehl enthalten. - - - - Allow embedding a keyboard into the window - Set this to TRUE to allow embedding a keyboard into the window when trying to unlock. The "keyboard_command" key must be set with the appropriate command. - - - - Разрешить встраивание клавиатуры в окно - Установите, чтобы разрешить встраивание клавиатуры в окно при попытке разблокирования. Соответствующая команда должна быть указана в ключе «keyboard_command». - - - - - /schemas/apps/gnome-screensaver/embedded_keyboard_command - /apps/gnome-screensaver/embedded_keyboard_command - gnome-screensaver - string - - - Embedded keyboard command - - The command that will be run, if the "embedded_keyboard_enabled" key - is set to TRUE, to embed a keyboard widget into the window. - This command should implement an XEMBED plug interface and - output a window XID on the standard output. - - - - - Befehl für Bildschirmtastatur - Der auszuführende Befehl um eine Bildschirmtastatur in das Fenster einzubinden, wenn der Schlüssel »embedded_keyboard_enabled« auf TRUE (Wahr) gesetzt ist. Dieser Befehl sollte eine XEMBED-Plug-Schnittstelle implementieren und ein XID-Fenster in der Standardausgabe ausgeben. - - - - Embedded keyboard command - The command that will be run, if the "embedded_keyboard_enabled" key is set to TRUE, to embed a keyboard widget into the window. This command should implement an XEMBED plug interface and output a window XID on the standard output. - - - - Команда встроенной клавиатуры - Команда, которая должна выполняться, если установлен ключ «embedded_keyboard_enabled», для встраивания виджета клавиатуры в окно. Команда должна поддерживать интерфейс модуля XEMBED и выводить XID окна на стандартный вывод. - - - - - /schemas/apps/gnome-screensaver/logout_enabled - /apps/gnome-screensaver/logout_enabled - gnome-screensaver - bool - FALSE - - Allow logout - - Set this to TRUE to offer an option in unlock dialog to - logging out after a delay. The Delay is specified in the - "logout_delay" key. - - - - - Abmelden zulassen - Setzen Sie diesen Wert auf TRUE (Wahr), um bei gesperrtem Bildschirm eine Option zum Abmelden nach einer festgelegten Zeit anzuzeigen. Die Verzögerung wird im Schlüssel »logout_delay« festgelegt. - - - - Allow logout - Set this to TRUE to offer an option in the unlock dialogue to allow logging out after a delay. The delay is specified in the "logout_delay" key. - - - - Разрешить выход из сеанса - Установите, чтобы к диалогу разблокирования экрана добавилась возможность выхода из системы через определенный интервал. Интервал выхода из системы определяется ключом «logout_delay». - - - - - /schemas/apps/gnome-screensaver/logout_delay - /apps/gnome-screensaver/logout_delay - gnome-screensaver - int - 120 - - Time before logout option - - The number of minutes after the screensaver activation - before a logout option will appear in unlock dialog. This - key has effect only if the "logout_enable" key is set to TRUE. - - - - - Zeit bis zur Abmeldeoption - Die Anzahl an Minuten nach der Aktivierung des Bildschirmschoners, bis eine Abmeldeoption im Entsperrdialog angezeigt wird. Dieser Schlüssel wird nur berücksichtigt, wenn der Schlüssel »logout_enable« auf TRUE (Wahr) gesetzt ist. - - - - Time before logout option - The number of minutes after the screensaver activation before a logout option will appear in the unlock dialogue. This key has effect only if the "logout_enable" key is set to TRUE. - - - - Интервал выхода из системы - Интервал в минутах между активацией хранителя экрана и появлением параметра выхода из сеанса в диалоге разблокирования. Этот ключ имеет действие только в том случае, если установлено значение TRUE ключа «logout_enable». - - - - - /schemas/apps/gnome-screensaver/logout_command - /apps/gnome-screensaver/logout_command - gnome-screensaver - string - - - Logout command - - The command to invoke when the logout button is clicked. This - command should simply log the user out without any interaction. - This key has effect only if the "logout_enable" key is set to TRUE. - - - - - Abmeldebefehl - Der auszuführende Befehl, wenn der Abmeldeknopf angeklickt wird. Dieser Befehl sollte den Benutzer ohne weitere Interaktion einfach abmelden. Dieser Schlüssel wird nur berücksichtigt, wenn der Schlüssel »logout_enable« auf TRUE (Wahr) gesetzt ist. - - - - Logout command - The command to invoke when the logout button is clicked. This command should simply log the user out without any interaction. This key has effect only if the "logout_enable" key is set to TRUE. - - - - Команда выхода из сеанса - Команда, вызываемая при нажатии кнопки выхода из сеанса. Эта команда должна просто завершать сеанс пользователя без всякого интерактивного взаимодействия. Ключ имеет смысл только в том случае, если установлено значение TRUE ключа «logout_enable». - - - - - /schemas/apps/gnome-screensaver/user_switch_enabled - /apps/gnome-screensaver/user_switch_enabled - gnome-screensaver - bool - TRUE - - Allow user switching - - Set this to TRUE to offer an option in the unlock dialog to - switch to a different user account. - - - - - Benutzerwechsel zulassen - Setzen Sie diesen Wert auf TRUE (Wahr), um einen Benutzerwechsel an einem gesperrten Bildschirm zu ermöglichen. - - - - Allow user switching - Set this to TRUE to offer an option in the unlock dialogue to switch to a different user account. - - - - Разрешить переключение пользователей - Установите, чтобы диалог разблокирования экрана предоставлял возможность войти в систему под другим именем. - - - - - /schemas/apps/gnome-screensaver/lock_dialog_theme - /apps/gnome-screensaver/lock_dialog_theme - gnome-screensaver - string - default - - Theme for lock dialog - - Theme to use for the lock dialog. - - - - - Thema des Sperrdialogs - Das für den Sperrdialog zu verwendende Thema. - - - - Theme for lock dialogue - Theme to use for the lock dialogue. - - - - Тема диалога блокирования - Тема, используемая для диалога блокирования. - - - - - /schemas/apps/gnome-screensaver/status_message_enabled - /apps/gnome-screensaver/status_message_enabled - gnome-screensaver - bool - TRUE - - Allow the session status message to be displayed - - Allow the session status message to be displayed when the screen is locked. - - - - - Anzeige der Nachricht zum Sitzungsstatus zulassen - Anzeige der Nachricht zum Sitzungsstatus zulassen, wenn der Bildschirm gesperrt ist. - - - - Allow the session status message to be displayed - Allow the session status message to be displayed when the screen is locked. - - - - Разрешить показ состояния сеанса - Разрешить показ состояния сеанса когда экран заблокирован. - - - - - diff --git a/gconf/schemas/gnome-screenshot.schemas b/gconf/schemas/gnome-screenshot.schemas deleted file mode 100644 index 03f5541..0000000 --- a/gconf/schemas/gnome-screenshot.schemas +++ /dev/null @@ -1,171 +0,0 @@ - - - - - - - /schemas/apps/gnome-screenshot/take_window_shot - /apps/gnome-screenshot/take_window_shot - gnome-screenshot - bool - false - - Window-specific screenshot (deprecated) - Grab just the current window, rather than the whole desktop. - This key has been deprecated and it is no longer in use. - - - - Fensterbezogenes Bildschirmfoto (veraltet) - Nur das aktuelle Fenster statt der ganzen Arbeitsfläche aufnehmen. Dieser Schlüssel ist veraltet und wird nicht mehr verwendet. - - - - Window-specific screenshot (deprecated) - Grab just the current window, rather than the whole desktop. This key has been deprecated and it is no longer in use. - - - - Делать снимок текущего окна (устарел) - Снимать только текущее окно, а не весь рабочий стол. Этот ключ устарел и больше не используется. - - - - - /schemas/apps/gnome-screenshot/delay - /apps/gnome-screenshot/delay - gnome-screenshot - int - 0 - - Screenshot delay - The number of seconds to wait before taking the screenshot. - - - - Aufnahmeverzögerung - Die Anzahl der Sekunden, die bis zur Aufnahme des Bildschirmfotos gewartet wird. - - - - Screenshot delay - The number of seconds to wait before taking the screenshot. - - - - Задержка снимка экрана - Число секунд, которое будет ожидаться до того, как будет сделан снимок экрана. - - - - - /schemas/apps/gnome-screenshot/last_save_directory - /apps/gnome-screenshot/last_save_directory - gnome-screenshot - string - - - Screenshot directory - The directory the last screenshot was saved in. - - - - Ordner für Bildschirmfotos - Der Ordner, in dem zuletzt Bildschirmfotos abgelegt wurden. - - - - Screenshot directory - The directory the last screenshot was saved in. - - - - Каталог для снимков экрана - Каталог, в который последний раз был сохранён снимок. - - - - - /schemas/apps/gnome-screenshot/include_border - /apps/gnome-screenshot/include_border - gnome-screenshot - bool - true - - Include Border - Include the window manager border along with the screenshot - - - - Rahmen einbeziehen - Bezieht den Fensterrahmen des Fenster-Managers mit in das Bildschirmfoto ein - - - - Include Border - Include the window manager border along with the screenshot - - - - Включить рамку - Включить рамку оконного менеджера в снимок окна. - - - - - /schemas/apps/gnome-screenshot/include_pointer - /apps/gnome-screenshot/include_pointer - gnome-screenshot - bool - true - - Include Pointer - Include the pointer in the screenshot - - - - Zeiger einbeziehen - Den Zeiger mit in das Bildschirmfoto aufnehmen - - - - Include Pointer - Include the pointer in the screenshot - - - - Включить указатель - Включает указатель мыши в снимок экрана - - - - - /schemas/apps/gnome-screenshot/border_effect - /apps/gnome-screenshot/border_effect - gnome-screenshot - string - none - - Border Effect - Effect to add to the outside of a border. Possible values are "shadow", "none", and "border". - - - - - Rahmeneffekt - Der Effekt der auf die Außenseite des Fensterrahmens angewendet wird. Mögliche Werte sind »shadow« (Schatten), »none« (kein Effekt) und »border«(Rahmen). - - - - Border Effect - Effect to add to the outside of a border. Possible values are "shadow", "none", and "border". - - - - Эффект рамки - Эффект, добавляемый вокруг рамки. Возможные варианты: «shadow», «none» и «border». - - - - - diff --git a/gconf/schemas/gnome-search-tool.schemas b/gconf/schemas/gnome-search-tool.schemas deleted file mode 100644 index 14ebd94..0000000 --- a/gconf/schemas/gnome-search-tool.schemas +++ /dev/null @@ -1,753 +0,0 @@ - - - - - - - /apps/gnome-search-tool/show_additional_options - /schemas/apps/gnome-search-tool/show_additional_options - gnome-search-tool - bool - FALSE - - Show Additional Options - - This key determines if the "Select more options" section - is expanded when the search tool is started. - - - - - Zusätzliche Optionen anzeigen - Dieser Schlüssel legt fest, ob der Abschnitt »zusätzliche Optionen« angezeigt wird, wenn das Suchwerkzeug gestartet wird. - - - - Show Additional Options - This key determines if the "Select more options" section is expanded when the search tool is started. - - - - Показывать дополнительные параметры - Этот ключ определяет, разворачивать ли раздел дополнительных параметров при запуске средства поиска. - - - - /apps/gnome-search-tool/select/contains_the_text - /schemas/apps/gnome-search-tool/select/contains_the_text - gnome-search-tool - bool - TRUE - - Select the search option - "Contains the text" - - This key determines if the "Contains the text" search option is - selected when the search tool is started. - - - - - Kriterium »Enthält den Text« auswählen - Dieser Schlüssel legt fest, ob die Option »Enthält den Text« ausgewählt ist, wenn das Suchwerkzeug gestartet wird. - - - - Select the search option "Contains the text" - This key determines if the "Contains the text" search option is selected when the search tool is started. - - - - Устанавливать параметр поиска «Содержит текст» - Этот ключ определяет, будет ли выбран параметр «Содержит текст» при запуске средства поиска. - - - - /apps/gnome-search-tool/select/date_modified_less_than - /schemas/apps/gnome-search-tool/select/date_modified_less_than - gnome-search-tool - bool - FALSE - - Select the search option - "Date modified less than" - - This key determines if the "Date modified less than" search option - is selected when the search tool is started. - - - - - Kriterium »Geändert vor weniger als« auswählen - Dieser Schlüssel legt fest, ob die Option »Geändert vor weniger als« ausgewählt ist, wenn das Suchwerkzeug gestartet wird. - - - - Select the search option "Date modified less than" - This key determines if the "Date modified less than" search option is selected when the search tool is started. - - - - Устанавливать параметр поиска «Дата изменения меньше, чем» - Этот ключ определяет, будет ли выбран параметр «Дата изменения меньше, чем» при запуске средства поиска. - - - - /apps/gnome-search-tool/select/date_modified_more_than - /schemas/apps/gnome-search-tool/select/date_modified_more_than - gnome-search-tool - bool - FALSE - - Select the search option - "Date modified more than" - - This key determines if the "Date modified more than" search option - is selected when the search tool is started. - - - - - Kriterium »Geändert vor mehr als« auswählen - Dieser Schlüssel legt fest, ob die Option »Geändert vor mehr als« ausgewählt ist, wenn das Suchwerkzeug gestartet wird. - - - - Select the search option "Date modified more than" - This key determines if the "Date modified more than" search option is selected when the search tool is started. - - - - Устанавливать параметр поиска «Дата изменения больше, чем» - Этот ключ определяет, будет ли выбран параметр «Дата изменения больше, чем» при запуске средства поиска. - - - - /apps/gnome-search-tool/select/size_at_least - /schemas/apps/gnome-search-tool/select/size_at_least - gnome-search-tool - bool - FALSE - - Select the search option - "Size at least" - - This key determines if the "Size at least" search option is - selected when the search tool is started. - - - - - Kriterium »Mindestgröße« auswählen - Dieser Schlüssel legt fest, ob die Option »Mindestgröße« ausgewählt ist, wenn das Suchwerkzeug gestartet wird. - - - - Select the search option "Size at least" - This key determines if the "Size at least" search option is selected when the search tool is started. - - - - Устанавливать параметр поиска «Размер не менее» - Этот ключ определяет, будет ли установлен параметр «Размер не менее» при запуске средства поиска. - - - - /apps/gnome-search-tool/select/size_at_most - /schemas/apps/gnome-search-tool/select/size_at_most - gnome-search-tool - bool - FALSE - - Select the search option - "Size at most" - - This key determines if the "Size at most" search option is - selected when the search tool is started. - - - - - Kriterium »Maximale Größe« auswählen - Dieser Schlüssel legt fest, ob die Option »Maximale Größe« ausgewählt ist, wenn das Suchwerkzeug gestartet wird. - - - - Select the search option "Size at most" - This key determines if the "Size at most" search option is selected when the search tool is started. - - - - Устанавливать параметр поиска «Размер не более» - Этот ключ определяет, будет ли установлен параметр «Размер не более» при запуске средства поиска. - - - - /apps/gnome-search-tool/select/file_is_empty - /schemas/apps/gnome-search-tool/select/file_is_empty - gnome-search-tool - bool - FALSE - - Select the search option - "File is empty" - - This key determines if the "File is empty" search option is - selected when the search tool is started. - - - - - Kriterium »Datei ist leer« auswählen - Dieser Schlüssel legt fest, ob die Option »Datei ist leer« ausgewählt ist, wenn das Suchwerkzeug gestartet wird. - - - - Select the search option "File is empty" - This key determines if the "File is empty" search option is selected when the search tool is started. - - - - Устанавливать параметр поиска «Файл пуст» - Этот ключ определяет, будет ли выбран параметр «Файл пуст» при запуске средства поиска. - - - - /apps/gnome-search-tool/select/owned_by_user - /schemas/apps/gnome-search-tool/select/owned_by_user - gnome-search-tool - bool - FALSE - - Select the search option - "Owned by user" - - This key determines if the "Owned by user" search option is - selected when the search tool is started. - - - - - Kriterium »Gehört Benutzer« auswählen - Dieser Schlüssel legt fest, ob die Option »Gehört Benutzer« ausgewählt ist, wenn das Suchwerkzeug gestartet wird. - - - - Select the search option "Owned by user" - This key determines if the "Owned by user" search option is selected when the search tool is started. - - - - Устанавливать параметр поиска «Принадлежит пользователю» - Этот ключ определяет, будет ли установлен параметр «Принадлежит пользователю» при запуске средства поиска. - - - - /apps/gnome-search-tool/select/owned_by_group - /schemas/apps/gnome-search-tool/select/owned_by_group - gnome-search-tool - bool - FALSE - - Select the search option - "Owned by group" - - This key determines if the "Owned by group" search option is - selected when the search tool is started. - - - - - Kriterium »Gehört Gruppe« auswählen - Dieser Schlüssel legt fest, ob die Option »Gehört Gruppe« ausgewählt ist, wenn das Suchwerkzeug gestartet wird. - - - - Select the search option "Owned by group" - This key determines if the "Owned by group" search option is selected when the search tool is started. - - - - Устанавливать параметр поиска «Принадлежит группе» - Этот ключ определяет, будет ли установлен параметр «Принадлежит группе» при запуске средства поиска. - - - - /apps/gnome-search-tool/select/owner_is_unrecognized - /schemas/apps/gnome-search-tool/select/owner_is_unrecognized - gnome-search-tool - bool - FALSE - - Select the search option - "Owner is unrecognized" - - This key determines if the "Owner is unrecognized" search option - is selected when the search tool is started. - - - - - Kriterium »Besitzer ist unbekannt« auswählen - Dieser Schlüssel legt fest, ob die Option »Besitzer ist unbekannt« ausgewählt ist, wenn das Suchwerkzeug gestartet wird. - - - - Select the search option "Owner is unrecognised" - This key determines if the "Owner is unrecognised" search option is selected when the search tool is started. - - - - Устанавливать параметр поиска «Владелец не определён» - Этот ключ определяет, будет ли установлен параметр «Владелец не определён» при запуске средства поиска. - - - - /apps/gnome-search-tool/select/name_does_not_contain - /schemas/apps/gnome-search-tool/select/name_does_not_contain - gnome-search-tool - bool - FALSE - - Select the search option - "Name does not contain" - - This key determines if the "Name does not contain" search option - is selected when the search tool is started. - - - - - Kriterium »Name enthält nicht« auswählen - Dieser Schlüssel legt fest, ob die Option »Name enthält nicht« ausgewählt ist, wenn das Suchwerkzeug gestartet wird. - - - - Select the search option "Name does not contain" - This key determines if the "Name does not contain" search option is selected when the search tool is started. - - - - Устанавливать параметр поиска «Имя не содержит» - Этот ключ определяет, будет ли установлен параметр «Имя не содержит» при запуске средства поиска. - - - - /apps/gnome-search-tool/select/name_matches_regular_expression - /schemas/apps/gnome-search-tool/select/name_matches_regular_expression - gnome-search-tool - bool - FALSE - - Select the search option - "Name matches regular expression" - - This key determines if the "Name matches regular expression" search - option is selected when the search tool is started. - - - - - Kriterium »Dateiname stimmt mit regulärem Ausdruck überein« auswählen - Dieser Schlüssel legt fest, ob die Option »Dateiname stimmt mit regulärem Ausdruck überein« ausgewählt ist, wenn das Suchwerkzeug gestartet wird. - - - - Select the search option "Name matches regular expression" - This key determines if the "Name matches regular expression" search option is selected when the search tool is started. - - - - Устанавливать параметр поиска «Имя совпадает с регулярным выражением» - Этот ключ определяет, будет ли установлен параметр «Имя совпадает с регулярным выражением» при запуске средства поиска. - - - - /apps/gnome-search-tool/select/show_hidden_files_and_folders - /schemas/apps/gnome-search-tool/select/show_hidden_files_and_folders - gnome-search-tool - bool - FALSE - - Select the search option - "Show hidden files and folders" - - This key determines if the "Show hidden files and - folders" search option is selected when the search tool - is started. - - - - - Kriterium »Versteckte Dateien und Ordner anzeigen« auswählen - Dieser Schlüssel legt fest, ob die Option »Versteckte Dateien und Ordner anzeigen« ausgewählt ist, wenn das Suchwerkzeug gestartet wird. - - - - Select the search option "Show hidden files and folders" - This key determines if the "Show hidden files and folders" search option is selected when the search tool is started. - - - - Устанавливать параметр поиска «Показывать скрытые файлы и папки» - Этот ключ определяет, должен ли быть установлен параметр «Показывать скрытые файлы и папки» при запуске средства поиска. - - - - /apps/gnome-search-tool/select/follow_symbolic_links - /schemas/apps/gnome-search-tool/select/follow_symbolic_links - gnome-search-tool - bool - FALSE - - Select the search option - "Follow symbolic links" - - This key determines if the "Follow symbolic links" search option - is selected when the search tool is started. - - - - - Kriterium »Symbolischen Verknüpfungen folgen« auswählen - Dieser Schlüssel legt fest, ob die Option »Symbolischen Verknüpfungen folgen« ausgewählt ist, wenn das Suchwerkzeug gestartet wird. - - - - Select the search option "Follow symbolic links" - This key determines if the "Follow symbolic links" search option is selected when the search tool is started. - - - - Устанавливать параметр поиска «Следовать по символьным ссылкам» - Этот ключ определяет, будет ли выбран параметр «Следовать по символьным ссылкам» при запуске средства поиска. - - - - /apps/gnome-search-tool/select/exclude_other_filesystems - /schemas/apps/gnome-search-tool/select/exclude_other_filesystems - gnome-search-tool - bool - FALSE - - Select the search option - "Exclude other filesystems" - - This key determines if the "Exclude other filesystems" search option - is selected when the search tool is started. - - - - - Kriterium »Andere Dateisysteme ausschließen« auswählen - Dieser Schlüssel legt fest, ob die Option »Andere Dateisysteme ausschließen« ausgewählt ist, wenn das Suchwerkzeug gestartet wird. - - - - Select the search option "Exclude other filesystems" - This key determines if the "Exclude other filesystems" search option is selected when the search tool is started. - - - - Устанавливать параметр поиска «Исключить другие файловые системы» - Этот ключ определяет, будет ли установлен параметр «Исключить другие файловые системы» при запуске средства поиска. - - - - /apps/gnome-search-tool/disable_quick_search - /schemas/apps/gnome-search-tool/disable_quick_search - gnome-search-tool - bool - FALSE - - Disable Quick Search - - This key determines if the search tool disables the use of - the locate command when performing simple file name searches. - - - - - Schnellsuche deaktivieren - Dieser Schlüssel deaktiviert die Verwendung des locate-Befehls wenn eine einfache Suche nach Dateinamen durchgeführt wird. - - - - Disable Quick Search - This key determines if the search tool disables the use of the locate command when performing simple file name searches. - - - - Отключить быстрый поиск - Этот ключ определяет, отключено ли использование команды locate для выполнения простых поисков имён файлов. - - - - /apps/gnome-search-tool/quick_search_excluded_paths - /schemas/apps/gnome-search-tool/quick_search_excluded_paths - gnome-search-tool - list - string - [/mnt/*,/media/*,/dev/*,/tmp/*,/proc/*,/var/*] - - Quick Search Excluded Paths - - This key defines the paths the search tool will exclude from a - quick search. The wildcards '*' and '?' are supported. The default - values are /mnt/*, /media/*, /dev/*, /tmp/*, /proc/*, and /var/*. - - - - - Ausgelassene Pfade bei schneller Suche - Dieser Schlüssel legt die Pfade fest, welche bei einer schnellen Suche ausgelassen werden. Die Joker-Zeichen »*« und »?« werden unterstützt. Der Standardwert ist »/mnt/*, /media/*, /dev/*, /tmp/*, /proc/*, /var/*«. - - - - Quick Search Excluded Paths - This key defines the paths the search tool will exclude from a quick search. The wildcards '*' and '?' are supported. The default values are /mnt/*, /media/*, /dev/*, /tmp/*, /proc/*, and /var/*. - - - - Пути, исключённые из быстрого поиска - Этот ключ определяет пути, которые будут исключены из быстрого поиска. Поддерживаются шаблоны «*» и «?». Значения по умолчанию /mnt/*, /media/*, /dev/*, /tmp/*, /proc/* и /var/*. - - - - /apps/gnome-search-tool/disable_quick_search_second_scan - /schemas/apps/gnome-search-tool/disable_quick_search_second_scan - gnome-search-tool - bool - FALSE - - Disable Quick Search Second Scan - - This key determines if the search tool disables the use of the - find command after performing a quick search. - - - - - Zweiten Durchlauf der Schnellsuche deaktivieren - Dieser Schlüssel deaktiviert die Verwendung des find-Befehls nach einer Schnellsuche. - - - - Disable Quick Search Second Scan - This key determines if the search tool disables the use of the find command after performing a quick search. - - - - Запретить второй проход быстрого поиска - Этот ключ определяет, отключено ли использование команды find после быстрого поиска. - - - - /apps/gnome-search-tool/quick_search_second_scan_excluded_paths - /schemas/apps/gnome-search-tool/quick_search_second_scan_excluded_paths - gnome-search-tool - list - string - [/] - - Quick Search Second Scan Excluded Paths - - This key defines the paths the search tool will exclude from a - second scan when performing a quick search. The second scan - uses the find command to search for files. The purpose of the - second scan is to find files that have not been indexed. - The wildcards '*' and '?' are supported. The default value is /. - - - - - Ausgelassene Pfade beim zweiten Suchlauf einer schnellen Suche - Dieser Schlüssel legt die Pfade fest, welche beim zweiten Suchvorgang einer schnellen Suche ausgelassen werden. Der zweite Suchvorgang verwendet das find-Kommando, um auch Dateien zu finden, die nicht indiziert wurden. Die Joker-Zeichen »*« und »?« werden unterstützt. Der Standardwerte ist »/«. - - - - Quick Search Second Scan Excluded Paths - This key defines the paths the search tool will exclude from a second scan when performing a quick search. The second scan uses the find command to search for files. The purpose of the second scan is to find files that have not been indexed. The wildcards '*' and '?' are supported. The default value is /. - - - - Пути, исключённые из второго прохода быстрого поиска - Этот ключ определяет пути, которые средство поиска будет исключать при втором проходе быстрого поиска. Второй проход использует команду «find» для поиска файлов. Цель второго прохода — найти файлы, которые не были проиндексированы. Поддерживаются шаблоны «*» и «?». Значение по умолчанию — /. - - - - /apps/gnome-search-tool/columns_order - /schemas/apps/gnome-search-tool/columns_order - gnome-search-tool - list - int - [0] - - Search Result Columns Order - - This key defines the order of the columns in the search - results. This key should not be modified by the user. - - - - - Reihenfolge der Spalten der Suchergebnisse - Dieser Schlüssel legt die Reihenfolge der Spalten der Suchergebnisse fest. Dieser Schlüssel sollte nicht von Benutzern geändert werden. - - - - Search Result Columns Order - This key defines the order of the columns in the search results. This key should not be modified by the user. - - - - Порядок столбцов результата поиска - Этот ключ определяет порядок столбцов в результатах поиска. Это ключ не должен изменяться пользователем. - - - - /apps/gnome-search-tool/default_window_width - /schemas/apps/gnome-search-tool/default_window_width - gnome-search-tool - int - -1 - - Default Window Width - - This key defines the window width, and it's used to remember the - size of the search tool between sessions. Setting it to -1 will - make the search tool use the default width. - - - - - Vorgabebreite des Fensters - Dieser Schlüssel legt die Breite des Suchfunktion-Fensters fest, damit diese bei weiteren Starts wiederhergestellt werden kann. Bei einem Wert von »-1« wird die Vorgabebreite verwendet. - - - - Default Window Width - This key defines the window width, and it's used to remember the size of the search tool between sessions. Setting it to -1 will make the search tool use the default width. - - - - Ширина окна по умолчанию - Этот ключ определяет ширину окна и используется для сохранения размера средства поиска между сеансами. Если установить в значение -1, то будет использоваться ширина по умолчанию. - - - - /apps/gnome-search-tool/default_window_height - /schemas/apps/gnome-search-tool/default_window_height - gnome-search-tool - int - -1 - - Default Window Height - - This key defines the window height, and it's used to remember the - size of the search tool between sessions. Setting it to -1 will - make the search tool use the default height. - - - - - Vorgabehöhe des Fensters - Dieser Schlüssel legt die Höhe des Suchfunktion-Fensters fest, damit diese bei weiteren Starts wiederhergestellt werden kann. Bei einem Wert von »-1« wird die Vorgabehöhe verwendet. - - - - Default Window Height - This key defines the window height, and it's used to remember the size of the search tool between sessions. Setting it to -1 will make the search tool use the default height. - - - - Высота окна по умолчанию - Этот ключ определяет высоту окна и используется для сохранения размера средства поиска между сеансами. Если установить в значение -1, то будет использоваться высота по умолчанию. - - - - /apps/gnome-search-tool/default_window_maximized - /schemas/apps/gnome-search-tool/default_window_maximized - gnome-search-tool - bool - FALSE - - Default Window Maximized - - This key determines if the search tool window starts in a maximized - state. - - - - - Fenster maximiert öffnen - Dieser Schlüssel legt fest ob die Suchfunktion maximiert startet. - - - - Default Window Maximised - This key determines if the search tool window starts in a maximised state. - - - - Окно развернуто по умолчанию - Этот ключ определяет, должно ли окно средства поиска появляться в развёрнутом виде. - - - - /apps/gnome-search-tool/look_in_folder - /schemas/apps/gnome-search-tool/look_in_folder - gnome-search-tool - string - - - Look in Folder - - This key defines the default value of the "Look in Folder" - widget. - - - - - Ordner durchsuchen - Dieser Schlüssel definiert den Vorgabewert des »Ordner durchsuchen«-Widgets. - - - - Look in Folder - This key defines the default value of the "Look in Folder" widget. - - - - Искать в папке - Этот ключ определяет значение по умолчанию для элемента «Искать в папке». - - - - diff --git a/gconf/schemas/gnome-session.schemas b/gconf/schemas/gnome-session.schemas deleted file mode 100644 index 0872331..0000000 --- a/gconf/schemas/gnome-session.schemas +++ /dev/null @@ -1,221 +0,0 @@ - - - - - - /schemas/apps/gnome-session/options/auto_save_session - /apps/gnome-session/options/auto_save_session - gnome - bool - false - - Save sessions - If enabled, gnome-session will save the session automatically. - - - - Sitzungen speichern - Falls aktiviert, speichert gnome-session die Sitzung automatisch. - - - - Save sessions - If enabled, gnome-session will save the session automatically. - - - - Сохранять сеансы - Если этот ключ установлен, gnome-session будет автоматически сохранять сеанс. - - - - /schemas/apps/gnome-session/options/logout_prompt - /apps/gnome-session/options/logout_prompt - gnome - bool - true - - Logout prompt - If enabled, gnome-session will prompt the user before ending a session. - - - - Abmeldedialog - Soll gnome-session den Benutzer vor dem Beenden einer Sitzung fragen? - - - - Logout prompt - If enabled, gnome-session will prompt the user before ending a session. - - - - Запрос при выходе из сеанса - Если этот ключ установлен, gnome-session будет спрашивать пользователя перед окончанием сеанса. - - - - /schemas/desktop/gnome/session/idle_delay - /desktop/gnome/session/idle_delay - gnome - int - 5 - - Time before session is considered idle - - The number of minutes of inactivity before the session is - considered idle. - - - - - Zeitdauer ab der die Sitzung als untätig gilt - Die Anzahl inaktiver Minuten bis der Benutzer als untätig gilt. - - - - Time before session is considered idle - The number of minutes of inactivity before the session is considered idle. - - - - Промежуток времени, по истечении которого сеанс будет считаться неактивным - Промежуток времени в минутах, по истечении которого сеанс будет считаться неактивным. - - - - /schemas/desktop/gnome/session/default_session - /desktop/gnome/session/default_session - gnome - list - string - [gnome-settings-daemon] - - - Default session - List of applications that are part of the default session. - - - - Standardsitzung - Liste der Anwendungen, die Teil der Standardsitzung sind. - - - - Default session - List of applications that are part of the default session. - - - - Сеанс по умолчанию - Список приложений, являющихся частью сеанса по умолчанию. - - - - /schemas/desktop/gnome/session/required_components_list - /desktop/gnome/session/required_components_list - gnome - list - string - [windowmanager,panel,filemanager] - - Required session components - List of components that are required as part of the session. (Each element names a key under "/desktop/gnome/session/required_components"). The Startup Applications preferences tool will not normally allow users to remove a required component from the session, and the session manager will automatically add the required components back to the session at login time if they do get removed. - - - - Benötigte Sitzungskomponenten - Liste der Komponenten, die als Teil der Sitzung erforderlich sind. (Jedes Element bezeichnet einen Schlüssel unter »/desktop/gnome/session/required_components«). Das Programm zur Verwaltung der Startprogrammeinstellungen erlaubt gewöhnlichen Benutzern nicht, benötigte Komponenten aus der Sitzung zu entfernen. Diese werden bei Anmeldung wieder automatisch zur Sitzung hinzugefügt, falls sie entfernt wurden. - - - - Required session components - List of components that are required as part of the session. (Each element names a key under "/desktop/gnome/session/required_components"). The Startup Applications preferences tool will not normally allow users to remove a required component from the session, and the session manager will automatically add the required components back to the session at login time if they do get removed. - - - - Требуемые компоненты сеанса - Список компонентов, которые требуются запустить как часть этого сеанса. (каждый элемент соответствует ключу в поддереве «/desktop/gnome/session/required-components»). Приложение «Параметры запускаемых приложений», как правило, не позволяет пользователю удалять из сеанса требуемые компоненты, и менеджер сеансов автоматически добавит требуемые компоненты, если они были удалены. - - - - /schemas/desktop/gnome/session/required_components/windowmanager - /desktop/gnome/session/required_components/windowmanager - gnome - string - gnome-wm - - Window Manager - The window manager is the program that draws the title bar and borders around windows, and allows you to move and resize windows. - - - - Fenstermanager - Der Fenstermanager ist das Programm, welches die Titelleiste und die Ränder der Fenster zeichnet, sowie das Bewegen und die Änderung der Größe der Fenster erlaubt. - - - - Window Manager - The window manager is the program that draws the title bar and borders around windows, and allows you to move and resize windows. - - - - Менеджер окон - Менеджер окон - это программа, которая рисует заголовок и обрамление окна, и позволяет вам перемещать окна и менять их размер. - - - - /schemas/desktop/gnome/session/required_components/panel - /desktop/gnome/session/required_components/panel - gnome - string - gnome-panel - - Panel - The panel provides the bar at the top or bottom of the screen containing menus, the window list, status icons, the clock, etc. - - - - Das Panel - Das Panel stellt die Leisten am oberen und unteren Bildschirmrand bereit, welche die Menüs, die Fensterliste, Statussymbole, die Uhr usw. beinhalten. - - - - Panel - The panel provides the bar at the top or bottom of the screen containing menus, the window list, status icons, the clock, etc. - - - - Панель - Панель предоставляет собой полосу вверху или внизу экрана, содержащую меню, список окон, значки состояния, часы и т.д. - - - - /schemas/desktop/gnome/session/required_components/filemanager - /desktop/gnome/session/required_components/filemanager - gnome - string - nautilus - - File Manager - The file manager provides the desktop icons and allows you to interact with your saved files. - - - - Dateimanager - Der Dateimanager stellt die Desktop-Symbole bereit und erlaubt Ihnen, gespeicherte Dateien zu verwalten. - - - - File Manager - The file manager provides the desktop icons and allows you to interact with your saved files. - - - - Менеджер файлов - Менеджер файлов предоставляет значки рабочего стола и позволяет работать с сохранёнными файлами. - - - - - diff --git a/gconf/schemas/gnome-settings-daemon.schemas b/gconf/schemas/gnome-settings-daemon.schemas deleted file mode 100644 index 2721150..0000000 --- a/gconf/schemas/gnome-settings-daemon.schemas +++ /dev/null @@ -1,1035 +0,0 @@ - - - - - - /schemas/apps/gnome_settings_daemon/plugins/a11y-keyboard/active - /apps/gnome_settings_daemon/plugins/a11y-keyboard/active - gnome-settings-daemon - bool - TRUE - - Enable accessibility keyboard plugin - Set to True to enable the plugin to manage the accessibility keyboard settings. - - - - Modul für die barrierefreie Tastatur aktivieren - Legt fest, ob das Modul für die Einstellungen der barrierefreien Tastatur aktiviert ist. - - - - Enable accessibility keyboard plugin - Set to True to enable the plugin to manage the accessibility keyboard settings. - - - - Включить модуль специальных возможностей клавиатуры - Установите в True, чтобы включить модуль управления специальными возможностями клавиатуры. - - - - /schemas/apps/gnome_settings_daemon/plugins/a11y-keyboard/priority - /apps/gnome_settings_daemon/plugins/a11y-keyboard/priority - gnome-settings-daemon - int - 7 - - - - - - - - /schemas/apps/gnome_settings_daemon/plugins/background/active - /apps/gnome_settings_daemon/plugins/background/active - gnome-settings-daemon - bool - TRUE - - Enable background plugin - Set to True to enable the plugin to manage desktop background settings. - - - - Modul für das Hintergrundbild aktivieren - Legt fest, ob das Modul für das Festlegen des Bildschirmhintergrundes aktiviert ist. - - - - Enable background plugin - Set to True to enable the plugin to manage desktop background settings. - - - - Включить модуль фона рабочего стола - Установите в True, чтобы разрешить модулю управлять параметрами фона рабочего стола. - - - - /schemas/apps/gnome_settings_daemon/plugins/background/priority - /apps/gnome_settings_daemon/plugins/background/priority - gnome-settings-daemon - int - 97 - - - - - - - - /schemas/apps/gnome_settings_daemon/plugins/clipboard/active - /apps/gnome_settings_daemon/plugins/clipboard/active - gnome-settings-daemon - bool - TRUE - - Enable clipboard plugin - Set to True to enable the plugin to manage clipboard settings. - - - - Modul für die Zwischenablage aktivieren - Legt fest, ob das Modul für die Einstellungen der Zwischenablage aktiviert ist. - - - - Enable clipboard plugin - Set to True to enable the plugin to manage clipboard settings. - - - - Включить модуль буфера обмена - Установите в True, чтобы разрешить модулю управлять параметрами буфера обмена. - - - - /schemas/apps/gnome_settings_daemon/plugins/clipboard/priority - /apps/gnome_settings_daemon/plugins/clipboard/priority - gnome-settings-daemon - int - 99 - - - - - - - - /schemas/apps/gnome_settings_daemon/plugins/font/active - /apps/gnome_settings_daemon/plugins/font/active - gnome-settings-daemon - bool - FALSE - - Enable font plugin - Set to True to enable the plugin to manage font settings. - - - - Modul für Schrift aktivieren - Legt fest, ob das Modul für die Schrifteneinstellung aktiviert ist. - - - - Enable font plugin - Set to True to enable the plugin to manage font settings. - - - - Включить модуль шрифта - Установите в True, чтобы разрешить модулю управлять параметрами шрифта. - - - - /schemas/apps/gnome_settings_daemon/plugins/font/priority - /apps/gnome_settings_daemon/plugins/font/priority - gnome-settings-daemon - int - 4 - - - - - - - - /schemas/apps/gnome_settings_daemon/plugins/housekeeping/active - /apps/gnome_settings_daemon/plugins/housekeeping/active - gnome-settings-daemon - bool - TRUE - - Enable housekeeping plugin - Set to True to enable the housekeeping plugin, to prune transient file caches. - - - - Modul für automatisches Aufräumen aktivieren - Legt fest, ob das Modul für automatisches Aufräumen aktiviert ist, das alte temporäre Dateien aus den Zwischenspeichern entfernt. - - - - Enable housekeeping plugin - Set to True to enable the housekeeping plugin, to prune transient file caches. - - - - Включить модуль housekeeping - Установите в True, чтобы включить модуль периодического сброса файловых кэшей. - - - - /schemas/apps/gnome_settings_daemon/plugins/housekeeping/priority - /apps/gnome_settings_daemon/plugins/housekeeping/priority - gnome-settings-daemon - int - 300 - - - - - - - - /schemas/apps/gnome_settings_daemon/plugins/keybindings/active - /apps/gnome_settings_daemon/plugins/keybindings/active - gnome-settings-daemon - bool - TRUE - - Enable keybindings plugin - Set to True to enable the plugin to manage the keybindings. - - - - Modul für Tastenkürzel aktivieren - Legt fest, ob das Modul für die Tastenkürzelverwaltung aktiviert ist. - - - - Enable keybindings plugin - Set to True to enable the plugin to manage the keybindings. - - - - Включить модуль комбинаций клавиш клавиатуры - Установите в True, чтобы разрешить модулю управлять комбинациями клавиш клавиатуры. - - - - /schemas/apps/gnome_settings_daemon/plugins/keybindings/priority - /apps/gnome_settings_daemon/plugins/keybindings/priority - gnome-settings-daemon - int - 20 - - - - - - - - /schemas/apps/gnome_settings_daemon/plugins/keyboard/active - /apps/gnome_settings_daemon/plugins/keyboard/active - gnome-settings-daemon - bool - TRUE - - Enable keyboard plugin - Set to True to enable the plugin to manage keyboard settings. - - - - Modul für die Tastatur aktivieren - Legt fest, ob das Modul für die Tastatureinstellungen aktiviert ist. - - - - Enable keyboard plugin - Set to True to enable the plugin to manage keyboard settings. - - - - Включить модуль клавиатуры - Установите в True, чтобы разрешить модулю управлять параметрами клавиатуры. - - - - /schemas/apps/gnome_settings_daemon/plugins/keyboard/priority - /apps/gnome_settings_daemon/plugins/keyboard/priority - gnome-settings-daemon - int - 6 - - - - - - - - /schemas/apps/gnome_settings_daemon/plugins/media-keys/active - /apps/gnome_settings_daemon/plugins/media-keys/active - gnome-settings-daemon - bool - TRUE - - Enable media keys plugin - Set to True to enable the plugin to manage multimedia keys settings. - - - - Modul für Medientasten aktivieren - Legt fest, ob das Modul für die Einstellung von Multimedia-Tasten aktiviert ist. - - - - Enable media keys plugin - Set to True to enable the plugin to manage multimedia keys settings. - - - - Включить модуль мультимедийных клавиш - Установите в True, чтобы разрешить модулю управлять параметрами мультимедийных клавиш. - - - - /schemas/apps/gnome_settings_daemon/plugins/media-keys/priority - /apps/gnome_settings_daemon/plugins/media-keys/priority - gnome-settings-daemon - int - 98 - - - - - - - - /schemas/apps/gnome_settings_daemon/plugins/mouse/active - /apps/gnome_settings_daemon/plugins/mouse/active - gnome-settings-daemon - bool - TRUE - - Enable mouse plugin - Set to True to enable the plugin to manage mouse settings. - - - - Modul für die Maus aktivieren - Legt fest, ob das Modul für die Mauseinstellungen aktiviert ist. - - - - Enable mouse plugin - Set to True to enable the plugin to manage mouse settings. - - - - Включить модуль мыши - Установите в True, чтобы разрешить модулю управлять параметрами мыши. - - - - /schemas/apps/gnome_settings_daemon/plugins/mouse/priority - /apps/gnome_settings_daemon/plugins/mouse/priority - gnome-settings-daemon - int - 7 - - - - - - - - /schemas/apps/gnome_settings_daemon/plugins/smartcard/active - /apps/gnome_settings_daemon/plugins/smartcard/active - gnome-settings-daemon - bool - TRUE - - Enable smartcard plugin - Set to True to enable the plugin to manage locking the screen on smartcard removal. - - - - SmartCard-Plugin aktivieren - Wenn auf »wahr« gesetzt, wird das Plugin zum Verwalten der Bidschirmsperre beim Entfernen der SmartCard aktiviert. - - - - Enable smartcard plugin - Set to True to enable the plugin to manage locking the screen on smartcard removal. - - - - Включить модуль поддержки смарт-карт - Установите в True, чтобы разрешить модулю управлять блокировкой экрана при извлечении смарт-карты. - - - - /schemas/apps/gnome_settings_daemon/plugins/smartcard/priority - /apps/gnome_settings_daemon/plugins/smartcard/priority - gnome-settings-daemon - int - 8 - - - - - - - - /schemas/apps/gnome_settings_daemon/plugins/sound/active - /apps/gnome_settings_daemon/plugins/sound/active - gnome-settings-daemon - bool - TRUE - - Enable sound plugin - Set to True to enable the plugin to manage sound sample caches. - - - - Modul für Audioausgabe aktivieren - Auf »WAHR« setzen, um das Plugin zur Verwaltung des Audio-Zwischenspeichers zu aktivieren. - - - - Enable sound plugin - Set to True to enable the plugin to manage sound sample caches. - - - - Включить модуль звука - Установите в True, чтобы включить модуль управления кэшированием звуков. - - - - /schemas/apps/gnome_settings_daemon/plugins/sound/priority - /apps/gnome_settings_daemon/plugins/sound/priority - gnome-settings-daemon - int - 5 - - - - - - - - /schemas/apps/gnome_settings_daemon/plugins/typing-break/active - /apps/gnome_settings_daemon/plugins/typing-break/active - gnome-settings-daemon - bool - TRUE - - Enable typing breaks plugin - Set to True to enable the plugin to manage typing breaks. - - - - Modul für Tipppausen aktivieren - Legt fest, ob das Modul für die Tipppauseneinstellungen aktiviert ist. - - - - Enable typing breaks plugin - Set to True to enable the plugin to manage typing breaks. - - - - Включить модуль перерыва в работе - Установите в True, чтобы разрешить модулю управлять перерывами в работе. - - - - /schemas/apps/gnome_settings_daemon/plugins/typing-break/priority - /apps/gnome_settings_daemon/plugins/typing-break/priority - gnome-settings-daemon - int - 200 - - - - - - - - /schemas/apps/gnome_settings_daemon/plugins/xrandr/active - /apps/gnome_settings_daemon/plugins/xrandr/active - gnome-settings-daemon - bool - TRUE - - Enable XRandR plugin - Set to True to enable the plugin to manage XRandR settings. - - - - Plugin für XRandR aktivieren - Wenn auf »wahr« gesetzt, wird das Modul für die Einstellungen von XRandR aktiviert. - - - - Enable XRandR plugin - Set to True to enable the plugin to manage XRandR settings. - - - - Включить модуль XRandR - Установите в True, чтобы разрешить модулю управлять параметрами XRandR. - - - - /schemas/apps/gnome_settings_daemon/plugins/xrandr/priority - /apps/gnome_settings_daemon/plugins/xrandr/priority - gnome-settings-daemon - int - 1 - - - - - - - - /schemas/apps/gnome_settings_daemon/plugins/xrdb/active - /apps/gnome_settings_daemon/plugins/xrdb/active - gnome-settings-daemon - bool - FALSE - - Enable xrdb plugin - Set to True to enable the plugin to manage xrdb settings. - - - - Modul für XRDB aktivieren - Legt fest, ob das Modul für die Einstellungen von XRDB aktiviert ist. - - - - Enable xrdb plugin - Set to True to enable the plugin to manage xrdb settings. - - - - Включить модуль xrdb - Установите в True, чтобы разрешить модулю управлять параметрами xrdb. - - - - /schemas/apps/gnome_settings_daemon/plugins/xrdb/priority - /apps/gnome_settings_daemon/plugins/xrdb/priority - gnome-settings-daemon - int - 90 - - - - - - - - /schemas/apps/gnome_settings_daemon/plugins/xsettings/active - /apps/gnome_settings_daemon/plugins/xsettings/active - gnome-settings-daemon - bool - TRUE - - Enable xsettings plugin - Set to True to enable the plugin to manage xsettings. - - - - Modul für XSettings aktivieren - Legt fest, ob das Modul für die Einstellungen von XSettings aktiviert ist. - - - - Enable xsettings plugin - Set to True to enable the plugin to manage xsettings. - - - - Включить модуль xsettings - Установите в True, чтобы разрешить модулю управлять параметрами xsettings. - - - - /schemas/apps/gnome_settings_daemon/plugins/xsettings/priority - /apps/gnome_settings_daemon/plugins/xsettings/priority - gnome-settings-daemon - int - 2 - - - - - - - - /schemas/desktop/gnome/keybindings/magnifier/binding - /desktop/gnome/keybindings/magnifier/binding - gnome-settings-daemon - string - - - Toggle magnifier - - Binding to toggle the magnifier. - - - - - Bildschirmlupe ein- oder ausschalten - Tastenkürzel zum Ein- und Ausschalten der Bildschirmlupe. - - - - Toggle magnifier - Binding to toggle the magnifier. - - - - Включить экранный увеличитель - Комбинация клавиш для включения экранного увеличителя. - - - - /schemas/desktop/gnome/keybindings/magnifier/name - /desktop/gnome/keybindings/magnifier/name - gnome-settings-daemon - string - - Toggle magnifier - The name of the keyboard shortcut to toggle the magnifier - - This is the name of the keyboard shortcut to toggle the magnifier. This name will be shown in the keyboard shortcut preferences dialog. - - - - - Bildschirmlupe ein- oder ausschalten - Tastenkürzel zum Ein- und Ausschalten der Bildschirmlupe - Dies ist der Name des Tastenkürzels zum Ein- und Ausschalten der Bildschirmlupe. Dieser Name wird im Einstellungsdialog der Tastatur angezeigt. - - - - Toggle magnifier - The name of the keyboard shortcut to toggle the magnifier - This is the name of the keyboard shortcut to toggle the magnifier. This name will be shown in the keyboard shortcut preferences dialogue. - - - - Включить экранный увеличитель - Комбинация клавиш для включения экранного увеличителя - Комбинация клавиш для включения увеличителя экрана.Она может быть изменена в диалоге настройки комбинаций клавиш. - - - - /schemas/desktop/gnome/keybindings/magnifier/action - /desktop/gnome/keybindings/magnifier/action - gnome-settings-daemon - string - gconftool-2 --toggle /desktop/gnome/applications/at/screen_magnifier_enabled - - Toggle magnifier - - Command used to turn the magnifier on or off. - - - - - Bildschirmlupe ein- oder ausschalten - Befehl zum Ein- und Ausschalten der Bildschirmlupe - - - - Toggle magnifier - Command used to turn the magnifier on or off. - - - - Включить экранный увеличитель - Команда для выключения и включения экранного увеличителя. - - - - /schemas/desktop/gnome/keybindings/screenreader/binding - /desktop/gnome/keybindings/screenreader/binding - gnome-settings-daemon - string - - - Toggle screen reader - - Binding to toggle the screen reader. - - - - - Bildschirmleser ein- oder ausschalten - Tastenkürzel zum Ein- und Ausschalten des Bildschirmlesers. - - - - Toggle screen reader - Binding to toggle the screen reader. - - - - Включить чтение с экрана - Комбинация клавиш для включения чтения с экрана. - - - - /schemas/desktop/gnome/keybindings/screenreader/name - /desktop/gnome/keybindings/screenreader/name - gnome-settings-daemon - string - - Toggle screen reader - The name of the keyboard shortcut to toggle the screen reader - - This is the name of the keyboard shortcut to toggle the screen reader. This name will be shown in the keyboard shortcut preferences dialog. - - - - - Bildschirmleser ein- oder ausschalten - Der Name des Tastenkürzels zum Ein- und Ausschalten des Bildschirmlesers - Dies ist der Name des Tastenkürzels zum Ein- und Ausschalten des Bildschirmlesers. Dieser Name wird im Einstellungsdialog der Tastatur angezeigt. - - - - Toggle screen reader - The name of the keyboard shortcut to toggle the screen reader - This is the name of the keyboard shortcut to toggle the screen reader. This name will be shown in the keyboard shortcut preferences dialogue. - - - - Включить чтение с экрана - Комбинация клавиш для включения системы чтения с экрана - Комбинация клавиш для включения системы чтения с экрана. Эта настройка может быть изменена в диалоге настройки комбинаций клавиш. - - - - /schemas/desktop/gnome/keybindings/screenreader/action - /desktop/gnome/keybindings/screenreader/action - gnome-settings-daemon - string - gconftool-2 --toggle /desktop/gnome/applications/at/screen_reader_enabled - - Toggle screen reader - - Command used to turn the screen reader on or off. - - - - - Bildschirmleser ein- oder ausschalten - Befehl zum Ein- und Ausschalten des Bildschirmlesers. - - - - Toggle screen reader - Command used to turn the screen reader on or off. - - - - Включить чтение с экрана - Команда для выключения и включения экранного чтения. - - - - /schemas/desktop/gnome/keybindings/onscreenkeyboard/name - /desktop/gnome/keybindings/onscreenkeyboard/name - gnome-settings-daemon - string - - Toggle on-screen keyboard - The name of the keyboard shortcut to toggle the on-screen keyboard - - 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. - - - - - Bildschirmtastatur ein- oder ausschalten - Tastenkürzel zum Ein- und Ausschalten der Bildschirmtastatur - Dies ist der Name des Tastenkürzels zum Ein- und Ausschalten der Bildschirmtastatur. Dieser Name wird im Einstellungsdialog der Tastatur angezeigt. - - - - Toggle on-screen keyboard - The name of the keyboard shortcut to toggle the on-screen keyboard - This is the name of the keyboard shortcut to toggle the on-screen keyboard. This name will be shown in the keyboard shortcut preferences dialogue. - - - - Включить экранную клавиатуру - Комбинация клавиш для включения экранной клавиатуры - Комбинация клавиш для включения экранной клавиатуры. Эта настройка может быть изменена в диалоге настройки комбинаций клавиш. - - - - /schemas/desktop/gnome/keybindings/onscreenkeyboard/binding - /desktop/gnome/keybindings/onscreenkeyboard/binding - gnome-settings-daemon - string - - - Toggle on-screen keyboard - - Binding to toggle the on-screen keyboard. - - - - - Bildschirmtastatur ein- oder ausschalten - Tastenkürzel zum Ein- und Ausschalten der Bildschirmtastatur. - - - - Toggle on-screen keyboard - Binding to toggle the on-screen keyboard. - - - - Включить экранную клавиатуру - Комбинация клавиш для включения экранной клавиатуры. - - - - /schemas/desktop/gnome/keybindings/onscreenkeyboard/action - /desktop/gnome/keybindings/onscreenkeyboard/action - gnome-settings-daemon - string - gconftool-2 --toggle /desktop/gnome/applications/at/screen_keyboard_enabled - - Toggle on-screen keyboard - - Command used to turn the on-screen keyboard on or off. - - - - - Bildschirmtastatur ein- oder ausschalten - Befehl zum Ein- und Ausschalten der Bildschirmtastatur - - - - Toggle on-screen keyboard - Command used to turn the on-screen keyboard on or off. - - - - Включить экранную клавиатуру - Команда для выключения и включения экранной клавиатуры. - - - - - /schemas/desktop/gnome/accessibility/keyboard/stickykeys_enable - /desktop/gnome/accessibility/keyboard/stickykeys_enable - gnome-settings-daemon - bool - FALSE - - Sticky keys - - Whether the sticky keys keyboard accessibility feature is turned on. - - - - - Klebrige Tasten - Legt fest, ob klebrige Tasten (Barrierefreiheitsfunktion der Tastatur) aktiviert sind. - - - - Sticky keys - Whether the sticky keys keyboard accessibility feature is turned on. - - - - Залипающие клавиши - Включена ли поддержка залипающих клавиш системы вспомогательных технологий. - - - - /schemas/desktop/gnome/accessibility/keyboard/bouncekeys_enable - /desktop/gnome/accessibility/keyboard/bouncekeys_enable - gnome-settings-daemon - bool - FALSE - - Bounce keys - - Whether the bounce keys keyboard accessibility feature is turned on. - - - - - Springende Tasten - Legt fest, ob springende Tasten (Barrierefreiheitsfunktion der Tastatur) aktiviert sind. - - - - Bounce keys - Whether the bounce keys keyboard accessibility feature is turned on. - - - - Скачущие клавиши - Включена ли поддержка скачущих клавиш системы вспомогательных технологий. - - - - /schemas/desktop/gnome/accessibility/keyboard/slowkeys_enable - /desktop/gnome/accessibility/keyboard/slowkeys_enable - gnome-settings-daemon - bool - FALSE - - Slow keys - - Whether the slow keys keyboard accessibility feature is turned on. - - - - - Tastenverzögerung - Legt fest, ob Tastenverzögerung (Barrierefreiheitsfunktion der Tastatur) aktiviert ist. - - - - Slow keys - Whether the slow keys keyboard accessibility feature is turned on. - - - - Медленные клавиши - Включена ли поддержка медленных клавиш системы вспомогательных технологий. - - - - /schemas/desktop/gnome/accessibility/keyboard/mousekeys_enable - /desktop/gnome/accessibility/keyboard/mousekeys_enable - gnome - bool - FALSE - - Mouse keys - - Whether the mouse keys keyboard accessibility feature is turned on. - - - - - Maustasten - Legt fest, ob Maustasten (Barrierefreiheitsfunktion der Tastatur) aktiviert sind. - - - - Mouse keys - Whether the mouse keys keyboard accessibility feature is turned on. - - - - Клавиши мыши - Включена ли поддержка работы с мышью системы вспомогательных технологий. - - - - /schemas/desktop/gnome/applications/at/screen_keyboard_enabled - /desktop/gnome/applications/at/screen_keyboard_enabled - gnome-settings-daemon - bool - FALSE - - On-screen keyboard - - Whether the on-screen keyboard is turned on. - - - - - Bildschirmtastatur - Legt fest, ob die Bildschirmtastatur aktiviert ist. - - - - On-screen keyboard - Whether the on-screen keyboard is turned on. - - - - Экранная клавиатура - Включена ли экранная клавиатура. - - - - /schemas/desktop/gnome/applications/at/screen_magnifier_enabled - /desktop/gnome/applications/at/screen_magnifier_enabled - gnome-settings-daemon - bool - FALSE - - Screen magnifier - - Whether the screen magnifier is turned on. - - - - - Bildschirmlupe - Legt fest, ob die Bildschirmlupe aktiviert ist. - - - - Screen magnifier - Whether the screen magnifier is turned on. - - - - Увеличитель экрана - Включён ли увеличитель экрана. - - - - /schemas/desktop/gnome/applications/at/screen_reader_enabled - /desktop/gnome/applications/at/screen_reader_enabled - gnome-settings-daemon - bool - FALSE - - Screen reader - - Whether the screen reader is turned on. - - - - - Bildschirmleser - Legt fest, ob der Bildschirmleser aktiviert ist. - - - - Screen reader - Whether the screen reader is turned on. - - - - Чтение с экрана - Включена ли система чтения с экрана. - - - - - diff --git a/gconf/schemas/gnome-sound-recorder.schemas b/gconf/schemas/gnome-sound-recorder.schemas deleted file mode 100644 index 3ec9e5e..0000000 --- a/gconf/schemas/gnome-sound-recorder.schemas +++ /dev/null @@ -1,176 +0,0 @@ - - - - - /schemas/apps/gnome-sound-recorder/record-timeout - /apps/gnome-sound-recorder/record-timeout - Gnome Sound Recorder - int - 2 - - - - - /schemas/apps/gnome-sound-recorder/stop-on-timeout - /apps/gnome-sound-recorder/stop-on-timeout - Gnome Sound Recorder - bool - true - - - - - /schemas/apps/gnome-sound-recorder/save-when-finished - /apps/gnome-sound-recorder/save-when-finished - Gnome Sound Recorder - bool - false - - - - - /schemas/apps/gnome-sound-recorder/popup-warning - /apps/gnome-sound-recorder/popup-warning - Gnome Sound Recorder - bool - true - - - - - /schemas/apps/gnome-sound-recorder/stop-record - /apps/gnome-sound-recorder/stop-record - Gnome Sound Recorder - bool - false - - - - - /schemas/apps/gnome-sound-recorder/popup-warning-v - /apps/gnome-sound-recorder/popup-warning-v - Gnome Sound Recorder - int - 100 - - - - - /schemas/apps/gnome-sound-recorder/stop-recording-v - /apps/gnome-sound-recorder/stop-recording-v - Gnome Sound Recorder - int - 200 - - - - - /schemas/apps/gnome-sound-recorder/play-once - /apps/gnome-sound-recorder/play-once - Gnome Sound Recorder - bool - false - - - - - /schemas/apps/gnome-sound-recorder/play-repeat - /apps/gnome-sound-recorder/play-repeat - Gnome Sound Recorder - bool - false - - - - - /schemas/apps/gnome-sound-recorder/repeat-forever - /apps/gnome-sound-recorder/repeat-forever - Gnome Sound Recorder - bool - true - - - - - /schemas/apps/gnome-sound-recorder/play-x-times - /apps/gnome-sound-recorder/play-x-times - Gnome Sound Recorder - int - 2 - - - - - /schemas/apps/gnome-sound-recorder/audio-format - /apps/gnome-sound-recorder/audio-format - Gnome Sound Recorder - bool - false - - - - - /schemas/apps/gnome-sound-recorder/sample-rate - /apps/gnome-sound-recorder/sample-rate - Gnome Sound Recorder - string - 44100 - - - - - /schemas/apps/gnome-sound-recorder/channels - /apps/gnome-sound-recorder/channels - Gnome Sound Recorder - bool - false - - - - - /schemas/apps/gnome-sound-recorder/show-time - /apps/gnome-sound-recorder/show-time - Gnome Sound Recorder - bool - true - - - - - /schemas/apps/gnome-sound-recorder/system-state/open-file-directory - /apps/gnome-sound-recorder/system-state/open-file-directory - Gnome Sound Recorder - string - - - - - - /schemas/apps/gnome-sound-recorder/system-state/save-file-directory - /apps/gnome-sound-recorder/system-state/save-file-directory - Gnome Sound Recorder - string - - - - - - /schemas/apps/gnome-sound-recorder/last-profile-id - /apps/gnome-sound-recorder/last-profile-id - Gnome Sound Recorder - string - cdlossy - - - - - - /schemas/apps/gnome-sound-recorder/last-input - /apps/gnome-sound-recorder/last-input - Gnome Sound Recorder - string - - - - - diff --git a/gconf/schemas/gnome-sudoku.schemas b/gconf/schemas/gnome-sudoku.schemas deleted file mode 100644 index f38e90e..0000000 --- a/gconf/schemas/gnome-sudoku.schemas +++ /dev/null @@ -1,506 +0,0 @@ - - - - - /schemas/apps/gnome-sudoku/auto_save_interval - /apps/gnome-sudoku/auto_save_interval - gnome-sudoku - int - 60 - - The number of seconds between automatic saves - The number of seconds between automatic saves - - - - Die Anzahl an Sekunden zwischen automatischem Abspeichern - Die Anzahl an Sekunden zwischen automatischem Abspeichern - - - - The number of seconds between automatic saves - The number of seconds between automatic saves - - - - Число секунд между автоматическими сохранениями - Число секунд между автоматическими сохранениями - - - - - /schemas/apps/gnome-sudoku/number_of_sudokus_to_generate - /apps/gnome-sudoku/number_of_sudokus_to_generate - gnome-sudoku - int - 10 - - - - - - - - /schemas/apps/gnome-sudoku/print_already_played_games - /apps/gnome-sudoku/print_already_played_games - gnome-sudoku - bool - FALSE - - Print games that have been played - Print games that have been played - - - - Bereits gespielte Spiele ausdrucken - Bereits gespielte Spiele ausdrucken - - - - Print games that have been played - Print games that have been played - - - - Распечатывать сыгранные игры - Распечатывать сыгранные игры - - - - - /schemas/apps/gnome-sudoku/mark_printed_as_played - /apps/gnome-sudoku/mark_printed_as_played - gnome-sudoku - bool - FALSE - - Mark printed games as played - Mark printed games as played - - - - Gedruckte Spiele als gespielt markieren - Gedruckte Spiele als gespielt markieren - - - - Mark printed games as played - Mark printed games as played - - - - Отмечать распечатанные головоломки как сыгранные - Отмечать распечатанные головоломки как сыгранные - - - - - /schemas/apps/gnome-sudoku/group_size - /apps/gnome-sudoku/group_size - gnome-sudoku - int - 9 - - - - - - - - /schemas/apps/gnome-sudoku/generate_target_easy - /apps/gnome-sudoku/generate_target_easy - gnome-sudoku - bool - TRUE - - - - - - - - /schemas/apps/gnome-sudoku/generate_target_medium - /apps/gnome-sudoku/generate_target_medium - gnome-sudoku - bool - FALSE - - - - - - - - /schemas/apps/gnome-sudoku/generate_target_hard - /apps/gnome-sudoku/generate_target_hard - gnome-sudoku - bool - TRUE - - - - - - - - /schemas/apps/gnome-sudoku/generate_target_veryHard - /apps/gnome-sudoku/generate_target_veryHard - gnome-sudoku - bool - TRUE - - - - - - - - /schemas/apps/gnome-sudoku/print_easy - /apps/gnome-sudoku/print_easy - gnome-sudoku - bool - TRUE - - - - - - - - /schemas/apps/gnome-sudoku/print_medium - /apps/gnome-sudoku/print_medium - gnome-sudoku - bool - TRUE - - - - - - - - /schemas/apps/gnome-sudoku/print_hard - /apps/gnome-sudoku/print_hard - gnome-sudoku - bool - TRUE - - - - - - - - /schemas/apps/gnome-sudoku/print_very_hard - /apps/gnome-sudoku/print_very_hard - gnome-sudoku - bool - TRUE - - - - - - - - /schemas/apps/gnome-sudoku/generate_puzzles_in_background - /apps/gnome-sudoku/generate_puzzles_in_background - gnome-sudoku - bool - TRUE - - Generate new puzzles in the background - Generate new puzzles in the background - - - - Neues Rätsel im Hintergrund erstellen - Neues Rätsel im Hintergrund erstellen - - - - Generate new puzzles in the background - Generate new puzzles in the background - - - - Создавать новые головоломки в фоновом режиме - Создавать новые головоломки в фоновом режиме - - - - - /schemas/apps/gnome-sudoku/minimum_number_of_new_puzzles - /apps/gnome-sudoku/minimum_number_of_new_puzzles - gnome-sudoku - int - 90 - - - - - - - - /schemas/apps/gnome-sudoku/difficulty - /apps/gnome-sudoku/difficulty - gnome-sudoku - float - 0.0 - - - - - - - - /schemas/apps/gnome-sudoku/width - /apps/gnome-sudoku/width - gnome-sudoku - int - 700 - - Width of application window in pixels - Width of application window in pixels - - - - Die Breite des Anwendungsfensters in Pixeln - Die Breite des Anwendungsfensters in Pixeln - - - - Width of application window in pixels - Width of application window in pixels - - - - Ширина основного окна, в пикселях. - Ширина основного окна, в пикселях. - - - - - /schemas/apps/gnome-sudoku/height - /apps/gnome-sudoku/height - gnome-sudoku - int - 675 - - Height of application window in pixels - Height of application window in pixels - - - - Die Höhe des Anwendungsfensters in Pixeln - Die Höhe des Anwendungsfensters in Pixeln - - - - Height of application window in pixels - Height of application window in pixels - - - - Высота окна приложения, в пикселях. - Высота окна приложения, в пикселях. - - - - - /schemas/apps/gnome-sudoku/print_multiple_sudokus_to_print - /apps/gnome-sudoku/print_multiple_sudokus_to_print - gnome-sudoku - int - 4 - - - - - - - - /schemas/apps/gnome-sudoku/highlight - /apps/gnome-sudoku/highlight - gnome-sudoku - bool - FALSE - - Show hint highlights - Show hint highlights - - - - Besondere Tipps anzeigen - Besondere Tipps anzeigen - - - - Show hint highlights - Show hint highlights - - - - Подсвечивать отображаемые подсказки - Подсвечивать отображаемые подсказки - - - - - /schemas/apps/gnome-sudoku/show_tracker - /apps/gnome-sudoku/show_tracker - gnome-sudoku - bool - FALSE - - - - - - - - /schemas/apps/gnome-sudoku/bg_color - /apps/gnome-sudoku/bg_color - gnome-sudoku - string - black - - Color of the grid border - Color of the grid border - - - - Farbe des Gitterrandes - Farbe des Gitterrandes - - - - Colour of the grid border - Colour of the grid border - - - - Цвет границ решётки - Цвет границ решётки - - - - - /schemas/apps/gnome-sudoku/show_toolbar - /apps/gnome-sudoku/show_toolbar - gnome-sudoku - bool - TRUE - - Show the application toolbar - Show the application toolbar - - - - Die Werkzeugleiste anzeigen - Die Werkzeugleiste anzeigen - - - - Show the application toolbar - Show the application toolbar - - - - Показать или скрыть панель инструментов - Показать или скрыть панель инструментов - - - - - /schemas/apps/gnome-sudoku/show_impossible_implications - /apps/gnome-sudoku/show_impossible_implications - gnome-sudoku - bool - FALSE - - - - - - - - /schemas/apps/gnome-sudoku/always_show_hints - /apps/gnome-sudoku/always_show_hints - gnome-sudoku - bool - FALSE - - Show hints - Show hints - - - - Tipps anzeigen - Tipps anzeigen - - - - Show hints - Show hints - - - - Показывать подсказки - Показывать подсказки - - - - - /schemas/apps/gnome-sudoku/generate_for_target - /apps/gnome-sudoku/generate_for_target - gnome-sudoku - bool - FALSE - - - - - - - - /schemas/apps/gnome-sudoku/generate_endlessly - /apps/gnome-sudoku/generate_endlessly - gnome-sudoku - bool - TRUE - - - - - - - - /schemas/apps/gnome-sudoku/sudokus_per_page - /apps/gnome-sudoku/sudokus_per_page - gnome-sudoku - int - 2 - - Number of puzzles to print on a page - Number of puzzles to print on a page - - - - Anzahl der zu druckenden Rätsel pro Seite - Anzahl der zu druckenden Rätsel pro Seite - - - - Number of puzzles to print on a page - Number of puzzles to print on a page - - - - Число головоломок на странице - Число головоломок на странице - - - - - diff --git a/gconf/schemas/gnome-system-log.schemas b/gconf/schemas/gnome-system-log.schemas deleted file mode 100644 index 4c1abed..0000000 --- a/gconf/schemas/gnome-system-log.schemas +++ /dev/null @@ -1,155 +0,0 @@ - - - - - /schemas/apps/gnome-system-log/logfile - /apps/gnome-system-log/logfile - logview - string - /var/log/messages - - Log file to open up on startup - Specifies the log file displayed at startup. - The default is either /var/adm/messages or - /var/log/messages, depending on your - operating system. - - - - - Beim Start zu öffnende Protokolldatei - Gibt an, welche Protokolldatei beim Start geöffnet werden soll. Die Vorgabe ist entweder »/var/adm/messages« oder »/var/log/messages«. Dies ist von Ihrer Distribution abhängig. - - - - Log file to open up on startup - Specifies the log file displayed at startup. The default is either /var/adm/messages or /var/log/messages, depending on your operating system. - - - - Журнал, открываемый при запуске - Определяет файл журнала, показываемый при запуске. Значение по умолчанию — либо /var/adm/messages, либо /var/log/messages, в зависимости от операционной системы. - - - - - /schemas/apps/gnome-system-log/fontsize - /apps/gnome-system-log/fontsize - logview - int - 10 - - Size of the font used to display the log - Specifies the size of the fixed-width font used - to display the log in the main tree view. - The default is taken from the default terminal - font size. - - - - - Beim Anzeigen eines Protokolls zu verwendene Schriftgröße - Legt die Größe dicktengleicher Schriften zur Anzeige der Protokollen im Systemprotokoll-Fenster fest. Die Vorgabe wird der Vorgabe »Terminal-Schrift« entnommen. - - - - Size of the font used to display the log - Specifies the size of the fixed-width font used to display the log in the main tree view. The default is taken from the default terminal font size. - - - - Размер шрифта для показа журнала - Определяет размер моноширинного шрифта, используемого для показа журнала в главном окне. По умолчанию — размер шрифта терминала по умолчанию. - - - - - /schemas/apps/gnome-system-log/height - /apps/gnome-system-log/height - logview - int - 400 - - Height of the main window in pixels - Specifies the height of the log viewer main window - in pixels. - - - - - Höhe des Systemprotokoll-Fensters in Pixeln - Legt die Höhe des Systemprotokoll-Fensters in Pixeln fest. - - - - Height of the main window in pixels - Specifies the height of the log viewer main window in pixels. - - - - Высота главного окна в пикселах - Определяет высоту главного окна программы просмотра журналов в пикселах. - - - - - /schemas/apps/gnome-system-log/width - /apps/gnome-system-log/width - logview - int - 600 - - Width of the main window in pixels - Specifies the width of the log viewer main window - in pixels. - - - - - Breite des Systemprotokoll-Fensters in Pixeln - Legt die Breite des Systemprotokoll-Fensters in Pixeln fest. - - - - Width of the main window in pixels - Specifies the width of the log viewer main window in pixels. - - - - Ширина главного окна в пикселах - Определяет ширину главного окна программы просмотра журналов в пикселах. - - - - - /schemas/apps/gnome-system-log/logfiles - /apps/gnome-system-log/logfiles - logview - list - string - - Log files to open up on startup - Specifies a list of log files to open up at startup. - A default list is created by reading /etc/syslog.conf. - - - - - Beim Start zu öffnende Protokolldateien - Gibt an, welche Protokolldateien beim Start geöffnet werden soll. Die Vorgabe wird durch die Datei »/etc/syslog.conf« festgelegt. - - - - Log files to open up on startup - Specifies a list of log files to open up at startup. A default list is created by reading /etc/syslog.conf. - - - - Журналы, открываемые при запуске - Определяет список файлов журналов, открываемых при запуске. Список по умолчанию создаётся путём чтения /etc/syslog.conf. - - - - - - diff --git a/gconf/schemas/gnome-system-monitor.schemas b/gconf/schemas/gnome-system-monitor.schemas deleted file mode 100644 index c6f72b2..0000000 --- a/gconf/schemas/gnome-system-monitor.schemas +++ /dev/null @@ -1,1699 +0,0 @@ - - - - - /schemas/apps/procman/width - /apps/procman/width - procman - int - 440 - - Main Window width - - - - - Breite des Hauptfensters - - - - - Main Window width - - - - - Ширина основного окна - - - - - - /schemas/apps/procman/height - /apps/procman/height - procman - int - 495 - - Main Window height - - - - - Höhe des Hauptfensters - - - - - Main Window height - - - - - Высота основного окна - - - - - - /schemas/apps/procman/show_tree - /apps/procman/show_tree - procman - bool - FALSE - - Show process dependencies in tree form - - - - - Prozessabhängigkeiten in Baumform anzeigen - - - - - Show process dependencies in tree form - - - - - Показывать зависимости процессов в виде дерева - - - - - - /schemas/apps/procman/solaris_mode - /apps/procman/solaris_mode - procman - bool - FALSE - - Solaris mode for CPU percentage - If TRUE, system-monitor operates in 'Solaris mode' where a task's cpu usage is divided by the total number of CPUs. Else it operates in 'Irix mode'. - - - - Solaris-Modus für die CPU-Prozentanzeige - Falls dieser Schlüssel WAHR ist, so verwendet die Systemüberwachung den »Solaris-Modus«, in welchem die CPU-Last eines Auftrags durch die Gesamtanzahl der Prozessoren dividiert wird. Bei FALSCH wird der »Irix-Modus« verwendet, in welchem die CPU-Last eines Auftrags nicht durch die Anzahl der Prozessoren geteilt wird. - - - - Solaris mode for CPU percentage - If TRUE, system-monitor operates in 'Solaris mode' where a task's CPU usage is divided by the total number of CPUs. Otherwise, it operates in 'Irix mode'. - - - - Режим Solaris для загрузки ЦПУ в процентах - Если установлено, системный монитор работает в «режиме Solaris», при котором загрузка ЦПУ для задачи делится на общее число ЦПУ. Иначе используется «режим Irix». - - - - - /schemas/apps/procman/smooth_refresh - /apps/procman/smooth_refresh - procman - bool - TRUE - - Enable/Disable smooth refresh - - - - - Sanfte Auffrischung aktivieren bzw. deaktivieren - - - - - Enable/Disable smooth refresh - - - - - Включить/выключить плавное обновление - - - - - - /schemas/apps/procman/kill_dialog - /apps/procman/kill_dialog - procman - bool - TRUE - - Show warning dialog when killing processes - - - - - Beim Abwürgen von Prozessen einen Warndialog anzeigen - - - - - Show warning dialogue when killing processes - - - - - Выводить диалог предупреждения при снятии процессов - - - - - - /schemas/apps/procman/update_interval - /apps/procman/update_interval - procman - int - 3000 - - Time in milliseconds between updates of the process view - - - - - Zeit in Millisekunden zwischen den Aktualisierungen der Prozessliste - - - - - Time in milliseconds between updates of the process view - - - - - Время в миллисекундах между обновлением обзора процессов - - - - - - /schemas/apps/procman/graph_update_interval - /apps/procman/graph_update_interval - procman - int - 1000 - - Time in milliseconds between updates of the graphs - - - - - Zeit in Millisekunden zwischen den Aktualisierungen der Graphen - - - - - Time in milliseconds between updates of the graphs - - - - - Время в миллисекундах между обновлением графиков - - - - - - /schemas/apps/procman/show_all_fs - /apps/procman/show_all_fs - procman - bool - False - - Whether information about all filesystems should be displayed - Whether to display information about all filesystems (including types like 'autofs' and 'procfs'). Useful for getting a list of all currently mounted filesystems. - - - - Legt fest, ob Informationen über alle Dateisysteme angezeigt werden sollen - Legt fest, ob Informationen über alle Dateisysteme angezeigt werden sollen. Dies schließt Dateisystemarten wie »autofs« und »procfs« mit ein. Es kann nützlich sein, eine Liste aller zurzeit eingebundenen Dateisysteme zu erhalten. - - - - Whether information about all file systems should be displayed - Whether to display information about all file systems (including types like 'autofs' and 'procfs'). Useful for getting a list of all currently mounted file systems. - - - - Должны ли отображаться сведения о файловой системе - Должны ли отображаться сведения обо всех файловых системах (включая такие, как autofs и procfs). Может быть полезным получить полный список всех смонтированных файловых систем. - - - - - - /schemas/apps/procman/disks_interval - /apps/procman/disks_interval - procman - int - 5000 - - Time in milliseconds between updates of the devices list - - - - - Zeit in Millisekunden zwischen den Aktualisierungen der Geräteliste - - - - - Time in milliseconds between updates of the devices list - - - - - Время в миллисекундах между обновлениями списка устройств - - - - - - /schemas/apps/procman/view_as - /apps/procman/view_as - procman - int - 1 - - Determines which processes to show by default. 0 is All, 1 is user, and 2 is active - - - - - Legt die Vorgabe für die Anzeige der Prozessarten fest. »0« bedeutet alle Prozesse, »1« nur Benutzerprozesse und »2« nur laufende Prozesse. - - - - - Determines which processes to show by default. 0 is All, 1 is user, and 2 is active - - - - - Определяет, какие процессы показывать по умолчанию. 0 — все, 1 — пользователя, 2 — активные - - - - - - /schemas/apps/procman/current_tab - /apps/procman/current_tab - procman - int - 2 - - Saves the currently viewed tab - 0 for the System Info, 1 for the processes list, 2 for the resources and 3 for the disks list - - - - Speichert den momentan angezeigten Reiter - 0 für Systeminformationen, 1 für Prozessliste, 2 für Ressourcen und 3 für die Datenträgerliste - - - - Saves the currently viewed tab - 0 for the System Info, 1 for the processes list, 2 for the resources and 3 for the disks list - - - - Сохраняет текущую активную вкладку - 0 — информация о системе, 1 — список процессов, 2 — ресурсов, 3 — дисков - - - - - /schemas/apps/procman/cpu_color0 - /apps/procman/cpu_color0 - procman - string - #FF6E00 - - Default graph cpu color - - - - - Farbvorgabe für den CPU-Graph - - - - - Default graph CPU colour - - - - - Цвет графика ЦП по умолчанию - - - - - - /schemas/apps/procman/cpu_color1 - /apps/procman/cpu_color1 - procman - string - #CB0C29 - - Default graph cpu color - - - - - Farbvorgabe für den CPU-Graph - - - - - Default graph CPU colour - - - - - Цвет графика ЦП по умолчанию - - - - - - /schemas/apps/procman/cpu_color2 - /apps/procman/cpu_color2 - procman - string - #49A835 - - Default graph cpu color - - - - - Farbvorgabe für den CPU-Graph - - - - - Default graph CPU colour - - - - - Цвет графика ЦП по умолчанию - - - - - - /schemas/apps/procman/cpu_color3 - /apps/procman/cpu_color3 - procman - string - #2D7DB3 - - Default graph cpu color - - - - - Farbvorgabe für den CPU-Graph - - - - - Default graph CPU colour - - - - - Цвет графика ЦП по умолчанию - - - - - - /schemas/apps/procman/mem_color - /apps/procman/mem_color - procman - string - #AB1852 - - Default graph mem color - - - - - Farbvorgabe für den Speicher-Graph - - - - - Default graph memory colour - - - - - Цвет графика памяти по умолчанию - - - - - - /schemas/apps/procman/swap_color - /apps/procman/swap_color - procman - string - #49A835 - - Default graph swap color - - - - - Farbvorgabe für den Graph des Auslagerungsspeichers - - - - - Default graph swap colour - - - - - Цвет графика подкачки по умолчанию - - - - - - /schemas/apps/procman/net_in_color - /apps/procman/net_in_color - procman - string - #2D7DB3 - - Default graph incoming network traffic color - - - - - Farbvorgabe für den Graph des eingehenden Netzwerkverkehrs - - - - - Default graph incoming network traffic colour - - - - - Цвет графика приёма по сети - - - - - - /schemas/apps/procman/net_out_color - /apps/procman/net_out_color - procman - string - #844798 - - Default graph outgoing network traffic color - - - - - Farbvorgabe für den Graph des ausgehenden Netzwerkverkehrs - - - - - Default graph outgoing network traffic colour - - - - - Цвет графика отправки по сети - - - - - - /schemas/apps/procman/proctree/sort_col - /apps/procman/proctree/sort_col - procman - int - 0 - - Process view sort column - - - - - Sortierungsspalte der Prozessliste - - - - - Process view sort column - - - - - Столбец сортировки списка процессов - - - - - - /schemas/apps/procman/proctree/columns_order - /apps/procman/proctree/columns_order - procman - list - int - - Process view columns order - - - - - Spaltensortierung der Prozessliste - - - - - Process view columns order - - - - - Порядок столбцов просмотра процессов - - - - - - /schemas/apps/procman/proctree/sort_order - /apps/procman/proctree/sort_order - procman - int - 0 - - Process view sort order - - - - - Sortierungsreihenfolge der Prozessliste - - - - - Process view sort order - - - - - Порядок сортировки списка процессов - - - - - - - /schemas/apps/procman/proctree/col_0_width - /apps/procman/proctree/col_0_width - procman - int - 198 - - Width of process 'name' column - - - - - Breite der Spalte »Prozessname« - - - - - Width of process 'name' column - - - - - Ширина столбца имени процесса - - - - - - /schemas/apps/procman/proctree/col_0_visible - /apps/procman/proctree/col_0_visible - procman - bool - TRUE - - Show process 'name' column on startup - - - - - Spalte »Prozessname« beim Start anzeigen - - - - - Show process 'name' column on startup - - - - - Показывать столбец имени процесса при запуске - - - - - - - /schemas/apps/procman/proctree/col_1_width - /apps/procman/proctree/col_1_width - procman - int - 0 - - Width of process 'owner' column - - - - - Breite der Spalte »Benutzer« - - - - - Width of process 'owner' column - - - - - Ширина столбца владельца процесса - - - - - - /schemas/apps/procman/proctree/col_1_visible - /apps/procman/proctree/col_1_visible - procman - bool - FALSE - - Show process 'owner' column on startup - - - - - Spalte »Benutzer« beim Start anzeigen - - - - - Show process 'owner' column on startup - - - - - Показывать столбец владельца процесса при запуске - - - - - - - /schemas/apps/procman/proctree/col_2_width - /apps/procman/proctree/col_2_width - procman - int - 37 - - Width of process 'status' column - - - - - Breite der Spalte »Status« - - - - - Width of process 'status' column - - - - - Ширина столбца состояния процесса - - - - - - /schemas/apps/procman/proctree/col_2_visible - /apps/procman/proctree/col_2_visible - procman - bool - TRUE - - Show process 'status' column on startup - - - - - Spalte »Status« beim Start anzeigen - - - - - Show process 'status' column on startup - - - - - Показывать столбец состояния процесса при запуске - - - - - - - /schemas/apps/procman/proctree/col_3_width - /apps/procman/proctree/col_3_width - procman - int - 0 - - Width of process 'virtual memory' column - - - - - Breite der Spalte »Virtueller Speicher« - - - - - Width of process 'virtual memory' column - - - - - Ширина столбца виртуальной памяти процесса - - - - - - /schemas/apps/procman/proctree/col_3_visible - /apps/procman/proctree/col_3_visible - procman - bool - FALSE - - Show process 'virtual memory' column on startup - - - - - Spalte »Virtueller Speicher« beim Start anzeigen - - - - - Show process 'virtual memory' column on startup - - - - - Показывать столбец виртуальной памяти процесса при запуске - - - - - - - /schemas/apps/procman/proctree/col_4_width - /apps/procman/proctree/col_4_width - procman - int - 53 - - Width of process 'resident memory' column - - - - - Breite der Spalte »Nicht auslagerbarer Speicher« - - - - - Width of process 'resident memory' column - - - - - Ширина столбца резидентной памяти процесса - - - - - - /schemas/apps/procman/proctree/col_4_visible - /apps/procman/proctree/col_4_visible - procman - bool - FALSE - - Show process 'resident memory' column on startup - - - - - Spalte »Nicht auslagerbarer Speicher« beim Start anzeigen - - - - - Show process 'resident memory' column on startup - - - - - Показывать столбец резидентной памяти процесса при запуске - - - - - - - /schemas/apps/procman/proctree/col_5_width - /apps/procman/proctree/col_5_width - procman - int - 0 - - Width of process 'writable memory' column - - - - - Breite der Spalte »Schreibbarer Speicher« - - - - - Width of process 'writeable memory' column - - - - - Ширина столбца доступной для записи памяти процесса - - - - - - /schemas/apps/procman/proctree/col_5_visible - /apps/procman/proctree/col_5_visible - procman - bool - FALSE - - Show process 'writable memory' column on startup - - - - - Spalte »Schreibbarer Speicher« beim Start anzeigen - - - - - Show process 'writeable memory' column on startup - - - - - Показывать столбец доступной для записи памяти процесса при запуске - - - - - - - /schemas/apps/procman/proctree/col_6_width - /apps/procman/proctree/col_6_width - procman - int - 0 - - Width of process 'shared memory' column - - - - - Breite der Spalte »Geteilter Speicher« - - - - - Width of process 'shared memory' column - - - - - Ширина столбца разделяемой памяти процесса - - - - - - /schemas/apps/procman/proctree/col_6_visible - /apps/procman/proctree/col_6_visible - procman - bool - FALSE - - Show process 'shared memory' column on startup - - - - - Spalte »Geteilter Speicher« beim Start anzeigen - - - - - Show process 'shared memory' column on startup - - - - - Показывать столбец разделяемой памяти процесса при запуске - - - - - - - /schemas/apps/procman/proctree/col_7_width - /apps/procman/proctree/col_7_width - procman - int - 0 - - Width of process 'X server memory' column - - - - - Breite der Spalte »X-Server-Speicher« - - - - - Width of process 'X server memory' column - - - - - Ширина столбца памяти X-сервера для процесса - - - - - - /schemas/apps/procman/proctree/col_7_visible - /apps/procman/proctree/col_7_visible - procman - bool - FALSE - - Show process 'X server memory' column on startup - - - - - Spalte »X-Server-Speicher« beim Start anzeigen - - - - - Show process 'X server memory' column on startup - - - - - Показывать столбец памяти X-сервера для процесса при запуске - - - - - - - /schemas/apps/procman/proctree/col_8_width - /apps/procman/proctree/col_8_width - procman - int - 0 - - Width of process 'CPU %' column - - - - - Breite der Spalte »% CPU« - - - - - Width of process 'CPU %' column - - - - - Ширина столбца процентной загрузки ЦПУ - - - - - - /schemas/apps/procman/proctree/col_8_visible - /apps/procman/proctree/col_8_visible - procman - bool - TRUE - - Show process 'CPU %' column on startup - - - - - Spalte »% CPU« beim Start anzeigen - - - - - Show process 'CPU %' column on startup - - - - - Показывать столбец загрузки ЦПУ процессом в процентах при запуске - - - - - - - /schemas/apps/procman/proctree/col_9_width - /apps/procman/proctree/col_9_width - procman - int - 50 - - Width of process 'CPU time' column - - - - - Breite der Spalte »CPU-Zeit« - - - - - Width of process 'CPU time' column - - - - - Ширина столбца времени занятости ЦПУ процессом - - - - - - /schemas/apps/procman/proctree/col_9_visible - /apps/procman/proctree/col_9_visible - procman - bool - FALSE - - Show process 'CPU time' column on startup - - - - - Spalte »CPU-Zeit« beim Start anzeigen - - - - - Show process 'CPU time' column on startup - - - - - Показывать столбец времени занятости ЦПУ процессом при запуске - - - - - - - /schemas/apps/procman/proctree/col_10_width - /apps/procman/proctree/col_10_width - procman - int - 0 - - Width of process 'start time' column - - - - - Breite der Spalte »Gestartet« - - - - - Width of process 'start time' column - - - - - Ширина столбца времени запуска процесса - - - - - - /schemas/apps/procman/proctree/col_10_visible - /apps/procman/proctree/col_10_visible - procman - bool - FALSE - - Show process 'start time' column on startup - - - - - Spalte »Gestartet« beim Start anzeigen - - - - - Show process 'start time' column on startup - - - - - Показывать столбец времени запуска процесса при запуске - - - - - - - /schemas/apps/procman/proctree/col_11_width - /apps/procman/proctree/col_11_width - procman - int - 48 - - Width of process 'nice' column - - - - - Breite der Spalte »Nice-Wert« - - - - - Width of process 'nice' column - - - - - Ширина столбца приоритета процесса - - - - - - /schemas/apps/procman/proctree/col_11_visible - /apps/procman/proctree/col_11_visible - procman - bool - TRUE - - Show process 'nice' column on startup - - - - - Spalte »Nice-Wert« beim Start anzeigen - - - - - Show process 'nice' column on startup - - - - - Показывать столбец приоритета процесса при запуске - - - - - - - /schemas/apps/procman/proctree/col_12_width - /apps/procman/proctree/col_12_width - procman - int - 48 - - Width of process 'PID' column - - - - - Breite der Spalte »Prozesskennung« - - - - - Width of process 'PID' column - - - - - Ширина столбца PID процесса - - - - - - /schemas/apps/procman/proctree/col_12_visible - /apps/procman/proctree/col_12_visible - procman - bool - TRUE - - Show process 'PID' column on startup - - - - - Spalte »Prozesskennung« beim Start anzeigen - - - - - Show process 'PID' column on startup - - - - - Показывать столбец PID процесса при запуске - - - - - - - /schemas/apps/procman/proctree/col_13_width - /apps/procman/proctree/col_13_width - procman - int - 48 - - Width of process 'SELinux security context' column - - - - - Breite der Spalte »SELinux-Sicherheitskontext« - - - - - Width of process 'SELinux security context' column - - - - - Ширина столбца контекста SELinux процесса - - - - - - /schemas/apps/procman/proctree/col_13_visible - /apps/procman/proctree/col_13_visible - procman - bool - FALSE - - Show process 'SELinux security context' column on startup - - - - - Spalte »SELinux-Sicherheitskontext« beim Start anzeigen - - - - - Show process 'SELinux security context' column on startup - - - - - Показывать столбец контекста SELinux процесса при запуске - - - - - - - /schemas/apps/procman/proctree/col_14_width - /apps/procman/proctree/col_14_width - procman - int - 48 - - Width of process 'arguments' column - - - - - Breite der Spalte »Argumente« - - - - - Width of process 'arguments' column - - - - - Ширина столбца аргументов процесса - - - - - - /schemas/apps/procman/proctree/col_14_visible - /apps/procman/proctree/col_14_visible - procman - bool - FALSE - - Show process 'arguments' column on startup - - - - - Spalte »Argumente« beim Start anzeigen - - - - - Show process 'arguments' column on startup - - - - - Показывать столбец аргументов процесса при запуске - - - - - - - /schemas/apps/procman/proctree/col_15_width - /apps/procman/proctree/col_15_width - procman - int - 48 - - Width of process 'estimated memory usage' column - - - - - Breite der Spalte »Geschätzter Speicherverbrauch« - - - - - Width of process 'estimated memory usage' column - - - - - Ширина столбца оценки использования памяти процессом - - - - - - /schemas/apps/procman/proctree/col_15_visible - /apps/procman/proctree/col_15_visible - procman - bool - TRUE - - Show process 'estimated memory usage' column on startup - - - - - Spalte »Geschätzter Speicherverbrauch« beim Start anzeigen - - - - - Show process 'estimated memory usage' column on startup - - - - - Показывать столбец оценки использования памяти процессом при запуске - - - - - - - /schemas/apps/procman/proctree/col_16_width - /apps/procman/proctree/col_16_width - procman - int - 48 - - Width of process 'Waiting Channel' column - - - - - Breite der Spalte »Waiting Channel« - - - - - Width of process 'Waiting Channel' column - - - - - Ширина столбца ожидания в ядре - - - - - - /schemas/apps/procman/proctree/col_16_visible - /apps/procman/proctree/col_16_visible - procman - bool - TRUE - - Show process 'Waiting Channel' column on startup - - - - - Spalte »Waiting Channel« beim Start anzeigen - - - - - Show process 'Waiting Channel' column on startup - - - - - Показывать столбец ожидания в ядре при запуске - - - - - - - /schemas/apps/procman/disktreenew/sort_col - /apps/procman/disktreenew/sort_col - procman - int - 1 - - Process view sort column - - - - - Sortierungsspalte der Prozessliste - - - - - Process view sort column - - - - - Столбец сортировки списка процессов - - - - - - /schemas/apps/procman/disktreenew/sort_order - /apps/procman/disktreenew/sort_order - procman - int - 0 - - Process view sort order - - - - - Sortierungsreihenfolge der Prozessliste - - - - - Process view sort order - - - - - Порядок сортировки списка процессов - - - - - - /schemas/apps/procman/disktreenew/columns_order - /apps/procman/disktreenew/columns_order - procman - list - int - - Disk view columns order - - - - - Spaltensortierung der Geräteansicht - - - - - Disk view columns order - - - - - Порядок столбцов просмотра диска - - - - - - /schemas/apps/procman/memmapstree/sort_col - /apps/procman/memmapstree/sort_col - procman - int - 0 - - Process view sort column - - - - - Sortierungsspalte der Prozessliste - - - - - Process view sort column - - - - - Столбец сортировки списка процессов - - - - - - /schemas/apps/procman/memmapstree/sort_order - /apps/procman/memmapstree/sort_order - procman - int - 0 - - Process view sort order - - - - - Sortierungsreihenfolge der Prozessliste - - - - - Process view sort order - - - - - Порядок сортировки списка процессов - - - - - - - diff --git a/gconf/schemas/gnome-terminal.schemas b/gconf/schemas/gnome-terminal.schemas deleted file mode 100644 index a101d84..0000000 --- a/gconf/schemas/gnome-terminal.schemas +++ /dev/null @@ -1,2481 +0,0 @@ - - - - - - - - - - - /schemas/apps/gnome-terminal/global/profile_list - /apps/gnome-terminal/global/profile_list - gnome-terminal - list - string - [Default] - - List of profiles - - List of profiles known to gnome-terminal. The list contains - strings naming subdirectories relative to - /apps/gnome-terminal/profiles. - - - - - Profilliste - Die Liste der dem Terminal bekannten Profile. Sie enthält Zeichenketten, die Unterordner relativ zu »/apps/gnome-terminal/profiles« benennen. - - - - List of profiles - List of profiles known to gnome-terminal. The list contains strings naming subdirectories relative to /apps/gnome-terminal/profiles. - - - - Список профилей - Список профилей, известных терминалу. Список содержит строки, именующие подкаталоги каталога /apps/gnome-terminal/profiles. - - - - - /schemas/apps/gnome-terminal/global/default_profile - /apps/gnome-terminal/global/default_profile - gnome-terminal - string - Default - - Profile to use for new terminals - - Profile to be used when opening a new window or tab. - Must be in profile_list. - - - - - Für neue Terminals zu verwendendes Profil - Beim Öffnen eines Fensters oder Reiters zu verwendendes Profil. Dies muss im Schlüssel »profile_list« vorkommen. - - - - Profile to use for new terminals - Profile to be used when opening a new window or tab. Must be in profile_list. - - - - Профиль, используемый для новых терминалов - Профиль, используемый при открытии нового окна или вкладки. Должен быть в profile_list. - - - - - /schemas/apps/gnome-terminal/global/use_mnemonics - /apps/gnome-terminal/global/use_mnemonics - gnome-terminal - bool - true - - Whether the menubar has access keys - - Whether to have Alt+letter access keys for the menubar. - They may interfere with some applications run inside the terminal - so it's possible to turn them off. - - - - - Zugriffstasten in Menüleiste anzeigen? - Sollen Alt+Buchstabe-Tastenkombinationen für die Menüleiste verwendet werden? Möglicherweise geraten sie mit im Terminal laufenden Anwendungen in Konflikt, daher ist es möglich, sie zu deaktivieren. - - - - Whether the menubar has access keys - Whether to have Alt+letter access keys for the menubar. They may interfere with some applications run inside the terminal so it's possible to turn them off. - - - - Имеет ли панель меню клавиши доступа - Использовать ли комбинации клавиш Alt+буква для доступа к меню. Эта функция может мешать работе некоторых приложений внутри терминала, в этом случае ее необходимо отключить. - - - - - /schemas/apps/gnome-terminal/global/use_menu_accelerators - /apps/gnome-terminal/global/use_menu_accelerators - gnome-terminal - bool - true - - Whether the standard GTK shortcut for menubar access is enabled - - Normally you can access the menubar with F10. This can also - be customized via gtkrc (gtk-menu-bar-accel = - "whatever"). This option allows the standard menubar - accelerator to be disabled. - - - - - Standard-GTK+-Tastenkombination zum Zugriff auf Menüleiste aktivieren? - Im Normalfall können Sie per F10 auf die Menüleiste zugreifen. Dies kann auch mit Hilfe der gtkrc angepasst werden (gtk-menu-bar-accel = »wasauchimmer«). Mit Hilfe dieses Schlüssels können Sie die Tastenkombination zum Zugriff auf die Menüleiste deaktivieren. - - - - Whether the standard GTK shortcut for menubar access is enabled - Normally you can access the menubar with F10. This can also be customised via gtkrc (gtk-menu-bar-accel = "whatever"). This option allows the standard menubar accelerator to be disabled. - - - - Разрешать ли стандартную комбинацию клавиш GTK для доступа к меню - Как правило вы можете получить доступ к меню, нажав F10. Эта клавиша может быть изменена в в файле gtkrc (gtk-menu-bar-accel = «что-либо»). Этот ключ позволяет отключить стандартный акселератор доступа к меню. - - - - - - /schemas/apps/gnome-terminal/global/active_encodings - /apps/gnome-terminal/global/active_encodings - gnome-terminal - list - string - - [UTF-8,current] - List of available encodings - - A subset of possible encodings are presented in - the Encoding submenu. This is a list of encodings - to appear there. The special encoding name "current" - means to display the encoding of the current locale. - - - - - [UTF-8,current,ISO-8859-15] - Liste verfügbarer Zeichenkodierungen - Ein Teil der verfügbaren Zeichenkodierungen wird im Zeichenkodierungsmenü angezeigt. Dies ist die Liste der Zeichenkodierungen, die dort erscheinen sollen. Falls dieser Schlüssel den Wert »current« hat, wird die Zeichenkodierung der momentan verwendeten Standorteinstellungen verwendet. - - - - [UTF-8,current] - List of available encodings - A subset of possible encodings are presented in the Encoding submenu. This is a list of encodings to appear there. The special encoding name "current" means to display the encoding of the current locale. - - - - [UTF-8,ISO-8859-5,KOI8R,WINDOWS-1251,current] - Список доступных кодировок - Некоторые из всех возможных кодировок, приведенные в подменю «Кодировки». В нем будут приведены только те кодировки, которые перечислены в этом списке. Специальное имя кодировки «current» означает кодировку текущей локали. - - - - - /schemas/apps/gnome-terminal/global/confirm_window_close - /apps/gnome-terminal/global/confirm_window_close - gnome-terminal - bool - true - - Whether to ask for confirmation when closing terminal windows - - Whether to ask for confirmation when closing a terminal window which has - more than one open tab. - - - - - Beim Schließen von Terminal-Fenstern auf Bestätigung warten? - Beim Schließen von Terminal-Fenstern mit mehr als einem Reiter auf Bestätigung warten? - - - - Whether to ask for confirmation when closing terminal windows - Whether to ask for confirmation when closing a terminal window which has more than one open tab. - - - - Запрашивать ли подтверждение при закрытии окон терминала - Запрашивать ли подтверждение при закрытии окна терминала, которое имеет более одной открытой вкладки. - - - - - - - - - - - - - /schemas/apps/gnome-terminal/profiles/Default/visible_name - /apps/gnome-terminal/profiles/Default/visible_name - gnome-terminal - string - - Default - Human-readable name of the profile - - Human-readable name of the profile. - - - - - Vorgabe - Menschenlesbarer Profilname - Menschenlesbarer Profilname. - - - - Default - Human-readable name of the profile - Human-readable name of the profile. - - - - По умолчанию - Читабельное название профиля - Читабельное имя профиля. - - - - - /schemas/apps/gnome-terminal/profiles/Default/default_show_menubar - /apps/gnome-terminal/profiles/Default/default_show_menubar - gnome-terminal - bool - true - - Whether to show menubar in new windows/tabs - - True if the menubar should be shown in new windows, - for windows/tabs with this profile. - - - - - In Fenstern/Reitern per Vorgabe Menüleiste anzeigen? - Soll in Fenstern/Reitern mit diesem Profil per Vorgabe die Menüleiste angezeigt werden? - - - - Whether to show menubar in new windows/tabs - True if the menubar should be shown in new windows, for windows/tabs with this profile. - - - - Отображать ли меню в новых окнах/вкладках - Если установлено, показывать панель меню в новых окнах, для окон/вкладок с этим профилем. - - - - - /schemas/apps/gnome-terminal/profiles/Default/foreground_color - /apps/gnome-terminal/profiles/Default/foreground_color - gnome-terminal - string - #000000 - - Default color of text in the terminal - - Default color of text in the terminal, as a color - specification (can be HTML-style hex digits, or - a color name such as "red"). - - - - - Voreingestellte Terminal-Textfarbe - Die voreingestellte Textfarbe des Terminals als Farbangabe (kann als HTML-artige Hex-Zahl oder als Schriftfarbe wie »red« angegeben werden). - - - - Default colour of text in the terminal - Default colour of text in the terminal, as a colour specification (can be HTML-style hex digits, or a colour name such as "red"). - - - - Цвет текста в терминале по умолчанию - Цвет текста в терминале по умолчанию. в виде шестнадцатеричных цифр (как в HTML), или имени цвета (например, «red»). - - - - - /schemas/apps/gnome-terminal/profiles/Default/background_color - /apps/gnome-terminal/profiles/Default/background_color - gnome-terminal - string - #FFFFDD - - Default color of terminal background - - Default color of terminal background, as a color - specification (can be HTML-style hex digits, or - a color name such as "red"). - - - - - Voreingestellte Terminal-Hintergrundfarbe - Die voreingestellte Hintergrundfarbe des Terminals als Farbangabe (kann als HTML-artige Hex-Zahl oder als Schriftfarbe wie »red« angegeben werden). - - - - Default colour of terminal background - Default colour of terminal background, as a colour specification (can be HTML-style hex digits, or a colour name such as "red"). - - - - Цвет фона терминала по умолчанию - Цвет фона терминала по умолчанию. в виде шестнадцатеричных цифр (как в HTML), или имени цвета (например, «red»). - - - - - /schemas/apps/gnome-terminal/profiles/Default/bold_color - /apps/gnome-terminal/profiles/Default/bold_color - gnome-terminal - string - #000000 - - Default color of bold text in the terminal - - Default color of bold text in the terminal, as a color - specification (can be HTML-style hex digits, or - a color name such as "red"). - This is ignored if bold_color_same_as_fg is true. - - - - - Vorgabefarbe für fetten Text im Terminal - Die voreingestellte Farbe für fetten Text im Terminals als Farbangabe (kann als HTML-artige Hex-Zahl oder als Schriftfarbe wie »red« angegeben werden). Dies wird ignoriert, falls bold_color_same_as_fg auf »wahr« gesetzt ist. - - - - Default colour of bold text in the terminal - Default colour of bold text in the terminal, as a colour specification (can be HTML-style hex digits, or a colour name such as "red"). This is ignored if bold_color_same_as_fg is true. - - - - Цвет полужирного текста в терминале по умолчанию - Цвет полужирного текста в терминале по умолчанию в виде шестнадцатеричных цифр (как в HTML) или имени цвета (например, «red»). Игнорируется, если bold_color_same_as_fg равно true. - - - - - /schemas/apps/gnome-terminal/profiles/Default/bold_color_same_as_fg - /apps/gnome-terminal/profiles/Default/bold_color_same_as_fg - gnome-terminal - bool - true - - Whether bold text should use the same color as normal text - - If true, boldface text will be rendered using the same color as - normal text. - - - - - Legt fest, ob fetter Text die gleiche Farbe haben soll wie normaler Text. - Falls auf »wahr« gesetzt, wird fetter Text in der gleichen Farbe dargestellt wie normaler Text. - - - - Whether bold text should use the same colour as normal text - If true, boldface text will be rendered using the same colour as normal text. - - - - Выводить ли полужирный текст тем же цветом что и обычный текст - Если включено, выделенный полужирным текст будет выводиться тем же цветом что и обычный текст. - - - - - /schemas/apps/gnome-terminal/profiles/Default/title_mode - /apps/gnome-terminal/profiles/Default/title_mode - gnome-terminal - string - replace - - What to do with dynamic title - - If the application in the terminal sets the title - (most typically people have their shell set up to - do this), the dynamically-set title can - erase the configured title, go before it, go after it, - or replace it. The possible values are "replace", - "before", "after", and "ignore". - - - - - Wie soll mit dem dynamischen Titel verfahren werden? - Falls eine Terminal-Anwendung den Titel festlegt (im Normalfall geht dies von der Befehlszeile aus), so kann der dynamisch festgelegte auf verschiedene Weisen mit dem Vorgabetitel verfahren. Zulässige Werte: »replace« (Vorgabetitel ersetzen), »before« (vor Titel einfügen), »after« (nach Titel einfügen« sowie »ignore« (Titel belassen). - - - - What to do with dynamic title - If the application in the terminal sets the title (most typically people have their shell set up to do this), the dynamically-set title can erase the configured title, go before it, go after it, or replace it. The possible values are "replace", "before", "after", and "ignore". - - - - Что делать с динамическим заголовком - Если приложение в терминале устанавливает заголовок (обычно оболочка сконфигурирована, чтобы так делать), динамически устанавливаемый заголовок может стереть сконфигурированный заголовок, помещаться перед ним, после него, либо заменять его. Возможные значения: «replace», «before», «after», и «ignore». - - - - - /schemas/apps/gnome-terminal/profiles/Default/title - /apps/gnome-terminal/profiles/Default/title - gnome-terminal - string - - Terminal - Title for terminal - - Title to display for the terminal window or tab. - This title may be replaced by or combined with - the title set by the application inside the terminal, - depending on the title_mode setting. - - - - - Terminal - Terminal-Titel - Für das Terminal-Fenster bzw. den Reiter anzuzeigender Titel. Dieser kann mit dem von der Anwendung im Terminal festgelegten Titel kombiniert oder von ihr ersetzt werden, in Abhängigkeit vom Schlüssel »title_mode«. - - - - Terminal - Title for terminal - Title to display for the terminal window or tab. This title may be replaced by or combined with the title set by the application inside the terminal, depending on the title_mode setting. - - - - Терминал - Заголовок терминала - Заголовок окна или вкладки терминала. Этот заголовок может быть заменен или совмещен с заголовком, устанавливаемым приложением внутри терминала, в зависимости от значения ключа title_mode. - - - - - /schemas/apps/gnome-terminal/profiles/Default/allow_bold - /apps/gnome-terminal/profiles/Default/allow_bold - gnome-terminal - bool - true - - Whether to allow bold text - - If true, allow applications in the terminal to make - text boldface. - - - - - Fetten Text erlauben? - Falls dieser Schlüssel wahr ist, ist es Anwendungen erlaubt, in diesem Terminal fett formatierten Text auszugeben. - - - - Whether to allow bold text - If true, allow applications in the terminal to make text boldface. - - - - Разрешать ли полужирный текст - Если включено, позволяет приложениям в терминале устанавливать полужирный шрифт. - - - - - /schemas/apps/gnome-terminal/profiles/Default/silent_bell - /apps/gnome-terminal/profiles/Default/silent_bell - gnome-terminal - bool - false - - Whether to silence terminal bell - - If true, don't make a noise when applications send the - escape sequence for the terminal bell. - - - - - Terminalglocke stummschalten? - Falls dieser Schlüssel wahr ist, wird kein akustisches Signal ausgegeben, wenn Anwendungen die Terminiersequenz für die Terminalglocke ausgeben. - - - - Whether to silence terminal bell - If true, don't make a noise when applications send the escape sequence for the terminal bell. - - - - Подавлять ли сигнал терминала - Если включено, не шуметь, когда приложения посылают escape-последовательность для терминального звонка. - - - - - /schemas/apps/gnome-terminal/profiles/Default/word_chars - /apps/gnome-terminal/profiles/Default/word_chars - gnome-terminal - string - -A-Za-z0-9,./?%&#:_=+@~ - - Characters that are considered "part of a word" - - When selecting text by word, sequences of these characters - are considered single words. Ranges can be given as - "A-Z". Literal hyphen (not expressing a range) should be - the first character given. - - - - - Zeichen, die als »Teil eines Wortes« angesehen werden. - Bei der wortweisen Auswahl werden Abfolgen dieser Zeichen wie einzelne Wörter behandelt. Bereiche können in der Form »A-Z« angegeben werden. Der Bindestrich (der keinen Bereich ausdrückt) sollte als erstes Zeichen angegeben werden. - - - - Characters that are considered "part of a word" - When selecting text by word, sequences of these characters are considered single words. Ranges can be given as "A-Z". Literal hyphen (not expressing a range) should be the first character given. - - - - Символы, считающиеся «частью слова» - При выборе текста по словам последовательности этих символов воспринимается как отдельные слова. Диапазоны могут быть указаны как «A-Z». Знак переноса (не означающий диапазон) должен быть первым из указанных символов. - - - - - /schemas/apps/gnome-terminal/profiles/Default/use_custom_default_size - /apps/gnome-terminal/profiles/Default/use_custom_default_size - gnome-terminal - bool - false - - Whether to use custom terminal size for new windows - - If true, newly created terminal windows will have custom - size specified by default_size_columns and default_size_rows. - - - - - Für neue Fenster benutzerdefinierte Größe verwenden - Falls auf »wahr« gesetzt, wird die Größe neu erzeugter Terminalfenster durch default_size_columns und default_size_rows bestimmt. - - - - Whether to use custom terminal size for new windows - If true, newly created terminal windows will have a custom size specified by default_size_columns and default_size_rows. - - - - Использовать ли заданный пользователем размер для создаваемых окон терминалов - Если включено, новые окна терминалов будут иметь размер, определяемый параметрами default_size_columns и default_size_rows. - - - - /schemas/apps/gnome-terminal/profiles/Default/default_size_columns - /apps/gnome-terminal/profiles/Default/default_size_columns - gnome-terminal - int - 80 - - Default number of columns - - Number of columns in newly created terminal windows. - Has no effect if use_custom_default_size is not enabled. - - - - - Vorgegebene Anzahl der Spalten - Anzahl der Spalten in neu erstellten Terminalfenstern. Hat keine Auswirkung, wenn use_custom_default_size aktiviert ist. - - - - Default number of columns - Number of columns in newly created terminal windows. Has no effect if use_custom_default_size is not enabled. - - - - Число столбцов по умолчанию - Количество столбцов в создаваемых окнах терминалов. Используется при включённом use_custom_default_size. - - - - - /schemas/apps/gnome-terminal/profiles/Default/default_size_rows - /apps/gnome-terminal/profiles/Default/default_size_rows - gnome-terminal - int - 24 - - Default number of rows - - Number of rows in newly created terminal windows. - Has no effect if use_custom_default_size is not enabled. - - - - - Vorgegebene Anzahl der Zeilen - Anzahl der Zeilen in neu erstellten Terminalfenstern. Hat keine Auswirkung, wenn use_custom_default_size aktiviert ist. - - - - Default number of rows - Number of rows in newly created terminal windows. Has no effect if use_custom_default_size is not enabled. - - - - Число строк по умолчанию - Количество строк в создаваемых окнах терминалов. Используется при включённом use_custom_default_size. - - - - - /schemas/apps/gnome-terminal/profiles/Default/scrollbar_position - /apps/gnome-terminal/profiles/Default/scrollbar_position - gnome-terminal - string - right - - Position of the scrollbar - - Where to put the terminal scrollbar. Possibilities are - "left", "right", and "hidden". - - - - - Position der Rollleiste - Gibt an, wo die Terminal-Rollleiste angezeigt werden soll. Zulässige Werte: »left« (links), »right« (rechts) sowie »hidden« (verborgen). - - - - Position of the scrollbar - Where to put the terminal scrollbar. Possibilities are "left", "right" and "hidden". - - - - Положение линейки прокрутки - Размещение линейки прокрутки терминала. Возможные варианты «left», «right» и «hidden». - - - - - /schemas/apps/gnome-terminal/profiles/Default/scrollback_lines - /apps/gnome-terminal/profiles/Default/scrollback_lines - gnome-terminal - int - 512 - - Number of lines to keep in scrollback - - Number of scrollback lines to keep around. You can - scroll back in the terminal by this number of lines; - lines that don't fit in the scrollback are discarded. - If scrollback_unlimited is true, this value is ignored. - - - - - Anzahl der im Puffer vorzuhaltenden Zeilen - Die Anzahl der vorzuhaltenden Pufferzeilen. Sie können im Terminal diese Anzahl von Zeilen zurückrollen; überzählige Zeilen werden verworfen. Falls scrollback_unlimited auf »wahr« gesetzt ist, wird dieser Wert ignoriert. - - - - Number of lines to keep in scrollback - Number of scrollback lines to keep around. You can scroll back in the terminal by this number of lines; lines that don't fit in the scrollback are discarded. If scrollback_unlimited is true, this value is ignored. - - - - Количество строк в буфере прокрутки - Количество строк, сохраняемых в буфере прокрутки. Вы можете прокрутить вывод терминала назад на это количество строк, при превышении этого количества самые старые строки отбрасываются. Если scrollback_unlimited равно true, то это значение игнорируется. - - - - - /schemas/apps/gnome-terminal/profiles/Default/scrollback_unlimited - /apps/gnome-terminal/profiles/Default/scrollback_unlimited - gnome-terminal - bool - false - - Whether an unlimited number of lines should be kept in scrollback - - If true, scrollback lines will never be discarded. The scrollback - history is stored on disk temporarily, so this may cause the system - to run out of disk space if there is a lot of output to the - terminal. - - - - - Setzt die Anzahl der im Puffer vorzuhaltenden Zeilen auf unbegrenzt - Falls auf »wahr« gesetzt, wird der Inhalt des Puffers niemals geleert. Der Pufferinhalt wird temporär auf dem Datenträger gespeichert. Wenn die Ausgaben des Terminals sehr umfangreich sind, kann der Speicherplatz des Systems unter Umständen nicht ausreichen. - - - - Whether an unlimited number of lines should be kept in scrollback - If true, scrollback lines will never be discarded. The scrollback history is stored on disk temporarily, so this may cause the system to run out of disk space if there is a lot of output to the terminal. - - - - Включение в буфере прокрутки бесконечного количества строк - Если включено, то перемотанные строки не будут отбрасываться. Они будут временно сохраняться на диск, что при большом количестве вывода в терминал может привести к заполнению дискового пространства. - - - - - /schemas/apps/gnome-terminal/profiles/Default/scroll_on_keystroke - /apps/gnome-terminal/profiles/Default/scroll_on_keystroke - gnome-terminal - bool - true - - Whether to scroll to the bottom when a key is pressed - - If true, pressing a key jumps the scrollbar to the bottom. - - - - - Bei Tastendruck ans Ende rollen? - Falls dieser Schlüssel wahr ist, springt die Rollleiste nach unten, sobald eine Taste gedrückt wird. - - - - Whether to scroll to the bottom when a key is pressed - If true, pressing a key jumps the scrollbar to the bottom. - - - - Прокручивать ли окно вниз при нажатии клавиши - Если включено, нажатие клавиши приводит к перемотке до низа. - - - - - /schemas/apps/gnome-terminal/profiles/Default/scroll_on_output - /apps/gnome-terminal/profiles/Default/scroll_on_output - gnome-terminal - bool - false - - Whether to scroll to the bottom when there's new output - - If true, whenever there's new output the terminal will scroll - to the bottom. - - - - - Bei neuer Ausgabe ans Ende rollen? - Falls dieser Schlüssel wahr ist, springt die Rollleiste nach unten, sobald neuer Text ausgegeben wird. - - - - Whether to scroll to the bottom when there's new output - If true, whenever there's new output the terminal will scroll to the bottom. - - - - Прокручивать ли вниз при появлении нового вывода - Если установлено, появление нового вывода в терминале будет приводить к прокрутке вниз. - - - - - /schemas/apps/gnome-terminal/profiles/Default/exit_action - /apps/gnome-terminal/profiles/Default/exit_action - gnome-terminal - string - close - - What to do with the terminal when the child command exits - - Possible values are "close" to close the terminal, and - "restart" to restart the command. - - - - - Wie soll mit dem Terminal verfahren werden, wenn der Kindbefehl beendet wird? - Zulässige Werte: »close« (das Terminal schließen) sowie »restart« (den Befehl neustarten). - - - - What to do with the terminal when the child command exits - Possible values are "close" to close the terminal, and "restart" to restart the command. - - - - Что делать с терминалом после завершения дочерней команды - Возможные значения: «close» - закрыть терминал, «restart» - перезапустить команду. - - - - - /schemas/apps/gnome-terminal/profiles/Default/login_shell - /apps/gnome-terminal/profiles/Default/login_shell - gnome-terminal - bool - false - - Whether to launch the command in the terminal as a login shell - - If true, the command inside the terminal will be launched as - a login shell. (argv[0] will have a hyphen in front of it.) - - - - - Befehl im Terminal als Login-Shell ausführen? - Falls dieser Schlüssel wahr ist, wird der Befehl im Terminal als Login-Shell ausgeführt (vor arg[0] wird ein Bindestrich eingefügt). - - - - Whether to launch the command in the terminal as a login shell - If true, the command inside the terminal will be launched as a login shell. (argv[0] will have a hyphen in front of it.) - - - - Запускать ли команду в терминале как регистрационную оболочку (login shell) - Если включено, команда в терминале будет запущена как login shell. (будет поставлено тире перед argv[0].) - - - - - /schemas/apps/gnome-terminal/profiles/Default/update_records - /apps/gnome-terminal/profiles/Default/update_records - gnome-terminal - bool - true - - Whether to update login records when launching terminal command - - If true, the system login records utmp and wtmp will be updated when the command inside the terminal - is launched. - - - - - Anmeldeprotokolle beim Starten eines Terminal-Befehls aktualisieren? - Falls dieser Schlüssel wahr ist, werden die Anmeldeprotokolle utmp/wtmp beim Starten des Befehls im Terminal aktualisiert. - - - - Whether to update login records when launching terminal command - If true, the system login records utmp and wtmp will be updated when the command inside the terminal is launched. - - - - Обновлять ли utmp/wtmp при запуске команды терминала - Если да, файлы utmp/wtmp будут обновлены при запуске команды внутри терминала. - - - - - /schemas/apps/gnome-terminal/profiles/Default/use_custom_command - /apps/gnome-terminal/profiles/Default/use_custom_command - gnome-terminal - bool - false - - Whether to run a custom command instead of the shell - - If true, the value of the custom_command setting will - be used in place of running a shell. - - - - - Benutzerdefinierten Befehl statt Befehlszeile ausführen? - Falls dieser Schlüssel wahr ist, wird der Wert des Schlüssels »custom_command« verwendet, anstatt eine Befehlszeile auszuführen. - - - - Whether to run a custom command instead of the shell - If true, the value of the custom_command setting will be used in place of running a shell. - - - - Запускать ли другую команду вместо оболочки - Если этот ключ установлен, вместо оболочки будет использоваться значение параметра custom_command. - - - - - /schemas/apps/gnome-terminal/profiles/Default/cursor_blink_mode - /apps/gnome-terminal/profiles/Default/cursor_blink_mode - gnome-terminal - string - system - - Whether to blink the cursor - - The possible values are "system" to use the global cursor blinking - settings, or "on" or "off" to set the mode explicitly. - - - - - Blinkenden Cursor erlauben? - Mögliche Einstellungen sind »system«, um die globalen Cursoreinstellungen zu übernehmen und »on« bzw. »off«, um den Modus explizit festzulegen. - - - - Whether to blink the cursor - The possible values are "system" to use the global cursor blinking settings, or "on" or "off" to set the mode explicitly. - - - - Включать ли мигание курсора - Возможные значения этого ключа: «system» для использования системной настройки мигания курсора, либо «on» или «off» для явной установки режима мигания. - - - - - /schemas/apps/gnome-terminal/profiles/Default/cursor_shape - /apps/gnome-terminal/profiles/Default/cursor_shape - gnome-terminal - string - block - - The cursor appearance - - The possible values are "block" to use a block cursor, "ibeam" to - use a vertical line cursor, or "underline" to use an underline cursor. - - - - - Erscheinungsbild der Eingabemarke - Mögliche Werte sind »block« für einen blockförmige Marke, »ibeam« für einen senkrechten dünnen Balken oder »underline« für einen Unterstrich als Marke. - - - - The cursor appearance - The possible values are "block" to use a block cursor, "ibeam" to use a vertical line cursor, or "underline" to use an underline cursor. - - - - Вид курсора - Возможные значения: «block» - прямоугольный курсор, «ibeam» - курсор в виде вертикальной линии или «underline» - курсор в виде подчёркивания. - - - - - /schemas/apps/gnome-terminal/profiles/Default/custom_command - /apps/gnome-terminal/profiles/Default/custom_command - gnome-terminal - string - - - Custom command to use instead of the shell - - Run this command in place of the shell, if - use_custom_command is true. - - - - - Statt der Befehlszeile zu startender, benutzerdefinierter Befehl - Dieser Befehl wird anstatt der Befehlszeile ausgeführt, falls der Schlüssel »use_custom_command« wahr ist. - - - - Custom command to use instead of the shell - Run this command in place of the shell, if use_custom_command is true. - - - - Команда, используемая вместо оболочки - Выполнять эту команду вместо оболочки, если установлен ключ use_custom_command. - - - - - /schemas/apps/gnome-terminal/profiles/Default/icon - /apps/gnome-terminal/profiles/Default/icon - gnome-terminal - string - - - Icon for terminal window - - Icon to use for tabs/windows containing this profile. - - - - - Symbol des Terminal-Fensters - Für Reiter/Fenster, die dieses Profil enthalten zu verwendendes Symbol - - - - Icon for terminal window - Icon to use for tabs/windows containing this profile. - - - - Значок терминального окна - Пиктограмма для использования во вкладках/окнах, содержащих данный профиль. - - - - - /schemas/apps/gnome-terminal/profiles/Default/palette - /apps/gnome-terminal/profiles/Default/palette - gnome-terminal - string - #2E2E34343636:#CCCC00000000:#4E4E9A9A0606:#C4C4A0A00000:#34346565A4A4:#757550507B7B:#060698209A9A:#D3D3D7D7CFCF:#555557575353:#EFEF29292929:#8A8AE2E23434:#FCFCE9E94F4F:#72729F9FCFCF:#ADAD7F7FA8A8:#3434E2E2E2E2:#EEEEEEEEECEC - - Palette for terminal applications - - Terminals have a 16-color palette that applications inside - the terminal can use. This is that palette, in the form - of a colon-separated list of color names. Color names - should be in hex format e.g. "#FF00FF" - - - - - Palette für Terminal-Anwendungen - Terminals haben eine 16-farbige Palette, auf die Terminal-Anwendungen zugreifen können. Dies ist jene Liste in Form einer kommaunterteilten Liste von Farbnamen. Diese sollten im Hex-Format angegeben werden, also z.B. »#FF00FF«. - - - - Palette for terminal applications - Terminals have a 16-colour palette that applications inside the terminal can use. This is that palette, in the form of a colon-separated list of colour names. Colour names should be in hex format e.g. "#FF00FF" - - - - Палитра для терминальных приложений - Терминалы имеют 16-цветную палитру, которую могут использовать запущенные в терминале приложения. Этот ключ содержит палитру в виде разделенного запятыми списка имен цветов. Имена цветов должны быть в шестнадцатеричном формате, например «#FF00FF» - - - - - /schemas/apps/gnome-terminal/profiles/Default/font - /apps/gnome-terminal/profiles/Default/font - gnome-terminal - string - Monospace 12 - - Font - - An Pango font name. Examples are "Sans 12" or "Monospace Bold 14". - - - - - Schrift - Ein Pango-Schriftname, wie z.B.: »Sans 12« oder »Monospace Bold 14«. - - - - Font - An Pango font name. Examples are "Sans 12" or "Monospace Bold 14". - - - - Шрифт - Имя шрифта Pango, например «Sans 12» или «Monospace Bold 14». - - - - - /schemas/apps/gnome-terminal/profiles/Default/background_type - /apps/gnome-terminal/profiles/Default/background_type - gnome-terminal - string - solid - - Background type - - Type of terminal background. May be "solid" for a solid color, - "image" for an image, or "transparent" for either real transparency if - a compositing window manager is running, or pseudo-transparency - otherwise. - - - - - Hintergrundtyp - Der Typ des Terminal-Hintergrunds. Zulässige Werte sind »solid« für einen einfarbigen, »image« für ein Bild oder »transparent« entweder für eine echte Transparenz bei Einsatz eines Compositing-Fensterverwalters oder sonst Pseudo-Transparenz. - - - - Background type - Type of terminal background. May be "solid" for a solid colour, "image" for an image, or "transparent" for either real transparency if a compositing window manager is running, or pseudo-transparency otherwise. - - - - Тип фона - Тип фона терминала. Допустимые значения: «solid» - сплошной фон, «image» - изображение, «transparent» - полупрозрачный, если включен менеджер композиции или псевдо-полупрозрачный, если выключен. - - - - - /schemas/apps/gnome-terminal/profiles/Default/background_image - /apps/gnome-terminal/profiles/Default/background_image - gnome-terminal - string - - - Background image - - Filename of a background image. - - - - - Hintergrundbild - Dateiname des Hintergrundbildes. - - - - Background image - Filename of a background image. - - - - Фоновое изображение - Имя файла фонового изображения. - - - - - /schemas/apps/gnome-terminal/profiles/Default/scroll_background - /apps/gnome-terminal/profiles/Default/scroll_background - gnome-terminal - bool - true - - Whether to scroll background image - - If true, scroll the background image with the foreground - text; if false, keep the image in a fixed position and - scroll the text above it. - - - - - Hintergrundbild rollen? - Falls dieser Schlüssel wahr ist, wird das Hintergrundbild zusammen mit dem Text gerollt. Andernfalls wird das Bild fixiert und der Text darüber hinweggerollt. - - - - Whether to scroll background image - If true, scroll the background image with the foreground text; if false, keep the image in a fixed position and scroll the text above it. - - - - Прокручивать ли фоновое изображение - Если включено, перематывать фоновое изображение вместе с текстом. Если выключено, оставить изображение в фиксированной позиции и перематывать текст поверх него. - - - - - /schemas/apps/gnome-terminal/profiles/Default/background_darkness - /apps/gnome-terminal/profiles/Default/background_darkness - gnome-terminal - float - 0.5 - - How much to darken the background image - - A value between 0.0 and 1.0 indicating how much to darken - the background image. 0.0 means no darkness, 1.0 means fully - dark. In the current implementation, there are only two levels of - darkness possible, so the setting behaves as a boolean, - where 0.0 disables the darkening effect. - - - - - In welchem Maße das Hintergrundbild abgedunkelt werden soll - Ein Wert zwischen 0.0 und 1.0, der festlegt, in welchem Maße das Hintergrundbild abgedunkelt werden soll. Momentan sind lediglich zwei Werte zulässig, also verhält sich der Schlüssel wie ein boolescher Wert, wobei 0.0 den Abdunkelungseffekt deaktiviert. - - - - How much to darken the background image - A value between 0.0 and 1.0 indicating how much to darken the background image. 0.0 means no darkness, 1.0 means fully dark. In the current implementation, there are only two levels of darkness possible, so the setting behaves as a boolean, where 0.0 disables the darkening effect. - - - - Насколько сильно затемнять фоновое изображение - Значение от 0.0 до 1.0 указывает, на сколько затемнять фоновое изображение. 0.0 означает «не затемнять», 1.0 означает полное затемнение. В текущей реализации возможно только два уровня затемнения, то есть параметр работает как булевый, где 0.0 отключает эффект затемнения. - - - - - /schemas/apps/gnome-terminal/profiles/Default/backspace_binding - /apps/gnome-terminal/profiles/Default/backspace_binding - gnome-terminal - string - ascii-del - - Effect of the Backspace key - - Sets what code the backspace key generates. Possible values - are "ascii-del" for the ASCII DEL character, - "control-h" for Control-H (AKA the ASCII BS character), - "escape-sequence" for the escape sequence typically - bound to backspace or delete. "ascii-del" is normally - considered the correct setting for the Backspace key. - - - - - Funktion der Rücktaste - Legt fest, welchen Code die Rücktaste ausgibt. Zulässige Werte: »ascii-del« (ASCII-DEL-Zeichen), »control-h« (Strg-H bzw. ASCII-BS-Zeichen) sowie »escape-sequence« (im Normalfall der Rück- oder Löschtaste zugewiesene Terminiersequenz). Empfohlener Schlüsselwert: »ascii-del«. - - - - Effect of the Backspace key - Sets what code the backspace key generates. Possible values are "ascii-del" for the ASCII DEL character, "control-h" for Control-H (AKA the ASCII BS character), "escape-sequence" for the escape sequence typically bound to backspace or delete. "ascii-del" is normally considered the correct setting for the Backspace key. - - - - Действие клавиши «Backspace» - Устанавливает, какой код генерирует клавиша «Backspace». Возможные значения - «ascii-del» (ASCII DEL), «control-h» (ASCII BS), «escape-sequence» (escape-последовательность, обычно соответствующая клавишам «Backspace» или «Delete»). Рекомендуется установить значение «ascii-del». - - - - - - /schemas/apps/gnome-terminal/profiles/Default/delete_binding - /apps/gnome-terminal/profiles/Default/delete_binding - gnome-terminal - string - escape-sequence - - Effect of the Delete key - - Sets what code the delete key generates. Possible values - are "ascii-del" for the ASCII DEL character, - "control-h" for Control-H (AKA the ASCII BS character), - "escape-sequence" for the escape sequence typically - bound to backspace or delete. "escape-sequence" is normally - considered the correct setting for the Delete key. - - - - - Funktion der Entf-Taste - Legt fest, welchen Code die Entf-Taste ausgibt. Zulässige Werte: »ascii-del« (ASCII-DEL-Zeichen), »control-h« (Strg-H bzw. ASCII-BS-Zeichen) sowie »escape-sequence« (im Normalfall der Rück- oder Löschtaste zugewiesene Terminiersequenz). Empfohlener Schlüsselwert: »escape-sequence«. - - - - Effect of the Delete key - Sets what code the delete key generates. Possible values are "ascii-del" for the ASCII DEL character, "control-h" for Control-H (AKA the ASCII BS character), "escape-sequence" for the escape sequence typically bound to backspace or delete. "escape-sequence" is normally considered the correct setting for the Delete key. - - - - Действие клавиши «Delete» - Устанавливает, какой код генерирует клавиша «Delete». Возможные значения - «ascii-del» (ASCII DEL), «control-h» (ASCII BS), «escape-sequence» (escape-последовательность, обычно соответствующая клавишам «Backspace» или «Delete»). Рекомендуется установить значение «escape-sequence». - - - - - - /schemas/apps/gnome-terminal/profiles/Default/use_theme_colors - /apps/gnome-terminal/profiles/Default/use_theme_colors - gnome-terminal - bool - true - - Whether to use the colors from the theme for the terminal widget - - If true, the theme color scheme used for text entry boxes will - be used for the terminal, instead of colors provided by the user. - - - - - Themenfarben fürs Terminal-Widget verwenden? - Falls dieser Schlüssel wahr ist, wird das für Text-Eingabefelder verwendete Themen-Farbschema anstatt der vom Benutzer festgelegten Farben auf das Terminal angewandt. - - - - Whether to use the colours from the theme for the terminal widget - If true, the theme colour scheme used for text entry boxes will be used for the terminal, instead of colours provided by the user. - - - - Использовать ли шрифт из текущей темы для объекта терминала - Если установлено, для терминала будет использоваться цветовая схема полей ввода из текущей темы, а не цвета пользователя. - - - - - /schemas/apps/gnome-terminal/profiles/Default/use_system_font - /apps/gnome-terminal/profiles/Default/use_system_font - gnome-terminal - bool - true - - Whether to use the system font - - If true, the terminal will use the desktop-global standard - font if it's monospace (and the most similar font it can - come up with otherwise). - - - - - Systemschrift verwenden? - Falls dieser Schlüssel wahr ist, verwendet das Terminal die Desktop-weite Standardschrift, falls diese dicktengleich ist (ersatzweise die ähnlichste Schrift). - - - - Whether to use the system font - If true, the terminal will use the desktop-global standard font if it's monospace (and the most similar font it can come up with otherwise). - - - - Использовать ли системный шрифт - Если включено, терминал будет использовать глобальный стандартный шрифт, если он моноширинный (и наиболее похожий шрифт в противном случае). - - - - - /schemas/apps/gnome-terminal/profiles/Default/use_skey - /apps/gnome-terminal/profiles/Default/use_skey - gnome-terminal - bool - true - - Highlight S/Key challenges - Popup a dialog when an S/Key challenge response query is - detected and clicked on. Typing a password into the dialog - will send it to the terminal. - - - - - Passwortanfragen hervorheben - Soll ein Dialog angezeigt werden, wenn eine Passwortanfrage erkannt und angeklickt wird. Die Eingabe eines Passworts in den Dialog schickt dieses an das Terminal. - - - - Highlight S/Key challenges - Pop up a dialogue when an S/Key challenge response query is detected and clicked on. Typing a password into the dialogue will send it to the terminal. - - - - Выделять запросы S/Key - Показывать диалог при обнаружении ответа на запрос S/Key и нажатии на него. Ввод пароля в диалоге приведет к отправке его в терминал. - - - - - - - /schemas/apps/gnome-terminal/keybindings/new_tab - /apps/gnome-terminal/keybindings/new_tab - gnome-terminal - string - <Ctrl><Shift>t - - Keyboard shortcut to open a new tab - - Keyboard shortcut key for opening a new tab. Expressed as a string - in the same format used for GTK+ resource files. - If you set the option to the special string "disabled", then there - will be no keyboard shortcut for this action. - - - - - Tastenkombination zum Öffnen eines neuen Reiters - Die Tastenkombination, um einen Reiter zu öffnen. Als Zeichenkette anzugeben, und zwar im selben Format wie das in GTK+-Ressourcendateien verwendete. Falls Sie diesen Schlüssel auf den Wert »disabled« setzen, wird dieser Aktion keine Tastenkombination zugewiesen. - - - - Keyboard shortcut to open a new tab - Keyboard shortcut key for opening a new tab. Expressed as a string in the same format used for GTK+ resource files. If you set the option to the special string "disabled", then there will be no keyboard shortcut for this action. - - - - Комбинация клавиш для открытия новой вкладки - Комбинация клавиш для открытия новой вкладки. Указывается в виде строки в формате файлов ресурсов GTK+. Если установить специальное значение «disabled», для этого действия не будет комбинации клавиш. - - - - - /schemas/apps/gnome-terminal/keybindings/new_window - /apps/gnome-terminal/keybindings/new_window - gnome-terminal - string - <Ctrl><Shift>n - - Keyboard shortcut to open a new window - - Keyboard shortcut key for opening a new window. Expressed as a string - in the same format used for GTK+ resource files. - If you set the option to the special string "disabled", then there - will be no keyboard shortcut for this action. - - - - - Tastenkombination zum Öffnen eines neuen Fensters - Die Tastenkombination, um ein Fenster zu öffnen. Als Zeichenkette anzugeben, und zwar im selben Format wie das in GTK+-Ressourcendateien verwendete. Falls Sie diesen Schlüssel auf den Wert »disabled« setzen, wird dieser Aktion keine Tastenkombination zugewiesen. - - - - Keyboard shortcut to open a new window - Keyboard shortcut key for opening a new window. Expressed as a string in the same format used for GTK+ resource files. If you set the option to the special string "disabled", then there will be no keyboard shortcut for this action. - - - - Комбинация клавиш для открытия нового окна - Комбинация клавиш для открытия нового окна. Указывается в виде строки в формате файлов ресурсов GTK+. Если установить специальное значение «disabled», для этого действия не будет комбинации клавиш. - - - - - /schemas/apps/gnome-terminal/keybindings/new_profile - /apps/gnome-terminal/keybindings/new_profile - gnome-terminal - string - - Keyboard shortcut to create a new profile - - Keyboard shortcut key for bringing up the dialog for profile - creation. Expressed as a string in the same format used for - GTK+ resource files. If you set the option to the special - string "disabled", then there will be no keyboard shortcut for this - action. - - - - - Tastenkombination zum Anlegen eines neuen Profils - Die Tastenkombination, um den Dialog für das Anlegen von Profilen nach vorne zu holen. Als Zeichenkette anzugeben, und zwar im selben Format wie das in GTK+-Ressourcendateien verwendete. Falls Sie diesen Schlüssel auf den Wert »disabled« setzen, wird dieser Aktion keine Tastenkombination zugewiesen. - - - - Keyboard shortcut to create a new profile - Keyboard shortcut key for bringing up the dialogue for profile creation. Expressed as a string in the same format used for GTK+ resource files. If you set the option to the special string "disabled", then there will be no keyboard shortcut for this action. - - - - Комбинация клавиш для создания нового профиля - Комбинация клавиш для вызова диалога создания профиля. Указывается в виде строки в формате файлов ресурсов GTK+. Если установить специальное значение «disabled», для этого действия не будет комбинации клавиш. - - - - - /schemas/apps/gnome-terminal/keybindings/save_contents - /apps/gnome-terminal/keybindings/save_contents - gnome-terminal - string - disabled - - Keyboard shortcut to save the current tab contents to file - - Keyboard shortcut key to save the current tab contents to a file. Expressed as a string - in the same format used for GTK+ resource files. - If you set the option to the special string "disabled", then there - will be no keyboard shortcut for this action. - - - - - Tastenkombination zum Speichern des Inhalts des aktuellen Reiters in einer Datei - Die Tastenkombination, um den Inhalt des aktuellen Reiters in einer Datei zu speichern. Als Zeichenkette anzugeben, und zwar im selben Format wie das in GTK+-Ressourcendateien verwendete. Falls Sie diesen Schlüssel auf den Wert »disabled« setzen, wird dieser Aktion keine Tastenkombination zugewiesen. - - - - Keyboard shortcut to save the current tab contents to file - Keyboard shortcut key to save the current tab contents to a file. Expressed as a string in the same format used for GTK+ resource files. If you set the option to the special string "disabled", then there will be no keyboard shortcut for this action. - - - - Комбинация клавиш для записи содержимого текущей вкладки в файл - Комбинация клавиш для записи содержимого текущей вкладки в файл. Указывается в виде строки в формате файлов ресурсов GTK+. Если установить специальное значение «disabled», для этого действия не будет комбинации клавиш. - - - - - /schemas/apps/gnome-terminal/keybindings/close_tab - /apps/gnome-terminal/keybindings/close_tab - gnome-terminal - string - <Ctrl><Shift>w - - Keyboard shortcut to close a tab - - Keyboard shortcut key for closing a tab. Expressed as a string - in the same format used for GTK+ resource files. - If you set the option to the special string "disabled", then there - will be no keyboard shortcut for this action. - - - - - Tastenkombination zum Schließen eines Reiters - Die Tastenkombination, um einen Reiter zu schließen. Als Zeichenkette anzugeben, und zwar im selben Format wie das in GTK+-Ressourcendateien verwendete. Falls Sie diesen Schlüssel auf den Wert »disabled« setzen, wird dieser Aktion keine Tastenkombination zugewiesen. - - - - Keyboard shortcut to close a tab - Keyboard shortcut key for closing a tab. Expressed as a string in the same format used for GTK+ resource files. If you set the option to the special string "disabled", then there will be no keyboard shortcut for this action. - - - - Комбинация клавиш для закрытия вкладки - Комбинация клавиш для закрытия вкладки. Указывается в виде строки в формате файлов ресурсов GTK+. Если установить специальное значение «disabled», для этого действия не будет комбинации клавиш. - - - - - /schemas/apps/gnome-terminal/keybindings/close_window - /apps/gnome-terminal/keybindings/close_window - gnome-terminal - string - <Ctrl><Shift>q - - Keyboard shortcut to close a window - - Keyboard shortcut key for closing a window. Expressed as a string - in the same format used for GTK+ resource files. - If you set the option to the special string "disabled", then there - will be no keyboard shortcut for this action. - - - - - Tastenkombination zum Schließen eines Fensters - Die Tastenkombination, um ein Fenster zu schließen. Als Zeichenkette anzugeben, und zwar im selben Format wie das in GTK+-Ressourcendateien verwendete. Falls Sie diesen Schlüssel auf den Wert »disabled« setzen, wird dieser Aktion keine Tastenkombination zugewiesen. - - - - Keyboard shortcut to close a window - Keyboard shortcut key for closing a window. Expressed as a string in the same format used for GTK+ resource files. If you set the option to the special string "disabled", then there will be no keyboard shortcut for this action. - - - - Комбинация клавиш для закрытия окна - Комбинация клавиш для закрытия окна. Указывается в виде строки в формате файлов ресурсов GTK+. Если установить специальное значение «disabled», для этого действия не будет комбинации клавиш. - - - - - - /schemas/apps/gnome-terminal/keybindings/copy - /apps/gnome-terminal/keybindings/copy - gnome-terminal - string - <Ctrl><Shift>c - - Keyboard shortcut to copy text - - Keyboard shortcut key for copying selected text to the - clipboard. Expressed as a string - in the same format used for GTK+ resource files. - If you set the option to the special string "disabled", then there - will be no keyboard shortcut for this action. - - - - - Tastenkombination zum Kopieren von Text - Die Tastenkombination, um den markierten Text in die Zwischenablage zu kopieren. Als Zeichenkette anzugeben, und zwar im selben Format wie das in GTK+-Ressourcendateien verwendete. Falls Sie diesen Schlüssel auf den Wert »disabled« setzen, wird dieser Aktion keine Tastenkombination zugewiesen. - - - - Keyboard shortcut to copy text - Keyboard shortcut key for copying selected text to the clipboard. Expressed as a string in the same format used for GTK+ resource files. If you set the option to the special string "disabled", then there will be no keyboard shortcut for this action. - - - - Комбинация клавиш для копирования текста - Комбинация клавиш для копирования выделенного текста в буфер обмена. Указывается в виде строки в формате файлов ресурсов GTK+. Если установить специальное значение «disabled», для этого действия не будет комбинации клавиш. - - - - - - /schemas/apps/gnome-terminal/keybindings/paste - /apps/gnome-terminal/keybindings/paste - gnome-terminal - string - <Ctrl><Shift>v - - Keyboard shortcut to paste text - - Keyboard shortcut key for pasting the contents of the - clipboard into the terminal. Expressed as a string - in the same format used for GTK+ resource files. - If you set the option to the special string "disabled", then there - will be no keyboard shortcut for this action. - - - - - Tastenkombination zum Einfügen von Text - Die Tastenkombination, um den Inhalt der Zwischenablage im Terminal einzufügen. Als Zeichenkette anzugeben, und zwar im selben Format wie das in GTK+-Ressourcendateien verwendete. Falls Sie diesen Schlüssel auf den Wert »disabled« setzen, wird dieser Aktion keine Tastenkombination zugewiesen. - - - - Keyboard shortcut to paste text - Keyboard shortcut key for pasting the contents of the clipboard into the terminal. Expressed as a string in the same format used for GTK+ resource files. If you set the option to the special string "disabled", then there will be no keyboard shortcut for this action. - - - - Комбинация клавиш для вставки текста - Комбинация клавиш для вставки содержимого буфера обмена в терминал. Указывается в виде строки в формате файлов ресурсов GTK+. Если установить специальное значение «disabled», для этого действия не будет комбинации клавиш. - - - - - /schemas/apps/gnome-terminal/keybindings/full_screen - /apps/gnome-terminal/keybindings/full_screen - gnome-terminal - string - F11 - - Keyboard shortcut to toggle full screen mode - - Keyboard shortcut key for toggling full screen mode. Expressed as a string - in the same format used for GTK+ resource files. - If you set the option to the special string "disabled", then there - will be no keyboard shortcut for this action. - - - - - Tastenkombination, um in den Vollbildmodus zu wechseln bzw. ihn zu verlassen - Die Tastenkombination, um in den Vollbildmodus zu wechseln bzw. ihn zu verlassen. Als Zeichenkette anzugeben, und zwar im selben Format wie das in GTK+-Ressourcendateien verwendete. Falls Sie diesen Schlüssel auf den Wert »disabled« setzen, wird dieser Aktion keine Tastenkombination zugewiesen. - - - - Keyboard shortcut to toggle full screen mode - Keyboard shortcut key for toggling full screen mode. Expressed as a string in the same format used for GTK+ resource files. If you set the option to the special string "disabled", then there will be no keyboard shortcut for this action. - - - - Комбинация клавиш для переключения в полноэкранный режим - Комбинация клавиш для переключения полноэкранного режима. Указывается в виде строки в формате файлов ресурсов GTK+. Если установить специальное значение «disabled», для этого действия не будет комбинации клавиш. - - - - /schemas/apps/gnome-terminal/keybindings/toggle_menubar - /apps/gnome-terminal/keybindings/toggle_menubar - gnome-terminal - string - - Keyboard shortcut to toggle the visibility of the menubar - - Keyboard shortcut key to toggle the visibility of the menubar. Expressed as a string - in the same format used for GTK+ resource files. - If you set the option to the special string "disabled", then there - will be no keyboard shortcut for this action. - - - - - Tastenkombination zum Anzeigen/Verbergen der Menüleiste - Die Tastenkombination, um die Menüleiste anzuzeigen bzw. zu verbergen. Als Zeichenkette anzugeben, und zwar im selben Format wie das in GTK+-Ressourcendateien verwendete. Falls Sie diesen Schlüssel auf den Wert »disabled« setzen, wird dieser Aktion keine Tastenkombination zugewiesen. - - - - Keyboard shortcut to toggle the visibility of the menubar - Keyboard shortcut key to toggle the visibility of the menubar. Expressed as a string in the same format used for GTK+ resource files. If you set the option to the special string "disabled", then there will be no keyboard shortcut for this action. - - - - Комбинация клавиш для переключения видимости меню - Комбинация клавиш для переключения видимости строки меню. Указывается в виде строки в формате файлов ресурсов GTK+. Если установить специальное значение «disabled», для этого действия не будет комбинации клавиш. - - - - - /schemas/apps/gnome-terminal/keybindings/set_terminal_title - /apps/gnome-terminal/keybindings/set_terminal_title - gnome-terminal - string - - Keyboard shortcut to set the terminal title - - Keyboard shortcut key to set the terminal title. Expressed as a string - in the same format used for GTK+ resource files. - If you set the option to the special string "disabled", then there - will be no keyboard shortcut for this action. - - - - - Tastenkombination zum Festlegen des Terminal-Titels - Die Tastenkombination, um den Terminal-Titel festzulegen. Als Zeichenkette anzugeben, und zwar im selben Format wie das in GTK+-Ressourcendateien verwendete. Falls Sie diesen Schlüssel auf den Wert »disabled« setzen, wird dieser Aktion keine Tastenkombination zugewiesen. - - - - Keyboard shortcut to set the terminal title - Keyboard shortcut key to set the terminal title. Expressed as a string in the same format used for GTK+ resource files. If you set the option to the special string "disabled", then there will be no keyboard shortcut for this action. - - - - Комбинация клавиш для установки заголовка терминала - Комбинация клавиш для установки заголовка терминала. Указывается в виде строки в формате файлов ресурсов GTK+. Если установить специальное значение «disabled», для этого действия не будет комбинации клавиш. - - - - - /schemas/apps/gnome-terminal/keybindings/reset - /apps/gnome-terminal/keybindings/reset - gnome-terminal - string - - Keyboard shortcut to reset the terminal - - Keyboard shortcut key to reset the terminal. Expressed as a string - in the same format used for GTK+ resource files. - If you set the option to the special string "disabled", then there - will be no keyboard shortcut for this action. - - - - - Tastenkombination, um das Terminal zurückzusetzen - Die Tastenkombination, um das Terminal zurückzusetzen. Als Zeichenkette anzugeben, und zwar im selben Format wie das in GTK+-Ressourcendateien verwendete. Falls Sie diesen Schlüssel auf den Wert »disabled« setzen, wird dieser Aktion keine Tastenkombination zugewiesen. - - - - Keyboard shortcut to reset the terminal - Keyboard shortcut key to reset the terminal. Expressed as a string in the same format used for GTK+ resource files. If you set the option to the special string "disabled", then there will be no keyboard shortcut for this action. - - - - Комбинация клавиш для сброса терминала - Комбинация клавиш для сброса терминала. Указывается в виде строки в формате файлов ресурсов GTK+. Если установить специальное значение «disabled», для этого действия не будет комбинации клавиш. - - - - - /schemas/apps/gnome-terminal/keybindings/reset_and_clear - /apps/gnome-terminal/keybindings/reset_and_clear - gnome-terminal - string - - Keyboard shortcut to reset and clear the terminal - - Keyboard shortcut key to reset and clear the terminal. Expressed as a string - in the same format used for GTK+ resource files. - If you set the option to the special string "disabled", then there - will be no keyboard shortcut for this action. - - - - - Tastenkombination, um das Terminal zurückzusetzen und zu leeren - Die Tastenkombination, um das Terminal zurückzusetzen und zu leeren. Als Zeichenkette anzugeben, und zwar im selben Format wie das in GTK+-Ressourcendateien verwendete. Falls Sie diesen Schlüssel auf den Wert »disabled« setzen, wird dieser Aktion keine Tastenkombination zugewiesen. - - - - Keyboard shortcut to reset and clear the terminal - Keyboard shortcut key to reset and clear the terminal. Expressed as a string in the same format used for GTK+ resource files. If you set the option to the special string "disabled", then there will be no keyboard shortcut for this action. - - - - Комбинация клавиш для сброса и очистки терминала - Комбинация клавиш для сброса и очистки терминала. Указывается в виде строки в формате файлов ресурсов GTK+. Если установить специальное значение «disabled», для этого действия не будет комбинации клавиш. - - - - - /schemas/apps/gnome-terminal/keybindings/prev_tab - /apps/gnome-terminal/keybindings/prev_tab - gnome-terminal - string - <Control>Page_Up - - Keyboard shortcut to switch to the previous tab - - Keyboard shortcut key to switch to the previous tab. Expressed as a string - in the same format used for GTK+ resource files. - If you set the option to the special string "disabled", then there - will be no keyboard shortcut for this action. - - - - - Tastenkombination, um zum vorherigen Reiter zu wechseln - Die Tastenkombination, um zum vorherigen Reiter zu wechseln. Als Zeichenkette anzugeben, und zwar im selben Format wie das in GTK+-Ressourcendateien verwendete. Falls Sie diesen Schlüssel auf den Wert »disabled« setzen, wird dieser Aktion keine Tastenkombination zugewiesen. - - - - Keyboard shortcut to switch to the previous tab - Keyboard shortcut key to switch to the previous tab. Expressed as a string in the same format used for GTK+ resource files. If you set the option to the special string "disabled", then there will be no keyboard shortcut for this action. - - - - Комбинация клавиш для переключения на предыдущую вкладку - Комбинация клавиш для переключения на предыдущую вкладку. Указывается в виде строки в формате файлов ресурсов GTK+. Если установить специальное значение «disabled», для этого действия не будет комбинации клавиш. - - - - - /schemas/apps/gnome-terminal/keybindings/next_tab - /apps/gnome-terminal/keybindings/next_tab - gnome-terminal - string - <Control>Page_Down - - Keyboard shortcut to switch to the next tab - - Keyboard shortcut key to switch to the next tab. Expressed as a string - in the same format used for GTK+ resource files. - If you set the option to the special string "disabled", then there - will be no keyboard shortcut for this action. - - - - - Tastenkombination, um zum nächsten Reiter zu wechseln - Die Tastenkombination, um zum nächsten Reiter zu wechseln. Als Zeichenkette anzugeben, und zwar im selben Format wie das in GTK+-Ressourcendateien verwendete. Falls Sie diesen Schlüssel auf den Wert »disabled« setzen, wird dieser Aktion keine Tastenkombination zugewiesen. - - - - Keyboard shortcut to switch to the next tab - Keyboard shortcut key to switch to the next tab. Expressed as a string in the same format used for GTK+ resource files. If you set the option to the special string "disabled", then there will be no keyboard shortcut for this action. - - - - Комбинация клавиш для переключения на следующую вкладку - Комбинация клавиш для переключения на следующую вкладку. Указывается в виде строки в формате файлов ресурсов GTK+. Если установить специальное значение «disabled», для этого действия не будет комбинации клавиш. - - - - - /schemas/apps/gnome-terminal/keybindings/move_tab_left - /apps/gnome-terminal/keybindings/move_tab_left - gnome-terminal - string - <Ctrl><Shift>Page_Up - - Accelerator to move the current tab to the left. - - Accelerator key to move the current tab to the left. Expressed as a - string in the same format used for GTK+ resource files. If you set - the option to the special string "disabled", then there will be no - keybinding for this action. - - - - - Tastenkombination um den aktuellen Reiter nach links zu verschieben. - Die Tastenkombination, um den aktuellen Reiter nach links zu verschieben. Als Zeichenkette anzugeben, und zwar im selben Format wie das in GTK+-Ressourcendateien verwendete. Falls Sie diesen Schlüssel auf den Wert »disabled« setzen, wird dieser Aktion keine Tastenkombination zugewiesen. - - - - Accelerator to move the current tab to the left. - Accelerator key to move the current tab to the left. Expressed as a string in the same format used for GTK+ resource files. If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Комбинация клавиш для перемещения текущей вкладки влево. - Комбинация клавиш для перемещения текущей вкладки влево. Указывается в виде строки в формате файлов ресурсов GTK+. Если установить специальное значение «disabled», то для этого действия не будет комбинации клавиш. - - - - - /schemas/apps/gnome-terminal/keybindings/move_tab_right - /apps/gnome-terminal/keybindings/move_tab_right - gnome-terminal - string - <Ctrl><Shift>Page_Down - - Accelerator to move the current tab to the right. - - Accelerator key to move the current tab to the right. Expressed as a - string in the same format used for GTK+ resource files. If you set - the option to the special string "disabled", then there will be no - keybinding for this action. - - - - - Tastenkombination um den aktuellen Reiter nach rechts zu verschieben. - Die Tastenkombination, um den aktuellen Reiter nach rechts zu verschieben. Als Zeichenkette anzugeben, und zwar im selben Format wie das in GTK+-Ressourcendateien verwendete. Falls Sie diesen Schlüssel auf den Wert »disabled« setzen, wird dieser Aktion keine Tastenkombination zugewiesen. - - - - Accelerator to move the current tab to the right. - Accelerator key to move the current tab to the right. Expressed as a string in the same format used for GTK+ resource files. If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Комбинация клавиш для перемещения текущей вкладки вправо. - Комбинация клавиш для перемещения текущей вкладки вправо. Указывается в виде строки в формате файлов ресурсов GTK+. Если установить специальное значение «disabled», то для этого действия не будет комбинации клавиш. - - - - - /schemas/apps/gnome-terminal/keybindings/detach_tab - /apps/gnome-terminal/keybindings/detach_tab - gnome-terminal - string - - Accelerator to detach current tab. - - Accelerator key to detach current tab. Expressed as a string - in the same format used for GTK+ resource files. - If you set the option to the special string "disabled", then there - will be no keybinding for this action. - - - - - Tastenkombination um den aktuellen Reiter abzutrennen. - Die Tastenkombination, um den aktuellen Reiter abzutrennen. Als Zeichenkette anzugeben, und zwar im selben Format wie das in GTK+-Ressourcendateien verwendete. Falls Sie diesen Schlüssel auf den Wert »disabled« setzen, wird dieser Aktion keine Tastenkombination zugewiesen. - - - - Accelerator to detach current tab. - Accelerator key to detach current tab. Expressed as a string in the same format used for GTK+ resource files. If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Комбинация клавиш для отделения текущей вкладки. - Комбинация клавиш для отцепления текущей вкладки. Указывается в виде строки в формате файлов ресурсов GTK+. Если установить специальное значение «disabled», то для этого действия не будет комбинации клавиш. - - - - - /schemas/apps/gnome-terminal/keybindings/switch_to_tab_1 - /apps/gnome-terminal/keybindings/switch_to_tab_1 - gnome-terminal - string - <Alt>1 - - Keyboard shortcut to switch to tab 1 - - Keyboard shortcut key for switch to tab 1. Expressed as a string - in the same format used for GTK+ resource files. - If you set the option to the special string "disabled", then there - will be no keyboard shortcut for this action. - - - - - Tastenkombination, um zum 1. Reiter zu wechseln - Die Tastenkombination, um zum 1. Reiter zu wechseln. Als Zeichenkette anzugeben, und zwar im selben Format wie das in GTK+-Ressourcendateien verwendete. Falls Sie diesen Schlüssel auf den Wert »disabled« setzen, wird dieser Aktion keine Tastenkombination zugewiesen. - - - - Keyboard shortcut to switch to tab 1 - Keyboard shortcut key for switch to tab 1. Expressed as a string in the same format used for GTK+ resource files. If you set the option to the special string "disabled", then there will be no keyboard shortcut for this action. - - - - Комбинация клавиш для переключения на вкладку 1 - Комбинация клавиш для переключения на вкладку 1. Указывается в виде строки в формате файлов ресурсов GTK+. Если установить специальное значение «disabled», для этого действия не будет комбинации клавиш. - - - - - /schemas/apps/gnome-terminal/keybindings/switch_to_tab_2 - /apps/gnome-terminal/keybindings/switch_to_tab_2 - gnome-terminal - string - <Alt>2 - - Keyboard shortcut to switch to tab 2 - - Keyboard shortcut key for switch to tab 2. Expressed as a string - in the same format used for GTK+ resource files. - If you set the option to the special string "disabled", then there - will be no keyboard shortcut for this action. - - - - - Tastenkombination, um zum 2. Reiter zu wechseln - Die Tastenkombination, um zum 2. Reiter zu wechseln. Als Zeichenkette anzugeben, und zwar im selben Format wie das in GTK+-Ressourcendateien verwendete. Falls Sie diesen Schlüssel auf den Wert »disabled« setzen, wird dieser Aktion keine Tastenkombination zugewiesen. - - - - Keyboard shortcut to switch to tab 2 - Keyboard shortcut key for switch to tab 2. Expressed as a string in the same format used for GTK+ resource files. If you set the option to the special string "disabled", then there will be no keyboard shortcut for this action. - - - - Комбинация клавиш для переключения на вкладку 2 - Комбинация клавиш для переключения на вкладку 2. Указывается в виде строки в формате файлов ресурсов GTK+. Если установить специальное значение «disabled», для этого действия не будет комбинации клавиш. - - - - - /schemas/apps/gnome-terminal/keybindings/switch_to_tab_3 - /apps/gnome-terminal/keybindings/switch_to_tab_3 - gnome-terminal - string - <Alt>3 - - Keyboard shortcut to switch to tab 3 - - Keyboard shortcut key for switch to tab 3. Expressed as a string - in the same format used for GTK+ resource files. - If you set the option to the special string "disabled", then there - will be no keyboard shortcut for this action. - - - - - Tastenkombination, um zum 3. Reiter zu wechseln - Die Tastenkombination, um zum 3. Reiter zu wechseln. Als Zeichenkette anzugeben, und zwar im selben Format wie das in GTK+-Ressourcendateien verwendete. Falls Sie diesen Schlüssel auf den Wert »disabled« setzen, wird dieser Aktion keine Tastenkombination zugewiesen. - - - - Keyboard shortcut to switch to tab 3 - Keyboard shortcut key for switch to tab 3. Expressed as a string in the same format used for GTK+ resource files. If you set the option to the special string "disabled", then there will be no keyboard shortcut for this action. - - - - Комбинация клавиш для переключения на вкладку 3 - Комбинация клавиш для переключения на вкладку 3. Указывается в виде строки в формате файлов ресурсов GTK+. Если установить специальное значение «disabled», для этого действия не будет комбинации клавиш. - - - - - /schemas/apps/gnome-terminal/keybindings/switch_to_tab_4 - /apps/gnome-terminal/keybindings/switch_to_tab_4 - gnome-terminal - string - <Alt>4 - - Keyboard shortcut to switch to tab 4 - - Keyboard shortcut key for switch to tab 4. Expressed as a string - in the same format used for GTK+ resource files. - If you set the option to the special string "disabled", then there - will be no keyboard shortcut for this action. - - - - - Tastenkombination, um zum 4. Reiter zu wechseln - Die Tastenkombination, um zum 4. Reiter zu wechseln. Als Zeichenkette anzugeben, und zwar im selben Format wie das in GTK+-Ressourcendateien verwendete. Falls Sie diesen Schlüssel auf den Wert »disabled« setzen, wird dieser Aktion keine Tastenkombination zugewiesen. - - - - Keyboard shortcut to switch to tab 4 - Keyboard shortcut key for switch to tab 4. Expressed as a string in the same format used for GTK+ resource files. If you set the option to the special string "disabled", then there will be no keyboard shortcut for this action. - - - - Комбинация клавиш для переключения на вкладку 4 - Комбинация клавиш для переключения на вкладку 4. Указывается в виде строки в формате файлов ресурсов GTK+. Если установить специальное значение «disabled», для этого действия не будет комбинации клавиш. - - - - - /schemas/apps/gnome-terminal/keybindings/switch_to_tab_5 - /apps/gnome-terminal/keybindings/switch_to_tab_5 - gnome-terminal - string - <Alt>5 - - Keyboard shortcut to switch to tab 5 - - Keyboard shortcut key for switch to tab 5. Expressed as a string - in the same format used for GTK+ resource files. - If you set the option to the special string "disabled", then there - will be no keyboard shortcut for this action. - - - - - Tastenkombination, um zum 5. Reiter zu wechseln - Die Tastenkombination, um zum 5. Reiter zu wechseln. Als Zeichenkette anzugeben, und zwar im selben Format wie das in GTK+-Ressourcendateien verwendete. Falls Sie diesen Schlüssel auf den Wert »disabled« setzen, wird dieser Aktion keine Tastenkombination zugewiesen. - - - - Keyboard shortcut to switch to tab 5 - Keyboard shortcut key for switch to tab 5. Expressed as a string in the same format used for GTK+ resource files. If you set the option to the special string "disabled", then there will be no keyboard shortcut for this action. - - - - Комбинация клавиш для переключения на вкладку 5 - Комбинация клавиш для переключения на вкладку 5. Указывается в виде строки в формате файлов ресурсов GTK+. Если установить специальное значение «disabled», для этого действия не будет комбинации клавиш. - - - - - /schemas/apps/gnome-terminal/keybindings/switch_to_tab_6 - /apps/gnome-terminal/keybindings/switch_to_tab_6 - gnome-terminal - string - <Alt>6 - - Keyboard shortcut to switch to tab 6 - - Keyboard shortcut key for switch to tab 6. Expressed as a string - in the same format used for GTK+ resource files. - If you set the option to the special string "disabled", then there - will be no keyboard shortcut for this action. - - - - - Tastenkombination, um zum 6. Reiter zu wechseln - Die Tastenkombination, um zum 6. Reiter zu wechseln. Als Zeichenkette anzugeben, und zwar im selben Format wie das in GTK+-Ressourcendateien verwendete. Falls Sie diesen Schlüssel auf den Wert »disabled« setzen, wird dieser Aktion keine Tastenkombination zugewiesen. - - - - Keyboard shortcut to switch to tab 6 - Keyboard shortcut key for switch to tab 6. Expressed as a string in the same format used for GTK+ resource files. If you set the option to the special string "disabled", then there will be no keyboard shortcut for this action. - - - - Комбинация клавиш для переключения на вкладку 6 - Комбинация клавиш для переключения на вкладку 6. Указывается в виде строки в формате файлов ресурсов GTK+. Если установить специальное значение «disabled», для этого действия не будет комбинации клавиш. - - - - - /schemas/apps/gnome-terminal/keybindings/switch_to_tab_7 - /apps/gnome-terminal/keybindings/switch_to_tab_7 - gnome-terminal - string - <Alt>7 - - Keyboard shortcut to switch to tab 7 - - Keyboard shortcut key for switch to tab 7. Expressed as a string - in the same format used for GTK+ resource files. - If you set the option to the special string "disabled", then there - will be no keyboard shortcut for this action. - - - - - Tastenkombination, um zum 7. Reiter zu wechseln - Die Tastenkombination, um zum 7. Reiter zu wechseln. Als Zeichenkette anzugeben, und zwar im selben Format wie das in GTK+-Ressourcendateien verwendete. Falls Sie diesen Schlüssel auf den Wert »disabled« setzen, wird dieser Aktion keine Tastenkombination zugewiesen. - - - - Keyboard shortcut to switch to tab 7 - Keyboard shortcut key for switch to tab 7. Expressed as a string in the same format used for GTK+ resource files. If you set the option to the special string "disabled", then there will be no keyboard shortcut for this action. - - - - Комбинация клавиш для переключения на вкладку 7 - Комбинация клавиш для переключения на вкладку 7. Указывается в виде строки в формате файлов ресурсов GTK+. Если установить специальное значение «disabled», для этого действия не будет комбинации клавиш. - - - - - /schemas/apps/gnome-terminal/keybindings/switch_to_tab_8 - /apps/gnome-terminal/keybindings/switch_to_tab_8 - gnome-terminal - string - <Alt>8 - - Keyboard shortcut to switch to tab 8 - - Keyboard shortcut key for switch to tab 8. Expressed as a string - in the same format used for GTK+ resource files. - If you set the option to the special string "disabled", then there - will be no keyboard shortcut for this action. - - - - - Tastenkombination, um zum 8. Reiter zu wechseln - Die Tastenkombination, um zum 8. Reiter zu wechseln. Als Zeichenkette anzugeben, und zwar im selben Format wie das in GTK+-Ressourcendateien verwendete. Falls Sie diesen Schlüssel auf den Wert »disabled« setzen, wird dieser Aktion keine Tastenkombination zugewiesen. - - - - Keyboard shortcut to switch to tab 8 - Keyboard shortcut key for switch to tab 8. Expressed as a string in the same format used for GTK+ resource files. If you set the option to the special string "disabled", then there will be no keyboard shortcut for this action. - - - - Комбинация клавиш для переключения на вкладку 8 - Комбинация клавиш для переключения на вкладку 8. Указывается в виде строки в формате файлов ресурсов GTK+. Если установить специальное значение «disabled», для этого действия не будет комбинации клавиш. - - - - - /schemas/apps/gnome-terminal/keybindings/switch_to_tab_9 - /apps/gnome-terminal/keybindings/switch_to_tab_9 - gnome-terminal - string - <Alt>9 - - Keyboard shortcut to switch to tab 9 - - Keyboard shortcut key for switch to tab 9. Expressed as a string - in the same format used for GTK+ resource files. - If you set the option to the special string "disabled", then there - will be no keyboard shortcut for this action. - - - - - Tastenkombination, um zum 9. Reiter zu wechseln - Die Tastenkombination, um zum 9. Reiter zu wechseln. Als Zeichenkette anzugeben, und zwar im selben Format wie das in GTK+-Ressourcendateien verwendete. Falls Sie diesen Schlüssel auf den Wert »disabled« setzen, wird dieser Aktion keine Tastenkombination zugewiesen. - - - - Keyboard shortcut to switch to tab 9 - Keyboard shortcut key for switch to tab 9. Expressed as a string in the same format used for GTK+ resource files. If you set the option to the special string "disabled", then there will be no keyboard shortcut for this action. - - - - Комбинация клавиш для переключения на вкладку 9 - Комбинация клавиш для переключения на вкладку 9. Указывается в виде строки в формате файлов ресурсов GTK+. Если установить специальное значение «disabled», для этого действия не будет комбинации клавиш. - - - - - /schemas/apps/gnome-terminal/keybindings/switch_to_tab_10 - /apps/gnome-terminal/keybindings/switch_to_tab_10 - gnome-terminal - string - <Alt>0 - - Keyboard shortcut to switch to tab 10 - - Keyboard shortcut key for switch to tab 10. Expressed as a string - in the same format used for GTK+ resource files. - If you set the option to the special string "disabled", then there - will be no keyboard shortcut for this action. - - - - - Tastenkombination, um zum 10. Reiter zu wechseln - Die Tastenkombination, um zum 10. Reiter zu wechseln. Als Zeichenkette anzugeben, und zwar im selben Format wie das in GTK+-Ressourcendateien verwendete. Falls Sie diesen Schlüssel auf den Wert »disabled« setzen, wird dieser Aktion keine Tastenkombination zugewiesen. - - - - Keyboard shortcut to switch to tab 10 - Keyboard shortcut key for switch to tab 10. Expressed as a string in the same format used for GTK+ resource files. If you set the option to the special string "disabled", then there will be no keyboard shortcut for this action. - - - - Комбинация клавиш для переключения на вкладку 10 - Комбинация клавиш для переключения на вкладку 10. Указывается в виде строки в формате файлов ресурсов GTK+. Если установить специальное значение «disabled», для этого действия не будет комбинации клавиш. - - - - - /schemas/apps/gnome-terminal/keybindings/switch_to_tab_11 - /apps/gnome-terminal/keybindings/switch_to_tab_11 - gnome-terminal - string - - - Keyboard shortcut to switch to tab 11 - - Keyboard shortcut key for switch to tab 11. Expressed as a string - in the same format used for GTK+ resource files. - If you set the option to the special string "disabled", then there - will be no keyboard shortcut for this action. - - - - - Tastenkombination, um zum 11. Reiter zu wechseln - Die Tastenkombination, um zum 11. Reiter zu wechseln. Als Zeichenkette anzugeben, und zwar im selben Format wie das in GTK+-Ressourcendateien verwendete. Falls Sie diesen Schlüssel auf den Wert »disabled« setzen, wird dieser Aktion keine Tastenkombination zugewiesen. - - - - Keyboard shortcut to switch to tab 11 - Keyboard shortcut key for switch to tab 11. Expressed as a string in the same format used for GTK+ resource files. If you set the option to the special string "disabled", then there will be no keyboard shortcut for this action. - - - - Комбинация клавиш для переключения на вкладку 11 - Комбинация клавиш для переключения на вкладку 11. Указывается в виде строки в формате файлов ресурсов GTK+. Если установить специальное значение «disabled», для этого действия не будет комбинации клавиш. - - - - - /schemas/apps/gnome-terminal/keybindings/switch_to_tab_12 - /apps/gnome-terminal/keybindings/switch_to_tab_12 - gnome-terminal - string - - - Keyboard shortcut to switch to tab 12 - - Keyboard shortcut key for switch to tab 12. Expressed as a string - in the same format used for GTK+ resource files. - If you set the option to the special string "disabled", then there - will be no keyboard shortcut for this action. - - - - - Tastenkombination, um zum 12. Reiter zu wechseln - Die Tastenkombination, um zum 12. Reiter zu wechseln. Als Zeichenkette anzugeben, und zwar im selben Format wie das in GTK+-Ressourcendateien verwendete. Falls Sie diesen Schlüssel auf den Wert »disabled« setzen, wird dieser Aktion keine Tastenkombination zugewiesen. - - - - Keyboard shortcut to switch to tab 12 - Keyboard shortcut key for switch to tab 12. Expressed as a string in the same format used for GTK+ resource files. If you set the option to the special string "disabled", then there will be no keyboard shortcut for this action. - - - - Комбинация клавиш для переключения на вкладку 12 - Комбинация клавиш для переключения на вкладку 12. Указывается в виде строки в формате файлов ресурсов GTK+. Если установить специальное значение «disabled», для этого действия не будет комбинации клавиш. - - - - - /schemas/apps/gnome-terminal/keybindings/help - /apps/gnome-terminal/keybindings/help - gnome-terminal - string - F1 - - Keyboard shortcut to launch help - - Keyboard shortcut key for launching help. Expressed as a string - in the same format used for GTK+ resource files. - If you set the option to the special string "disabled", then there - will be no keyboard shortcut for this action. - - - - - Tastenkombination zum Ausführen der Hilfe - Die Tastenkombination, um die Hilfe auszuführen. Als Zeichenkette anzugeben, und zwar im selben Format wie das in GTK+-Ressourcendateien verwendete. Falls Sie diesen Schlüssel auf den Wert »disabled« setzen, wird dieser Aktion keine Tastenkombination zugewiesen. - - - - Keyboard shortcut to launch help - Keyboard shortcut key for launching help. Expressed as a string in the same format used for GTK+ resource files. If you set the option to the special string "disabled", then there will be no keyboard shortcut for this action. - - - - Комбинация клавиш для вызова помощи - Комбинация клавиш для открытия справки. Указывается в виде строки в формате файлов ресурсов GTK+. Если установить специальное значение «disabled», для этого действия не будет комбинации клавиш. - - - - - /schemas/apps/gnome-terminal/keybindings/zoom_in - /apps/gnome-terminal/keybindings/zoom_in - gnome-terminal - string - <Ctrl>plus - - Keyboard shortcut to make font larger - - Keyboard shortcut key for making font larger. Expressed as a string - in the same format used for GTK+ resource files. - If you set the option to the special string "disabled", then there - will be no keyboard shortcut for this action. - - - - - Tastenkombination zum Vergrößern der Schrift - Die Tastenkombination, um die Schrift zu vergrößern. Als Zeichenkette anzugeben, und zwar im selben Format wie das in GTK+-Ressourcendateien verwendete. Falls Sie diesen Schlüssel auf den Wert »disabled« setzen, wird dieser Aktion keine Tastenkombination zugewiesen. - - - - Keyboard shortcut to make font larger - Keyboard shortcut key for making font larger. Expressed as a string in the same format used for GTK+ resource files. If you set the option to the special string "disabled", then there will be no keyboard shortcut for this action. - - - - Комбинация клавиш для увеличения шрифта - Комбинация клавиш для увеличения шрифта. Указывается в виде строки в формате файлов ресурсов GTK+. Если установить специальное значение «disabled», для этого действия не будет комбинации клавиш. - - - - - /schemas/apps/gnome-terminal/keybindings/zoom_out - /apps/gnome-terminal/keybindings/zoom_out - gnome-terminal - string - <Ctrl>minus - - Keyboard shortcut to make font smaller - - Keyboard shortcut key for making font smaller. Expressed as a string - in the same format used for GTK+ resource files. - If you set the option to the special string "disabled", then there - will be no keyboard shortcut for this action. - - - - - Tastenkombination zum Verkleinern der Schrift - Die Tastenkombination, um die Schrift zu verkleinern. Als Zeichenkette anzugeben, und zwar im selben Format wie das in GTK+-Ressourcendateien verwendete. Falls Sie diesen Schlüssel auf den Wert »disabled« setzen, wird dieser Aktion keine Tastenkombination zugewiesen. - - - - Keyboard shortcut to make font smaller - Keyboard shortcut key for making font smaller. Expressed as a string in the same format used for GTK+ resource files. If you set the option to the special string "disabled", then there will be no keyboard shortcut for this action. - - - - Комбинация клавиш для уменьшения шрифта - Комбинация клавиш для уменьшения шрифта. Указывается в виде строки в формате файлов ресурсов GTK+. Если установить специальное значение «disabled», для этого действия не будет комбинации клавиш. - - - - - /schemas/apps/gnome-terminal/keybindings/zoom_normal - /apps/gnome-terminal/keybindings/zoom_normal - gnome-terminal - string - <Ctrl>0 - - Keyboard shortcut to make font normal-size - - Keyboard shortcut key for making font the normal size. Expressed as a string - in the same format used for GTK+ resource files. - If you set the option to the special string "disabled", then there - will be no keyboard shortcut for this action. - - - - - Tastenkombination, um die Schrift auf normale Größe zu bringen - Die Tastenkombination, um die Schrift auf Normalgröße zu bringen. Als Zeichenkette anzugeben, und zwar im selben Format wie das in GTK+-Ressourcendateien verwendete. Falls Sie diesen Schlüssel auf den Wert »disabled« setzen, wird dieser Aktion keine Tastenkombination zugewiesen. - - - - Keyboard shortcut to make font normal-size - Keyboard shortcut key for making font the normal size. Expressed as a string in the same format used for GTK+ resource files. If you set the option to the special string "disabled", then there will be no keyboard shortcut for this action. - - - - Комбинация клавиш для установки нормального размера шрифта - Комбинация клавиш для установки обычного размера шрифта. Указывается в виде строки в формате файлов ресурсов GTK+. Если установить специальное значение «disabled», для этого действия не будет комбинации клавиш. - - - - - diff --git a/gconf/schemas/gnomine.schemas b/gconf/schemas/gnomine.schemas deleted file mode 100644 index e2b0302..0000000 --- a/gconf/schemas/gnomine.schemas +++ /dev/null @@ -1,194 +0,0 @@ - - - - /schemas/apps/gnomine/geometry/xsize - /apps/gnomine/geometry/xsize - gnomine - int - 16 - - Number of columns in a custom game - - - - - Anzahl der Spalten des benutzerdefinierten Spielfeldes - - - - - Number of columns in a custom game - - - - - Число столбцов в настраиваемой игре - - - - - - /schemas/apps/gnomine/geometry/ysize - /apps/gnomine/geometry/ysize - gnomine - int - 16 - - Number of rows in a custom game - - - - - Anzahl der Reihen des benutzerdefinierten Spielfeldes - - - - - Number of rows in a custom game - - - - - Число строк в настраиваемой игре - - - - - - /schemas/apps/gnomine/geometry/nmines - /apps/gnomine/geometry/nmines - gnomine - int - 40 - - The number of mines in a custom game - - - - - Die Anzahl der Minen in einem benutzerdefinierten Spiel - - - - - The number of mines in a custom game - - - - - Число мин в настраиваемой игре - - - - - - /schemas/apps/gnomine/geometry/mode - /apps/gnomine/geometry/mode - gnomine - int - 0 - - Board size - Size of the board (0-2 = small-large, 3=custom) - - - - Spielfeldgröße - Brettgröße (0-2: klein-groß, 3: Benutzerdefiniert) - - - - Board size - Size of the board (0-2 = small-large, 3=custom) - - - - Размер игрового поля - Размер доски (0-2=маленькая-большая, 3=настраиваемая) - - - - - /schemas/apps/gnomine/use_question_marks - /apps/gnomine/use_question_marks - gnomine - bool - FALSE - - Use the unknown flag - Set to true to be able to mark squares as unknown. - - - - Die Unbekannt-Fahne verwenden - Falls dieser Schlüssel wahr ist, ist es Ihnen gestattet, Quadrate als unbekannt zu markieren. - - - - Use the unknown flag - Set to true to be able to mark squares as unknown. - - - - Использовать флаг «Неизвестно» - Отметьте поле, если вы хотите использовать флаги «Неизвестно». - - - - - /schemas/apps/gnomine/use_overmine_warning - /apps/gnomine/use_overmine_warning - gnomine - bool - FALSE - - Warning about too many flags - Set to true to enable warning icons when too many flags are placed. - - - - Warnen bei zu vielen Flaggen - Falls dieser Schlüssel wahr ist, werden Sie gewarnt, wenn Sie zu viele Fahnen platziert haben. - - - - Warning about too many flags - Set to true to enable warning icons when too many flags are placed. - - - - Предупреждение о слишком большом количестве флагов - Если истинно, при слишком большом количестве флагов отображается значок предупреждения. - - - - - /schemas/apps/gnomine/use_autoflag - /apps/gnomine/use_autoflag - gnomine - bool - FALSE - - Enable automatic placing of flags - Set to true to have gnomine automatically flag squares as mined when enough squares are revealed - - - - Automatische Flaggen-Platzierung aktivieren - Legt fest, ob Kästchen automatisch als vermint markiert werden sollen, wenn genügend Kästchen aufgedeckt wurden. - - - - Enable automatic placing of flags - Set to true to have gnomine automatically flag squares as mined when enough squares are revealed - - - - Включить автоматическое открытие мин - Если истинно, квадраты с минами будут автоматически открываться, когда вокруг открыто достаточное количество квадратов. - - - - - - diff --git a/gconf/schemas/gnotravex.schemas b/gconf/schemas/gnotravex.schemas deleted file mode 100644 index 55d426d..0000000 --- a/gconf/schemas/gnotravex.schemas +++ /dev/null @@ -1,86 +0,0 @@ - - - - - /schemas/apps/gnotravex/grid_size - /apps/gnotravex/grid_size - gnotravex - int - 3 - - The size of the playing grid - The value of this key is used to decide the size of the playing grid. The valid values are 2 to 8, anything else gets set to 3. - - - - Die Größe des Spielbretts - Der Wert dieses Schlüssel wird verwendet, um die Größe des Spielfelds festzulegen. Zulässige Werte: 2-8, Vorgabe: 3. - - - - The size of the playing grid - The value of this key is used to decide the size of the playing grid. The valid values are 2 to 8, anything else gets set to 3. - - - - Размер игровой решётки - Значение этого ключа используется для определения размера игровой решётки. Допустимыми значениями являются от 2 до 8, все остальные значения будут сбрасываться в 3. - - - - - /schemas/apps/gnotravex/colours - /apps/gnotravex/colours - gnotravex - bool - TRUE - - Control coloured tiles - A flag to enable coloured tiles. - - - - Steine farbig anzeigen - Legt fest, ob die Plättchen mit Farben versehen werden. - - - - Control coloured tiles - A flag to enable coloured tiles. - - - - Управлять цветными фигурками - Включать цветные фигурки. - - - - - /schemas/apps/gnotravex/click_to_move - /apps/gnotravex/click_to_move - gnotravex - bool - FALSE - - Select the style of control - Select whether to drag the tiles or to click on the source then the destination. - - - - Legemodus wählen - Die Steine auf das Ziel ziehen, oder erst auf den Stein, und dann auf das Ziel klicken? - - - - Select the style of control - Select whether to drag the tiles or to click on the source then the destination. - - - - Выбор стиля управления - Нужно ли перетаскивать фигуры мышью или указывать место, откуда фигура берётся и куда кладется. - - - - - diff --git a/gconf/schemas/gnotski.schemas b/gconf/schemas/gnotski.schemas deleted file mode 100644 index 93942a7..0000000 --- a/gconf/schemas/gnotski.schemas +++ /dev/null @@ -1,32 +0,0 @@ - - - - - /schemas/apps/gnotski/level - /apps/gnotski/level - gnotski - int - 0 - - The puzzle in play - The number of the puzzle being played. - - - - Das momentane Puzzle - Die Anzahl der gespielten Puzzle. - - - - The puzzle in play - The number of the puzzle being played. - - - - Текущая головоломка - Номер текущей головоломки - - - - - diff --git a/gconf/schemas/gtali.schemas b/gconf/schemas/gtali.schemas deleted file mode 100644 index 3b98cfc..0000000 --- a/gconf/schemas/gtali.schemas +++ /dev/null @@ -1,143 +0,0 @@ - - - - /schemas/apps/gtali/NumberOfComputerOpponents - /apps/gtali/NumberOfComputerOpponents - gtali - int - 5 - - - - - - - - /schemas/apps/gtali/NumberOfHumanOpponents - /apps/gtali/NumberOfHumanOpponents - gtali - int - 1 - - - - - - - - /schemas/apps/gtali/DelayBetweenRolls - /apps/gtali/DelayBetweenRolls - gtali - bool - FALSE - - Delay between rolls - Choose whether or not to insert a delay between the computer's dice rolls so the player can follow what it is doing. - - - - Verzögerung zwischen Würfen - Legt fest, ob zwischen den Würfen des Gegenspielers eine Pause eingefügt werden kann, sodass der Spieler seinen Aktionen folgen kann. - - - - Delay between rolls - Choose whether to insert a delay between the computer's dice rolls so the player can follow what it is doing. - - - - Задержка между бросками - Выберите, вставлять или нет задержку между бросками костей компьютером так, чтобы игрок мог видеть, что происходит. - - - - - /schemas/apps/gtali/DisplayComputerThoughts - /apps/gtali/DisplayComputerThoughts - gtali - bool - FALSE - - Display the computer's thoughts - If set to true, a dump of the AI's working will be done to standard output. - - - - Die Gedankten des Computers anzeigen - Falls dieser Schlüssel wahr ist, wird ein Auszug aus der Arbeit der KI in der Standardausgabe ausgegeben. - - - - Display the computer's thoughts - If set to true, a dump of the AI's working will be done to standard output. - - - - Показать размышления компьютера - Если установлено, то на стандартный вывод будут выводиться куски размышлений искусственного интеллекта. - - - - - /schemas/apps/gtali/PlayerNames - /apps/gtali/PlayerNames - gtali - list - string - - [Human,Wilber,Bill,Monica,Kenneth,Janet] - - - - - - [Menschlich,Fritz,Heinz,Monika,Kurt,Jeanette] - - - - - - [Human,Wilber,Bill,Monica,Kenneth,Janet] - - - - - - [Человек,Вилбер,Билл,Моника,Кеннет,Джанет] - - - - - - - /schemas/apps/gtali/GameType - /apps/gtali/GameType - gtali - string - - Regular - - - - - - Regulär - - - - - - Regular - - - - - - Обычная - - - - - - - diff --git a/gconf/schemas/gweather.schemas b/gconf/schemas/gweather.schemas deleted file mode 100644 index 11e6a13..0000000 --- a/gconf/schemas/gweather.schemas +++ /dev/null @@ -1,443 +0,0 @@ - - - - - /schemas/apps/gweather/prefs/auto_update - gweather-applet-2 - bool - true - - Update the data automatically - Determines whether the applet automatically updates its weather statistics or not. - - - - Die Daten automatisch aktualisieren - Legt fest, ob das Applet automatisch seine Wetterstatistiken aktualisiert. - - - - Update the data automatically - Determines whether the applet automatically updates its weather statistics. - - - - Обновлять данные автоматически - Определяет, нужно ли автоматически обновлять данные о погоде. - - - - /schemas/apps/gweather/prefs/auto_update_interval - gweather-applet-2 - int - 1800 - - Update interval - The interval, in seconds, between automatic updates. - - - - Aktualisierungsintervall - Das Intervall zwischen automatischen Aktualisierungen in Sekunden. - - - - Update interval - The interval, in seconds, between automatic updates. - - - - Промежуток между обновлениями - Промежуток времени (в секундах) между автоматическими обновлениями. - - - - /schemas/apps/gweather/prefs/enable_metric - gweather-applet-2 - bool - false - - Use metric units - Use metric units instead of english units. - - - - Metrische Einheiten verwenden - Metrische statt englische Einheiten verwenden - - - - Use metric units - Use metric units instead of Imperial units. - - - - Использовать метрическую систему - Использовать метрическую систему мер вместо английской системы. - - - - /schemas/apps/gweather/prefs/distance_unit - gweather-applet-2 - string - Default - - Distance unit - The unit to use for visibility. - - - - Abstandseinheit - Die für die Sichtweite zu verwendente Einheit. - - - - Distance unit - The unit to use for visibility. - - - - Единица расстояния - Используемая единица измерения видимости. - - - - /schemas/apps/gweather/prefs/pressure_unit - gweather-applet-2 - string - Default - - Pressure unit - The unit to use for pressure. - - - - Druckeinheit - Die für den Druck zu verwendente Einheit. - - - - Pressure unit - The unit to use for pressure. - - - - Единица давления - Используемая единица измерения давления. - - - - /schemas/apps/gweather/prefs/speed_unit - gweather-applet-2 - string - Default - - Speed unit - The unit to use for wind speed. - - - - Geschwindigkeitseinheit - Die für die Windgeschwindigkeit zu verwendente Einheit. - - - - Speed unit - The unit to use for wind speed. - - - - Единица скорости - Используемая единица измерения скорости ветра. - - - - /schemas/apps/gweather/prefs/temperature_unit - gweather-applet-2 - string - Default - - Temperature unit - The unit to use for temperature. - - - - Temperatureinheit - Die für die Temperatur zu verwendente Einheit. - - - - Temperature unit - The unit to use for temperature. - - - - Единица температуры - Используемая единица измерения температуры. - - - - /schemas/apps/gweather/prefs/enable_detailed_forecast - gweather-applet-2 - bool - false - - Not used anymore - - - - Nicht mehr verwendet - - - - Not used anymore - - - - Больше не используется - - - - /schemas/apps/gweather/prefs/enable_radar_map - gweather-applet-2 - bool - false - - Display radar map - Fetch a radar map on each update. - - - - Radarkarte anzeigen - Bei jedem Aktualisierungsvorgang eine Radarkarte abrufen. - - - - Display radar map - Fetch a radar map on each update. - - - - Показывать радарную карту - Изменять радарную карту при каждом обновлении. - - - - /schemas/apps/gweather/prefs/location0 - gweather-applet-2 - string - - DEFAULT_LOCATION - Weather location information - Weather location information. - - - - Berlin - Informationen zum Wetterstandort. - Informationen zum Wetterstandort. - - - - London/Heathrow - Weather location information - Weather location information. - - - - Москва - Шереметьево - Сведения о погоде в местоположении - Сведения о погоде в местоположении. - - - - /schemas/apps/gweather/prefs/location1 - gweather-applet-2 - string - - DEFAULT_CODE - Nearby city - Nearby major zone, such as a capital city, as found from http://git.gnome.org/cgit/libgweather/plain/data/Locations.xml.in - - - - EDDM - Nächstgelegene Stadt - Nächstgelegene Zone, z.B. einer Hauptstadt, siehe http://git.gnome.org/cgit/libgweather/plain/data/Locations.xml.in - - - - EGLL - Nearby city - Nearby major zone, such as a capital city, as found from http://git.gnome.org/cgit/libgweather/plain/data/Locations.xml.in - - - - UUEE - Ближайший город - Ближайший крупный город — его можно найти в http://git.gnome.org/cgit/libgweather/plain/data/Locations.xml.in - - - - /schemas/apps/gweather/prefs/location2 - gweather-applet-2 - string - - DEFAULT_ZONE - Zone location - A unique zone for the city, as found from http://git.gnome.org/cgit/libgweather/plain/data/Locations.xml.in - - - - DEFAULT_ZONE - Zonen-Standort - Eine eindeutige Zone für die Stadt, siehe http://git.gnome.org/cgit/libgweather/plain/data/Locations.xml.in - - - - :RBPMS - Zone location - A unique zone for the city, as found from http://git.gnome.org/cgit/libgweather/plain/data/Locations.xml.in - - - - - Местоположение зоны - Уникальная зона для города — её можно найти в http://git.gnome.org/cgit/libgweather/plain/data/Locations.xml.in - - - - /schemas/apps/gweather/prefs/location3 - gweather-applet-2 - string - - DEFAULT_RADAR - Radar location - A three-digit-long code for retrieving radar maps from weather.com, found from http://git.gnome.org/cgit/libgweather/plain/data/Locations.xml.in - - - - DEFAULT_RADAR - Radarstandort - Ein dreistelliger Code zum Abfragen der Radarkarten von weather.com, siehe http://git.gnome.org/cgit/libgweather/plain/data/Locations.xml.in - - - - --- - Radar location - A three-digit-long code for retrieving radar maps from weather.com, found from http://git.gnome.org/cgit/libgweather/plain/data/Locations.xml.in - - - - - Радарный адрес - Трёхзначный код для получения радарных карт от weather.com — его можно найти по адресу http://git.gnome.org/cgit/libgweather/plain/data/Locations.xml.in - - - - /schemas/apps/gweather/prefs/location4 - gweather-applet-2 - string - - DEFAULT_LOCATION - Weather for a city - The city that gweather displays information for. - - - - Berlin - Wetter für eine Stadt - Die Stadt, für die gweather die Informationen darstellt. - - - - London/Heathrow - Weather for a city - The city that gweather displays information for. - - - - Москва - Шереметьево - Погода для города - Город, погоду в котором показывает gweather. - - - - /schemas/apps/gweather/prefs/coordinates - gweather-applet-2 - string - - DEFAULT_COORDINATES - Location coordinates - Latitude and longitude of your location expressed in DD-MM-SS[NS] DD-MM-SS[EW]. - - - - 48-21N 011-47E - Standortkoordinaten - Breiten- und Längengrad Ihres aktuellen Standorts, angegeben in GG-MM-SS[NS] GG-MM-SS[OW], also Grad-Minuten-Sekunden[Nord-Süd] bzw. [Ost-West]. - - - - DEFAULT_COORDINATES - Location co-ordinates - Latitude and longitude of your location expressed in DD-MM-SS[NS] DD-MM-SS[EW]. - - - - 55-59N 037-30E - Координаты местоположения - Ваши широта и долгота в формате DD-MM-SS[NS] DD-MM-SS[EW]. - - - - /schemas/apps/gweather/prefs/use_custom_radar_url - gweather-applet-2 - bool - false - - Use custom url for the radar map - If true, then retrieve a radar map from a location specified by the "radar" key. - - - - Benutzerdefinierte URL für die Radarkarte verwenden - Falls dieser Schlüssel wahr ist, wird eine Radarkarte von einem Ort abgerufen, der vom Schlüssel »radar« angegeben wird. - - - - Use custom URI for the radar map - If true, then retrieve a radar map from a location specified by the "radar" key. - - - - Использовать собственный адрес для радарной карты - Если этот ключ установлен, то получать радарную карту из адреса, заданного ключом «radar». - - - - /schemas/apps/gweather/prefs/radar - gweather-applet-2 - string - - Url for the radar map - The custom url from where to retrieve a radar map. - - - - URL zur Radarkarte - Die Benutzerdefinierte URL, von der die Radarkarte abgerufen werden soll. - - - - URI for the radar map - The custom URI from which to retrieve a radar map. - - - - Адрес для радарной карты - Пользовательский адрес для получения радарной карты. - - - - diff --git a/gconf/schemas/hamster-applet.schemas b/gconf/schemas/hamster-applet.schemas deleted file mode 100644 index 783536c..0000000 --- a/gconf/schemas/hamster-applet.schemas +++ /dev/null @@ -1,293 +0,0 @@ - - - - /schemas/apps/hamster-applet/enable_timeout - /apps/hamster-applet/enable_timeout - hamster-applet - bool - true - - Stop tracking on idle - - Stop tracking current activity when computer becomes idle - - - - - Erfassung bei Untätigkeit anhalten - Wenn sich der Rechner im Leerlauf befindet, die momentane Tätigkeit nicht weiter erfassen - - - - Stop tracking on idle - Stop tracking current activity when computer becomes idle - - - - Прекращать учёт при бездействии - Прекращать учёт текущего занятия при бездействии компьютера - - - - /schemas/apps/hamster-applet/stop_on_shutdown - /apps/hamster-applet/stop_on_shutdown - hamster-applet - bool - false - - Stop tracking on shutdown - - Stop tracking current activity on shutdown - - - - - Beim Herunterfahren die Erfassung anhalten - Beim Herunterfahren momentane Tätigkeit nicht weiter erfassen - - - - Stop tracking on shutdown - Stop tracking current activity on shutdown - - - - Прекращать учёт при выключении компьютера - Прекращать учёт текущего занятия при выключении компьютера - - - - /schemas/apps/hamster-applet/notify_interval - /apps/hamster-applet/notify_interval - hamster-applet - int - 27 - - Remind of current task every x minutes - - Remind of current task every specified amount of minutes. - Set to 0 or greater than 120 to disable reminder. - - - - - Alle X Minuten an momentane Tätigkeit erinnern - Alle X Minuten an momentane Tätigkeit erinnern. Wenn dieser Wert 0 oder größer als 120 ist, wird die Erinnerung deaktiviert. - - - - Remind of current task every x minutes - Remind of current task every specified amount of minutes. Set to 0 or greater than 120 to disable reminder. - - - - Напоминание о текущей задаче периодически через заданное число минут - Напоминание о текущей задаче каждые несколько минут. Значение 0 или более 120 отключает напоминание. - - - - /schemas/apps/hamster-applet/notify_on_idle - /apps/hamster-applet/notify_on_idle - hamster-applet - bool - false - - Also remind when no activity is set - - Also remind every notify_interval minutes if no activity - has been started. - - - - - Auch dann erinnern, wenn keine Tätigkeit gesetzt ist - Auch alle »notify_interval« Minuten erinnern, falls keine Tätigkeit begonnen wurde. - - - - Also remind when no activity is set - Also remind every notify_interval minutes if no activity has been started. - - - - Также напоминать, когда занятие не установлено - Также напоминать каждые notify_interval минут, если ни одно занятие не начато. - - - - /schemas/apps/hamster-applet/day_start_minutes - /apps/hamster-applet/day_start_minutes - hamster-applet - int - 330 - - At what time does the day start (defaults to 5:30AM) - - Activities will be counted as to belong to yesterday if - the current time is less than the specified day start; and - today, if it is over the time. - Activities that span two days, will tip over to the side - where the largest part of the activity is. - - - - - Zeit des Tagesbeginns (Vorgabe ist 5:30 Uhr) - Tätigkeiten werden dem gestrigen Tag zugeordnet, falls die aktuelle Tageszeit vor der als Tagesbeginn festgelegten Zeit liegt, und dem heutigen Tag, falls danach. Tätigkeiten, die sich über zwei Tage erstrecken, werden dem Tag zugeordnet, zu dem der längste Teil der Tätigkeit gehört. - - - - At what time does the day start (defaults to 05:30) - Activities will be counted as to belong to yesterday if the current time is less than the specified day start; and today, if it is over the time. Activities that span two days, will tip over to the side where the largest part of the activity is. - - - - Со скольки начинается день (по умолчанию с 5:30) - Занятия будут учитываться за вчерашний день, если текущее время меньше указанного начала дня, и за сегодняшний день, если больше этого времени. Занятия, которые перекрывают два дня, относятся к тому дню, на который пришлась большая часть времени. - - - - /schemas/apps/hamster-applet/workspace_tracking - /apps/hamster-applet/workspace_tracking - hamster-applet - list - string - [] - - Should workspace switch trigger activity switch - - List of enabled tracking methods. "name" will enable - switching activities by name defined in workspace_mapping. - "memory" will enable switching to the last activity when - returning to a previous workspace. - - - - - Arbeitsflächenwechsel bedingt Tätigkeitswechsel - Liste der aktivierten Methoden zur Zeiterfassung. »name« aktiviert den Wechsel der Tätigkeit anhand des Namens, der in »workspace_mapping« festgelegt ist. »memory« aktiviert die letzte Tätigkeit bei der Rückkehr zur vorherigen Arbeitsfläche. - - - - Should workspace switch trigger activity switch - List of enabled tracking methods. "name" will enable switching activities by name defined in workspace_mapping. "memory" will enable switching to the last activity when returning to a previous workspace. - - - - Должно ли переключение рабочего места переключать задачу - Список используемых методов учёта. Значение «name» включает переключение занятий по именам, определённым в workspace_mapping. Значение «memory» включает переключение на последнее занятие при возвращении к предыдущему рабочему месту. - - - - /schemas/apps/hamster-applet/workspace_mapping - /apps/hamster-applet/workspace_mapping - hamster-applet - list - string - [] - - Switch activity on workspace change - - If switching by name is enabled, this list sets the activity - names that should be switched to, workspaces represented by - the index of item. - - - - - Tätigkeit bei Arbeitsflächenwechsel ebenfalls wechseln - Falls der Wechsel anhand des Namens aktiviert ist, gibt diese Liste die Namen an, zu denen gewechselt werden soll. Arbeitsflächen werden durch den Index des Eintrags dargestellt. - - - - Switch activity on workspace change - If switching by name is enabled, this list sets the activity names that should be switched to, workspaces represented by the index of item. - - - - Переключать занятие при смене рабочего места - Если включено переключение по имени, этот список устанавливает названия занятий, которые следует переключать. Рабочие места представлены индексом элемента. - - - - - - /schemas/desktop/gnome/keybindings/hamster-applet/binding - /desktop/gnome/keybindings/hamster-applet/binding - hamster-applet - string - - - Show / hide Time Tracker Window - Keyboard shortcut for showing / hiding the Time Tracker window. - - - - Zeiterfassungsfenster anzeigen/verbergen - Tastenkürzel um das Zeiterfassungsfenster anzuzeigen/zu verbergen. - - - - Show / hide Time Tracker Window - Keyboard shortcut for showing / hiding the Time Tracker window. - - - - Показать / скрыть окно учёта времени - Сочетание клавиш для отображения / скрытия окна учёта времени. - - - - /schemas/desktop/gnome/keybindings/hamster-applet/action - /desktop/gnome/keybindings/hamster-applet/action - hamster-applet - string - hamster-time-tracker toggle - - Toggle hamster application window action - Command for toggling visibility of the hamster application window. - - - - Aktion zum Ein- und Ausschalten der Sichtbarkeit des Anwendungsfensters von Hamster - Befehl zum Ein- und Ausschalten der Sichtbarkeit des Anwendungsfensters von Hamster. - - - - Toggle hamster application window action - Command for toggling visibility of the hamster application window. - - - - Комбинация клавиш для переключения главного окна Hamster - Команда для переключения видимости главного окна Hamster. - - - - /schemas/desktop/gnome/keybindings/hamster-applet/name - /desktop/gnome/keybindings/hamster-applet/name - hamster-applet - string - Toggle hamster application window - - Toggle hamster application window - Toggle visibility of the hamster application window. - - - - Hamster-Anwendungsfenster sichtbar/unsichtbar - Die Sichtbarkeit des Hamster-Anwendungsfensters ein-/ausschalten. - - - - Toggle hamster application window - Toggle visibility of the hamster application window. - - - - Переключить главное окно Hamster - Переключить видимость главного окна Hamster. - - - - diff --git a/gconf/schemas/iagno.schemas b/gconf/schemas/iagno.schemas deleted file mode 100644 index 571e326..0000000 --- a/gconf/schemas/iagno.schemas +++ /dev/null @@ -1,129 +0,0 @@ - - - - - /schemas/apps/iagno/black_level - /apps/iagno/black_level - iagno - int - 0 - - - - - - - - /schemas/apps/iagno/white_level - /apps/iagno/white_level - iagno - int - 2 - - - - - - - - /schemas/apps/iagno/quick_moves - /apps/iagno/quick_moves - iagno - bool - false - - - - - - - - /schemas/apps/iagno/tileset - /apps/iagno/tileset - iagno - string - classic.png - - - - - - - - /schemas/apps/iagno/animate - /apps/iagno/animate - iagno - int - 2 - - - - - - - - /schemas/apps/iagno/animate_stagger - /apps/iagno/animate_stagger - iagno - bool - false - - - - - - - - /schemas/apps/iagno/show_grid - /apps/iagno/show_grid - iagno - bool - false - - - - - - - - /schemas/apps/iagno/flip_final_results - /apps/iagno/flip_final_results - iagno - bool - true - - - - - - - - /schemas/apps/iagno/sound - /apps/iagno/sound - iagno - bool - TRUE - - Sound - Whether or not to play event sounds. - - - - Ton - Legt fest, ob bei bestimmten Ereignissen Klänge abgespielt werden. - - - - Sound - Whether to play event sounds. - - - - Звук - Воспроизводить звуки событий или нет. - - - - - - diff --git a/gconf/schemas/ibus.schemas b/gconf/schemas/ibus.schemas new file mode 100644 index 0000000..d3d1912 --- /dev/null +++ b/gconf/schemas/ibus.schemas @@ -0,0 +1,618 @@ + + + + + /schemas/desktop/ibus/general/preload_engines + /desktop/ibus/general/preload_engines + ibus + list + [] + string + + Preload engines + Preload engines during ibus starts up + + + + Engines vorladen + Engines vorladen, während IBus startet + + + + Preload engines + Preload engines during ibus starts up + + + + Предварительная загрузка методов ввода + Загружать методы ввода при запуске iBus + + + + /schemas/desktop/ibus/general/engines_order + /desktop/ibus/general/engines_order + ibus + list + [] + string + + Engines order + Saved engines order in input method list + + + + /schemas/desktop/ibus/general/switcher-delay-time + /desktop/ibus/general/switcher-delay-time + ibus + int + 400 + + Popup delay milliseconds for IME switcher window + Set popup delay milliseconds to show IME switcher window. + The default is 400. + 0 = Show the window immediately. + 0 < Delay milliseconds. + 0 > Do not show the window and switch prev/next engines. + + + + + /schemas/desktop/ibus/general/hotkey/trigger + /desktop/ibus/general/hotkey/trigger + ibus + list + string + [Control+space,Zenkaku_Hankaku,Alt+Kanji,Alt+grave,Hangul,Alt+Release+Alt_R] + + Trigger shortcut keys + The shortcut keys for turning input method on or off + + + + Auslöser-Tastenkombination + Tastenkombination zum An- oder Ausschalten der Eingabemethode + + + + Trigger shortcut keys + The shortcut keys for turning input method on or off + + + + Сочетание клавиш для включения/выключения + Сочетание клавиш для включения/выключения метода ввода + + + + /schemas/desktop/ibus/general/hotkey/triggers + /desktop/ibus/general/hotkey/triggers + ibus + list + string + [<Control>space] + + Trigger shortcut keys for gtk_accelerator_parse + The shortcut keys for turning input method on or off + + + + + Tastenkombination zum An- oder Ausschalten der Eingabemethode + + + + + The shortcut keys for turning input method on or off + + + + + Сочетание клавиш для включения/выключения метода ввода + + + + /schemas/desktop/ibus/general/hotkey/enable_unconditional + /desktop/ibus/general/hotkey/enable_unconditional + ibus + list + string + [] + + Enable shortcut keys + The shortcut keys for turning input method on + + + + Tastenkürzel aktivieren + Tastenkürzel zum Einschalten der Eingabemethoden + + + + Enable shortcut keys + The shortcut keys for turning input method on + + + + /schemas/desktop/ibus/general/hotkey/disable_unconditional + /desktop/ibus/general/hotkey/disable_unconditional + ibus + list + string + [] + + Disable shortcut keys + The shortcut keys for turning input method off + + + + Tastenkürzel deaktivieren + Tastenkürzel zum Ausschalten der Eingabemethoden + + + + Disable shortcut keys + The shortcut keys for turning input method off + + + + + /schemas/desktop/ibus/general/hotkey/next_engine + /desktop/ibus/general/hotkey/next_engine + ibus + list + string + [Alt+Shift_L] + + Next engine shortcut keys + The shortcut keys for switching to the next input method in the list + + + + Nächste Engine-Tastenkombination + Tastenkombination zum Wechseln zur nächsten Eingabemethode in der Liste + + + + Next engine shortcut keys + The shortcut keys for switching to the next input method in the list + + + + Клавиши для следующего метода ввода + Сочетание клавиш для переключения на следующий метод ввода в списке: + + + + + /schemas/desktop/ibus/general/hotkey/next_engine_in_menu + /desktop/ibus/general/hotkey/next_engine_in_menu + ibus + list + string + [Alt+Shift_L] + + Next engine shortcut keys + The shortcut keys for switching to the next input method in the list + + + + Nächste Engine-Tastenkombination + Tastenkombination zum Wechseln zur nächsten Eingabemethode in der Liste + + + + Next engine shortcut keys + The shortcut keys for switching to the next input method in the list + + + + Клавиши для следующего метода ввода + Сочетание клавиш для переключения на следующий метод ввода в списке: + + + + + + /schemas/desktop/ibus/general/hotkey/prev_engine + /desktop/ibus/general/hotkey/prev_engine + ibus + list + string + [] + + Prev engine shortcut keys + The shortcut keys for switching to the previous input method + + + + Vorherige Engine-Tastenkombination + Tastenkombination zum Wechseln zur vorherigen Eingabemethode + + + + Prev engine shortcut keys + The shortcut keys for switching to the previous input method + + + + Клавиши для предыдущего метода ввода + Сочетание клавиш для переключения на предыдущий метод ввода в списке: + + + + + /schemas/desktop/ibus/general/hotkey/previous_engine + /desktop/ibus/general/hotkey/previous_engine + ibus + list + string + [] + + Prev engine shortcut keys + The shortcut keys for switching to the previous input method + + + + Vorherige Engine-Tastenkombination + Tastenkombination zum Wechseln zur vorherigen Eingabemethode + + + + Prev engine shortcut keys + The shortcut keys for switching to the previous input method + + + + Клавиши для предыдущего метода ввода + Сочетание клавиш для переключения на предыдущий метод ввода в списке: + + + + /schemas/desktop/ibus/panel/show + /desktop/ibus/panel/show + ibus + int + 0 + + Auto hide + The behavior of language panel. 0 = Embedded in menu, 1 = Auto hide, 2 = Always show + + + + Automatisch verstecken + Verhalten des Sprach-Panels: 0 = Im Menü einbetten, 1 = Automatisch verstecken, 2 = Immer anzeigen + + + + Auto hide + The behaviour of language panel. 0 = Embedded in menu, 1 = Auto hide, 2 = Always show + + + + Автоматически скрывать + Поведение языковой панели: 0 = встроена в меню, 1 = автоматически скрывать, 2 = всегда показывать + + + + /schemas/desktop/ibus/panel/x + /desktop/ibus/panel/x + ibus + int + -1 + + Language panel position + + + + Position des Sprach-Panels + + + + Language panel position + + + + Расположение языковой панели + + + + /schemas/desktop/ibus/panel/y + /desktop/ibus/panel/y + ibus + int + -1 + + Language panel position + + + + Position des Sprach-Panels + + + + Language panel position + + + + Расположение языковой панели + + + + + /schemas/desktop/ibus/panel/lookup_table_orientation + /desktop/ibus/panel/lookup_table_orientation + ibus + int + 1 + + Orientation of lookup table + Orientation of lookup table. 0 = Horizontal, 1 = Vertical + + + + Ausrichtung der Lookup-Tabelle + Ausrichtung der Lookup-Tabelle. 0 = Horizontal, 1 = Vertikal + + + + Orientation of lookup table + Orientation of lookup table. 0 = Horizontal, 1 = Vertical + + + + Ориентация таблицы поиска + Ориентация таблицы: 0 = горизонтально, 1 = вертикально. + + + + /schemas/desktop/ibus/panel/show_icon_on_systray + /desktop/ibus/panel/show_icon_on_systray + ibus + bool + true + + Show icon on system tray + Show icon on system tray + + + + Symbol im Benachrichtigungsfeld anzeigen + Symbol im Benachrichtigungsfeld anzeigen + + + + Show icon on system tray + Show icon on system tray + + + + Показать значок в области уведомлений + Показать значок в области уведомлений + + + + /schemas/desktop/ibus/panel/show_im_name + /desktop/ibus/panel/show_im_name + ibus + bool + false + + Show input method name + Show input method name on language bar + + + + Name der Eingabemethode anzeigen + Name der Eingabemethode auf Sprachleiste anzeigen + + + + Show input method name + Show input method name on language bar + + + + Показывать название метода ввода + Показывать название метода ввода на языковой панели + + + + /schemas/desktop/ibus/general/use_system_keyboard_layout + /desktop/ibus/general/use_system_keyboard_layout + ibus + bool + false + + Use system keyboard layout + Use system keyboard (XKB) layout + + + + System-Tastaturbelegung verwenden + System-Tastatur (XKB) Belegung verwenden + + + + Use system keyboard layout + Use system keyboard (XKB) layout + + + + Использовать системную раскладку клавиатуры + Использовать системную раскладку (XKB) + + + + /schemas/desktop/ibus/panel/use_custom_font + /desktop/ibus/panel/use_custom_font + ibus + bool + false + + Use custom font + Use custom font name for language panel + + + + Benutzerdefinierte Schriftart verwenden + Benutzerdefinierte Schriftart für Sprach-Panel verwenden + + + + Use custom font + Use custom font name for language panel + + + + Использовать свой шрифт + Использовать свой шрифт для языковой панели + + + + /schemas/desktop/ibus/panel/custom_font + /desktop/ibus/panel/custom_font + ibus + string + Sans 10 + + Custom font + Custom font name for language panel + + + + Benutzerdefinierte Schriftart + Name der benutzerdefinierten Schriftart für Sprach-Panel + + + + Custom font + Custom font name for language panel + + + + Свой шрифт + Свой шрифт для языковой панели + + + + /schemas/desktop/ibus/general/embed_preedit_text + /desktop/ibus/general/embed_preedit_text + ibus + bool + true + + Embed Preedit Text + Embed Preedit Text in Application Window + + + + Preedit-Text einbetten + Preedit-Text in Anwendungsfenster einbetten + + + + Embed Pre-edit Text + Embed Pre-edit Text in Application Window + + + + Вставить готовый текст + Вставить готовый текст в окно приложения + + + + /schemas/desktop/ibus/general/use_global_engine + /desktop/ibus/general/use_global_engine + ibus + bool + false + + Use global input method + Share the same input method among all applications + + + + Globale Eingabemethode wählen + Dieselbe Eingabemethode für alle Anwendungen verwenden + + + + Use global input method + Share the same input method among all applications + + + + Использовать глобальный метод ввода + Использовать один метод ввода для всех приложений + + + + + /schemas/desktop/ibus/general/enable_by_default + /desktop/ibus/general/enable_by_default + ibus + bool + false + + Enable input method by default + Enable input method by default when the application gets input + focus + + + + Eingabemethode standardmäßig aktivieren + Eingabemethode standardmäßig aktivieren, wenn die Anwendung Eingabefokus erlangt + + + + Enable input method by default + Enable input method by default when the application gets input focus + + + + Включить метод ввода по умолчанию + Включить метод ввода по умолчанию при получении приложением фокуса ввода + + + + + /schemas/desktop/ibus/general/dconf_preserve_name_prefixes + /desktop/ibus/general/dconf_preserve_name_prefixes + ibus + list + [/desktop/ibus/engine/pinyin,/desktop/ibus/engine/bopomofo,/desktop/ibus/engine/hangul] + string + + DConf preserve name prefixes + Prefixes of DConf keys to stop name conversion + + + + diff --git a/gconf/schemas/mahjongg.schemas b/gconf/schemas/mahjongg.schemas deleted file mode 100644 index 3aa1e24..0000000 --- a/gconf/schemas/mahjongg.schemas +++ /dev/null @@ -1,54 +0,0 @@ - - - - - /schemas/apps/mahjongg/show_toolbar - /apps/mahjongg/show_toolbar - mahjongg - bool - TRUE - - - - - - - - /schemas/apps/mahjongg/tileset - /apps/mahjongg/tileset - mahjongg - string - postmodern.svg - - - - - - - - /schemas/apps/mahjongg/mapset - /apps/mahjongg/mapset - mahjongg - string - Easy - - - - - - - - /schemas/apps/mahjongg/bgcolour - /apps/mahjongg/bgcolour - mahjongg - string - #34385b - - - - - - - - - diff --git a/gconf/schemas/metacity.schemas b/gconf/schemas/metacity.schemas deleted file mode 100644 index 9b59da4..0000000 --- a/gconf/schemas/metacity.schemas +++ /dev/null @@ -1,3205 +0,0 @@ - - - - - - - /schemas/apps/metacity/general/mouse_button_modifier - /apps/metacity/general/mouse_button_modifier - metacity - string - <Alt> - - Modifier to use for modified window click actions - - Clicking a window while holding down this modifier key - will move the window (left click), resize the window - (middle click), or show the window menu (right click). - The middle and right click operations may be swapped - using the "resize_with_right_button" key. - Modifier is expressed as "<Alt>" or "<Super>" - for example. - - - - - Die zum Umschalten der Fensterklick-Aktionen verwendeten Zusatztasten - - - - - Modifier to use for modified window click actions - - - - - Модификатор для действий по щелчку мыши - - - - - - /schemas/apps/metacity/general/resize_with_right_button - /apps/metacity/general/resize_with_right_button - metacity - bool - false - - Whether to resize with the right button - - Set this to true to resize with the right button and show a menu - with the middle button while holding down the key given in - "mouse_button_modifier"; set it to false to make it work the - opposite way around. - - - - - Legt fest, ob mit der rechten Taste die Größe angepasst wird - Falls dieser Schlüssel wahr ist, so wird mit der rechten Taste die Größe angepasst, und mit der mittleren Taste und der Zusatztaste »mouse_button_modifier« ein Menü angezeigt. Wenn er falsch ist, ist es genau anders herum. - - - - Whether to resize with the right button - Set this to true to resize with the right button and show a menu with the middle button while holding down the key given in "mouse_button_modifier"; set it to false to make it work the opposite way around. - - - - Изменение размера с использование правой кнопки мыши - Если ключ установлен, размер окна изменяется правой кнопкой мыши, а меню показывается средней, если удерживается клавиша, заданная в «mouse_button_modifier». Если ключ не установлен, функции кнопок мыши меняются местами. - - - - - /schemas/apps/metacity/general/button_layout - /apps/metacity/general/button_layout - metacity - string - menu:minimize,maximize,close - - Arrangement of buttons on the titlebar - - Arrangement of buttons on the titlebar. The - value should be a string, such as - "menu:minimize,maximize,spacer,close"; the colon separates the - left corner of the window from the right corner, and - the button names are comma-separated. Duplicate buttons - are not allowed. Unknown button names are silently ignored - so that buttons can be added in future metacity versions - without breaking older versions. - A special spacer tag can be used to insert some space between - two adjacent buttons. - - - - - Knopfanordnung auf der Titelleiste - Die Anordnung der Knöpfe auf der Titelleiste. Der Wert muss eine Zeichenkette der Form »menu:minimize,maximize,spacer,close« sein. Der Doppelpunkt trennt die rechte von der linken Ecke der Titelleiste und die Namen der einzelnen Knöpfe sind durch Kommas getrennt. Mehrfachnennungen von Knopfnamen sind nicht erlaubt. Unbekannte Knopfnamen werden ohne Ausgabe ignoriert, sodass in zukünftigen Versionen dieses Fenstermanagers Knöpfe hinzugefügt werden können, ohne die Konfiguration älterer Versionen zu beeinflussen. - - - - Arrangement of buttons on the titlebar - Arrangement of buttons on the titlebar. The value should be a string, such as "menu:minimize,maximize,spacer,close"; the colon separates the left corner of the window from the right corner, and the button names are comma-separated. Duplicate buttons are not allowed. Unknown button names are silently ignored so that buttons can be added in future metacity versions without breaking older versions. A special spacer tag can be used to insert some space between two adjacent buttons. - - - - Расположение кнопок в заголовке окна - Расположение кнопок в заголовке окна. Значение должно быть строкой, например, «menu:minimize,maximize,spacer,close». Двоеточие разделяет левый и правый углы окна, имена кнопок разделяются запятыми. Дублирование кнопок не допускается. Неизвестные имена кнопок всегда игнорируются без уведомления, так что кнопки могут быть добавлены в будущих версиях, не нарушая предыдущих. Специальный элемент spacer может использоваться для вставки пробела между двумя кнопками. - - - - - /schemas/apps/metacity/general/focus_mode - /apps/metacity/general/focus_mode - metacity - string - click - - Window focus mode - - The window focus mode indicates how windows are activated. - It has three possible values; "click" means windows must - be clicked in order to focus them, "sloppy" means windows - are focused when the mouse enters the window, and "mouse" means - windows are focused when the mouse enters the window and - unfocused when the mouse leaves the window. - - - - - Modus des Fensterfokus - Der Modus des Fensterfokus legt fest, wie Fenster aktiviert werden. Er hat drei mögliche Werte: »click« führt dazu, dass Fenster angeklickt werden müssen, um fokussiert zu werden, »sloppy« bewirkt, dass Fenster fokussiert werden, sobald sich der Mauszeiger über dem Fenster befindet, und das Verhalten bei »mouse« entspricht dem von »sloppy« mit dem Zusatz, dass den Fenstern der Fokus wieder genommen wird, sobald der Mauszeiger das Fenster verlässt. - - - - Window focus mode - The window focus mode indicates how windows are activated. It has three possible values; "click" means windows must be clicked in order to focus them, "sloppy" means windows are focused when the mouse enters the window, and "mouse" means windows are focused when the mouse enters the window and unfocused when the mouse leaves the window. - - - - Режим активации окна - Режим передачи фокуса в окно определяет, как активируются окна. У этого режима три возможных значения; «click» — означает, что для активации окна на нём надо щелкнуть; «sloppy» — означает, что окно активируется, когда на него перемещается указатель мыши; «mouse» — означает, что окно активируется, когда в него перемещается указатель мыши, и перестает быть активным, когда указатель мыши выходит из него. - - - - - /schemas/apps/metacity/general/focus_new_windows - /apps/metacity/general/focus_new_windows - metacity - string - smart - - Control how new windows get focus - - This option provides additional control over how newly created - windows get focus. It has two possible values; "smart" applies - the user's normal focus mode, and "strict" results in windows - started from a terminal not being given focus. - - - - - Festlegen, wie neue Fenster den Fokus erhalten - Dieser Schlüssel bietet erweiterte Kontrolle darüber, wie neu erstellte Fenster den Fokus erhalten. Zulässige Werte: »smart« benutzt den vom Nutzer festgelegten Fokusmodus, »strict« erteilt von einer Befehlszeile gestarteten Fenstern keinen Fokus. - - - - Control how new windows get focus - This option provides additional control over how newly created windows get focus. It has two possible values; "smart" applies the user's normal focus mode, and "strict" results in windows started from a terminal not being given focus. - - - - Определяет, как новое окно получает фокус - Этот параметр предоставляет дополнительное управление тем, как новые окна получают фокус. Он имеет два возможных значения. Значение «smart» применяет обычный режим фокуса пользователя, а «strict» приводит к тому, что окна, запущенные из терминала, не получают фокус. - - - - - /schemas/apps/metacity/general/raise_on_click - /apps/metacity/general/raise_on_click - metacity - bool - true - - Whether raising should be a side-effect of other user - interactions - - Setting this option to false can lead to buggy behavior, so - users are strongly discouraged from changing it from the default - of true. - - Many actions (e.g. clicking in the client area, moving or resizing the window) - normally raise the window as a side-effect. Setting this option to false, which - is strongly discouraged, will decouple raising from other user actions, and - ignore raise requests generated by applications. See - http://bugzilla.gnome.org/show_bug.cgi?id=445447#c6. - Even when this option is false, windows can - still be raised by an alt-left-click anywhere on the window, a - normal click on the window decorations, or by special messages - from pagers, such as activation requests from tasklist applets. - This option is currently disabled in click-to-focus mode. - - Note that the list of ways to raise windows when raise_on_click - is false does not include programmatic requests from - applications to raise windows; such requests will be ignored - regardless of the reason for the request. If you are an - application developer and have a user complaining that your - application does not work with this setting disabled, tell them - it is _their_ fault for breaking their window manager and that - they need to change this option back to true or live with the - "bug" they requested. - - - - - Legt fest, ob das Anheben von Fenstern ein Nebeneffekt von Benutzeraktionen sein soll - Das Abschalten dieser Option kann zu einem fehlerhaften Verhalten führen. Deshalb werden Benutzer dazu angehalten sie unverändert zu lassen. Viele Aktivitäten (z.B Klicken in den Client-Bereich, Verschieben oder Verändern der Größe eines Fensters) führen normalerweise als Nebeneffekt dazu, dass das Fenster in den Vordergrund geholt wird. Wenn diese Option abgeschaltet ist, wovon dringend abgeraten wird, werden diese Aktivitäten von der Benutzerinformation entkoppelt und Anfragen von Anwendungen zum Anheben ignoriert. Lesen Sie http://bugzilla.gnome.org/show_bug.cgi?id=445447#c6. Trotzdem kann das Fenster durch einen Linksklick mit gedrückter linker Maustaste, durch einen Klick auf die Fenster-Dekoration oder durch spezielle Anforderung des Arbeitsflächenumschalters bzw. der Fensterliste weiter in den Vordergrund geholt werden. Dieser Schlüssel ist im »Klicken-für-Fokus«-Modus momentan deaktiviert. Die Möglichkeiten ein Fenster in den Vordergrund zu holen, wenn »raise_on_click« abgeschaltet ist, enthalten auch nicht programmatische Anforderungen durch Anwendungen. Diese werden ohne Beachtung ihres Grundes ignoriert. Falls Sie ein Software-Entwickler sind und Sie Beschwerden von Benutzern erhalten, dass Ihre Software nicht richtig funktioniert, weil diese Option abgeschaltet ist, antworten Sie, dass es die Schuld des Benutzers ist. Der Benutzer sollte darauf hingewiesen werden diese Option wieder einzuschalten oder mit den Konsequenzen leben zu müssen. - - - - Whether raising should be a side-effect of other user interactions - Setting this option to false can lead to buggy behaviour, so users are strongly discouraged from changing it from the default of true. Many actions (e.g. clicking in the client area, moving or resizing the window) normally raise the window as a side-effect. Setting this option to false, which is strongly discouraged, will decouple raising from other user actions, and ignore raise requests generated by applications. See http://bugzilla.gnome.org/show_bug.cgi?id=445447#c6. Even when this option is false, windows can still be raised by an alt-left-click anywhere on the window, a normal click on the window decorations, or by special messages from pagers, such as activation requests from tasklist applets. This option is currently disabled in click-to-focus mode. Note that the list of ways to raise windows when raise_on_click is false does not include programmatic requests from applications to raise windows; such requests will be ignored regardless of the reason for the request. If you are an application developer and have a user complaining that your application does not work with this setting disabled, tell them it is _their_ fault for breaking their window manager and that they need to change this option back to true or live with the "bug" they requested. - - - - Должно ли поднятие окна быть побочным эффектом других действий пользователя - Если этот параметр не установлен, возможно ошибочное поведение, поэтому мы настоятельно рекомендуем воздержаться от изменений значения по умолчанию. Многие действия (например, щелчок по окну, перемещение окна или изменение его размера) обычно поднимают окно на передний план. Если этот параметр не установлен, что настоятельно не рекомендуется, поднятие на передний план будет отделено от других действий и запросы на поднятие окна на передний план, поступающие от приложений, будут игнорироваться. Смотрите http://bugzilla.gnome.org/show_bug.cgi?id=445447#c6. Даже если этот параметр не установлен, окна могут быть подняты на передний план с помощью одновременного нажатия на клавишу Alt и щелчка левой кнопкой мыши по любой области окна, щелчка по заголовку окна или специальных сообщений, таких как запросы на поднятие окна. Это поведение в данный момент выключено в режиме щелчка для передачи фокуса. Заметьте, что обозначенный выше список не включает в себя программные запросы от приложений о поднятии окон на передний план, такие запросы будут проигнорированы независимо от причины. Если вы разработчик приложения и вам приходится слушать замечания пользователей, что ваше приложение работает некорректно, укажите им, что _они_ допустили ошибку, выключив этот параметр и сломав менеджер окон, и что они должны вернуть этому параметру значение по умолчанию или прекратить посылать замечания. - - - - - /schemas/apps/metacity/general/action_double_click_titlebar - /apps/metacity/general/action_double_click_titlebar - metacity - string - toggle_maximize - - Action on title bar double-click - - This option determines the effects of double-clicking on the - title bar. Current valid options are - 'toggle_shade', which will shade/unshade the window, - 'toggle_maximize' which will maximize/unmaximize the window, - 'toggle_maximize_horizontally' and 'toggle_maximize_vertically' - which will maximize/unmaximize the window in that direction only, - 'minimize' which will minimize the window, - 'shade' which will roll the window up, - 'menu' which will display the window menu, - 'lower' which will put the window behind all the others, - and 'none' which will not do anything. - - - - - Aktion beim Doppelklick auf Titelleiste - Dieser Schlüssel legt fest, was bei einem Doppelklick auf die Titelleiste geschehen soll. Zulässige Werte sind: »toggle_shade« (Fenster ein- bzw. ausrollen), »toggle_maximize« (Fenster maximieren bzw. wiederherstellen), »toggle_maximize_horizontally« und »toggle_maximize_vertically« (Fenster horizontal bzw. vertikal maximieren), »minimize« (Fenster minimieren), »shade« (Fenster einrollen), »menu« (Fenstermenü anzeigen), »lower« (Fenster in den Hintergrund) sowie »none« (nichts tun). - - - - Action on title bar double-click - This option determines the effects of double-clicking on the title bar. Current valid options are 'toggle_shade', which will shade/unshade the window, 'toggle_maximize' which will maximise/unmaximise the window, 'toggle_maximize_horizontally' and 'toggle_maximize_vertically' which will maximise/unmaximise the window in that direction only, 'minimize' which will minimise the window, 'shade' which will roll the window up, 'menu' which will display the window menu, 'lower' which will put the window behind all the others, and 'none' which will not do anything. - - - - Действие при двойном щелчке по заголовку окна - Этот ключ определяет действие двойного щелчка на заголовке окна. В настоящее время допустимыми значениями являются «toggle_shade» (скручивает окно в полоску или раскатывает обратно), «toggle_maximize» (разворачивает окно или восстанавливает обычный размер), «toggle_maximize_vertically» и «toggle_maximize_horizontally» (разворачивает окно только в одном направлении или восстанавливает обычный размер), «minimize» (сворачивает окно), «shade» (скрутит окно вверх), «menu» (показывает меню окна), «lower» (помещает окно под другими) и, наконец, «none» (не делает ничего). - - - - - /schemas/apps/metacity/general/action_middle_click_titlebar - /apps/metacity/general/action_middle_click_titlebar - metacity - string - lower - - Action on title bar middle-click - - This option determines the effects of middle-clicking on the - title bar. Current valid options are - 'toggle_shade', which will shade/unshade the window, - 'toggle_maximize' which will maximize/unmaximize the window, - 'toggle_maximize_horizontally' and 'toggle_maximize_vertically' - which will maximize/unmaximize the window in that direction only, - 'minimize' which will minimize the window, - 'shade' which will roll the window up, - 'menu' which will display the window menu, - 'lower' which will put the window behind all the others, - and 'none' which will not do anything. - - - - - Aktion beim Klick mit der mittleren Maustaste auf die Titelleiste - Dieser Schlüssel legt fest, was bei einem Klick mit der mittleren Maustaste auf die Titelleiste geschehen soll. Zulässige Werte: »toggle_shade« (Fenster ein- bzw. ausrollen), »toggle_maximize« (Fenster maximieren bzw. wiederherstellen), »toggle_maximize_horizontally« und »toggle_maximize_vertically« (Fenster horizontal bzw. vertikal maximieren), »minimize« (Fenster minimieren), »shade« (Fenster einrollen), »menu« (Fenstermenü anzeigen), »lower« (Fenster in den Hintergrund) sowie »none« (nichts tun). - - - - Action on title bar middle-click - This option determines the effects of middle-clicking on the title bar. Current valid options are 'toggle_shade', which will shade/unshade the window, 'toggle_maximize' which will maximise/unmaximise the window, 'toggle_maximize_horizontally' and 'toggle_maximize_vertically' which will maximise/unmaximise the window in that direction only, 'minimize' which will minimise the window, 'shade' which will roll the window up, 'menu' which will display the window menu, 'lower' which will put the window behind all the others, and 'none' which will not do anything. - - - - Действие при щелчке по заголовку окна средней кнопкой мыши - Этот ключ определяет действие щелчка средней кнопкой мыши по заголовку окна. В настоящее время допустимыми значениями являются «toggle_shade» (скручивает окно в полоску или раскатывает обратно), «toggle_maximize» (разворачивает окно или восстанавливает обычный размер), «toggle_maximize_vertically» и «toggle_maximize_horizontally» (разворачивает окно только в одном направлении или восстанавливает обычный размер), «minimize» (сворачивает окно), «shade» (скрутит окно вверх), «menu» (показывает меню окна), «lower» (помещает окно под другими) и, наконец, «none» (не делает ничего). - - - - - /schemas/apps/metacity/general/action_right_click_titlebar - /apps/metacity/general/action_right_click_titlebar - metacity - string - menu - - Action on title bar right-click - - This option determines the effects of right-clicking on the - title bar. Current valid options are - 'toggle_shade', which will shade/unshade the window, - 'toggle_maximize' which will maximize/unmaximize the window, - 'toggle_maximize_horizontally' and 'toggle_maximize_vertically' - which will maximize/unmaximize the window in that direction only, - 'minimize' which will minimize the window, - 'shade' which will roll the window up, - 'menu' which will display the window menu, - 'lower' which will put the window behind all the others, - and 'none' which will not do anything. - - - - - Aktion beim Rechtsklick auf die Titelleiste - Dieser Schlüssel legt fest, was bei einem Rechtsklick auf die Titelleiste geschehen soll. Zulässige Werte: »toggle_shade« (Fenster ein- bzw. ausrollen), »toggle_maximize« (Fenster maximieren bzw. wiederherstellen), »toggle_maximize_horizontally« und »toggle_maximize_vertically« (Fenster horizontal bzw. vertikal maximieren), »minimize« (Fenster minimieren), »shade« (Fenster einrollen), »menu« (Fenstermenü anzeigen), »lower« (Fenster in den Hintergrund) sowie »none« (nichts tun). - - - - Action on title bar right-click - This option determines the effects of right-clicking on the title bar. Current valid options are 'toggle_shade', which will shade/unshade the window, 'toggle_maximize' which will maximise/unmaximise the window, 'toggle_maximize_horizontally' and 'toggle_maximize_vertically' which will maximise/unmaximise the window in that direction only, 'minimize' which will minimise the window, 'shade' which will roll the window up, 'menu' which will display the window menu, 'lower' which will put the window behind all the others, and 'none' which will not do anything. - - - - Действие при щелчке по заголовку окна правой кнопкой мыши - Этот ключ определяет действие щелчка правой кнопкой мыши по заголовку окна. В настоящее время допустимыми значениями являются «toggle_shade» (скручивает окно в полоску или раскатывает обратно), «toggle_maximize» (разворачивает окно или восстанавливает обычный размер), «toggle_maximize_vertically» и «toggle_maximize_horizontally» (разворачивает окно только в одном направлении или восстанавливает обычный размер), «minimize» (сворачивает окно), «shade» (скрутит окно вверх), «menu» (показывает меню окна), «lower» (помещает окно под другими) и, наконец, «none» (не делает ничего). - - - - - /schemas/apps/metacity/general/auto_raise - /apps/metacity/general/auto_raise - metacity - bool - false - - Automatically raises the focused window - - If set to true, and the focus mode is either "sloppy" or "mouse" - then the focused window will be automatically raised after a - delay specified by the auto_raise_delay key. This is not related - to clicking on a window to raise it, nor to entering a window - during drag-and-drop. - - - - - Das fokussierte Fenster automatisch anheben - Falls dieser Schlüssel gesetzt ist und der Fokusmodus entweder »sloppy« oder »mouse« ist, wird das fokussierte Fenster automatisch nach der vom Schlüssel »auto_raise_delay« angegeben Zeit angehoben. Dies hat weder Einfluss auf das Klicken auf ein Fenster um es anzuheben, noch auf das Überfahren eines Fensters bei Ziehen-und-Ablegen. - - - - Automatically raises the focused window - If set to true, and the focus mode is either "sloppy" or "mouse" then the focused window will be automatically raised after a delay specified by the auto_raise_delay key. This is not related to clicking on a window to raise it, nor to entering a window during drag-and-drop. - - - - Автоматически поднимать активное окно - Если этот ключ установлен, и режим фокуса либо «sloppy», либо «mouse», тогда окно, находящееся в фокусе, будет автоматически поднято по истечении задержки, указанной в ключе auto_raise_delay. Это не касается ни щелчка по окну для его поднятия, ни перехода в окно путём перетаскивания в него. - - - - - /schemas/apps/metacity/general/auto_raise_delay - /apps/metacity/general/auto_raise_delay - metacity - int - 500 - - Delay in milliseconds for the auto raise option - - The time delay before raising a window if auto_raise is set to - true. The delay is given in thousandths of a second. - - - - - Verzögerung für das automatische Anheben in Millisekunden - Die Zeitverzögerung, bevor ein Fenster angehoben wird, falls »auto_raise« auf WAHR gesetzt ist. Die Verzögerung wird in Millisekunden angegeben. - - - - Delay in milliseconds for the auto raise option - The time delay before raising a window if auto_raise is set to true. The delay is given in thousandths of a second. - - - - Задержка в миллисекундах для параметра автоматического поднятия окна - Время задержки всплывания окна, если установлен ключ auto_raise. Задержка измеряется в миллисекундах. - - - - - /schemas/apps/metacity/general/theme - /apps/metacity/general/theme - metacity - string - Clearlooks - - Current theme - - The theme determines the appearance of window borders, - titlebar, and so forth. - - - - - Aktuelles Thema - Das Thema legt unter anderem das Aussehen von Fensterrahmen und Titelleisten fest. - - - - Current theme - The theme determines the appearance of window borders, titlebar, and so forth. - - - - Текущая тема - Тема определяет внешний вид границ окна, заголовка окна и так далее. - - - - - /schemas/apps/metacity/general/titlebar_uses_system_font - /apps/metacity/general/titlebar_uses_system_font - metacity - bool - false - - Use standard system font in window titles - - If true, ignore the titlebar_font - option, and use the standard application font for window - titles. - - - - - Vorgegebene Systemschrift für Fenstertitel verwenden - Falls dieser Schlüssel gesetzt ist, wird die Option zum Setzen der Titelleistenschrift (»titlebar_font«) ignoriert und die Standard-Anwendungsschrift für Fenstertitel verwendet. - - - - Use standard system font in window titles - If true, ignore the titlebar_font option, and use the standard application font for window titles. - - - - Использовать стандартный системный шрифт в заголовках окон - Если этот ключ установлен, то параметр titlebar_font игнорируется, и для заголовков окон используется стандартный шрифт приложения. - - - - - /schemas/apps/metacity/general/titlebar_font - /apps/metacity/general/titlebar_font - metacity - string - Sans Bold 10 - - Window title font - - A font description string describing a font for window - titlebars. The size from the description will only be used if the - titlebar_font_size option is set to 0. Also, this option is - disabled if the titlebar_uses_desktop_font option is set to true. - - - - - Schrift für Fenstertitel - Eine Zeichenkette, die für die Fenstertitel verwendete Schrift angibt. Die Größenangabe wird jedoch nur verwendet, falls die Option »titlebar_font_size« auf 0 gesetzt ist. Außerdem ist diese Funktion wirkungslos, falls die Option »titlebar_uses_desktop_font« »WAHR« ist. - - - - Window title font - A font description string describing a font for window titlebars. The size from the description will only be used if the titlebar_font_size option is set to 0. Also, this option is disabled if the titlebar_uses_desktop_font option is set to true. - - - - Шрифт заголовка окна - Строка описания шрифта для заголовка окна. Размер из описания будет использоваться, только если для параметра titlebar_font_size выбрано значение 0. Этот параметр также отключён, если для параметра titlebar_uses_desktop_font выбрано значение «истина». - - - - - /schemas/apps/metacity/general/num_workspaces - /apps/metacity/general/num_workspaces - metacity - int - 4 - - Number of workspaces - - Number of workspaces. Must be more than zero, and has a fixed - maximum to prevent making the desktop unusable by accidentally - asking for too many workspaces. - - - - - Anzahl der Arbeitsflächen - Anzahl der Arbeitsflächen. Die Zahl muss größer als Null sein und hat ein festgelegtes Maximum, um zu verhindern, dass Ihr Desktop durch das versehentliche Anfordern von sehr vielen Arbeitsflächen unbrauchbar wird. - - - - Number of workspaces - Number of workspaces. Must be more than zero, and has a fixed maximum to prevent making the desktop unusable by accidentally asking for too many workspaces. - - - - Число рабочих мест - Число рабочих мест. Должно быть больше нуля. Имеет фиксированный максимум, чтобы нельзя было разрушить среду, запросив слишком много рабочих мест. - - - - - /schemas/apps/metacity/general/visual_bell - /apps/metacity/general/visual_bell - metacity - bool - false - - Enable Visual Bell - - Turns on a visual indication when an application or the system - issues a 'bell' or 'beep'; useful for the hard-of-hearing and for - use in noisy environments. - - - - - Visuelle Glocke aktivieren - Visuelle Rückmeldungen zeigen, wenn eine Anwendung oder das System eine »Glocke« oder einen Signalton auslöst. Dies ist nützlich für Hörgeschädigte und die Arbeit in lauter Umgebung. - - - - Enable Visual Bell - Turns on a visual indication when an application or the system issues a 'bell' or 'beep'; useful for the hard-of-hearing and for use in noisy environments. - - - - Включить видимый сигнал - Включает визуальную индикацию системного звукового сигнала. Это полезно для слабослышащих и при работе в шумном окружении. - - - - - /schemas/apps/metacity/general/audible_bell - /apps/metacity/general/audible_bell - metacity - bool - true - - System Bell is Audible - - Determines whether applications or the system can generate - audible 'beeps'; may be used in conjunction with 'visual bell' to - allow silent 'beeps'. - - - - - Systemglocke hörbar machen - Legt fest, ob Anwendungen oder das System hörbare Signaltöne ausgeben können; kann in Verbindung mit der »visuellen Glocke« verwendet werden, um »stumme« Signaltöne auszugeben. - - - - System Bell is Audible - Determines whether applications or the system can generate audible 'beeps'; may be used in conjunction with 'visual bell' to allow silent 'beeps'. - - - - Системный сигнал — слышимый - Определяет, могут ли приложения или система подавать слышимые звуковые сигналы. Может быть использован совместно с ключом «видимый сигнал», чтобы подавать бесшумные «гудки». - - - - - /schemas/apps/metacity/general/visual_bell_type - /apps/metacity/general/visual_bell_type - metacity - string - fullscreen - - Visual Bell Type - - Tells Metacity how to implement the visual indication that the - system bell or another application 'bell' indicator has been - rung. Currently there are two valid values, "fullscreen", which - causes a fullscreen white-black flash, and "frame_flash" which - causes the titlebar of the application which sent the bell signal - to flash. If the application which sent the bell is unknown (as - is usually the case for the default "system beep"), the currently - focused window's titlebar is flashed. - - - - - Typ der Visuellen Glocke - Legt fest, wie Metacity visuell darstellen soll, dass die Systemglocke ausgelöst wurde oder ein anderer »Piepser« seitens der Anwendung erfolgt ist. Zulässige Werte: »fullscreen« (Schwarz/weiß-Blinken im Vollbild) sowie »frame_flash« (Titelbar der betroffenen Anwendung blinkt). Ist die Anwendung unbekannt, die die Glocke ausgelöst hat (bei Systemsignaltönen ist dies der Normalfall), blinkt die Titelbar des momentan fokussierten Fensters. - - - - Visual Bell Type - Tells Metacity how to implement the visual indication that the system bell or another application 'bell' indicator has been rung. Currently there are two valid values, "fullscreen", which causes a fullscreen white-black flash, and "frame_flash" which causes the titlebar of the application which sent the bell signal to flash. If the application which sent the bell is unknown (as is usually the case for the default "system beep"), the currently focused window's titlebar is flashed. - - - - Тип видимого сигнала - Указывает Metacity, как реализовать индикацию звукового сигнала. Сейчас существуют два значения этого ключа: «fullscreen» вызывает чёрно-белое мерцание экрана, «frame_flash» вызывает мерцание строки заголовка того окна, приложение в котором подало звуковой сигнал. Если неизвестно, какое приложение подало сигнал, мерцать будет заголовок активного окна. - - - - - /schemas/apps/metacity/general/compositing_manager - /apps/metacity/general/compositing_manager - metacity - bool - false - - Compositing Manager - - Determines whether Metacity is a compositing manager. - - - - - Compositing-Verwaltung - Legt fest, ob Metacity als Compositing-Verwaltung agiert. - - - - Compositing Manager - Determines whether Metacity is a compositing manager. - - - - Менеджер композиции - Определяет, является ли Metacity менеджером композиции. - - - - - /schemas/apps/metacity/workspace_names/name - /apps/metacity/workspace_names/name_1 - /apps/metacity/workspace_names/name_2 - /apps/metacity/workspace_names/name_3 - /apps/metacity/workspace_names/name_4 - /apps/metacity/workspace_names/name_5 - /apps/metacity/workspace_names/name_6 - /apps/metacity/workspace_names/name_7 - /apps/metacity/workspace_names/name_8 - /apps/metacity/workspace_names/name_9 - /apps/metacity/workspace_names/name_10 - /apps/metacity/workspace_names/name_11 - /apps/metacity/workspace_names/name_12 - /apps/metacity/workspace_names/name_13 - /apps/metacity/workspace_names/name_14 - /apps/metacity/workspace_names/name_15 - /apps/metacity/workspace_names/name_16 - metacity - string - - - Name of workspace - - The name of a workspace. - - - - - Name der Arbeitsfläche - Der Name einer Arbeitsfläche. - - - - Name of workspace - The name of a workspace. - - - - Имя рабочего места - Имя рабочего места. - - - - - /schemas/apps/metacity/general/reduced_resources - /apps/metacity/general/reduced_resources - metacity - bool - false - - If true, trade off usability for less resource usage - - If true, metacity will give the user less feedback by using - wireframes, avoiding animations, or other means. This is a - significant reduction in usability for many users, but may allow - legacy applications to continue working, and may also be a - useful tradeoff for terminal servers. However, the wireframe - feature is disabled when accessibility is on. - - - - - Benutzerfreundlichkeit zu Gunsten von geringerem Ressourcenverbrauch reduzieren - Falls dieser Schlüssel wahr ist, gibt Metacity dem Benutzer weniger Rückmeldungen durch Einsatz von Gitterrahmen, keinen Animationen und anderem. Dies bedeutet für viele eine signifikante Verschlechterung der Benutzerfreundlichkeit, erlaubt es jedoch älteren Anwendungen und Terminal-Servern von Drittanbietern auch dann zu funktionieren, wenn dies sonst nicht möglich wäre. Die Gitterrahmenfunktion wird jedoch nicht verwendet, wenn die Barrierefreiheit eingeschaltet ist. - - - - If true, trade off usability for less resource usage - If true, metacity will give the user less feedback by using wireframes, avoiding animations, or other means. This is a significant reduction in usability for many users, but may allow legacy applications to continue working, and may also be a useful tradeoff for terminal servers. However, the wireframe feature is disabled when accessibility is on. - - - - Если этот ключ установлен, то Metacity использует меньше системных ресурсов за счёт пониженного удобства в использовании. - Если этот ключ установлен, Metacity предоставляет пользователю меньше обратной связи за счёт использования контурных рамок, отключения анимации и другими способами. Это существенно снижает удобство для многих пользователей, но позволяет продлить срок службы старых приложений, а также может быть полезно для терминальных серверов. Следует отметить, что отобрÐ°Ð¶ÐµÐ½Ð¸Ðµ контурной рамки отключается при включении специальных возможностей. - - - - - - - /schemas/apps/metacity/global_keybindings/run_command - /apps/metacity/global_keybindings/run_command_1 - /apps/metacity/global_keybindings/run_command_2 - /apps/metacity/global_keybindings/run_command_3 - /apps/metacity/global_keybindings/run_command_4 - /apps/metacity/global_keybindings/run_command_5 - /apps/metacity/global_keybindings/run_command_6 - /apps/metacity/global_keybindings/run_command_7 - /apps/metacity/global_keybindings/run_command_8 - /apps/metacity/global_keybindings/run_command_9 - /apps/metacity/global_keybindings/run_command_10 - /apps/metacity/global_keybindings/run_command_11 - /apps/metacity/global_keybindings/run_command_12 - metacity - string - disabled - - Run a defined command - - The keybinding that runs the correspondingly-numbered - command in /apps/metacity/keybinding_commands - - The format looks like "<Control>a" or - "<Shift><Alt>F1". - - The parser is fairly liberal and allows lower or upper case, - and also abbreviations such as "<Ctl>" and - "<Ctrl>". If you set the option to the special string - "disabled", then there will be no keybinding for this - action. - - - - - Einen festgelegten Befehl ausführen - - - - - Run a defined command - - - - - Запустить определённую команду - - - - - - /schemas/apps/metacity/keybinding_commands/command - /apps/metacity/keybinding_commands/command_1 - /apps/metacity/keybinding_commands/command_2 - /apps/metacity/keybinding_commands/command_3 - /apps/metacity/keybinding_commands/command_4 - /apps/metacity/keybinding_commands/command_5 - /apps/metacity/keybinding_commands/command_6 - /apps/metacity/keybinding_commands/command_7 - /apps/metacity/keybinding_commands/command_8 - /apps/metacity/keybinding_commands/command_9 - /apps/metacity/keybinding_commands/command_10 - /apps/metacity/keybinding_commands/command_11 - /apps/metacity/keybinding_commands/command_12 - metacity - string - - - Commands to run in response to keybindings - - The /apps/metacity/global_keybindings/run_command_N - keys define keybindings that correspond to these commands. - Pressing the keybinding for run_command_N will - execute command_N. - - - - - Bei Drücken von Tastenkombinationen auszuführende Befehle - Die Schlüssel »/apps/metacity/global_keybindings/run_command_N« legen Tastenkombinationen fest, auf deren Eingabe hin diese Befehle ausgeführt werden. Die Eingabe der Tastenkombination run_command_N führt dazu, dass command_N ausgeführt wird. - - - - Commands to run in response to keybindings - The /apps/metacity/global_keybindings/run_command_N keys define keybindings that correspond to these commands. Pressing the keybinding for run_command_N will execute command_N. - - - - Команды для запуска по комбинациям клавиш - Ключи /apps/metacity/global_keybindings/run_command_N определяют комбинации клавиш, которые соответствуют этим командам. Нажатие комбинации run_command_N запустит на выполнение command_N. - - - - - /schemas/apps/metacity/keybinding_commands/command_screenshot - /apps/metacity/keybinding_commands/command_screenshot - metacity - string - gnome-screenshot - - The screenshot command - - The /apps/metacity/global_keybindings/run_command_screenshot - key defines a keybinding which causes the command specified - by this setting to be invoked. - - - - - Der Befehl für ein Bildschirmfoto - Der Schlüssel »/apps/metacity/global_keybindings/run_command_screenshot« legt eine Tastenkombination fest, auf deren Eingabe hin der vom diesem Schlüssel angegebene Befehl ausgeführt wird. - - - - The screenshot command - The /apps/metacity/global_keybindings/run_command_screenshot key defines a keybinding which causes the command specified by this setting to be invoked. - - - - Команда для получения снимка экрана - Ключ /apps/metacity/global_keybindings/run_command_screenshot определяет комбинацию клавиш, которая вызывает запуск команды, определённой в данном ключе. - - - - - /schemas/apps/metacity/keybinding_commands/command_window_screenshot - /apps/metacity/keybinding_commands/command_window_screenshot - metacity - string - gnome-screenshot --window - - The window screenshot command - - The /apps/metacity/global_keybindings/run_command_window_screenshot - key defines a keybinding which causes the command specified - by this setting to be invoked. - - - - - Der Befehl für ein Bildschirmfoto eines Fensters - Der Schlüssel »/apps/metacity/global_keybindings/run_command_window_screenshot« legt eine Tastenkombination fest, auf deren Eingabe hin der vom diesem Schlüssel angegebene Befehl ausgeführt wird. - - - - The window screenshot command - The /apps/metacity/global_keybindings/run_command_window_screenshot key defines a keybinding which causes the command specified by this setting to be invoked. - - - - Команда для получения снимка окна - Ключ /apps/metacity/global_keybindings/run_command_window_screenshot определяет комбинацию клавиш, которая вызывает запуск команды, определённой в данном ключе. - - - - - - /schemas/apps/metacity/global_keybindings/switch_to_workspace_1 - /apps/metacity/global_keybindings/switch_to_workspace_1 - metacity - string - disabled - - Switch to workspace 1 - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Zur Arbeitsfläche 1 wechseln - - - - - Switch to workspace 1 - - - - - Переключиться на рабочее место 1 - - - - - - /schemas/apps/metacity/global_keybindings/switch_to_workspace_2 - /apps/metacity/global_keybindings/switch_to_workspace_2 - metacity - string - disabled - - Switch to workspace 2 - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Zur Arbeitsfläche 2 wechseln - - - - - Switch to workspace 2 - - - - - Переключиться на рабочее место 2 - - - - - - /schemas/apps/metacity/global_keybindings/switch_to_workspace_3 - /apps/metacity/global_keybindings/switch_to_workspace_3 - metacity - string - disabled - - Switch to workspace 3 - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Zur Arbeitsfläche 3 wechseln - - - - - Switch to workspace 3 - - - - - Переключиться на рабочее место 3 - - - - - - /schemas/apps/metacity/global_keybindings/switch_to_workspace_4 - /apps/metacity/global_keybindings/switch_to_workspace_4 - metacity - string - disabled - - Switch to workspace 4 - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Zur Arbeitsfläche 4 wechseln - - - - - Switch to workspace 4 - - - - - Переключиться на рабочее место 4 - - - - - - /schemas/apps/metacity/global_keybindings/switch_to_workspace_5 - /apps/metacity/global_keybindings/switch_to_workspace_5 - metacity - string - disabled - - Switch to workspace 5 - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Zur Arbeitsfläche 5 wechseln - - - - - Switch to workspace 5 - - - - - Переключиться на рабочее место 5 - - - - - - /schemas/apps/metacity/global_keybindings/switch_to_workspace_6 - /apps/metacity/global_keybindings/switch_to_workspace_6 - metacity - string - disabled - - Switch to workspace 6 - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Zur Arbeitsfläche 6 wechseln - - - - - Switch to workspace 6 - - - - - Переключиться на рабочее место 6 - - - - - - /schemas/apps/metacity/global_keybindings/switch_to_workspace_7 - /apps/metacity/global_keybindings/switch_to_workspace_7 - metacity - string - disabled - - Switch to workspace 7 - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Zur Arbeitsfläche 7 wechseln - - - - - Switch to workspace 7 - - - - - Переключиться на рабочее место 7 - - - - - - /schemas/apps/metacity/global_keybindings/switch_to_workspace_8 - /apps/metacity/global_keybindings/switch_to_workspace_8 - metacity - string - disabled - - Switch to workspace 8 - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Zur Arbeitsfläche 8 wechseln - - - - - Switch to workspace 8 - - - - - Переключиться на рабочее место 8 - - - - - - /schemas/apps/metacity/global_keybindings/switch_to_workspace_9 - /apps/metacity/global_keybindings/switch_to_workspace_9 - metacity - string - disabled - - Switch to workspace 9 - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Zur Arbeitsfläche 9 wechseln - - - - - Switch to workspace 9 - - - - - Переключиться на рабочее место 9 - - - - - - /schemas/apps/metacity/global_keybindings/switch_to_workspace_10 - /apps/metacity/global_keybindings/switch_to_workspace_10 - metacity - string - disabled - - Switch to workspace 10 - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Zur Arbeitsfläche 10 wechseln - - - - - Switch to workspace 10 - - - - - Переключиться на рабочее место 10 - - - - - - /schemas/apps/metacity/global_keybindings/switch_to_workspace_11 - /apps/metacity/global_keybindings/switch_to_workspace_11 - metacity - string - disabled - - Switch to workspace 11 - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Zur Arbeitsfläche 11 wechseln - - - - - Switch to workspace 11 - - - - - Переключиться на рабочее место 11 - - - - - - /schemas/apps/metacity/global_keybindings/switch_to_workspace_12 - /apps/metacity/global_keybindings/switch_to_workspace_12 - metacity - string - disabled - - Switch to workspace 12 - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Zur Arbeitsfläche 12 wechseln - - - - - Switch to workspace 12 - - - - - Переключиться на рабочее место 12 - - - - - - /schemas/apps/metacity/global_keybindings/switch_to_workspace_left - /apps/metacity/global_keybindings/switch_to_workspace_left - metacity - string - <Control><Alt>Left - - Switch to workspace on the left of the current workspace - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Zur Arbeitsfläche links von der aktuellen wechseln - - - - - Switch to workspace on the left of the current workspace - - - - - Переключиться на рабочее место слева от текущего - - - - - - /schemas/apps/metacity/global_keybindings/switch_to_workspace_right - /apps/metacity/global_keybindings/switch_to_workspace_right - metacity - string - <Control><Alt>Right - - Switch to workspace on the right of the current workspace - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Zur Arbeitsfläche rechts von der aktuellen wechseln - - - - - Switch to workspace on the right of the current workspace - - - - - Переключиться на рабочее место справа от текущего - - - - - - /schemas/apps/metacity/global_keybindings/switch_to_workspace_up - /apps/metacity/global_keybindings/switch_to_workspace_up - metacity - string - <Control><Alt>Up - - Switch to workspace above the current workspace - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Zur Arbeitsfläche oberhalb der aktuellen wechseln - - - - - Switch to workspace above the current workspace - - - - - Переключиться на рабочее место над текущим - - - - - - /schemas/apps/metacity/global_keybindings/switch_to_workspace_down - /apps/metacity/global_keybindings/switch_to_workspace_down - metacity - string - <Control><Alt>Down - - Switch to workspace below the current workspace - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Zur Arbeitsfläche unterhalb der aktuellen wechseln - - - - - Switch to workspace below the current workspace - - - - - Переключиться на рабочее место под текущим - - - - - - /schemas/apps/metacity/global_keybindings/switch_group - /apps/metacity/global_keybindings/switch_group - metacity - string - disabled - - Move between windows of an application, using a popup window - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - -This keybinding may be reversed by holding down the "shift" key; therefore, "shift" cannot be one of the keys it uses. - - - - Zwischen den Fenstern einer Anwendung unter Verwendung der Fensterliste wechseln - - - - - Move between windows of an application, using a popup window - - - - - Переключиться между окнами приложения через всплывающее окно - - - - - - /schemas/apps/metacity/global_keybindings/switch_group_backward - /apps/metacity/global_keybindings/switch_group_backward - metacity - string - disabled - - Move backward between windows of an application, using a popup window - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - -This keybinding may be reversed by holding down the "shift" key; therefore, "shift" cannot be one of the keys it uses. - - - - Rückwärts zwischen den Fenstern einer Anwendung unter Verwendung der Fensterliste wechseln - - - - - Move backwards between windows of an application, using a popup window - - - - - Переключиться в обратном порядке между окнами приложения через всплывающее окно - - - - - - /schemas/apps/metacity/global_keybindings/switch_windows - /apps/metacity/global_keybindings/switch_windows - metacity - string - <Alt>Tab - - Move between windows, using a popup window - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - -This keybinding may be reversed by holding down the "shift" key; therefore, "shift" cannot be one of the keys it uses. - - - - Zwischen den Fenstern unter Verwendung der Fensterliste wechseln - - - - - Move between windows, using a popup window - - - - - Переключиться между окнами через всплывающее окно - - - - - - /schemas/apps/metacity/global_keybindings/switch_windows_backward - /apps/metacity/global_keybindings/switch_windows_backward - metacity - string - disabled - - Move backward between windows, using a popup window - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - -This keybinding may be reversed by holding down the "shift" key; therefore, "shift" cannot be one of the keys it uses. - - - - Rückwärts zwischen den Fenstern unter Verwendung der Fensterliste wechseln - - - - - Move backwards between windows, using a popup window - - - - - Переключиться в обратном порядке между окнами с использованием всплывающего окна - - - - - - /schemas/apps/metacity/global_keybindings/switch_panels - /apps/metacity/global_keybindings/switch_panels - metacity - string - <Control><Alt>Tab - - Move between panels and the desktop, using a popup window - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - -This keybinding may be reversed by holding down the "shift" key; therefore, "shift" cannot be one of the keys it uses. - - - - Zwischen den Panels und der Arbeitsfläche unter Verwendung der Fensterliste wechseln - - - - - Move between panels and the desktop, using a popup window - - - - - Переключиться между панелями и рабочим столом через всплывающее окно - - - - - - /schemas/apps/metacity/global_keybindings/switch_panels_backward - /apps/metacity/global_keybindings/switch_panels_backward - metacity - string - disabled - - Move backward between panels and the desktop, using a popup window - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - -This keybinding may be reversed by holding down the "shift" key; therefore, "shift" cannot be one of the keys it uses. - - - - Rückwärts zwischen den Panels und der Arbeitsfläche unter Verwendung der Fensterliste wechseln - - - - - Move backwards between panels and the desktop, using a popup window - - - - - Переключиться в обратном порядке между панелями и рабочим столом через всплывающее окно - - - - - - /schemas/apps/metacity/global_keybindings/cycle_group - /apps/metacity/global_keybindings/cycle_group - metacity - string - <Alt>F6 - - Move between windows of an application immediately - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - -This keybinding may be reversed by holding down the "shift" key; therefore, "shift" cannot be one of the keys it uses. - - - - Sofort zwischen den Fenstern einer Anwendung wechseln - - - - - Move between windows of an application immediately - - - - - Переключиться между окнами приложения немедленно - - - - - - /schemas/apps/metacity/global_keybindings/cycle_group_backward - /apps/metacity/global_keybindings/cycle_group_backward - metacity - string - disabled - - Move backward between windows of an application immediately - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - -This keybinding may be reversed by holding down the "shift" key; therefore, "shift" cannot be one of the keys it uses. - - - - Sofort rückwärts zwischen den Fenstern einer Anwendung wechseln - - - - - Move backwards between windows of an application immediately - - - - - Переключиться в обратном порядке между окнами приложения немедленно - - - - - - /schemas/apps/metacity/global_keybindings/cycle_windows - /apps/metacity/global_keybindings/cycle_windows - metacity - string - <Alt>Escape - - Move between windows immediately - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - -This keybinding may be reversed by holding down the "shift" key; therefore, "shift" cannot be one of the keys it uses. - - - - Sofort zwischen Fenstern wechseln - - - - - Move between windows immediately - - - - - Переключиться между окнами немедленно - - - - - - /schemas/apps/metacity/global_keybindings/cycle_windows_backward - /apps/metacity/global_keybindings/cycle_windows_backward - metacity - string - disabled - - Move backward between windows immediately - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - -This keybinding may be reversed by holding down the "shift" key; therefore, "shift" cannot be one of the keys it uses. - - - - Sofort rückwärts zwischen Fenstern wechseln - - - - - Move backwards between windows immediately - - - - - Переключиться в обратном порядке между окнами немедленно - - - - - - /schemas/apps/metacity/global_keybindings/cycle_panels - /apps/metacity/global_keybindings/cycle_panels - metacity - string - <Control><Alt>Escape - - Move between panels and the desktop immediately - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - -This keybinding may be reversed by holding down the "shift" key; therefore, "shift" cannot be one of the keys it uses. - - - - Sofort zwischen den Panels und der Arbeitsfläche wechseln - - - - - Move between panels and the desktop immediately - - - - - Переключиться между панелями и рабочим столом немедленно - - - - - - /schemas/apps/metacity/global_keybindings/cycle_panels_backward - /apps/metacity/global_keybindings/cycle_panels_backward - metacity - string - disabled - - Move backward between panels and the desktop immediately - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - -This keybinding may be reversed by holding down the "shift" key; therefore, "shift" cannot be one of the keys it uses. - - - - Sofort rückwärts zwischen den Panels und der Arbeitsfläche wechseln - - - - - Move backward between panels and the desktop immediately - - - - - Переключиться в обратном порядке между панелями и рабочим столом немедленно - - - - - - /schemas/apps/metacity/global_keybindings/show_desktop - /apps/metacity/global_keybindings/show_desktop - metacity - string - <Control><Alt>d - - Hide all normal windows and set focus to the desktop - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Alle normalen Fenster verbergen und die Arbeitsfläche fokussieren - - - - - Hide all normal windows and set focus to the desktop - - - - - Скрыть все обычные окна и активировать рабочий стол - - - - - - /schemas/apps/metacity/global_keybindings/panel_main_menu - /apps/metacity/global_keybindings/panel_main_menu - metacity - string - <Alt>F1 - - Show the panel's main menu - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Das Hauptmenü des Panel anzeigen - - - - - Show the panel's main menu - - - - - Вызвать главное меню панели - - - - - - /schemas/apps/metacity/global_keybindings/panel_run_dialog - /apps/metacity/global_keybindings/panel_run_dialog - metacity - string - <Alt>F2 - - Show the panel's "Run Application" dialog box - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Den »Anwendung ausführen«-Dialog des Panels anzeigen - - - - - Show the panel's "Run Application" dialogue box - - - - - Показать диалоговое окно панели «Выполнить программу» - - - - - - /schemas/apps/metacity/global_keybindings/run_command_screenshot - /apps/metacity/global_keybindings/run_command_screenshot - metacity - string - Print - - Take a screenshot - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Ein Bildschirmfoto aufnehmen - - - - - Take a screenshot - - - - - Получить снимок экрана - - - - - - /schemas/apps/metacity/global_keybindings/run_command_window_screenshot - /apps/metacity/global_keybindings/run_command_window_screenshot - metacity - string - <Alt>Print - - Take a screenshot of a window - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Ein Bildschirmfoto eines Fensters aufnehmen - - - - - Take a screenshot of a window - - - - - Получить снимок окна - - - - - - /schemas/apps/metacity/global_keybindings/run_command_terminal - /apps/metacity/global_keybindings/run_command_terminal - metacity - string - disabled - - Run a terminal - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Ein Terminal starten - - - - - Run a terminal - - - - - Открыть терминал - - - - - - /schemas/apps/metacity/window_keybindings/activate_window_menu - /apps/metacity/window_keybindings/activate_window_menu - metacity - string - <Alt>space - - Activate the window menu - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Das Fenstermenü aktivieren - - - - - Activate the window menu - - - - - Активировать меню окна - - - - - - /schemas/apps/metacity/window_keybindings/toggle_fullscreen - /apps/metacity/window_keybindings/toggle_fullscreen - metacity - string - disabled - - Toggle fullscreen mode - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Vollbildmodus ein-/ausschalten - - - - - Toggle fullscreen mode - - - - - Переключить полноэкранный режим - - - - - - /schemas/apps/metacity/window_keybindings/toggle_maximized - /apps/metacity/window_keybindings/toggle_maximized - metacity - string - <Alt>F10 - - Toggle maximization state - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Maximierungszustand ein-/ausschalten - - - - - Toggle maximisation state - - - - - Переключить состояние развёрнутости на весь экран - - - - - - /schemas/apps/metacity/window_keybindings/toggle_above - /apps/metacity/window_keybindings/toggle_above - metacity - string - disabled - - Toggle whether a window will always be visible over other windows - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Ein-/Ausschalten, ob ein Fenster immer über anderen sichtbar ist - - - - - Toggle whether a window will always be visible over other windows - - - - - Будет ли окно всегда расположено поверх других окон - - - - - - /schemas/apps/metacity/window_keybindings/maximize - /apps/metacity/window_keybindings/maximize - metacity - string - disabled - - Maximize window - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Fenster maximieren - - - - - Maximise window - - - - - Развернуть окно на весь экран - - - - - - /schemas/apps/metacity/window_keybindings/unmaximize - /apps/metacity/window_keybindings/unmaximize - metacity - string - <Alt>F5 - - Restore window - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Fenstergröße wiederherstellen - - - - - Restore window - - - - - Восстановить окно - - - - - - /schemas/apps/metacity/window_keybindings/toggle_shaded - /apps/metacity/window_keybindings/toggle_shaded - metacity - string - disabled - - Toggle shaded state - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Fenster ein-/ausrollen - - - - - Toggle shaded state - - - - - Переключить состояние скрученности в полоску - - - - - - /schemas/apps/metacity/window_keybindings/minimize - /apps/metacity/window_keybindings/minimize - metacity - string - <Alt>F9 - - Minimize window - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Fenster minimieren - - - - - Minimise window - - - - - Свернуть окно - - - - - - /schemas/apps/metacity/window_keybindings/close - /apps/metacity/window_keybindings/close - metacity - string - <Alt>F4 - - Close window - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Fenster schließen - - - - - Close window - - - - - Закрыть окно - - - - - - /schemas/apps/metacity/window_keybindings/begin_move - /apps/metacity/window_keybindings/begin_move - metacity - string - <Alt>F7 - - Move window - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Fenster verschieben - - - - - Move window - - - - - Переместить окно - - - - - - /schemas/apps/metacity/window_keybindings/begin_resize - /apps/metacity/window_keybindings/begin_resize - metacity - string - <Alt>F8 - - Resize window - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Fenstergröße ändern - - - - - Resize window - - - - - Изменить размер окна - - - - - - /schemas/apps/metacity/window_keybindings/toggle_on_all_workspaces - /apps/metacity/window_keybindings/toggle_on_all_workspaces - metacity - string - disabled - - Toggle whether window is on all workspaces or just one - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Festlegen, ob das Fenster auf allen oder nur einer Arbeitsfläche sichtbar ist - - - - - Toggle whether window is on all workspaces or just one - - - - - Будет ли окно помещено на всех рабочих местах или только на одном - - - - - - /schemas/apps/metacity/window_keybindings/move_to_workspace_1 - /apps/metacity/window_keybindings/move_to_workspace_1 - metacity - string - disabled - - Move window to workspace 1 - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Fenster auf Arbeitsfläche 1 verschieben - - - - - Move window to workspace 1 - - - - - Переместить окно на рабочее место 1 - - - - - - /schemas/apps/metacity/window_keybindings/move_to_workspace_2 - /apps/metacity/window_keybindings/move_to_workspace_2 - metacity - string - disabled - - Move window to workspace 2 - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Fenster auf Arbeitsfläche 2 verschieben - - - - - Move window to workspace 2 - - - - - Переместить окно на рабочее место 2 - - - - - - /schemas/apps/metacity/window_keybindings/move_to_workspace_3 - /apps/metacity/window_keybindings/move_to_workspace_3 - metacity - string - disabled - - Move window to workspace 3 - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Fenster auf Arbeitsfläche 3 verschieben - - - - - Move window to workspace 3 - - - - - Переместить окно на рабочее место 3 - - - - - - /schemas/apps/metacity/window_keybindings/move_to_workspace_4 - /apps/metacity/window_keybindings/move_to_workspace_4 - metacity - string - disabled - - Move window to workspace 4 - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Fenster auf Arbeitsfläche 4 verschieben - - - - - Move window to workspace 4 - - - - - Переместить окно на рабочее место 4 - - - - - - /schemas/apps/metacity/window_keybindings/move_to_workspace_5 - /apps/metacity/window_keybindings/move_to_workspace_5 - metacity - string - disabled - - Move window to workspace 5 - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Fenster auf Arbeitsfläche 5 verschieben - - - - - Move window to workspace 5 - - - - - Переместить окно на рабочее место 5 - - - - - - /schemas/apps/metacity/window_keybindings/move_to_workspace_6 - /apps/metacity/window_keybindings/move_to_workspace_6 - metacity - string - disabled - - Move window to workspace 6 - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Fenster auf Arbeitsfläche 6 verschieben - - - - - Move window to workspace 6 - - - - - Переместить окно на рабочее место 6 - - - - - - /schemas/apps/metacity/window_keybindings/move_to_workspace_7 - /apps/metacity/window_keybindings/move_to_workspace_7 - metacity - string - disabled - - Move window to workspace 7 - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Fenster auf Arbeitsfläche 7 verschieben - - - - - Move window to workspace 7 - - - - - Переместить окно на рабочее место 7 - - - - - - /schemas/apps/metacity/window_keybindings/move_to_workspace_8 - /apps/metacity/window_keybindings/move_to_workspace_8 - metacity - string - disabled - - Move window to workspace 8 - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Fenster auf Arbeitsfläche 8 verschieben - - - - - Move window to workspace 8 - - - - - Переместить окно на рабочее место 8 - - - - - - /schemas/apps/metacity/window_keybindings/move_to_workspace_9 - /apps/metacity/window_keybindings/move_to_workspace_9 - metacity - string - disabled - - Move window to workspace 9 - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Fenster auf Arbeitsfläche 9 verschieben - - - - - Move window to workspace 9 - - - - - Переместить окно на рабочее место 9 - - - - - - /schemas/apps/metacity/window_keybindings/move_to_workspace_10 - /apps/metacity/window_keybindings/move_to_workspace_10 - metacity - string - disabled - - Move window to workspace 10 - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Fenster auf Arbeitsfläche 10 verschieben - - - - - Move window to workspace 10 - - - - - Переместить окно на рабочее место 10 - - - - - - /schemas/apps/metacity/window_keybindings/move_to_workspace_11 - /apps/metacity/window_keybindings/move_to_workspace_11 - metacity - string - disabled - - Move window to workspace 11 - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Fenster auf Arbeitsfläche 11 verschieben - - - - - Move window to workspace 11 - - - - - Переместить окно на рабочее место 11 - - - - - - /schemas/apps/metacity/window_keybindings/move_to_workspace_12 - /apps/metacity/window_keybindings/move_to_workspace_12 - metacity - string - disabled - - Move window to workspace 12 - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Fenster auf Arbeitsfläche 12 verschieben - - - - - Move window to workspace 12 - - - - - Переместить окно на рабочее место 12 - - - - - - /schemas/apps/metacity/window_keybindings/move_to_workspace_left - /apps/metacity/window_keybindings/move_to_workspace_left - metacity - string - <Control><Shift><Alt>Left - - Move window one workspace to the left - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Fenster eine Arbeitsfläche nach links verschieben - - - - - Move window one workspace to the left - - - - - Переместить окно на одно рабочее место влево - - - - - - /schemas/apps/metacity/window_keybindings/move_to_workspace_right - /apps/metacity/window_keybindings/move_to_workspace_right - metacity - string - <Control><Shift><Alt>Right - - Move window one workspace to the right - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Fenster eine Arbeitsfläche nach rechts verschieben - - - - - Move window one workspace to the right - - - - - Переместить окно на одно рабочее место вправо - - - - - - /schemas/apps/metacity/window_keybindings/move_to_workspace_up - /apps/metacity/window_keybindings/move_to_workspace_up - metacity - string - <Control><Shift><Alt>Up - - Move window one workspace up - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Fenster eine Arbeitsfläche nach oben verschieben - - - - - Move window one workspace up - - - - - Переместить окно на одно рабочее место вверх - - - - - - /schemas/apps/metacity/window_keybindings/move_to_workspace_down - /apps/metacity/window_keybindings/move_to_workspace_down - metacity - string - <Control><Shift><Alt>Down - - Move window one workspace down - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Fenster eine Arbeitsfläche nach unten verschieben - - - - - Move window one workspace down - - - - - Переместить окно на одно рабочее место вниз - - - - - - /schemas/apps/metacity/window_keybindings/raise_or_lower - /apps/metacity/window_keybindings/raise_or_lower - metacity - string - disabled - - Raise window if it's covered by another window, otherwise lower it - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Fenster anheben, falls es verdeckt ist, andernfalls absenken - - - - - Raise window if it's covered by another window, otherwise lower it - - - - - Поднять окно на передний план, если оно заслонено другими, иначе опустить его - - - - - - /schemas/apps/metacity/window_keybindings/raise - /apps/metacity/window_keybindings/raise - metacity - string - disabled - - Raise window above other windows - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Fenster vor die anderen Fenster anheben - - - - - Raise window above other windows - - - - - Поднять окно на передний план - - - - - - /schemas/apps/metacity/window_keybindings/lower - /apps/metacity/window_keybindings/lower - metacity - string - disabled - - Lower window below other windows - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Fenster hinter die anderen Fenster absenken - - - - - Lower window below other windows - - - - - Поместить окно под другими окнами - - - - - - /schemas/apps/metacity/window_keybindings/maximize_vertically - /apps/metacity/window_keybindings/maximize_vertically - metacity - string - disabled - - Maximize window vertically - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Fenster vertikal maximieren - - - - - Maximise window vertically - - - - - Развернуть окно на весь экран вертикально - - - - - - /schemas/apps/metacity/window_keybindings/maximize_horizontally - /apps/metacity/window_keybindings/maximize_horizontally - metacity - string - disabled - - Maximize window horizontally - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Fenster horizontal maximieren - - - - - Maximise window horizontally - - - - - Развернуть окно на весь экран горизонтально - - - - - - /schemas/apps/metacity/window_keybindings/move_to_corner_nw - /apps/metacity/window_keybindings/move_to_corner_nw - metacity - string - disabled - - Move window to north-west (top left) corner - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Fenster in obere linke Ecke des Bildschirms verschieben - - - - - Move window to north-west (top left) corner - - - - - Переместить окно в северо-западный (верхний левый) угол - - - - - - /schemas/apps/metacity/window_keybindings/move_to_corner_ne - /apps/metacity/window_keybindings/move_to_corner_ne - metacity - string - disabled - - Move window to north-east (top right) corner - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Fenster in obere rechte Ecke des Bildschirms verschieben - - - - - Move window to north-east (top right) corner - - - - - Переместить окно в северо-восточный (верхний правый) угол - - - - - - /schemas/apps/metacity/window_keybindings/move_to_corner_sw - /apps/metacity/window_keybindings/move_to_corner_sw - metacity - string - disabled - - Move window to south-west (bottom left) corner - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Fenster in untere linke Ecke des Bildschirms verschieben - - - - - Move window to south-west (bottom left) corner - - - - - Переместить окно в юго-западный (нижний левый) угол - - - - - - /schemas/apps/metacity/window_keybindings/move_to_corner_se - /apps/metacity/window_keybindings/move_to_corner_se - metacity - string - disabled - - Move window to south-east (bottom right) corner - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Fenster in untere rechte Ecke des Bildschirms verschieben - - - - - Move window to south-east (bottom right) corner - - - - - Переместить окно в юго-восточный (нижний правый) угол - - - - - - /schemas/apps/metacity/window_keybindings/move_to_side_n - /apps/metacity/window_keybindings/move_to_side_n - metacity - string - disabled - - Move window to north (top) side of screen - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Fenster zur oberen Seite des Bildschirms verschieben - - - - - Move window to north (top) side of screen - - - - - Переместить окно к северной (верхней) стороне экрана - - - - - - /schemas/apps/metacity/window_keybindings/move_to_side_s - /apps/metacity/window_keybindings/move_to_side_s - metacity - string - disabled - - Move window to south (bottom) side of screen - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Fenster zur unteren Seite des Bildschirms verschieben - - - - - Move window to south (bottom) side of screen - - - - - Переместить окно к южной (нижней) стороне экрана - - - - - - /schemas/apps/metacity/window_keybindings/move_to_side_e - /apps/metacity/window_keybindings/move_to_side_e - metacity - string - disabled - - Move window to east (right) side of screen - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Fenster zur rechten Seite des Bildschirms verschieben - - - - - Move window to east (right) side of screen - - - - - Переместить окно к западной (правой) стороне экрана - - - - - - /schemas/apps/metacity/window_keybindings/move_to_side_w - /apps/metacity/window_keybindings/move_to_side_w - metacity - string - disabled - - Move window to west (left) side of screen - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Fenster zur linken Seite des Bildschirms verschieben - - - - - Move window to west (left) side of screen - - - - - Переместить окно к восточной (левой) стороне экрана - - - - - - /schemas/apps/metacity/window_keybindings/move_to_center - /apps/metacity/window_keybindings/move_to_center - metacity - string - disabled - - Move window to center of screen - The format looks like "<Control>a" or "<Shift><Alt>F1". - -The parser is fairly liberal and allows lower or upper case, and also abbreviations such as "<Ctl>" and "<Ctrl>". If you set the option to the special string "disabled", then there will be no keybinding for this action. - - - - Fenster in die Mitte des Bildschirms verschieben - - - - - Move window to centre of screen - - - - - Переместить окно в центр экрана - - - - - - - - - /schemas/apps/metacity/general/application_based - /apps/metacity/general/application_based - metacity - bool - false - - (Not implemented) Navigation works in terms of applications not windows - - If true, then Metacity works in terms of applications rather than - windows. The concept is a bit abstract, but in general an - application-based setup is more like the Mac and less like - Windows. When you focus a window in application-based mode, all - the windows in the application will be raised. Also, in - application-based mode, focus clicks are not passed through to - windows in other applications. Application-based mode is, - however, largely unimplemented at the moment. - - - - - (Nicht implementiert) Navigation arbeitet anwendungs- und nicht fensterorientiert - Falls dieser Schlüssel gesetzt ist, arbeitet Metacity anwendungs- und nicht fensterorientiert. Das Konzept ist etwas abstrakt, aber generell verhält sich der Computer im anwendungsorientierten Modus eher wie ein Mac und weniger wie Windows. Wenn Sie im anwendungsorientierten Modus ein Fenster fokussieren, werden alle zur Anwendung gehörigen Fenster angehoben. Außerdem werden in diesem Modus Mausklicks zum Fokussieren nicht an Fenster von anderen Anwendungen weitergereicht. Allerdings ist der anwendungsorientierte Modus momentan in weiten Teilen nicht implementiert. - - - - (Not implemented) Navigation works in terms of applications not windows - If true, then Metacity works in terms of applications rather than windows. The concept is a bit abstract, but in general an application-based setup is more like the Mac and less like Windows. When you focus a window in application-based mode, all the windows in the application will be raised. Also, in application-based mode, focus clicks are not passed through to windows in other applications. Application-based mode is, however, largely unimplemented at the moment. - - - - (Не реализовано) Навигация ведётся по приложениям, а не по окнам - Если этот ключ установлен, Metacity работает с приложениями, а не с окнами. Архитектура, основанная на приложениях, больше похожа на системы Mac, чем на Windows. При активизации окна в режиме, основанном на приложениях, поднимаются все окна приложения. Кроме того, в режиме, основанном на приложениях, щелчки мышью не передаются в окна других приложений. Реализация режима, основанного на приложениях, в настоящий момент ещё весьма далека от завершения. - - - - - /schemas/apps/metacity/general/disable_workarounds - /apps/metacity/general/disable_workarounds - metacity - bool - false - - Disable misfeatures that are required by old or broken - applications - - Some applications disregard specifications in ways that result in - window manager misfeatures. This option puts Metacity in a - rigorously correct mode, which gives a more consistent user - interface, provided one does not need to run any misbehaving - applications. - - - - - (Absichtliche) Fehlverhalten deaktivieren, die von alten oder defekten Anwendungen benötigt werden. - Einige Anwendungen halten sich nicht an Spezifikationen, wodurch Fehlverhalten bei Fensterverwaltungen entstehen können. Diese Option schaltet Metacity in einen rigoros vorbildlichen Modus, der eine konsistentere Benutzerumgebung bringt, wenn Sie keine sich falsch verhaltenden Anwendungen benötigen. - - - - Disable misfeatures that are required by old or broken applications - Some applications disregard specifications in ways that result in window manager misfeatures. This option puts Metacity in a rigorously correct mode, which gives a more consistent user interface, provided one does not need to run any misbehaving applications. - - - - Отключить неправильные свойства, нужные старым или сломанным приложениям - Некоторые приложения игнорируют спецификации, поэтому в менеджер окон встроены возможности для обхода ошибок в этих приложениях. Этот ключ переводит Metacity в режим строгого соответствия спецификациям, что даёт всем окнам более последовательный внешний вид, но при этом приложения с ошибками могут работать неправильно. - - - - - - - - - diff --git a/gconf/schemas/mixer.schemas b/gconf/schemas/mixer.schemas deleted file mode 100644 index a0d87d7..0000000 --- a/gconf/schemas/mixer.schemas +++ /dev/null @@ -1,72 +0,0 @@ - - - - - /schemas/apps/mixer_applet/prefs/channel - mixer-applet - int - 0 - - Channel controlled by applet. Only for OSS setups - - - - Vom Applet geregelter Kanel. Nur für OSS-Umgebungen. - - - - Channel controlled by applet. Only for OSS setups - - - - Канал, управляемый апплетом. Только для настроек OSS - - - - - /schemas/apps/mixer_applet/prefs/mute - mixer-applet - bool - false - - Saved mute state - - - - Gespeicherter Stummschaltstatus - - - - Saved mute state - - - - Сохранённое состояние выключенного звука - - - - - /schemas/apps/mixer_applet/prefs/vol - mixer-applet - int - -1 - - Saved volume to restore on startup - - - - Gespeicherte, beim Neustart wiederherzustellende Lautstärke - - - - Saved volume to restore on startup - - - - Сохранённый уровень громкости для восстановления при следующем запуске - - - - - - diff --git a/gconf/schemas/multiload.schemas b/gconf/schemas/multiload.schemas deleted file mode 100644 index 3ca99aa..0000000 --- a/gconf/schemas/multiload.schemas +++ /dev/null @@ -1,647 +0,0 @@ - - - - - /schemas/apps/multiload/prefs/view_cpuload - multiload-applet-2 - bool - true - - Enable CPU load graph - - - - Prozessorlastgraph aktivieren - - - - Enable CPU load graph - - - - Включить график загрузки процессора - - - - /schemas/apps/multiload/prefs/view_memload - multiload-applet-2 - bool - false - - Enable memory load graph - - - - Speicherlastgraph aktivieren - - - - Enable memory load graph - - - - Включить график загрузки памяти - - - - /schemas/apps/multiload/prefs/view_netload - multiload-applet-2 - bool - false - - Enable network load graph - - - - Netzwerklastgraph aktivieren - - - - Enable network load graph - - - - Включить график загрузки сети - - - - /schemas/apps/multiload/prefs/view_swapload - multiload-applet-2 - bool - false - - Enable swap load graph - - - - Auslagerungslastgraph aktivieren - - - - Enable swap load graph - - - - Включить график загрузки подкачки - - - - /schemas/apps/multiload/prefs/view_loadavg - multiload-applet-2 - bool - false - - Enable load average graph - - - - Lastmittelgraph aktivieren - - - - Enable load average graph - - - - Включить график средней загрузки - - - - /schemas/apps/multiload/prefs/view_diskload - multiload-applet-2 - bool - false - - Enable disk load graph - - - - Plattenlastgraph aktivieren - - - - Enable disk load graph - - - - Включить график загрузки диска - - - - - /schemas/apps/multiload/prefs/speed - multiload-applet-2 - int - 500 - - Applet refresh rate in milliseconds - - - - Aktualisierungsintervall des Applets in Millisekunden - - - - Applet refresh rate in milliseconds - - - - Частота обновления в миллисекундах - - - - /schemas/apps/multiload/prefs/size - multiload-applet-2 - int - 40 - - Graph size - For horizontal panels, the width of the graphs in pixels. For vertical panels, this is the height of the graphs. - - - - Graphgröße - Die Breite des Graphen in Pixel, falls das Panel horizontal ist. Falls es vertikal ist, ist dies die Höhe des Graphen. - - - - Graph size - For horizontal panels, the width of the graphs in pixels. For vertical panels, this is the height of the graphs. - - - - Размер графика - Для горизонтальной панели - ширина в пикселях. Для вертикальной панели - высота графиков. - - - - - /schemas/apps/multiload/prefs/cpuload_color0 - multiload-applet-2 - string - #0072b3 - - Graph color for user-related CPU activity - - - - Graphfarbe für benutzerseitige Prozessoraktivität - - - - Graph colour for user-related CPU activity - - - - Цвет графика для отображения загрузки процессора пользователем - - - - /schemas/apps/multiload/prefs/cpuload_color1 - multiload-applet-2 - string - #0092e6 - - Graph color for system-related CPU activity - - - - Graphfarbe für systemseitige Prozessoraktivität - - - - Graph colour for system-related CPU activity - - - - Цвет графика для отображения системной загрузки процессора - - - - /schemas/apps/multiload/prefs/cpuload_color2 - multiload-applet-2 - string - #00a3ff - - Graph color for nice-related CPU activity - - - - Graphfarbe für »nice«-seitige Prozessoraktivität - - - - Graph colour for nice-related CPU activity - - - - Цвет графика для отображения загрузки процессора с учетом приоритета - - - - /schemas/apps/multiload/prefs/cpuload_color3 - multiload-applet-2 - string - #002f3d - - Graph color for iowait related CPU activity - - - - Graphfarbe für E/A-bezogene Prozessoraktivität - - - - Graph colour for iowait related CPU activity - - - - Цвет графика для отображения загрузки процессора с учётом iowait - - - - /schemas/apps/multiload/prefs/cpuload_color4 - multiload-applet-2 - string - #000000 - - CPU graph background color - - - - Hintergrundfarbe des Prozessorgraphen - - - - CPU graph background colour - - - - Цвет фона графика загрузки процессора - - - - - /schemas/apps/multiload/prefs/memload_color0 - multiload-applet-2 - string - #00b35b - - Graph color for user-related memory usage - - - - Graphfarbe für benutzerseitige Speicherlast - - - - Graph colour for user-related memory usage - - - - Цвет графика для отображения использования памяти пользователем - - - - /schemas/apps/multiload/prefs/memload_color1 - multiload-applet-2 - string - #00e675 - - Graph color for shared memory - - - - Graphfarbe für gemeinsamen Speicher - - - - Graph colour for shared memory - - - - Цвет графика для отображения разделяемой памяти - - - - /schemas/apps/multiload/prefs/memload_color2 - multiload-applet-2 - string - #00ff82 - - Graph color for buffer memory - - - - Graphfarbe für Pufferspeicher - - - - Graph colour for buffer memory - - - - Цвет графика для отображения буфера памяти - - - - /schemas/apps/multiload/prefs/memload_color3 - multiload-applet-2 - string - #AAF5D0 - - Graph color for cached memory - - - - Graphfarbe für Cache-Speicher - - - - Graph colour for cached memory - - - - Цвет графика для отображения кэшированной памяти - - - - /schemas/apps/multiload/prefs/memload_color4 - multiload-applet-2 - string - #000000 - - Memory graph background color - - - - Hintergrundfarbe des Speichergraphen - - - - Memory graph background colour - - - - Цвет фона графика для отображения загрузки памяти - - - - - /schemas/apps/multiload/prefs/netload2_color0 - multiload-applet-2 - string - #fce94f - - Graph color for input network activity - - - - Graphfarbe für eingehende Netzwerkaktivität - - - - Graph colour for input network activity - - - - Цвет графика для отображения входящего трафика в сети - - - - /schemas/apps/multiload/prefs/netload2_color1 - multiload-applet-2 - string - #edd400 - - Graph color for output network activity - - - - Graphfarbe für ausgehende Netzwerkaktivität - - - - Graph colour for output network activity - - - - Цвет графика для отображения исходящего трафика в сети - - - - /schemas/apps/multiload/prefs/netload2_color2 - multiload-applet-2 - string - #c4a000 - - Graph color for loopback network usage - - - - Graphfarbe für Loopback-Schleifen-Netzwerkaktivität - - - - Graph colour for loopback network usage - - - - Цвет графика для отображения трафика на кольцевом сетевом интерфейсе - - - - /schemas/apps/multiload/prefs/netload2_color3 - multiload-applet-2 - string - #000000 - - Network graph background color - - - - Hintergrundfarbe des Netzwerkgraphen - - - - Network graph background colour - - - - Цвет фона графика для отображения загрузки сети - - - - - /schemas/apps/multiload/prefs/swapload_color0 - multiload-applet-2 - string - #8b00c3 - - Graph color for user-related swap usage - - - - Graphfarbe für benutzerseitige Auslagerungslast - - - - Graph colour for user-related swap usage - - - - Цвет графика для отображения использования подкачки пользователем - - - - /schemas/apps/multiload/prefs/swapload_color1 - multiload-applet-2 - string - #000000 - - Swap graph background color - - - - Die Hintergrundfarbe des Auslagerungsgraphen - - - - Swap graph background colour - - - - Цвет фона графика для отображения загрузки подкачки - - - - - /schemas/apps/multiload/prefs/loadavg_color0 - multiload-applet-2 - string - #d50000 - - Graph color for load average - - - - Graphfarbe für Lastmittel - - - - Graph colour for load average - - - - Цвет графика для отображения средней загрузки - - - - /schemas/apps/multiload/prefs/loadavg_color1 - multiload-applet-2 - string - #000000 - - Load graph background color - - - - Hintergrundfarbe des Auslastungsgraphen - - - - Load graph background colour - - - - Цвет фона графика для отображения загрузки системы - - - - - /schemas/apps/multiload/prefs/diskload_color0 - multiload-applet-2 - string - #C65000 - - Graph color for disk read - - - - Graphfarbe für das Lesen von Platte - - - - Graph colour for disk read - - - - Цвет графика для чтения с диска - - - - /schemas/apps/multiload/prefs/diskload_color1 - multiload-applet-2 - string - #FF6700 - - Graph color for disk write - - - - Graphfarbe für das Schreiben auf Platte - - - - Graph colour for disk write - - - - Цвет графика для записи на диск - - - - /schemas/apps/multiload/prefs/diskload_color2 - multiload-applet-2 - string - #000000 - - Background color for disk load graph - - - - Hintergrundfarbe für den Plattenlastgraphen - - - - Background colour for disk load graph - - - - Цвет фона для графика загрузки диска - - - - /schemas/apps/multiload/prefs/system_monitor - multiload_applet-2 - string - gnome-system-monitor.desktop - - The desktop description file to execute as the system monitor - - - - Die beim Anklicken zu startende .desktop-Datei - - - - The desktop description file to execute as the system monitor - - - - Файл описания приложения, запускаемого в качестве системного монитора - - - - - diff --git a/gconf/schemas/netstatus.schemas b/gconf/schemas/netstatus.schemas deleted file mode 100644 index eaa79a9..0000000 --- a/gconf/schemas/netstatus.schemas +++ /dev/null @@ -1,73 +0,0 @@ - - - - - /schemas/apps/netstatus_applet/prefs/interface - netstatus-applet - string - - - Network interface - The Network Interface monitored by the Network Monitor. - - - - Netzwerkschnittstelle - Die von der Netzwerküberwachung überwachte Netzwerkschnittstelle. - - - - Network interface - The Network Interface monitored by the Network Monitor. - - - - Сетевой интерфейс - Сетевой интерфейс, наблюдаемый с помощью монитора сети. - - - - - - /schemas/apps/netstatus_applet/config_tool - /apps/netstatus_applet/config_tool - netstatus-applet - string - - - Network configuration tool - - This key specifies the name of the network configuration tool - which should be invoked when the "Configure" button in the - properties dialog is clicked. - - If the configuration tool can take a parameter of the interface - to configure you may use %i in the string and it will be - substituted with the interface name before invoking the - configuration tool. - - For example, gnome-system-tool's network-admin tool takes - the interface name through a --configure parameter. Thus, - you could set the value of this key to be: - "network-admin --configure %i". - - - - - Werkzeug zur Netzwerkkonfiguration - Dieses Werkzeug gibt den Namen des Werkzeugs zur Netzwerkkonfiguration an, das aufgerufen werden soll, sobald der »Konfigurieren«-Knopf angeklickt wird. Falls das Konfigurationswerkzeug einen Parameter erwartet, der die zu konfigurierende Schnittstelle angibt, können Sie in der Zeichenkette »%i« einfügen, das dann vor dem Aufruf mit dem Schnittstellennamen versehen wird. Beispielsweise erwartet das Werkzeug »network-admin« der GNOME-Systemwerkzeuge den Schnittstellennamen nach dem Parameter »--configure«. In diesem Falle müsste der Schlüsselwert also »network-admin --configure %i« sein. - - - - Network configuration tool - This key specifies the name of the network configuration tool which should be invoked when the "Configure" button in the properties dialogue is clicked. If the configuration tool can take a parameter of the interface to configure you may use %i in the string and it will be substituted with the interface name before invoking the configuration tool. For example, gnome-system-tool's network-admin tool takes the interface name through a --configure parameter. Thus, you could set the value of this key to be: "network-admin --configure %i". - - - - Утилита настройки сети - Этот ключ определяет имя утилиты настройки сети, которая будет вызвана по нажатию кнопки «Настроить» в диалоге настроек. Если утилита настройки может принимать параметр интерфейса для конфигурации, можно использовать шаблон %i в строке, и он будет заменён именем интерфейса. Например, утилита gnome-system-tool принимает интерфейс через параметр --configure. Таким образом, значение этого ключа может иметь вид «network-admin --configure %i». - - - - - diff --git a/gconf/schemas/notification-daemon.schemas b/gconf/schemas/notification-daemon.schemas deleted file mode 100644 index c261e94..0000000 --- a/gconf/schemas/notification-daemon.schemas +++ /dev/null @@ -1,93 +0,0 @@ - - - - - /schemas/apps/notification-daemon/popup_location - /apps/notification-daemon/popup_location - notification-daemon - string - top_right - - Popup location - Default popup location on the workspace for stack notifications. Allowed values: "top_left","top_right","bottom_left" and "bottom_right" - - - - Popup Position - Vorgegebene Position auf der Arbeitsfläche für gestapelte Benachrichtigungen. Mögliche Werte: »top_left«, »top_right«, »bottom_left« und »bottom_right« - - - - Положение всплывающего окна - Положение по умолчанию для всплывающего окна при отображении уведомлений. Допустимые значения: "top_left", "top_right", "bottom_left" и "bottom_right" - - - - - /schemas/apps/notification-daemon/theme - /apps/notification-daemon/theme - notification-daemon - string - slider - - Current theme - The theme used when displaying notifications. - - - - Aktuelles Thema - Das Thema um Benachrichtigungen anzuzeigen. - - - - Текущая тема - Тема, используемая при отображении уведомлений. - - - - - /schemas/apps/notification-daemon/sound_enabled - /apps/notification-daemon/sound_enabled - notification-daemon - bool - 1 - - Sound Enabled - Turns on and off sound support for notifications. - - - - Klang aktiviert - Schaltet Klänge für Benachrichtigungen ein oder aus. - - - - Включить звук - Включение и выключение поддержки звука в уведомлениях. - - - - - /schemas/apps/notification-daemon/default_sound - /apps/notification-daemon/default_sound - notification-daemon - string - - - Default Sound - The default sound file used unless a notification supplies the 'sound-file' or 'suppress-sound' hint. Leave empty for no default sound. - - - - Vorgegebener Klang - Die vorgegebene Klangdatei. Diese Einstellung wird überschrieben, wenn eine Anwendung die Hints »sound-file« oder »suppress-sound« verwendet. Leer lassen, wenn keine vorgegebene Klangdatei verwendet werden soll. - - - - Звук по умолчанию - Звук, проигрываемый по умолчанию, если в уведомлении не указаны параметры «sound-file» или «suppress-sound». Чтобы отключить звук по умолчанию, оставьте поле пустым. - - - - - diff --git a/gconf/schemas/panel-compatibility.schemas b/gconf/schemas/panel-compatibility.schemas deleted file mode 100644 index be3d232..0000000 --- a/gconf/schemas/panel-compatibility.schemas +++ /dev/null @@ -1,546 +0,0 @@ - - - - - - - - - /schemas/apps/panel/default_profiles/medium/general/panel_id_list - panel - list - string - [00000001,00000002] - - - - - /schemas/apps/panel/default_profiles/medium/general/applet_id_list - panel - list - string - [00000001,00000002,00000003,00000004,show_desktop_button] - - - - - /schemas/apps/panel/default_profiles/medium/general/object_id_list - panel - list - string - [00000001,00000002] - - - - - /schemas/apps/panel/default_profiles/medium/panels/00000001/panel_type - panel - string - edge-panel - - - - - /schemas/apps/panel/default_profiles/medium/panels/00000001/panel_size - panel - string - panel-size-x-small - - - - - /schemas/apps/panel/default_profiles/medium/panels/00000001/panel_hide_mode - panel - int - 0 - - - - - /schemas/apps/panel/default_profiles/medium/panels/00000001/panel_hide_state - panel - int - 0 - - - - - /schemas/apps/panel/default_profiles/medium/panels/00000001/screen - panel - int - 0 - - - - - /schemas/apps/panel/default_profiles/medium/panels/00000001/monitor - panel - int - 0 - - - - - /schemas/apps/panel/default_profiles/medium/panels/00000001/screen_edge - panel - string - panel-edge-bottom - - - - - /schemas/apps/panel/default_profiles/medium/panels/00000001/hide_buttons_enabled - panel - bool - false - - - - - /schemas/apps/panel/default_profiles/medium/panels/00000001/hide_button_pixmaps_enabled - panel - bool - false - - - - - /schemas/apps/panel/default_profiles/medium/panels/00000001/panel_background_type - panel - string - no-background - - - - - /schemas/apps/panel/default_profiles/medium/panels/00000001/panel_background_pixmap - panel - string - - - - - - /schemas/apps/panel/default_profiles/medium/panels/00000001/panel_background_pixmap_fit - panel - bool - true - - - - - /schemas/apps/panel/default_profiles/medium/panels/00000001/panel_background_pixmap_stretch - panel - bool - false - - - - - /schemas/apps/panel/default_profiles/medium/panels/00000001/panel_background_pixmap_rotate - panel - bool - true - - - - - /schemas/apps/panel/default_profiles/medium/panels/00000001/panel_background_color - panel - string - #ffffff - - - - - /schemas/apps/panel/default_profiles/medium/panels/00000001/panel_background_color_alpha - panel - int - 65535 - - - - - /schemas/apps/panel/default_profiles/medium/objects/00000001/object_type - panel - string - launcher-object - - - - - /schemas/apps/panel/default_profiles/medium/objects/00000001/launcher_location - panel - string - applications:///nautilus.desktop - - - - - /schemas/apps/panel/default_profiles/medium/objects/00000001/panel_id - panel - string - 00000002 - - - - - /schemas/apps/panel/default_profiles/medium/objects/00000001/position - panel - int - 20 - - - - - /schemas/apps/panel/default_profiles/medium/objects/00000001/panel_right_stick - panel - bool - false - - - - - /schemas/apps/panel/default_profiles/medium/objects/00000002/object_type - panel - string - launcher-object - - - - - /schemas/apps/panel/default_profiles/medium/objects/00000002/launcher_location - panel - string - applications:///System/gnome-terminal.desktop - - - - - /schemas/apps/panel/default_profiles/medium/objects/00000002/panel_id - panel - string - 00000002 - - - - - /schemas/apps/panel/default_profiles/medium/objects/00000002/position - panel - int - 25 - - - - - /schemas/apps/panel/default_profiles/medium/objects/00000002/panel_stick - panel - bool - false - - - - - /schemas/apps/panel/default_profiles/medium/applets/show_desktop_button/object_type - panel - string - bonobo-applet - - - - - /schemas/apps/panel/default_profiles/medium/applets/show_desktop_button/panel_id - panel - string - 00000001 - - - - - /schemas/apps/panel/default_profiles/medium/applets/show_desktop_button/position - panel - int - 0 - - - - - /schemas/apps/panel/default_profiles/medium/applets/show_desktop_button/bonobo_iid - panel - string - OAFIID:GNOME_ShowDesktopApplet - - - - - /schemas/apps/panel/default_profiles/medium/applets/show_desktop_button/panel_right_stick - panel - bool - false - - - - - /schemas/apps/panel/default_profiles/medium/applets/00000001/object_type - panel - string - bonobo-applet - - - - - /schemas/apps/panel/default_profiles/medium/applets/00000001/panel_id - panel - string - 00000001 - - - - - /schemas/apps/panel/default_profiles/medium/applets/00000001/position - panel - int - 1 - - - - - /schemas/apps/panel/default_profiles/medium/applets/00000001/bonobo_iid - panel - string - OAFIID:GNOME_TasklistApplet - - - - - /schemas/apps/panel/default_profiles/medium/applets/00000001/panel_right_stick - panel - bool - false - - - - - /schemas/apps/panel/default_profiles/medium/applets/00000002/object_type - panel - string - bonobo-applet - - - - - /schemas/apps/panel/default_profiles/medium/applets/00000002/panel_id - panel - string - 00000001 - - - - - /schemas/apps/panel/default_profiles/medium/applets/00000002/position - panel - int - 0 - - - - - /schemas/apps/panel/default_profiles/medium/applets/00000002/bonobo_iid - panel - string - OAFIID:GNOME_PagerApplet - - - - - /schemas/apps/panel/default_profiles/medium/applets/00000002/panel_right_stick - panel - bool - true - - - - - /schemas/apps/panel/default_profiles/medium/applets/00000003/object_type - panel - string - bonobo-applet - - - - - /schemas/apps/panel/default_profiles/medium/applets/00000003/panel_id - panel - string - 00000002 - - - - - /schemas/apps/panel/default_profiles/medium/applets/00000003/position - panel - int - -1 - - - - - /schemas/apps/panel/default_profiles/medium/applets/00000003/bonobo_iid - panel - string - OAFIID:GNOME_MixerApplet - - - - - /schemas/apps/panel/default_profiles/medium/applets/00000003/panel_right_stick - panel - bool - true - - - - - /schemas/apps/panel/default_profiles/medium/applets/00000004/object_type - panel - string - bonobo-applet - - - - - /schemas/apps/panel/default_profiles/medium/applets/00000004/panel_id - panel - string - 00000002 - - - - - /schemas/apps/panel/default_profiles/medium/applets/00000004/position - panel - int - -1 - - - - - /schemas/apps/panel/default_profiles/medium/applets/00000004/bonobo_iid - panel - string - OAFIID:GNOME_ClockApplet - - - - - /schemas/apps/panel/default_profiles/medium/applets/00000004/panel_right_stick - panel - bool - true - - - - - /schemas/apps/panel/default_profiles/medium/panels/00000002/panel_type - panel - string - menu-panel - - - - - /schemas/apps/panel/default_profiles/medium/panels/00000002/panel_size - panel - string - panel-size-x-small - - - - - /schemas/apps/panel/default_profiles/medium/panels/00000002/screen - panel - int - 0 - - - - - /schemas/apps/panel/default_profiles/medium/panels/00000002/monitor - panel - int - 0 - - - - - /schemas/apps/panel/default_profiles/medium/panels/00000002/panel_background_type - panel - string - no-background - - - - - /schemas/apps/panel/default_profiles/medium/panels/00000002/panel_background_pixmap - panel - string - - - - - - /schemas/apps/panel/default_profiles/medium/panels/00000002/panel_background_pixmap_fit - panel - bool - false - - - - - /schemas/apps/panel/default_profiles/medium/panels/00000002/panel_background_pixmap_stretch - panel - bool - false - - - - - /schemas/apps/panel/default_profiles/medium/panels/00000002/panel_background_pixmap_rotate - panel - bool - false - - - - - /schemas/apps/panel/default_profiles/medium/panels/00000002/panel_background_color - panel - string - #000000 - - - - - /schemas/apps/panel/default_profiles/medium/panels/00000002/clock_format - panel - string - %I:%M %p - - - - - - diff --git a/gconf/schemas/panel-default-setup.entries b/gconf/schemas/panel-default-setup.entries deleted file mode 100644 index 182ba20..0000000 --- a/gconf/schemas/panel-default-setup.entries +++ /dev/null @@ -1,657 +0,0 @@ - - - - - - - - general/toplevel_id_list - /schemas/apps/panel/general/toplevel_id_list - - - - top_panel - - - bottom_panel - - - - - - - - - general/object_id_list - /schemas/apps/panel/general/object_id_list - - - - menu_bar - - - browser_launcher - - - email_launcher - - - - - - - - - general/applet_id_list - /schemas/apps/panel/general/applet_id_list - - - - window_menu - - - clock - - - notification_area - - - show_desktop_button - - - window_list - - - workspace_switcher - - - - - - - - - toplevels/top_panel/expand - /schemas/apps/panel/toplevels/expand - - true - - - - toplevels/top_panel/orientation - /schemas/apps/panel/toplevels/orientation - - top - - - - toplevels/top_panel/size - /schemas/apps/panel/toplevels/size - - 24 - - - - toplevels/top_panel/name/schemas/apps/panel/toplevels/name - toplevels/top_panel/screen/schemas/apps/panel/toplevels/screen - toplevels/top_panel/monitor/schemas/apps/panel/toplevels/monitor - toplevels/top_panel/x/schemas/apps/panel/toplevels/x - toplevels/top_panel/y/schemas/apps/panel/toplevels/y - toplevels/top_panel/x_right/schemas/apps/panel/toplevels/x_right - toplevels/top_panel/y_bottom/schemas/apps/panel/toplevels/y_bottom - toplevels/top_panel/x_centered/schemas/apps/panel/toplevels/x_centered - toplevels/top_panel/y_centered/schemas/apps/panel/toplevels/y_centered - toplevels/top_panel/auto_hide/schemas/apps/panel/toplevels/auto_hide - toplevels/top_panel/enable_animations/schemas/apps/panel/toplevels/enable_animations - toplevels/top_panel/enable_buttons/schemas/apps/panel/toplevels/enable_buttons - toplevels/top_panel/enable_arrows/schemas/apps/panel/toplevels/enable_arrows - toplevels/top_panel/hide_delay/schemas/apps/panel/toplevels/hide_delay - toplevels/top_panel/unhide_delay/schemas/apps/panel/toplevels/unhide_delay - toplevels/top_panel/auto_hide_size/schemas/apps/panel/toplevels/auto_hide_size - toplevels/top_panel/animation_speed/schemas/apps/panel/toplevels/animation_speed - toplevels/top_panel/background/type/schemas/apps/panel/toplevels/background/type - toplevels/top_panel/background/color/schemas/apps/panel/toplevels/background/color - toplevels/top_panel/background/opacity/schemas/apps/panel/toplevels/background/opacity - toplevels/top_panel/background/image/schemas/apps/panel/toplevels/background/image - toplevels/top_panel/background/fit/schemas/apps/panel/toplevels/background/fit - toplevels/top_panel/background/stretch/schemas/apps/panel/toplevels/background/stretch - toplevels/top_panel/background/rotate/schemas/apps/panel/toplevels/background/rotate - - - - - toplevels/bottom_panel/expand - /schemas/apps/panel/toplevels/expand - - true - - - - toplevels/bottom_panel/orientation - /schemas/apps/panel/toplevels/orientation - - bottom - - - - toplevels/bottom_panel/size - /schemas/apps/panel/toplevels/size - - 24 - - - - toplevels/bottom_panel/y_bottom - /schemas/apps/panel/toplevels/y_bottom - - 0 - - - - toplevels/bottom_panel/name/schemas/apps/panel/toplevels/name - toplevels/bottom_panel/screen/schemas/apps/panel/toplevels/screen - toplevels/bottom_panel/monitor/schemas/apps/panel/toplevels/monitor - toplevels/bottom_panel/x/schemas/apps/panel/toplevels/x - toplevels/bottom_panel/y/schemas/apps/panel/toplevels/y - toplevels/bottom_panel/x_right/schemas/apps/panel/toplevels/x_right - toplevels/bottom_panel/x_centered/schemas/apps/panel/toplevels/x_centered - toplevels/bottom_panel/y_centered/schemas/apps/panel/toplevels/y_centered - toplevels/bottom_panel/auto_hide/schemas/apps/panel/toplevels/auto_hide - toplevels/bottom_panel/enable_animations/schemas/apps/panel/toplevels/enable_animations - toplevels/bottom_panel/enable_buttons/schemas/apps/panel/toplevels/enable_buttons - toplevels/bottom_panel/enable_arrows/schemas/apps/panel/toplevels/enable_arrows - toplevels/bottom_panel/hide_delay/schemas/apps/panel/toplevels/hide_delay - toplevels/bottom_panel/unhide_delay/schemas/apps/panel/toplevels/unhide_delay - toplevels/bottom_panel/auto_hide_size/schemas/apps/panel/toplevels/auto_hide_size - toplevels/bottom_panel/animation_speed/schemas/apps/panel/toplevels/animation_speed - toplevels/bottom_panel/background/type/schemas/apps/panel/toplevels/background/type - toplevels/bottom_panel/background/color/schemas/apps/panel/toplevels/background/color - toplevels/bottom_panel/background/opacity/schemas/apps/panel/toplevels/background/opacity - toplevels/bottom_panel/background/image/schemas/apps/panel/toplevels/background/image - toplevels/bottom_panel/background/fit/schemas/apps/panel/toplevels/background/fit - toplevels/bottom_panel/background/stretch/schemas/apps/panel/toplevels/background/stretch - toplevels/bottom_panel/background/rotate/schemas/apps/panel/toplevels/background/rotate - - - - - objects/menu_bar/object_type - /schemas/apps/panel/objects/object_type - - menu-bar - - - - objects/menu_bar/toplevel_id - /schemas/apps/panel/objects/toplevel_id - - top_panel - - - - objects/menu_bar/position - /schemas/apps/panel/objects/position - - 0 - - - - objects/menu_bar/panel_right_stick - /schemas/apps/panel/objects/panel_right_stick - - false - - - - objects/menu_bar/locked - /schemas/apps/panel/objects/locked - - true - - - - objects/menu_bar/applet_iid/schemas/apps/panel/objects/applet_iid - objects/menu_bar/attached_toplevel_id/schemas/apps/panel/objects/attached_toplevel_id - objects/menu_bar/tooltip/schemas/apps/panel/objects/tooltip - objects/menu_bar/use_custom_icon/schemas/apps/panel/objects/use_custom_icon - objects/menu_bar/custom_icon/schemas/apps/panel/objects/custom_icon - objects/menu_bar/use_menu_path/schemas/apps/panel/objects/use_menu_path - objects/menu_bar/menu_path/schemas/apps/panel/objects/menu_path - objects/menu_bar/launcher_location/schemas/apps/panel/objects/launcher_location - objects/menu_bar/action_type/schemas/apps/panel/objects/action_type - - - - - objects/browser_launcher/object_type - /schemas/apps/panel/objects/object_type - - launcher-object - - - - objects/browser_launcher/toplevel_id - /schemas/apps/panel/objects/toplevel_id - - top_panel - - - - objects/browser_launcher/position - /schemas/apps/panel/objects/position - - 1 - - - - objects/browser_launcher/panel_right_stick - /schemas/apps/panel/objects/panel_right_stick - - false - - - - objects/browser_launcher/locked - /schemas/apps/panel/objects/locked - - true - - - - objects/browser_launcher/launcher_location - /schemas/apps/panel/objects/launcher_location - - epiphany.desktop - - - - objects/browser_launcher/applet_iid/schemas/apps/panel/objects/applet_iid - objects/browser_launcher/attached_toplevel_id/schemas/apps/panel/objects/attached_toplevel_id - objects/browser_launcher/tooltip/schemas/apps/panel/objects/tooltip - objects/browser_launcher/use_custom_icon/schemas/apps/panel/objects/use_custom_icon - objects/browser_launcher/custom_icon/schemas/apps/panel/objects/custom_icon - objects/browser_launcher/use_menu_path/schemas/apps/panel/objects/use_menu_path - objects/browser_launcher/menu_path/schemas/apps/panel/objects/menu_path - objects/browser_launcher/action_type/schemas/apps/panel/objects/action_type - - - - - objects/email_launcher/object_type - /schemas/apps/panel/objects/object_type - - launcher-object - - - - objects/email_launcher/toplevel_id - /schemas/apps/panel/objects/toplevel_id - - top_panel - - - - objects/email_launcher/position - /schemas/apps/panel/objects/position - - 2 - - - - objects/email_launcher/panel_right_stick - /schemas/apps/panel/objects/panel_right_stick - - false - - - - objects/email_launcher/locked - /schemas/apps/panel/objects/locked - - true - - - - objects/email_launcher/launcher_location - /schemas/apps/panel/objects/launcher_location - - evolution.desktop - - - - objects/email_launcher/applet_iid/schemas/apps/panel/objects/applet_iid - objects/email_launcher/attached_toplevel_id/schemas/apps/panel/objects/attached_toplevel_id - objects/email_launcher/tooltip/schemas/apps/panel/objects/tooltip - objects/email_launcher/use_custom_icon/schemas/apps/panel/objects/use_custom_icon - objects/email_launcher/custom_icon/schemas/apps/panel/objects/custom_icon - objects/email_launcher/use_menu_path/schemas/apps/panel/objects/use_menu_path - objects/email_launcher/menu_path/schemas/apps/panel/objects/menu_path - objects/email_launcher/action_type/schemas/apps/panel/objects/action_type - - - - - applets/window_menu/object_type - /schemas/apps/panel/objects/object_type - - external-applet - - - - applets/window_menu/toplevel_id - /schemas/apps/panel/objects/toplevel_id - - top_panel - - - - applets/window_menu/position - /schemas/apps/panel/objects/position - - 0 - - - - applets/window_menu/panel_right_stick - /schemas/apps/panel/objects/panel_right_stick - - true - - - - applets/window_menu/locked - /schemas/apps/panel/objects/locked - - true - - - - applets/window_menu/applet_iid - /schemas/apps/panel/objects/applet_iid - - WnckletFactory::WindowMenuApplet - - - - applets/window_menu/attached_toplevel_id/schemas/apps/panel/objects/attached_toplevel_id - applets/window_menu/tooltip/schemas/apps/panel/objects/tooltip - applets/window_menu/use_custom_icon/schemas/apps/panel/objects/use_custom_icon - applets/window_menu/custom_icon/schemas/apps/panel/objects/custom_icon - applets/window_menu/use_menu_path/schemas/apps/panel/objects/use_menu_path - applets/window_menu/menu_path/schemas/apps/panel/objects/menu_path - applets/window_menu/launcher_location/schemas/apps/panel/objects/launcher_location - applets/window_menu/action_type/schemas/apps/panel/objects/action_type - - - - - applets/clock/object_type - /schemas/apps/panel/objects/object_type - - external-applet - - - - applets/clock/toplevel_id - /schemas/apps/panel/objects/toplevel_id - - top_panel - - - - applets/clock/position - /schemas/apps/panel/objects/position - - 2 - - - - applets/clock/panel_right_stick - /schemas/apps/panel/objects/panel_right_stick - - true - - - - applets/clock/locked - /schemas/apps/panel/objects/locked - - true - - - - applets/clock/applet_iid - /schemas/apps/panel/objects/applet_iid - - ClockAppletFactory::ClockApplet - - - - applets/clock/attached_toplevel_id/schemas/apps/panel/objects/attached_toplevel_id - applets/clock/tooltip/schemas/apps/panel/objects/tooltip - applets/clock/use_custom_icon/schemas/apps/panel/objects/use_custom_icon - applets/clock/custom_icon/schemas/apps/panel/objects/custom_icon - applets/clock/use_menu_path/schemas/apps/panel/objects/use_menu_path - applets/clock/menu_path/schemas/apps/panel/objects/menu_path - applets/clock/launcher_location/schemas/apps/panel/objects/launcher_location - applets/clock/action_type/schemas/apps/panel/objects/action_type - - - - - applets/notification_area/object_type - /schemas/apps/panel/objects/object_type - - external-applet - - - - applets/notification_area/toplevel_id - /schemas/apps/panel/objects/toplevel_id - - top_panel - - - - applets/notification_area/position - /schemas/apps/panel/objects/position - - 3 - - - - applets/notification_area/panel_right_stick - /schemas/apps/panel/objects/panel_right_stick - - true - - - - applets/notification_area/locked - /schemas/apps/panel/objects/locked - - true - - - - applets/notification_area/applet_iid - /schemas/apps/panel/objects/applet_iid - - NotificationAreaAppletFactory::NotificationArea - - - - applets/notification_area/attached_toplevel_id/schemas/apps/panel/objects/attached_toplevel_id - applets/notification_area/tooltip/schemas/apps/panel/objects/tooltip - applets/notification_area/use_custom_icon/schemas/apps/panel/objects/use_custom_icon - applets/notification_area/custom_icon/schemas/apps/panel/objects/custom_icon - applets/notification_area/use_menu_path/schemas/apps/panel/objects/use_menu_path - applets/notification_area/menu_path/schemas/apps/panel/objects/menu_path - applets/notification_area/launcher_location/schemas/apps/panel/objects/launcher_location - applets/notification_area/action_type/schemas/apps/panel/objects/action_type - - - - - applets/show_desktop_button/object_type - /schemas/apps/panel/objects/object_type - - external-applet - - - - applets/show_desktop_button/toplevel_id - /schemas/apps/panel/objects/toplevel_id - - bottom_panel - - - - applets/show_desktop_button/position - /schemas/apps/panel/objects/position - - 0 - - - - applets/show_desktop_button/panel_right_stick - /schemas/apps/panel/objects/panel_right_stick - - false - - - - applets/show_desktop_button/locked - /schemas/apps/panel/objects/locked - - true - - - - applets/show_desktop_button/applet_iid - /schemas/apps/panel/objects/applet_iid - - WnckletFactory::ShowDesktopApplet - - - - applets/show_desktop_button/attached_toplevel_id/schemas/apps/panel/objects/attached_toplevel_id - applets/show_desktop_button/tooltip/schemas/apps/panel/objects/tooltip - applets/show_desktop_button/use_custom_icon/schemas/apps/panel/objects/use_custom_icon - applets/show_desktop_button/custom_icon/schemas/apps/panel/objects/custom_icon - applets/show_desktop_button/use_menu_path/schemas/apps/panel/objects/use_menu_path - applets/show_desktop_button/menu_path/schemas/apps/panel/objects/menu_path - applets/show_desktop_button/launcher_location/schemas/apps/panel/objects/launcher_location - applets/show_desktop_button/action_type/schemas/apps/panel/objects/action_type - - - - - applets/window_list/object_type - /schemas/apps/panel/objects/object_type - - external-applet - - - - applets/window_list/toplevel_id - /schemas/apps/panel/objects/toplevel_id - - bottom_panel - - - - applets/window_list/position - /schemas/apps/panel/objects/position - - 1 - - - - applets/window_list/panel_right_stick - /schemas/apps/panel/objects/panel_right_stick - - false - - - - applets/window_list/locked - /schemas/apps/panel/objects/locked - - true - - - - applets/window_list/applet_iid - /schemas/apps/panel/objects/applet_iid - - WnckletFactory::WindowListApplet - - - - applets/window_list/attached_toplevel_id/schemas/apps/panel/objects/attached_toplevel_id - applets/window_list/tooltip/schemas/apps/panel/objects/tooltip - applets/window_list/use_custom_icon/schemas/apps/panel/objects/use_custom_icon - applets/window_list/custom_icon/schemas/apps/panel/objects/custom_icon - applets/window_list/use_menu_path/schemas/apps/panel/objects/use_menu_path - applets/window_list/menu_path/schemas/apps/panel/objects/menu_path - applets/window_list/launcher_location/schemas/apps/panel/objects/launcher_location - applets/window_list/action_type/schemas/apps/panel/objects/action_type - - - - - applets/workspace_switcher/object_type - /schemas/apps/panel/objects/object_type - - external-applet - - - - applets/workspace_switcher/toplevel_id - /schemas/apps/panel/objects/toplevel_id - - bottom_panel - - - - applets/workspace_switcher/position - /schemas/apps/panel/objects/position - - 0 - - - - applets/workspace_switcher/panel_right_stick - /schemas/apps/panel/objects/panel_right_stick - - true - - - - applets/workspace_switcher/locked - /schemas/apps/panel/objects/locked - - true - - - - applets/workspace_switcher/applet_iid - /schemas/apps/panel/objects/applet_iid - - WnckletFactory::WorkspaceSwitcherApplet - - - - applets/workspace_switcher/attached_toplevel_id/schemas/apps/panel/objects/attached_toplevel_id - applets/workspace_switcher/tooltip/schemas/apps/panel/objects/tooltip - applets/workspace_switcher/use_custom_icon/schemas/apps/panel/objects/use_custom_icon - applets/workspace_switcher/custom_icon/schemas/apps/panel/objects/custom_icon - applets/workspace_switcher/use_menu_path/schemas/apps/panel/objects/use_menu_path - applets/workspace_switcher/menu_path/schemas/apps/panel/objects/menu_path - applets/workspace_switcher/launcher_location/schemas/apps/panel/objects/launcher_location - applets/workspace_switcher/action_type/schemas/apps/panel/objects/action_type - - - - diff --git a/gconf/schemas/panel-general.schemas b/gconf/schemas/panel-general.schemas deleted file mode 100644 index 72cba4d..0000000 --- a/gconf/schemas/panel-general.schemas +++ /dev/null @@ -1,232 +0,0 @@ - - - - - - - /schemas/apps/panel/general/enable_program_list - /apps/panel/general/enable_program_list - panel - bool - true - - Enable program list in "Run Application" dialog - - If true, the "Known Applications" listing in the "Run - Application" dialog is made available. Whether or not - the listing is expanded when the dialog is shown is - controlled by the show_program_list key. - - - - - Programmliste im Dialog »Anwendung ausführen« aktivieren - Falls dieser Schlüssel WAHR ist, wird die Liste bekannter Anwendungen im Dialog »Anwendung ausführen« angezeigt. Der Schlüssel »show_program_list« legt fest, ob die Größe der Liste der des Fensters angepasst werden soll. - - - - Enable program list in "Run Application" dialogue - If true, the "Known Applications" listing in the "Run Application" dialogue is made available. Whether or not the listing is expanded when the dialogue is shown is controlled by the show_program_list key. - - - - Включить список программ в диалоге «Выполнить программу» - Если этот ключ установлен, то в диалоге «Выполнить программу» становится доступным список «Известные приложения». Будет ли он развёрнут по умолчанию, зависит от ключа show_program_list. - - - - - /schemas/apps/panel/general/show_program_list - /apps/panel/general/show_program_list - panel - bool - false - - Expand program list in "Run Application" dialog - - If true, the "Known Applications" listing in the "Run - Application" dialog is expanded when the dialog is opened. - This key is only relevant if the enable_program_list key - is true. - - - - - Programmliste im Dialog »Anwendung ausführen« ausklappen - Falls dieser Schlüssel WAHR ist, wird die Liste bekannter Anwendungen der Größe des Dialogs »Anwendung ausführen« angepasst, sobald dieser geöffnet wird. Dieser Schlüssel kommt ausschließlich zum Tragen, falls der Schlüssel »enable_program_list« WAHR ist. - - - - Expand program list in "Run Application" dialogue - If true, the "Known Applications" listing in the "Run Application" dialogue is expanded when the dialogue is opened. This key is only relevant if the enable_program_list key is true. - - - - Разворачивать список программ в диалоге «Выполнить программу» - Если этот ключ установлен, список «Известные приложения» в диалоге «Выполнить программу» по умолчанию разворачивается. Этот ключ имеет смысл только в том случае, если установлен ключ enable_program_list. - - - - - /schemas/apps/panel/general/enable_autocompletion - /apps/panel/general/enable_autocompletion - panel - bool - true - - Enable autocompletion in "Run Application" dialog - - If true, autocompletion in the "Run Application" dialog is - made available. - - - - - Automatische Vervollständigung im Dialog »Anwendung ausführen« aktivieren - Falls dieser Schlüssel WAHR ist, wird die automatische Vervollständigung im Dialog »Anwendung ausführen« aktiviert. - - - - Enable autocompletion in "Run Application" dialogue - If true, autocompletion in the "Run Application" dialogue is made available. - - - - Включить автодополнение в диалоге «Выполнить программу» - Если этот ключ установлен, в диалоге «Выполнить программу» будет включено автоматическое дополнение. - - - - - /schemas/apps/panel/general/toplevel_id_list - /apps/panel/general/toplevel_id_list - panel - list - string - [] - - Panel ID list - - A list of panel IDs. Each ID identifies an individual - toplevel panel. The settings for each of these panels are - stored in /apps/panel/toplevels/$(id). - - - - - Liste Panel-Kennungen - Eine Liste der Panel-Kennungen. Jede Kennung entspricht einem Panel auf oberster Ebene. Die Einstellungen jedes dieser Panels werden unter »/apps/panel/toplevels/$(id)« abgelegt. - - - - Panel ID list - A list of panel IDs. Each ID identifies an individual toplevel panel. The settings for each of these panels are stored in /apps/panel/toplevels/$(id). - - - - Список идентификаторов панели - Список идентификаторов панелей. Каждый идентификатор соответствует своей отдельной панели верхнего уровня. Параметры каждой из этих панелей хранятся в /apps/panel/toplevels/$(id). - - - - - /schemas/apps/panel/general/applet_id_list - /apps/panel/general/applet_id_list - panel - string - list - [] - - Panel applet ID list - - A list of panel applet IDs. Each ID identifies an - individual panel applet. The settings for each of - these applets are stored in - /apps/panel/applets/$(id). - - - - - Liste der Panel-Applet-Kennungen - Eine Liste der Applet-Kennungen. Jede Kennung entspricht einem bestimmten Panel-Applet. Die Einstellungen jedes dieser Applets werden unter »/apps/panel/applets/$(id)« abgelegt. - - - - Panel applet ID list - A list of panel applet IDs. Each ID identifies an individual panel applet. The settings for each of these applets are stored in /apps/panel/applets/$(id). - - - - Список идентификаторов апплетов панели - Список идентификаторов апплетов панели. Каждый идентификатор обозначает отдельный апплет на панели. Параметры каждого из этих апплетов хранятся в /apps/panel/applets/$(id). - - - - - /schemas/apps/panel/general/object_id_list - /apps/panel/general/object_id_list - panel - list - string - [] - - Panel object ID list - - A list of panel object IDs. Each ID identifies an individual - panel object (e.g. a launcher, action button or menu - button/bar). The settings for each of these objects are - stored in - /apps/panel/objects/$(id). - - - - - Liste der Panel-Objektkennungen - Eine Liste der Panel-Objektkennungen. Jede Kennung entspricht einem Panel-Objekt (z.B. einem Starter oder einer Menüleiste). Die Einstellungen jedes dieser Panel-Objekte werden unter »/apps/panel/objects/$(id)« abgelegt. - - - - Panel object ID list - A list of panel object IDs. Each ID identifies an individual panel object (e.g. a launcher, action button or menu button/bar). The settings for each of these objects are stored in /apps/panel/objects/$(id). - - - - Список идентификаторов объектов панели - Список идентификаторов объектов панели. Каждый идентификатор обозначает отдельный объект панели (например, кнопку запуска, кнопку команды или меню). Параметры каждого из этих объектов хранятся в /apps/panel/objects/$(id). - - - - - /schemas/apps/panel/general/profiles_migrated - /apps/panel/general/profiles_migrated - panel - bool - false - - Old profiles configuration migrated - - A boolean flag to indicate whether the user's previous - configuration in /apps/panel/profiles/default has been - copied to the new location in /apps/panel. - - - - - Konfiguration der alten Profile wurde übernommen - Ein boolescher Wert der anzeigt, ob die vorherige Konfiguration unter /apps/panel/profiles/default zum neuen Ort /apps/panel kopiert wurde. - - - - Old profiles configuration migrated - A boolean flag to indicate whether the user's previous configuration in /apps/panel/profiles/default has been copied to the new location in /apps/panel. - - - - Настройка старых профилей перенесена - Логический флаг, указывающий, была ли предыдущая конфигурация пользователя из /apps/panel/profiles/default перенесена на новое место в /apps/panel. - - - - - - diff --git a/gconf/schemas/panel-global.schemas b/gconf/schemas/panel-global.schemas deleted file mode 100644 index 35945d6..0000000 --- a/gconf/schemas/panel-global.schemas +++ /dev/null @@ -1,576 +0,0 @@ - - - - - - - - - /schemas/apps/panel/global/tooltips_enabled - /apps/panel/global/tooltips_enabled - panel - bool - true - - Enable tooltips - If true, tooltips are shown for objects in panels. - - - - - Minihilfen aktivieren - Falls dieser Schlüssel WAHR ist, werden für Panelobjekte Minihilfen angezeigt. - - - - Enable tooltips - If true, tooltips are shown for objects in panels. - - - - Включить всплывающие подсказки - Если этот ключ установлен, для объектов панели показываются всплывающие подсказки. - - - - - /schemas/apps/panel/global/keep_menus_in_memory - /apps/panel/global/keep_menus_in_memory - panel - bool - true - - Deprecated - - - - - Veraltet - - - - - Deprecated - - - - - Устаревший - - - - - - /schemas/apps/panel/global/enable_animations - /apps/panel/global/enable_animations - panel - bool - true - - Enable animations - - - - - Animationen aktivieren - - - - - Enable animations - - - - - Включить анимацию - - - - - - /schemas/apps/panel/global/panel_minimized_size - /apps/panel/global/panel_minimized_size - panel - int - 3 - - Deprecated - - - - - Veraltet - - - - - Deprecated - - - - - Устаревший - - - - - - /schemas/apps/panel/global/panel_show_delay - /apps/panel/global/panel_show_delay - panel - int - 300 - - Deprecated - - - - - Veraltet - - - - - Deprecated - - - - - Устаревший - - - - - - /schemas/apps/panel/global/panel_animation_speed - /apps/panel/global/panel_animation_speed - panel - string - panel-speed-medium - - Deprecated - - - - - Veraltet - - - - - Deprecated - - - - - Устаревший - - - - - - /schemas/apps/panel/global/panel_hide_delay - /apps/panel/global/panel_hide_delay - panel - int - 500 - - Deprecated - - - - - Veraltet - - - - - Deprecated - - - - - Устаревший - - - - - - /schemas/apps/panel/global/enable_key_bindings - /apps/panel/global/enable_key_bindings - panel - bool - true - - Deprecated - - - - - Veraltet - - - - - Deprecated - - - - - Устаревший - - - - - - /schemas/apps/panel/global/menu_key - /apps/panel/global/menu_key - panel - string - <Alt>F1 - - Deprecated - - - - - Veraltet - - - - - Deprecated - - - - - Устаревший - - - - - - /schemas/apps/panel/global/run_key - /apps/panel/global/run_key - panel - string - <Alt>F2 - - Deprecated - - - - - Veraltet - - - - - Deprecated - - - - - Устаревший - - - - - - /schemas/apps/panel/global/screenshot_key - /apps/panel/global/screenshot_key - panel - string - Print - - Deprecated - - - - - Veraltet - - - - - Deprecated - - - - - Устаревший - - - - - - /schemas/apps/panel/global/window_screenshot_key - /apps/panel/global/window_screenshot_key - panel - string - <Alt>Print - - Deprecated - - - - - Veraltet - - - - - Deprecated - - - - - Устаревший - - - - - - /schemas/apps/panel/global/drawer_autoclose - /apps/panel/global/drawer_autoclose - panel - bool - true - - Autoclose drawer - If true, a drawer will automatically be closed - when the user clicks a launcher in it. - - - - - Schublade automatisch schließen - Falls dieser Schlüssel WAHR ist, wird eine Schublade automatisch geschlossen, sobald der Benutzer darin einen Starter anklickt. - - - - Autoclose drawer - If true, a drawer will automatically be closed when the user clicks a launcher in it. - - - - Автоматически закрывать ящик - Если этот ключ установлен, ящик будет автоматически закрываться при нажатии на одну из кнопок запуска в нём. - - - - - /schemas/apps/panel/global/confirm_panel_remove - /apps/panel/global/confirm_panel_remove - panel - bool - true - - Confirm panel removal - If true, a dialog is shown asking for confirmation - if the user wants to remove a panel. - - - - - Entfernen des Panels bestätigen - Falls dieser Schlüssel WAHR ist, wird ein Dialog angezeigt, der den Benutzer dazu auffordert, das Entfernen eines Panels zu bestätigen. - - - - Confirm panel removal - If true, a dialogue is shown asking for confirmation if the user wants to remove a panel. - - - - Подтверждать удаление панели - Если этот ключ установлен, при попытке удаления панели будет запрашиваться подтверждение. - - - - - /schemas/apps/panel/global/highlight_launchers_on_mouseover - /apps/panel/global/highlight_launchers_on_mouseover - panel - bool - true - - Highlight launchers on mouseover - If true, a launcher is highlighted when the user - moves the pointer over it. - - - - - Starter hervorheben, wenn sich die Maus darüber befindet - Falls dieser Schlüssel WAHR ist, werden Starter hervorgehoben, wenn sich der Zeiger über ihnen befindet. - - - - Highlight launchers on mouseover - If true, a launcher is highlighted when the user moves the pointer over it. - - - - Подсвечивать кнопки запуска при наведении мыши - Если этот ключ установлен, кнопка запуска будет подсвечиваться при наведении на неё указателя. - - - - - /schemas/apps/panel/global/locked_down - /apps/panel/global/locked_down - panel - bool - false - - Complete panel lockdown - If true, the panel will not allow any changes to - the configuration of the panel. Individual applets - may need to be locked down separately however. - The panel must be restarted for this to take effect. - - - - - Einstellungssperre für gesamtes Panel - Falls dieser Schlüssel WAHR ist, unterbindet das Panel jegliche Änderungen an der Panel-Konfiguration. Applets müssen jedoch möglicherweise einzeln gesperrt werden. Damit diese Einstellungen wirksam werden, muss das Panel neu gestartet werden. - - - - Complete panel lockdown - If true, the panel will not allow any changes to the configuration of the panel. Individual applets may need to be locked down separately however. The panel must be restarted for this to take effect. - - - - Полная блокировка панели - Если этот ключ установлен, панель не будет позволять производить изменения в своих настройках. Однако отдельные апплеты могут потребовать отдельной блокировки. Чтобы этот ключ вступил в силу, панель необходимо перезапустить. - - - - - /schemas/apps/panel/global/disabled_applets - /apps/panel/global/disabled_applets - panel - list - string - [] - - Applet IIDs to disable from loading - A list of applet IIDs that the panel will ignore. This way you - can disable certain applets from loading or showing up in the menu. - For example to disable the mini-commander applet add 'OAFIID:GNOME_MiniCommanderApplet' - to this list. The panel must be restarted for this to take effect. - - - - - Zu ignorierende Applet-IIDs - Eine Liste von Applet-IIDs, die das Panel ignoriert. Auf diese Weise können Sie verhindern, dass bestimmte Applets geladen oder im Menü angezeigt werden. Falls Sie beispielsweise das Befehlszeilen-Applet deaktivieren möchten, so müssen Sie »OAFIID:GNOME_MiniCommanderApplet« zur Liste hinzufügen. Damit diese Einstellungen wirksam werden, muss das Panel neu gestartet werden. - - - - Applet IIDs to disable from loading - A list of applet IIDs that the panel will ignore. This way you can disable certain applets from loading or showing up in the menu. For example to disable the mini-commander applet add 'OAFIID:GNOME_MiniCommanderApplet' to this list. The panel must be restarted for this to take effect. - - - - Идентификаторы (IID) запрещённых апплетов - Список идентификаторов апплетов (IID), которые панель будет игнорировать. Таким образом можно запретить загрузку некоторых апплетов или их отображение в меню. Например, чтобы запретить апплет командной строки, добавьте к этому списку строку «OAFIID:GNOME_MiniCommanderApplet». Чтобы изменения в списке вступили в силу, панель нужно перезапустить. - - - - - /schemas/apps/panel/global/disable_lock_screen - /apps/panel/global/disable_lock_screen - panel - bool - false - - Deprecated - This key is deprecated as it cannot be used to implement proper - lockdown. The /desktop/gnome/lockdown/disable_lock_screen key - should be used instead. - - - - - Veraltet - Dieser Schlüssel ist veraltet, weil er nicht zur Implementierung einer sauberen Sperrung verwendet werden kann. Stattdessen sollte der Schlüssel »/desktop/gnome/lockdown/disable_lock_screen« verwendet werden. - - - - Deprecated - This key is deprecated as it cannot be used to implement proper lockdown. The /desktop/gnome/lockdown/disable_lock_screen key should be used instead. - - - - Устаревший - Этот ключ устарел, так как не может быть использован для осуществления надлежащей блокировка. Вместо него должен использоваться ключ /desktop/gnome/lockdown/disable_lock_screen. - - - - - /schemas/apps/panel/global/disable_log_out - /apps/panel/global/disable_log_out - panel - bool - false - - Disable Logging Out - If true, the panel will not allow a user to log out, - by removing access to the log out menu entries. - - - - - Abmelden deaktivieren - Falls dieser Schlüssel WAHR ist, erlaubt es das Panel dem Benutzer nicht, sich abzumelden. Dies wird durch das Entfernen der »Abmelden«-Menüeinträge bewerkstelligt. - - - - Disable Logging Out - If true, the panel will not allow a user to log out, by removing access to the log out menu entries. - - - - Отключить завершение сеанса - Если этот ключ установлен, панель не будет позволять завершать сеанс. Соответствующие пункты меню будут недоступны. - - - - - /schemas/apps/panel/global/disable_force_quit - /apps/panel/global/disable_force_quit - panel - bool - false - - Disable Force Quit - If true, the panel will not allow a user to force - an application to quit by removing access to the - force quit button. - - - - - Erzwungenes Beenden deaktivieren - Falls dieser Schlüssel WAHR ist, erlaubt es das Panel dem Benutzer nicht, das Beenden einer Anwendung zu erzwingen. Dies wird durch das Entfernen des »Anwendung beenden«-Knopfes bewerkstelligt. - - - - Disable Force Quit - If true, the panel will not allow a user to force an application to quit by removing access to the force quit button. - - - - Отключить принудительное завершение - Если этот ключ установлен, панель не будет позволять принудительно завершать приложение. Соответствующая кнопка будет недоступна. - - - - - - diff --git a/gconf/schemas/panel-object.schemas b/gconf/schemas/panel-object.schemas deleted file mode 100644 index 5c34ad1..0000000 --- a/gconf/schemas/panel-object.schemas +++ /dev/null @@ -1,474 +0,0 @@ - - - - - - - - - /schemas/apps/panel/objects/object_type - panel - string - menu-object - - Panel object type - - The type of this panel object. Possible values are - "drawer-object", "menu-object", "launcher-object", - "external-applet", "action-applet", "menu-bar" and - "separator". - - - - - Typ des Panelobjekts - - - - - Panel object type - - - - - Тип объекта панели - - - - - - /schemas/apps/panel/objects/toplevel_id - panel - string - - - Toplevel panel containing object - - The identifier of the toplevel panel which contains this object. - - - - - Übergeordnetes Panel, das Objekt enthält - Der Identifikator des übergeordneten Panels, das dieses Objekt enthält. - - - - Toplevel panel containing object - The identifier of the toplevel panel which contains this object. - - - - Панель верхнего уровня, содержащая объект - Идентификатор панели верхнего уровня, которая содержит данный объект. - - - - - /schemas/apps/panel/objects/position - panel - int - 0 - - Object's position on the panel - - The position of this panel object. The position is specified - by the number of pixels from the left (or top if vertical) - panel edge. - - - - - Objektposition auf dem Panel - Die Position dieses Panel-Objekts. Diese wird in Anzahl der Pixel zur linken (bzw. oberen, falls vertikal) Panel-Kante angegeben. - - - - Object's position on the panel - The position of this panel object. The position is specified by the number of pixels from the left (or top if vertical) panel edge. - - - - Положение объекта на панели - Положение объекта на панели. Положение определяется количеством пикселей от левого (или верхнего для вертикальных панелей) края панели. - - - - - /schemas/apps/panel/objects/panel_right_stick - panel - bool - false - - Interpret position relative to bottom/right edge - - If true, the position of the object is interpreted relative - to the right (or bottom if vertical) edge of the panel. - - - - - Die Position relativ zur unteren rechten Ecke bestimmen - Falls dieser Schlüssel WAHR ist, wird die Position des Objekts relativ zur rechten Kante (oder der unteren, falls vertikal) des Panels berechnet. - - - - Interpret position relative to bottom/right edge - If true, the position of the object is interpreted relative to the right (or bottom if vertical) edge of the panel. - - - - Интерпретировать позицию относительно нижнего/правого края - Если этот ключ установлен, то позиция объекта интерпретируется относительно правого (или нижнего для вертикальных панелей) края панели. - - - - - /schemas/apps/panel/objects/locked - panel - bool - false - - Lock the object to the panel - - If true, the user may not move the applet without first unlocking - the object using the "Unlock" menuitem. - - - - - Das Objekt auf dem Panel sperren - Falls dieser Schlüssel WAHR ist, darf der Benutzer das Applet nicht verschieben, ohne das Objekt vorher freizugeben, und zwar durch Anklicken des Menüobjekts »Freigeben«. - - - - Lock the object to the panel - If true, the user may not move the applet without first unlocking the object using the "Unlock" menuitem. - - - - Закрепить объект на панели - Если этот ключ установлен, то пользователь не может перемещать апплет, не отдав перед этим команду «Разблокировать». - - - - - - - - /schemas/apps/panel/objects/bonobo_iid - panel - string - - - Applet Bonobo IID - - This key is deprecated, following the migration to a new library for - applets. The Bonobo implementation ID of the applet - e.g. - "OAFIID:GNOME_ClockApplet". This key is only relevant if the - object_type key is "bonobo-applet". - - - - - Applet-Bonobo-IID - Dieser Schlüssel ist durch die Migration auf die neue Applet-Bibliothek veraltet. Die Bonobo-Implementierungskennung des Applets - z.B. »OAFIID:GNOME_ClockApplet«. Dieser Schlüssel kommt lediglich zum Tragen, falls der Objekttypschlüssel »object_type« »bonobo-applet« ist. - - - - Applet Bonobo IID - This key is deprecated, following the migration to a new library for applets. The Bonobo implementation ID of the applet — e.g. "OAFIID:GNOME_ClockApplet". This key is only relevant if the object_type key is "bonobo-applet". - - - - Bonobo-идентификатор апплета - Этот ключ устарел после перевода апплетов на новую библиотеку. Идентификатор реализации Bonobo апплета, например, «OAFIID:GNOME_ClockApplet». Этот ключ имеет смысл только в том случае, если ключ object_type содержит «bonobo-applet». - - - - - /schemas/apps/panel/objects/applet_iid - panel - string - - - Applet IID - - The implementation ID of the applet - e.g. - "ClockAppletFactory::ClockApplet". This key is only - relevant if the object_type key is "external-applet" - (or the deprecated "bonobo-applet"). - - - - - Applet-IID - - - - - Applet IID - - - - - Идентификатор апплета (IID) - - - - - - - - /schemas/apps/panel/objects/attached_toplevel_id - panel - string - - - Panel attached to drawer - - The identifier of the panel attached to this drawer. This - key is only relevant if the object_type key is "drawer-object". - - - - - An Schublade angehängtes Panel - Der Identifikator des an diese Schublade angehängten Panels. Dieser Schlüssel kommt ausschließlich zum Tragen, falls der Objekttypschlüssel »object_type« »drawer-object« ist. - - - - Panel attached to drawer - The identifier of the panel attached to this drawer. This key is only relevant if the object_type key is "drawer-object". - - - - Панель, присоединённая к ящику - Идентификатор панели, присоединенной к данному ящику. Этот параметр имеет смысл только в том случае, если ключ object_type содержит «drawer-object». - - - - - /schemas/apps/panel/objects/tooltip - panel - string - - - Tooltip displayed for drawer or menu - - The text to display in a tooltip for this drawer or this menu. This - key is only relevant if the object_type key is "drawer-object" or - "menu-object". - - - - - Für Schublade oder Menü anzuzeigende Minihilfe - Der in der Minihilfe zu dieser Schublade oder diesem Menü anzuzeigende Text. Dieser Schlüssel kommt ausschließlich zum Tragen, falls der Objekttypschlüssel »object_type« »drawer-object« oder »menu-object« ist. - - - - Tooltip displayed for drawer or menu - The text to display in a tooltip for this drawer or this menu. This key is only relevant if the object_type key is "drawer-object" or "menu-object". - - - - Всплывающая подсказка для ящика или меню - Текст, используемый в качестве подсказки для данного ящика. Этот параметр имеет смысл только в том случае, если ключ object_type имеет значение «drawer-object» или «menu-object». - - - - - - - /schemas/apps/panel/objects/use_custom_icon - panel - bool - false - - Use custom icon for object's button - - If true, the custom_icon key is used as a custom icon for - the button. If false, the custom_icon key is ignored. - This key is only relevant if the object_type key is - "menu-object" or "drawer-object". - - - - - Benutzerdefiniertes Symbol für Objektknopf verwenden - Falls dieser Schlüssel WAHR ist, wird der Schlüssel »custom_icon« als benutzerdefiniertes Symbol für den Knopf verwendet. Falls dieser Schlüssel FALSCH ist, wird der Schlüssel »custom_icon« ignoriert. Dieser Schlüssel kommt ausschließlich zum Tragen, falls der Objekttypschlüssel »object_type« »menu-object« oder »drawer-object« ist. - - - - Use custom icon for object's button - If true, the custom_icon key is used as a custom icon for the button. If false, the custom_icon key is ignored. This key is only relevant if the object_type key is "menu-object" or "drawer-object". - - - - Использовать другой значок для кнопки объекта - Если этот ключ установлен, то значение из ключа custom_icon используется как пользовательский значок для кнопки. Если не установлен, то значение ключа custom_icon будет проигнорировано. Этот параметр имеет смысл, только если ключ object_type содержит значение «menu-object» или «drawer-object». - - - - - /schemas/apps/panel/objects/custom_icon - panel - string - - - Icon used for object's button - - The location of the image file used as the icon for the - object's button. This key is only relevant if the - object_type key is "drawer-object" or "menu-object" and - the use_custom_icon key is true. - - - - - Für Objektknopf verwendetes Symbol - Der Speicherort der Bilddatei, die als Symbol für den Objektknopf verwendet werden soll. Dieser Schlüssel kommt ausschließlich zum Tragen, falls der Objekttypschlüssel »object_type« »drawer_object« oder »menu-object« ist und der Schlüssel »use_custom_icon« WAHR ist. - - - - Icon used for object's button - The location of the image file used as the icon for the object's button. This key is only relevant if the object_type key is "drawer-object" or "menu-object" and the use_custom_icon key is true. - - - - Значок, используемый для кнопки объекта - Местоположение файла изображения, используемого как значок для кнопки объекта. Этот ключ имеет смысл только в том случае, если ключ object_type содержит «drawer-object» и ключ use_custom_icon установлен. - - - - - - - /schemas/apps/panel/objects/use_menu_path - panel - bool - false - - Use custom path for menu contents - - If true, the menu_path key is used as the path from which - the menu contents should be constructed. If false, the - menu_path key is ignored. This key is only relevant - if the object_type key is "menu-object". - - - - - Benutzerdefinierten Pfad für Menüinhalt verwenden - Falls dieser Schlüssel WAHR ist, wird der Schlüssel »menu_path« als Pfad verwendet, mit dessen Hilfe der Menüinhalt konstruiert wird. Falls dieser Schlüssel FALSCH ist, wird der Schlüssel »menu_path« ignoriert. Dieser Schlüssel kommt lediglich zum Tragen, falls der Objekttypschlüssel »object_type« »menu-object« oder »drawer-object« ist. - - - - Use custom path for menu contents - If true, the menu_path key is used as the path from which the menu contents should be constructed. If false, the menu_path key is ignored. This key is only relevant if the object_type key is "menu-object". - - - - Использовать другой путь к содержимому меню - Если этот ключ установлен, то значение из ключа menu_path используется как путь, из которого будет сконструировано меню. Если не установлен, то значение ключа menu_path будет проигнорировано. Этот параметр имеет смысл только если ключ object_type содержит значение «menu-object». - - - - - /schemas/apps/panel/objects/menu_path - panel - string - applications:/ - - Menu content path - - The path from which the menu contents is contructed. This - key is only relevant if the use_menu_path key is true and - the object_type key is "menu-object". - - - - - Pfad zum Menüinhalt - Der Pfad, mit Hilfe dessen der Menüinhalt konstruiert wird. Dieser Schlüssel kommt ausschließlich zum Tragen, falls der Schlüssel »use_menu_path« WAHR ist und der Objekttypschlüssel »object_type« »menu-object« ist. - - - - Menu content path - The path from which the menu contents is contructed. This key is only relevant if the use_menu_path key is true and the object_type key is "menu-object". - - - - Путь содержимого меню - Путь, из которого будет построено содержимое меню. Этот ключ имеет смысл только в том случае, если ключ use_menu_path установлен и ключ object_type имеет значение «menu-object». - - - - - - - /schemas/apps/panel/objects/launcher_location - panel - string - - - Launcher location - - The location of the .desktop file describing the launcher. - This key is only relevant if the object_type key is - "launcher-object". - - - - - Speicherort des Starters - Der Speicherort der .desktop-Datei, die den Starter beschreibt. Dieser Schlüssel kommt ausschließlich zum Tragen, falls der Objekttypschlüssel »object_type« »launcher-object« ist. - - - - Launcher location - The location of the .desktop file describing the launcher. This key is only relevant if the object_type key is "launcher-object". - - - - Расположение кнопки запуска - Местоположение файла .desktop, описывающего кнопку запуска. Этот параметр имеет смысл только в том случае, если тип объекта (object_type) содержит «launcher-object». - - - - - - - /schemas/apps/panel/objects/action_type - panel - string - lock - - Action button type - - The action type this button represents. Possible values are - "lock", "logout", "run", "search" and "screenshot". This - key is only relevant if the object_type key is "action-applet". - - - - - Typ des Aktionsknopfes - Der Aktionstyp, den dieser Knopf repräsentiert. Zulässige Werte: »lock« (Sperren), »logout« (Abmelden), »run« (Ausführen), »search« (Suche) sowie »screenshot« (Bildschirmfoto). Dieser Schlüssel kommt ausschließlich zum Tragen, falls der Objekttypschlüssel »object_type« »action-applet« ist. - - - - Action button type - The action type this button represents. Possible values are "lock", "logout", "run", "search" and "screenshot". This key is only relevant if the object_type key is "action-applet". - - - - Тип кнопки действия - Тип действия, реализуемого кнопкой. Допустимые значения: «lock», «logout», «run», «search» and «screenshot». Этот параметр имеет смысл только в том случае, если object_type содержит «action-applet». - - - - - - diff --git a/gconf/schemas/panel-toplevel.schemas b/gconf/schemas/panel-toplevel.schemas deleted file mode 100644 index 4d8a890..0000000 --- a/gconf/schemas/panel-toplevel.schemas +++ /dev/null @@ -1,839 +0,0 @@ - - - - - - - /schemas/apps/panel/toplevels/name - panel - string - - - Name to identify panel - - This is a human readable name which you can use to identify - a panel. Its main purpose is to serve as the panel's window - title which is useful when navigating between panels. - - - - - Name zur Panel-Identifikation - Dies ist ein menschenlesbarer Name, anhand dessen Sie ein Panel identifizieren können. Seine Hauptaufgabe besteht darin, als Fenstertitel für das Panel zu fungieren, was beim Umschalten zwischen Panels nützlich ist. - - - - Name to identify panel - This is a human readable name which you can use to identify a panel. Its main purpose is to serve as the panel's window title which is useful when navigating between panels. - - - - Имя для обозначения панели - Удобное для чтения человеком имя панели. Основное назначение — служить заголовком окна панели, что полезно при переключении между панелями. - - - - - /schemas/apps/panel/toplevels/screen - panel - int - 0 - - X screen where the panel is displayed - - With a multi-screen setup, you may have panels on each - individual screen. This key identifies the current screen - the panel is displayed on. - - - - - X-Bildschirm, auf dem das Panel angezeigt wird - Falls Sie mehrere Bildschirme verwenden, können Panels auch auf einzelnen Bildschirmen angezeigt werden. Dieser Schlüssel legt fest, auf welchem Bildschirm dieses Panel angezeigt werden soll. - - - - X screen where the panel is displayed - With a multi-screen setup, you may have panels on each individual screen. This key identifies the current screen the panel is displayed on. - - - - Экран в системе X Window, на котором показывается панель - При наличии нескольких экранов можно иметь разные панели на разных экранах. Данный ключ определяет текущий экран, на котором находится панель. - - - - - /schemas/apps/panel/toplevels/monitor - panel - int - 0 - - Xinerama monitor where the panel is displayed - - In a Xinerama setup, you may have panels on each individual - monitor. This key identifies the current monitor the panel - is displayed on. - - - - - Xinerama-Monitor, auf dem das Panel angezeigt wird - In einer Xinerama-Umgebung ist es möglich, monitorspezifische Panels anzulegen. Dieser Schlüssel identifiziert den Bildschirm, auf dem das Panel momentan angezeigt wird. - - - - Xinerama monitor where the panel is displayed - In a Xinerama setup, you may have panels on each individual monitor. This key identifies the current monitor the panel is displayed on. - - - - Монитор в расширении Xinerama, на котором показывается панель - При использовании системы Xinerama можно иметь разные панели на разных мониторах. Этот ключ определяет текущий монитор, на котором находится панель. - - - - - /schemas/apps/panel/toplevels/expand - panel - bool - true - - Expand to occupy entire screen width - - If true, the panel will occupy the entire screen width - (height if this is a vertical panel). In this mode the panel - can only be placed at a screen edge. If false, the panel - will only be large enough to accommodate the applets, - launchers and buttons on the panel. - - - - - Ausdehnen und so die gesamte Bildschirmbreite belegen - Falls dieser Schlüssel WAHR ist, belegt das Panel die gesamte Bildschirmbreite (Höhe, falls es ein vertikales Panel ist). In diesem Modus kann das Panel ausschließlich an Bildschirmkanten platziert werden. Falls dieser Schlüssel FALSCH ist, ist das Panel gerade so groß, dass die Applets, Starter und Knöpfe darauf passen. - - - - Expand to occupy entire screen width - If true, the panel will occupy the entire screen width (height if this is a vertical panel). In this mode the panel can only be placed at a screen edge. If false, the panel will only be large enough to accommodate the applets, launchers and buttons on the panel. - - - - Расширять панель до ширины экрана - Если этот ключ установлен, то панель будет занимать всю ширину экрана (или высоту, если панель вертикальная). Такие панели могут размещаться только по краям экрана. Если этот ключ не установлен, то панель будет занимать лишь столько пространства, сколько необходимо для размещения находящихся на ней апплетов и кнопок. - - - - - /schemas/apps/panel/toplevels/orientation - panel - string - top - - Panel orientation - - The orientation of the panel. Possible values are "top", - "bottom", "left", "right". In expanded mode the key - specifies which screen edge the panel is on. In un-expanded - mode the difference between "top" and "bottom" is less - important - both indicate that this is a horizontal panel - - but still give a useful hint as to how some panel objects - should behave. For example, on a "top" panel a menu button - will pop up its menu below the panel, whereas on a "bottom" - panel the menu will be popped up above the panel. - - - - - Panel-Ausrichtung - Die Ausrichtung des Panels. Zulässige Werte: »top« (oben), »bottom« (unten), »left« (links) sowie »right« (rechts). Im ausgedehnten Modus gibt der Schlüssel an, auf welcher Seite des Bildschirms sich das Panel befindet. Im unausgedehnten Modus ist der Unterschied zwischen »top« und »bottom« weniger wichtig: Beide zeigen an, dass es sich hierbei um ein horizontales Panel handelt - sie sind jedoch für das Verhalten mancher Panel-Objekte ausschlaggebend. So wird z.B. bei einem oberen Panel (»top«) das Menü eines Menüknopfes unterhalb, bei einem unteren Panel (»bottom«) oberhalb des Panels angezeigt. - - - - Panel orientation - The orientation of the panel. Possible values are "top", "bottom", "left", "right". In expanded mode the key specifies which screen edge the panel is on. In un-expanded mode the difference between "top" and "bottom" is less important – both indicate that this is a horizontal panel – but still give a useful hint as to how some panel objects should behave. For example, on a "top" panel a menu button will pop up its menu below the panel, whereas on a "bottom" panel the menu will be popped up above the panel. - - - - Ориентация панели - Ориентация панели. Возможные значения: «top», «bottom», «left», «right». В режиме расширения значение определяет, у какой стороны экрана расположена панель. Если расширение до размеров экрана не используется, то разница между «top» и «bottom» менее важна — оба значения определяют, что это горизонтальная панель, но всё же определяет некоторые аспекты поведения объектов на панели. Например, при значении «top» выпадающее меню у кнопки меню будет ориентировано вниз, тогда как при «bottom» — вверх. - - - - - /schemas/apps/panel/toplevels/size - panel - int - 24 - - Panel size - - The height (width for a vertical panel) of the panel. The - panel will determine at runtime a minimum size based on - the font size and other indicators. The maximum size is - fixed at one quarter of the screen height (or width). - - - - - Panel-Größe - Die Höhe des Panels (Breite bei vertikalen Panels). Das Panel legt auf Basis der Schriftgröße und anderer Indikatoren beim Ausführen eine minimale Größe fest. Die maximale Größe ist auf ein Viertel der Bildschirmhöhe (bzw. -breite) begrenzt. - - - - Panel size - The height (width for a vertical panel) of the panel. The panel will determine at runtime a minimum size based on the font size and other indicators. The maximum size is fixed at one quarter of the screen height (or width). - - - - Размер панели - Высота панели (или ширина, если панель вертикальная). Панель определяет минимально допустимый размер «на ходу» исходя из размера шрифта и других соображений. Максимальный размер ограничен четвертью высоты экрана (или ширины, для вертикальных панелей). - - - - - /schemas/apps/panel/toplevels/x - panel - int - 0 - - X co-ordinate of panel - - The location of the panel along the x-axis. This key is - only relevant in un-expanded mode. In expanded mode this - key is ignored and the panel is placed at the screen edge - specified by the orientation key. - - - - - X-Koordinate des Panels - Die Position des Panels auf der X-Achse. Dieser Schlüssel kommt ausschließlich im nicht ausgedehnten Modus zum Tragen. Im ausgedehnten Modus wird dieser Schlüssel ignoriert und das Panel an der vom Schlüssel »orientation« angegebenen Bildschirmkante platziert. - - - - X co-ordinate of panel - The location of the panel along the x-axis. This key is only relevant in un-expanded mode. In expanded mode this key is ignored and the panel is placed at the screen edge specified by the orientation key. - - - - X-координата панели - Расположение панели по оси X. Этот ключ имеет эффект только в том случае, если панель не настроена на расширение до размеров экрана. В режиме расширения этот ключ игнорируется, и панель размещается у края экрана в соответствии со значением ключа ориентации. - - - - - /schemas/apps/panel/toplevels/y - panel - int - 0 - - Y co-ordinate of panel - - The location of the panel along the y-axis. This key is - only relevant in un-expanded mode. In expanded mode this - key is ignored and the panel is placed at the screen edge - specified by the orientation key. - - - - - Y-Koordinate des Panels - Die Position des Panels auf der Y-Achse. Dieser Schlüssel kommt ausschließlich im nicht ausgedehnten Modus zum Tragen. Im ausgedehnten Modus wird dieser Schlüssel ignoriert und das Panel an der vom Schlüssel »orientation« angegebenen Bildschirmkante platziert. - - - - Y co-ordinate of panel - The location of the panel along the y-axis. This key is only relevant in un-expanded mode. In expanded mode this key is ignored and the panel is placed at the screen edge specified by the orientation key. - - - - Y-координата панели - Расположение панели по оси Y. Этот ключ имеет эффект только в том случае, если панель не настроена на расширение до размеров экрана. В режиме расширения этот ключ игнорируется, и панель размещается у края экрана в соответствии со значением ключа ориентации. - - - - - /schemas/apps/panel/toplevels/x_right - panel - int - -1 - - X co-ordinate of panel, starting from the right of the screen - - The location of the panel along the x-axis, starting from the right of - the screen. If set to -1, the value is ignored and the value of the x - key is used. If the value is greater than 0, then the value of the x - key is ignored. - This key is only relevant in un-expanded mode. In expanded mode this - key is ignored and the panel is placed at the screen edge - specified by the orientation key. - - - - - X-Koordinate des Panels, ausgehend von rechts - Die Position des Panels auf der X-Achse, beginnend rechts vom Bildschirm. Falls dieser Wert -1 ist, wird er ignoriert und der Wert des Schlüssels »x« verwendet. Falls dieser Wert größer als 0 ist, wird der Wert des Schlüssels »x« ignoriert. Dieser Schlüssel kommt ausschließlich im nicht ausgedehnten Modus zum Tragen. Im ausgedehnten Modus wird dieser Schlüssel ignoriert und das Panel an der vom Schlüssel »orientation« angegebenen Bildschirmkante platziert. - - - - X co-ordinate of panel, starting from the right of the screen - The location of the panel along the x-axis, starting from the right of the screen. If set to -1, the value is ignored and the value of the x key is used. If the value is greater than 0, then the value of the x key is ignored. This key is only relevant in un-expanded mode. In expanded mode this key is ignored and the panel is placed at the screen edge specified by the orientation key. - - - - X-координата панели от правого края экрана - Расположение панели по оси X, считая от правой стороны экрана. Если установлено в -1, это значение игнорируется и используется ключ x. Если значение больше 0, тогда игнорируется значение ключа x. Этот ключ имеет эффект только в том случае, если панель не настроена на расширение до размеров экрана. В режиме расширения этот ключ игнорируется, и панель размещается у края экрана в соответствии со значением ключа ориентации. - - - - - /schemas/apps/panel/toplevels/y_bottom - panel - int - -1 - - Y co-ordinate of panel, starting from the bottom of the screen - - The location of the panel along the y-axis, starting from the bottom of - the screen. If set to -1, the value is ignored and the value of the y - key is used. If the value is greater than 0, then the value of the y - key is ignored. - This key is only relevant in un-expanded mode. In expanded mode this - key is ignored and the panel is placed at the screen edge - specified by the orientation key. - - - - - Y-Koordinate des Panels, ausgehend von unten - Die Position des Panels auf der Y-Achse, beginnend unten vom Bildschirm. Falls dieser Wert -1 ist, wird er ignoriert und der Wert des Schlüssels »y« verwendet. Falls dieser Wert größer als 0 ist, wird der Wert des Schlüssels »y« ignoriert. Dieser Schlüssel kommt ausschließlich im nicht ausgedehnten Modus zum Tragen. Im ausgedehnten Modus wird dieser Schlüssel ignoriert und das Panel an der vom Schlüssel »orientation« angegebenen Bildschirmkante platziert. - - - - Y co-ordinate of panel, starting from the bottom of the screen - The location of the panel along the y-axis, starting from the bottom of the screen. If set to -1, the value is ignored and the value of the y key is used. If the value is greater than 0, then the value of the y key is ignored. This key is only relevant in un-expanded mode. In expanded mode this key is ignored and the panel is placed at the screen edge specified by the orientation key. - - - - Y-координата панели от низа экрана - Расположение панели по оси Y, считая от низа экрана. Если установлено в -1, это значение игнорируется и используется ключ y. Если значение больше 0, тогда игнорируется значение ключа y. Этот ключ имеет эффект только в том случае, если панель не настроена на расширение до размеров экрана. В режиме расширения этот ключ игнорируется, и панель размещается у края экрана в соответствии со значением ключа ориентации. - - - - - /schemas/apps/panel/toplevels/x_centered - panel - bool - false - - Center panel on x-axis - - If true, the x and x_right keys are ignored and the panel is placed at - the center of the x-axis of the screen. If the panel is - resized it will remain at that position - i.e. the panel - will grow on both sides. If false, the x and x_right keys specify - the location of the panel. - - - - - Panel auf X-Achse zentrieren - Falls dieser Schlüssel WAHR ist, werden die Schlüssel »x« und »x_right« ignoriert und das Panel im Zentrum der X-Achse auf dem Bildschirm platziert. Falls die Größe des Panels verändert wird, verharrt es auf dieser Position - das Panel wächst also auf beiden Seiten. Falls dieser Schlüssel FALSCH ist, geben die Schlüssel »x« und »x_right« den Anzeigeort des Panels an. - - - - Centre panel on x-axis - If true, the x and x_right keys are ignored and the panel is placed at the centre of the x-axis of the screen. If the panel is resized it will remain at that position — i.e. the panel will grow on both sides. If false, the x and x_right keys specify the location of the panel. - - - - Центрировать панель по оси X - Если этот ключ установлен, то ключи x и x_right игнорируются и панель помещается в центр оси X экрана. Если размер панели изменяется, она всё равно остаётся на том же месте (иными словами — расширяется одновременно в обе стороны). Если ключ не установлен, то ключи x и x_right определяют положение панели. - - - - - /schemas/apps/panel/toplevels/y_centered - panel - bool - false - - Center panel on y-axis - - If true, the y and y_bottom keys are ignored and the panel is placed at - the center of the y-axis of the screen. If the panel is - resized it will remain at that position - i.e. the panel - will grow on both sides. If false, the y and y_bottom keys specify - the location of the panel. - - - - - Panel auf Y-Achse zentrieren - Falls dieser Schlüssel WAHR ist, werden die Schlüssel »y« und »y_bottom« ignoriert und das Panel im Zentrum der Y-Achse auf dem Bildschirm platziert. Falls die Größe des Panels verändert wird, verharrt es auf dieser Position - das Panel wächst also auf beiden Seiten. Falls dieser Schlüssel FALSCH ist, geben die Schlüssel »y« und »y_bottom« den Anzeigeort des Panels an. - - - - Centre panel on y-axis - If true, the y and y_bottom keys are ignored and the panel is placed at the centre of the y-axis of the screen. If the panel is resized it will remain at that position — i.e. the panel will grow on both sides. If false, the y and y_bottom keys specify the location of the panel. - - - - Центрировать панель по оси Y - Если этот ключ установлен, то ключи y и y_bottom игнорируются и панель помещается в центр оси Y экрана. Если размер панели изменяется, она всё равно остаётся на том же месте (иными словами — расширяется одновременно в обе стороны). Если ключ не установлен, то ключи y и y_bottom определяют положение панели. - - - - - /schemas/apps/panel/toplevels/auto_hide - panel - bool - false - - Automatically hide panel into corner - - If true, the panel is automatically hidden into a corner - of the screen when the pointer leaves the panel area. Moving the - pointer to that corner again will cause the panel to re-appear. - - - - - Panel automatisch in der Ecke verbergen. - Falls dieser Schlüssel WAHR ist, wird das Panel automatisch in einer Bildschirmecke verborgen, sobald der Zeiger die Panel-Fläche verlässt. Erneutes Bewegen in diese Ecke sorgt dafür, dass das Panel wieder angezeigt wird. - - - - Automatically hide panel into corner - If true, the panel is automatically hidden into a corner of the screen when the pointer leaves the panel area. Moving the pointer to that corner again will cause the panel to re-appear. - - - - Автоматически прятать панель в угол - Если этот ключ установлен, то панель будет автоматически скрываться в угол экрана при покидании указателем мыши пространства над панелью. Если поместить указатель в этот угол, панель снова появится. - - - - - /schemas/apps/panel/toplevels/enable_animations - panel - bool - true - - Enable animations - - If true, hiding and un-hiding of this panel will be animated - rather than happening instantly. - - - - - Animationen aktivieren - Falls dieser Schlüssel WAHR ist, wird das Anzeigen/Verbergen dieses Panels animiert. Anderenfalls wird das Panel unverzüglich angezeigt/verborgen. - - - - Enable animations - If true, hiding and un-hiding of this panel will be animated rather than happening instantly. - - - - Включить анимацию - Если этот ключ установлен, то скрытие и раскрытие панели будет анимированным, а не моментальным. - - - - - /schemas/apps/panel/toplevels/enable_buttons - panel - bool - false - - Enable hide buttons - - If true, buttons will be placed on each side of the panel - which may be used to move the panel to edge of the screen, - leaving only a button showing. - - - - - Verbergen-Knöpfe aktivieren - Falls dieser Schlüssel WAHR ist, werden auf jeder Seite des Panels Knöpfe angezeigt, die verwendet werden können, um das Panel an den Rand des Bildschirms zu verschieben, wobei in diesem Zustand nur ein Knopf angezeigt wird. - - - - Enable hide buttons - If true, buttons will be placed on each side of the panel which may be used to move the panel to edge of the screen, leaving only a button showing. - - - - Включить кнопки скрытия/раскрытия - Если этот ключ установлен, то на панели будут кнопки скрытия/раскрытия. Они используются для «вывода» панели за пределы экрана, так что остаётся видимой только кнопка, позволяющая «развернуть» панель обратно. - - - - - /schemas/apps/panel/toplevels/enable_arrows - panel - bool - true - - Enable arrows on hide buttons - - If true, arrows will be placed on the hide buttons. This - key is only relevant if the enable_buttons key is true. - - - - - Pfeile auf Verbergen-Knöpfen anzeigen - Falls dieser Schlüssel WAHR ist, werden auf den Verbergen-Knöpfen Pfeile angezeigt. Dieser Schlüssel kommt ausschließlich zum Tragen, falls der Schlüssel »enable_buttons« WAHR ist. - - - - Enable arrows on hide buttons - If true, arrows will be placed on the hide buttons. This key is only relevant if the enable_buttons key is true. - - - - Включить стрелки на кнопках скрытия/раскрытия - Если этот ключ установлен, то на кнопки скрытия/раскрытия будут нанесены стрелки. Этот параметр имеет смысл только в том случае, если установлен ключ enable_buttons. - - - - - /schemas/apps/panel/toplevels/hide_delay - panel - int - 300 - - Panel autohide delay - - Specifies the number of milliseconds delay after the pointer - leaves the panel area before the panel is automatically hidden. - This key is only relevant if the auto_hide key is true. - - - - - Verzögerung beim Auto-Verbergen - Gibt die Anzahl der Millisekunden an, die sich der Zeiger außerhalb der Panel-Fläche befinden muss, bevor das Panel automatisch verborgen wird. Dieser Schlüssel kommt ausschließlich zum Tragen, falls der Schlüssel »auto_hide« WAHR ist. - - - - Panel autohide delay - Specifies the number of milliseconds delay after the pointer leaves the panel area before the panel is automatically hidden. This key is only relevant if the auto_hide key is true. - - - - Задержка автоскрытия панели - Указывает задержку в миллисекундах между покиданием указателем мыши области над панелью и автоматическим скрытием этой панели. Имеет смысл только в том случае, если установлен ключ auto_hide. - - - - - /schemas/apps/panel/toplevels/unhide_delay - panel - int - 100 - - Panel autounhide delay - - Specifies the number of milliseconds delay after the pointer - enters the panel area before the panel is automatically - re-shown. This key is only relevant if the auto_hide key is - true. - - - - - Verzögerung beim Auto-Wiederanzeigen - Gibt die Anzahl der Millisekunden an, die sich der Zeiger über der Panel-Fläche befinden muss, bevor das Panel automatisch wieder angezeigt wird. Dieser Schlüssel kommt ausschließlich zum Tragen, falls der Schlüssel »auto_hide« WAHR ist. - - - - Panel autounhide delay - Specifies the number of milliseconds delay after the pointer enters the panel area before the panel is automatically re-shown. This key is only relevant if the auto_hide key is true. - - - - Задержка автораскрытия панели - Указывает задержку в миллисекундах между появлением указателя мыши в области панели и автоматическим раскрытием этой панели. Имеет смысл только в том случае, если установлен ключ auto_hide. - - - - - /schemas/apps/panel/toplevels/auto_hide_size - panel - int - 1 - - Visible pixels when hidden - - Specifies the number of pixels visible when the panel is - automatically hidden into a corner. This key is only - relevant if the auto_hide key is true. - - - - - Sichtbare Pixel wenn verborgen - Gibt die Anzahl der sichtbaren Pixel an, wenn das Panel automatisch in einer Ecke verbogen wurde. Dieser Schlüssel kommt ausschließlich zum Tragen, wenn der Schlüssel »auto_hide« WAHR ist. - - - - Visible pixels when hidden - Specifies the number of pixels visible when the panel is automatically hidden into a corner. This key is only relevant if the auto_hide key is true. - - - - Количество отображаемых пикселей скрытой панели. - Указывает количество пикселей, видимых, когда панель автоматически скрывается за границу экрана. Этот ключ имеет смысл только в том случае, если установлен ключ auto_hide. - - - - - /schemas/apps/panel/toplevels/animation_speed - panel - string - fast - - Animation speed - - The speed in which panel animations should occur. Possible - values are "slow", "medium" and "fast". This key is only - relevant if the enable_animations key is true. - - - - - Animationsgeschwindigkeit - Die Geschwindigkeit, in der Animationen wiedergegeben werden sollen. Zulässige Werte: »slow« (langsam), »medium« (mittel) sowie »fast« (schnell). Dieser Schlüssel kommt ausschließlich zum Tragen, falls der Schlüssel »enable_animations« WAHR ist. - - - - Animation speed - The speed in which panel animations should occur. Possible values are "slow", "medium" and "fast". This key is only relevant if the enable_animations key is true. - - - - Скорость анимации - Скорость, с которой должна производиться анимация. Допустимые значения: «slow» (медленно), «medium» (средне) и «fast» (быстро). Этот ключ действует только в том случае, если установлен ключ enable_animations. - - - - - /schemas/apps/panel/toplevels/background/type - panel - string - gtk - - Background type - - Which type of background should be used for this panel. - Possible values are "gtk" - the default GTK+ widget - background will be used, "color" - the color key will - be used as background color or "image" - the image - specified by the image key will be used as background. - - - - - Hintergrundtyp - Welcher Hintergrundtyp soll für dieses Panel verwendet werden? Zulässige Werte: »gtk« (den voreingestellten GTK+-Widget-Hintergrund verwenden), »color« (die gewünschte Farbe als Hintergrundfarbe verwenden) sowie »image« (das gewünschte Bild als Hintergrund verwenden). - - - - Background type - Which type of background should be used for this panel. Possible values are "gtk" — the default GTK+ widget background will be used, "colour" — the colour key will be used as background colour or "image" — the image specified by the image key will be used as background. - - - - Тип фона - Какой тип фона использовать для панели. Допустимые значения: «gtk» (будет использован общесистемный фон элементов GTK+), «color» (фон будет залит цветом, указанным в соответствующем ключе) и «image» (в качестве фона будет использовано указанное в соответствующем ключе изображение). - - - - - /schemas/apps/panel/toplevels/background/color - panel - string - #ffffff - - Background color - - Specifies the background color for the panel in #RGB - format. - - - - - Hintergrundfarbe - Gibt die Hintergrundfarbe des Panels im #RGB-Format an. - - - - Background colour - Specifies the background colour for the panel in #RGB format. - - - - Фоновый цвет - Указывает цвет фона для панели в формате #RGB. - - - - - /schemas/apps/panel/toplevels/background/opacity - panel - int - 6000 - - Background color opacity - - Specifies the opacity of the background color format. If the - color is not completely opaque (a value of less than 65535), - the color will be composited onto the desktop background - image. - - - - - Deckkraft der Hintergrundfarbe - Gibt die Deckkraft der Hintergrundfarbe an. Falls die Farbe nicht komplett deckend ist (ein Wert von weniger als 65535), wird das Bild mit dem Hintergrundbild der Arbeitsfläche gemischt. - - - - Background colour opacity - Specifies the opacity of the background colour format. If the colour is not completely opaque (a value of less than 65535), the colour will be composited onto the desktop background image. - - - - Степень непрозрачности фонового цвета - Определяет степень непрозрачности фонового цвета. Если цвет хотя бы частично прозрачен (то есть значение этого ключа меньше, чем 65535), то цвет будет совмещён с изображением фона рабочего стола. - - - - - /schemas/apps/panel/toplevels/background/image - panel - string - - - Background image - - Specifies the file to be used for the background image. If - the image contains an alpha channel it will be composited - onto the desktop background image. - - - - - Hintergrundbild - Gibt die für das Hintergrundbild zu verwendende Datei an. Falls das Bild einen Alphakanal enthält, wird es mit dem Hintergrundbild der Arbeitsfläche gemischt. - - - - Background image - Specifies the file to be used for the background image. If the image contains an alpha channel it will be composited onto the desktop background image. - - - - Фоновое изображение - Указывает файл, используемый в качестве фонового изображения. Если изображение содержит альфа-канал, то оно будет совмещено на прозрачных участках с изображением фона рабочего стола. - - - - - /schemas/apps/panel/toplevels/background/fit - panel - bool - false - - Fit image to panel - - If true, the image will be scaled (retaining the aspect - ratio of the image) to the panel height (if horizontal). - - - - - Bild in Panel einpassen - Falls dieser Schlüssel WAHR ist, wird das Bild auf Panel-Höhe (falls horizontal) skaliert, wobei das Ansichtsverhältnis des Bildes beibehalten wird. - - - - Fit image to panel - If true, the image will be scaled (retaining the aspect ratio of the image) to the panel height (if horizontal). - - - - Подгонять размер изображения под размер панели - Если этот ключ установлен, то фоновое изображение будет масштабироваться (с сохранением соотношения высоты к ширине) до высоты панели (если панель горизонтальная). - - - - - /schemas/apps/panel/toplevels/background/stretch - panel - bool - false - - Stretch image to panel - - If true, the image will be scaled to the panel dimensions. - The aspect ratio of the image will not be maintained. - - - - - Bild auf Panelgröße strecken - Falls dieser Schlüssel WAHR ist, wird das Bild den Abmessungen des Panels angepasst. Das Ansichtsverhältnis des Bildes bleibt dabei nicht erhalten. - - - - Stretch image to panel - If true, the image will be scaled to the panel dimensions. The aspect ratio of the image will not be maintained. - - - - Растянуть изображение по панели - Если этот ключ установлен, размер изображения будет изменен до размеров панели. Соотношение высоты к ширине изображения при этом не сохраняется. - - - - - /schemas/apps/panel/toplevels/background/rotate - panel - bool - false - - Rotate image on vertical panels - - If true, the background image will be rotated when the panel - is oriented vertically. - - - - - Bild auf vertikalen Panels drehen - Falls dieser Schlüssel WAHR ist, wird das Hintergrundbild gedreht angezeigt, falls das Panel vertikal ausgerichtet ist. - - - - Rotate image on vertical panels - If true, the background image will be rotated when the panel is oriented vertically. - - - - Поворачивать изображение на вертикальных панелях - Если этот ключ установлен, то фоновое изображение будет повёрнуто, если панель ориентирована вертикально. - - - - - - diff --git a/gconf/schemas/same-gnome.schemas b/gconf/schemas/same-gnome.schemas deleted file mode 100644 index 2a3e0a4..0000000 --- a/gconf/schemas/same-gnome.schemas +++ /dev/null @@ -1,141 +0,0 @@ - - - - - /schemas/apps/same-gnome/tileset - /apps/same-gnome/tileset - same-gnome - string - stones.png - - The theme to use - The filename of the theme to use. - - - - Zu verwendendes Thema - Der Dateiname des zu verwendenden Themas. - - - - The theme to use - The filename of the theme to use. - - - - Используемая в игре тема - Файл игровой темы. - - - - - /schemas/apps/same-gnome/size - /apps/same-gnome/size - same-gnome - int - 2 - - The board size - The size of the board to use. 1 = Custom, 2 = Small, 3 = Medium, 4 = Large. - - - - Die Spielflächengröße - Die zu verwendende Größe der Spielfläche. 1 = Benutzerdefiniert, 2 = Klein, 3 = Mittel, 4 = Groß. - - - - The board size - The size of the board to use. 1 = Custom, 2 = Small, 3 = Medium, 4 = Large. - - - - Размер игрового поля - Используемый размер доски. 1 - настраиваемая, 2 - маленькая, 3 - средняя, 4 - большая. - - - - - /schemas/apps/same-gnome/custom_width - /apps/same-gnome/custom_width - same-gnome - int - 15 - - Width of the custom board - The width of the custom board, 101 > width > 3. - - - - Breite der benutzerdefinierten Spielfläche - - - - - Width of the custom board - - - - - Ширина настраиваемой доски - - - - - - /schemas/apps/same-gnome/custom_height - /apps/same-gnome/custom_height - same-gnome - int - 10 - - Height of the custom board - The height of the custom board, 101 > height > 3. - - - - Höhe der benutzerdefinierten Spielfläche - - - - - Height of the custom board - - - - - Высота настраиваемой доски - - - - - - /schemas/apps/same-gnome/fast_animation - /apps/same-gnome/fast_animation - same-gnome - bool - FALSE - - Use fast animation - Setting this to FALSE means the pieces fall slowly, but gracefully. A setting of TRUE causes the pieces to fall quickly and jerkily. - - - - Schnelle Animation verwenden - Ist diese Einstellung auf »FALSE« gesetzt, gleiten die Teile langsam herunter. Der Wert »TRUE« bewirkt, dass die Teile schnell und ruckartig fallen. - - - - Use fast animation - Setting this to FALSE means the pieces fall slowly, but gracefully. A setting of TRUE causes the pieces to fall quickly and jerkily. - - - - Использовать быструю анимацию - Значение FALSE задает медленное и красивое падение шариков. Значение TRUE задает быстрое, но отрывистое падение. - - - - - - diff --git a/gconf/schemas/seahorse-plugins.schemas b/gconf/schemas/seahorse-plugins.schemas deleted file mode 100644 index b524b56..0000000 --- a/gconf/schemas/seahorse-plugins.schemas +++ /dev/null @@ -1,417 +0,0 @@ - - - - /schemas/apps/seahorse/agent/cache_enabled - /apps/seahorse/agent/cache_enabled - seahorse - bool - TRUE - - Whether the GPG password cache is enabled - This option enables the GPG password cache in the - seahorse-agent program. The 'use-agent' setting in gpg.conf - affects this setting. - - - - Bestimmt, ob der Zwischenspeicher für GPG-Passwörter aktiviert ist. - Diese Einstellung aktiviert den Zwischenspeicher für Passwörter im »seahorse-agent«. Die »use-agent«-Einstellung in der Datei »gpg.conf« beeinflusst diese Einstellung. - - - - Whether the GPG password cache is enabled - This option enables the GPG password cache in the seahorse-agent program. The 'use-agent' setting in gpg.conf affects this setting. - - - - Запоминать ли пароли GPG - Этот параметр включает запоминание паролей GPG в памяти программы seahorse-agent. Параметр «use-agent» в файле gpg.conf также отвечает за эту настройку. - - - - /schemas/apps/seahorse/agent/cache_method - /apps/seahorse/agent/cache_method - seahorse - string - internal - - Where to store cached passwords. - If set to 'gnome' uses gnome-keyring to cache passwords. - When set to 'internal' uses internal cache. - - - - Ort, an dem Passwörter zwischengespeichert werden - Wird dies auf »gnome« gesetzt, wird der Schlüsselbund benutzt, um Passwörter zwischenzuspeichern. Wird dies dagegen auf »internal« gesetzt, wird der interne Speicher benutzt. - - - - Where to store cached passwords. - If set to 'gnome' uses gnome-keyring to cache passwords. When set to 'internal' uses internal cache. - - - - Место для хранения запомненных паролей. - Если установлено в значение «gnome», то для запоминания паролей будет использоваться программа gnome-keyring. Если установлено в значение «internal», то будет использоваться внутренний кэш. - - - - /schemas/apps/seahorse/agent/cache_expire - /apps/seahorse/agent/cache_expire - seahorse - bool - TRUE - - Expire passwords in the cache - When set, seahorse-agent expires GPG passwords in - its cache after a period of time. - - - - Passwörter im Zwischenspeicher ablaufen lassen - Falls aktiviert, wird »seahorse-agent« GPG-Passwörter, die sich im Zwischenspeicher befinden, nach einer Frist ablaufen lassen. - - - - Expire passwords in the cache - When set, seahorse-agent expires GPG passwords in its cache after a period of time. - - - - Отмечать устаревшие пароли в памяти - Если установлено, seahorse-agent будет автоматически удалять запомненные пароли GPG по истечении промежутка времени. - - - - /schemas/apps/seahorse/agent/cache_ttl - /apps/seahorse/agent/cache_ttl - seahorse - int - 300 - - The time (in minutes) to cache GPG passwords - This is the amount of time, specified in minutes, - to cache GPG passwords in seahorse-agent. - - - - Zeit (in Minuten), die die GPG-Passwörter im Zwischenspeicher abgelegt werden - Dies ist der Zeitraum (in Minuten), in dem die GPG-Passwörter im Seahorse-Dienst zwischengespeichert werden. - - - - The time (in minutes) to cache GPG passwords - This is the amount of time, specified in minutes, to cache GPG passwords in seahorse-agent. - - - - Время хранения в памяти паролей GPG, в минутах - Время в минутах, в течение которого seahorse-agent хранит пароли GPG. - - - - /schemas/apps/seahorse/agent/cache_authorize - /apps/seahorse/agent/cache_authorize - seahorse - bool - TRUE - - Prompt before using GPG passwords in cache - Set to 'true' to have seahorse-agent prompt before - giving out passwords it has cached. - - - - Nachfragen, bevor GPG-Passwörter aus dem Zwischenspeicher verwendet werden - Aktivieren Sie dies, damit »seahorse-agent« nachfragt, bevor zwischengespeicherte Passwörter ausgegeben werden. - - - - Prompt before using GPG passwords in cache - Set to 'true' to have seahorse-agent prompt before giving out passwords it has cached. - - - - Спрашивать перед использованием паролей GPG из памяти - Если установлено, то seahorse-agent будет запрашивать подтверждение, прежде чем выдавать запомненные пароли. - - - - /schemas/apps/seahorse/agent/cache_display - /apps/seahorse/agent/cache_display - seahorse - bool - FALSE - - Display cache reminder in the notification area - Set to 'true' to enable display of the cache reminder in the - notification area of your panel. - - - - Im Benachrichtigungsfeld ein Symbol zur Erinnerung von Zwischenspeicherungen anzeigen - Diesen Wert auf »TRUE« setzen, damit kein Symbol im Panel angezeigt wird,welches über den Status der Zwischenspeicherung informiert. - - - - Display cache reminder in the notification area - Set to 'true' to enable display of the cache reminder in the notification area of your panel. - - - - Показывать в области уведомлений напоминание о памяти паролей - Если установлено, то в области уведомления на панели будет напоминание о памяти паролей. - - - - - - /schemas/apps/seahorse/applet/show_clipboard_state - /apps/seahorse/applet/show_clipboard_state - seahorse - bool - FALSE - - Show clipboard state in panel - Reflect the contents of the clipboard (whether encrypted, - signed, etc...) in the panel applet icon. - - - - Zeige den Status der Zwischenablage im Panel an - Status des Inhalts der Zwischenablage (verschlüsselt, signiert, etc …) durch das Symbol im Applet anzeigen. - - - - Show clipboard state in panel - Reflect the contents of the clipboard (whether encrypted, signed, etc...) in the panel applet icon. - - - - Показывать на панели состояние буфера обмена - Отображать состояние буфера обмена (зашифровано, подписано и так далее) в значке апплета панели. - - - - /schemas/apps/seahorse/applet/display_encrypted_clipboard - /apps/seahorse/applet/display_encrypted_clipboard - seahorse - bool - TRUE - - Display clipboard after encrypting - After performing an encrypt or signing operation from the applet, - display the resulting text in a window. - - - - Nach dem Verschlüsseln die Zwischenablage anzeigen - Ergebnistext in einem Fenster anzeigen, nachdem eine Verschlüsselungs- oder Signierungsoperation über das Applet durchgeführt wurde - - - - Display clipboard after encrypting - After performing an encrypt or signing operation from the applet, display the resulting text in a window. - - - - Показывать буфер обмена после зашифровки - После зашифровки или подписывания из апплета показывать результат во всплывающем окне. - - - - /schemas/apps/seahorse/applet/display_decrypted_clipboard - /apps/seahorse/applet/display_decrypted_clipboard - seahorse - bool - FALSE - - Display clipboard after decrypting - After performing an decrypt or verify operation from the applet, - display the resulting text in a window. - - - - Nach dem Entschlüsseln die Zwischenablage anzeigen - Ergebnis in einem Fenster anzeigen, nachdem eine Entschlüsselungs- oder Überprüfungsoperation durchgeführt wurde - - - - Display clipboard after decrypting - After performing an decrypt or verify operation from the applet, display the resulting text in a window. - - - - Показывать буфер обмена после расшифровки - После расшифровки или проверки подписи из апплета показывать результат во всплывающем окне. - - - - - - /schemas/desktop/pgp/ascii_armor - /desktop/pgp/ascii_armor - seahorse - bool - FALSE - - Whether to use ASCII Armor - If set to true, then files encrypted with seahorse - will be ASCII armor encoded. - - - - Bestimmt, ob ASCII-Armor benutzt werden soll. - Wenn aktiviert, werden Dateien, die mit Seahorse verschlüsselt werden, mit ASCII-Armor kodiert. - - - - Whether to use ASCII Armour - If set to true, then files encrypted with seahorse will be ASCII armour encoded. - - - - Использовать ли ASCII-обёртку - Если установлено, зашифрованные файлы будут оборачиваться в ASCII. - - - - /schemas/desktop/pgp/default_key - /desktop/pgp/default_key - seahorse - string - - - ID of the default key - This specifies the default key to use for - certain operations, mainly signing. - - - - Kennung des voreingestellten Schlüssels - Dies ist der voreingestellte Schlüssel für bestimmte Funktionen, hauptsächlich für das Signieren. - - - - ID of the default key - This specifies the default key to use for certain operations, mainly signing. - - - - Идентификатор ключа, используемого по умолчанию - Ключ по умолчанию для некоторых операций, в основном для создания подписи. - - - - /schemas/desktop/pgp/encrypt_to_self - /desktop/pgp/encrypt_to_self - seahorse - bool - FALSE - - Whether to always encrypt to default key - If set to true, then the default key will - always be added to an encryption recipients list. - - - - Bestimmt, ob Verschlüsselungen immer mit dem voreingestellten Schlüssel durchgeführt werden sollen. - Wenn aktiviert, wird der voreingestellte Schlüssel immer zur Liste der Empfänger hinzugefügt. - - - - Whether to always encrypt to default key - If set to true, then the default key will always be added to an encryption recipients list. - - - - Всегда ли шифровать для ключа по умолчанию - Если установлено, то ключ по умолчанию будет всегда добавляться в список получателей шифрования. - - - - /schemas/desktop/pgp/last_signer - /desktop/pgp/last_signer_openpgp - /desktop/pgp/last_signer_openssh - seahorse - string - - - Last key used to sign a message. - The ID of the last secret key used to sign a message. - - - - Letzter zum Signieren einer Nachricht verwendeter Schlüssel - Kennung des letzten Schlüssels, der für das Signieren einer Nachricht benutzt wurde - - - - Last key used to sign a message. - The ID of the last secret key used to sign a message. - - - - Последний ключ, использованный для подписи. - Идентификатор последнего тайного ключа, использованного для подписи сообщения. - - - - /schemas/desktop/pgp/recipients/sort_by - /desktop/pgp/recipients/sort_by - seahorse - string - name - - The column to sort the recipients by - Specify the column to sort the recipients window by. - Columns are: 'name' and 'id'. Put a '-' in front of the - column name to sort in descending order. - - - - Spalte, nach der die Empfänger sortiert werden - Geben Sie die Spalte an, nach der die Empfänger sortiert werden sollen. Spalten sind: »name« und »id«. Stellen Sie ein »-« an den Anfang des Spaltennamens, damit die Sortierung in absteigender Reihenfolge erfolgt. - - - - The column to sort the recipients by - Specify the column to sort the recipients window by. Columns are: 'name' and 'id'. Put a '-' in front of the column name to sort in descending order. - - - - Столбец для упорядочивания получателей - Столбец, по которому нужно упорядочить таблицу получателей. Возможные значения: «name» и «id». Если значение начинается с «-», порядок меняется на обратный. - - - - /schemas/desktop/pgp/keyservers/all_keyservers - /desktop/pgp/keyservers/all_keyservers - seahorse - list - string - [hkp://pgp.mit.edu:11371,ldap://keyserver.pgp.com] - - PGP Key servers - A list of key server URIs to search for remote PGP keys. - In later versions a display name can be included, by appending a - space and then the name. - - - - PGP-Schlüssel-Server - Eine Liste von Schlüssel-Servern, über die nach entfernten PGP-Schlüsseln gesucht werden kann. In späteren Versionen kann ein Anzeigename durch Anfügen eines Leerzeichens, gefolgt von dem Namen, angegeben werden. - - - - PGP Key servers - A list of key server URIs to search for remote PGP keys. In later versions a display name can be included, by appending a space and then the name. - - - - Серверы ключей PGP - Список URI серверов ключей для поиска ключей PGP. В более поздних версиях можно указать отображаемое имя через пробел. - - - - diff --git a/gconf/schemas/seahorse.schemas b/gconf/schemas/seahorse.schemas deleted file mode 100644 index d4c70b9..0000000 --- a/gconf/schemas/seahorse.schemas +++ /dev/null @@ -1,466 +0,0 @@ - - - - /schemas/apps/seahorse/sharing/sharing_enabled - /apps/seahorse/sharing/sharing_enabled - seahorse - bool - FALSE - - Enable DNS-SD sharing - Enables DNS-SD (Apple Bonjour) sharing of keys. seahorse-daemon - must be running and must be built with HKP and DNS-SD support. - - - - Freigabe über DNS-SD aktivieren - Aktiviert die Freigabe von Schlüsseln über DNS-SD (Apple Bonjour). Der Seahorse-Dienst muss gestartet sein und über HKP- und DNS-SD-Unterstützung verfügen. - - - - Enable DNS-SD sharing - Enables DNS-SD (Apple Bonjour) sharing of keys. seahorse-daemon must be running and must be built with HKP and DNS-SD support. - - - - Публиковать ключи через DNS-SD - Публиковать ключи по протоколу DNS-SD (Apple Bonjour). Служба seahorse-daemon должна оставаться в памяти и должна быть собрана с поддержкой HKP и DNS-SD. - - - - - - /schemas/desktop/pgp/ascii_armor - /desktop/pgp/ascii_armor - seahorse - bool - FALSE - - Whether to use ASCII Armor - If set to true, then files encrypted with seahorse - will be ASCII armor encoded. - - - - Bestimmt, ob ASCII-Armor benutzt werden soll. - Wenn aktiviert, werden Dateien, die mit Seahorse verschlüsselt werden, mit ASCII-Armor kodiert. - - - - Whether to use ASCII Armour - If set to true, then files encrypted with seahorse will be ASCII armour encoded. - - - - Использовать ли ASCII-обёртку - Если установлено, зашифрованные файлы будут оборачиваться в ASCII. - - - - /schemas/desktop/pgp/default_key - /desktop/pgp/default_key - seahorse - string - - - ID of the default key - This specifies the default key to use for - certain operations, mainly signing. - - - - Kennung des voreingestellten Schlüssels - Dies ist der voreingestellte Schlüssel für bestimmte Funktionen, hauptsächlich für das Signieren. - - - - ID of the default key - This specifies the default key to use for certain operations, mainly signing. - - - - Идентификатор ключа, используемого по умолчанию - Ключ по умолчанию для некоторых операций, в основном для создания подписи. - - - - /schemas/desktop/pgp/encrypt_to_self - /desktop/pgp/encrypt_to_self - seahorse - bool - FALSE - - Whether to always encrypt to default key - If set to true, then the default key will - always be added to an encryption recipients list. - - - - Bestimmt, ob Verschlüsselungen immer mit dem voreingestellten Schlüssel durchgeführt werden sollen. - Wenn aktiviert, wird der voreingestellte Schlüssel immer zur Liste der Empfänger hinzugefügt. - - - - Whether to always encrypt to default key - If set to true, then the default key will always be added to an encryption recipients list. - - - - Всегда ли шифровать для ключа по умолчанию - Если установлено, то ключ по умолчанию будет всегда добавляться в список получателей шифрования. - - - - /schemas/desktop/pgp/last_signer - /desktop/pgp/last_signer_openpgp - /desktop/pgp/last_signer_openssh - seahorse - string - - - Last key used to sign a message. - The ID of the last secret key used to sign a message. - - - - Letzter zum Signieren einer Nachricht verwendeter Schlüssel - Kennung des letzten Schlüssels, der für das Signieren einer Nachricht benutzt wurde - - - - Last key used to sign a message. - The ID of the last secret key used to sign a message. - - - - Последний ключ, использованный для подписи. - Идентификатор последнего тайного ключа, использованного для подписи сообщения. - - - - /schemas/apps/seahorse/listing/show_validity - /apps/seahorse/listing/show_validity - seahorse - bool - TRUE - - Show validity column in key manager - Controls the visibility of the validity column for the key manager. - - - - Spalte »Gültigkeit« in der Schlüsselverwaltung anzeigen - Steuert die Sichtbarkeit der Spalte »Gültigkeit« in der Schlüsselverwaltung. - - - - Show validity column in key manager - Controls the visibility of the validity column for the key manager. - - - - Показывать столбец «Достоверность» - Управляет видимостью столбца «Достоверность» в менеджере ключей. - - - - /schemas/apps/seahorse/listing/show_expires - /apps/seahorse/listing/show_expires - seahorse - bool - FALSE - - Show expires column in key manager - Controls the visibility of the expires column for the key manager. - - - - Spalte »Ablaufdatum« in der Schlüsselverwaltung anzeigen - Steuert die Sichtbarkeit der Spalte »Ablaufdatum« in der Schlüsselverwaltung. - - - - Show expires column in key manager - Controls the visibility of the expires column for the key manager. - - - - Показывать столбец «Истекает» - Управляет видимостью столбца «Истекает» в менеджере ключей. - - - - /schemas/apps/seahorse/listing/show_trust - /apps/seahorse/listing/show_trust - seahorse - bool - FALSE - - Show trust column in key manager - Controls the visibility of the trust column for the key manager. - - - - Spalte »Vertrauen« in der Schlüsselverwaltung anzeigen - Steuert die Sichtbarkeit der Spalte »Vertrauen« in der Schlüsselverwaltung. - - - - Show trust column in key manager - Controls the visibility of the trust column for the key manager. - - - - Показывать столбец «Доверие» - Управляет видимостью столбца «Доверие» в менеджере ключей. - - - - /schemas/apps/seahorse/listing/show_type - /apps/seahorse/listing/show_type - seahorse - bool - FALSE - - Show type column in key manager - Controls the visibility of the type column for the key manager. - - - - Spalte »Typ« in der Schlüsselverwaltung anzeigen - Steuert die Sichtbarkeit der Spalte »Typ« in der Schlüsselverwaltung. - - - - Show type column in key manager - Controls the visibility of the type column for the key manager. - - - - Показывать столбец «Типа» - Управляет видимостью столбца «Тип» в менеджере ключей. - - - - /schemas/apps/seahorse/listing/sort_by - /apps/seahorse/listing/sort_by - seahorse - string - name - - The column to sort the seahorse keys by - Specify the column to sort the seahorse key manager main - window by. Columns are: 'name', 'id', 'validity', 'expires', - 'trust', and 'type'. Put a '-' in front of the column name to - sort in descending order. - - - - Spalte, nach der die Schlüssel sortiert werden - Geben Sie die Spalte an, nach der die Schlüssel sortiert werden sollen. Spalten sind: »name«, »id«, »validity«, »expires« und »type«. Stellen Sie ein »-« an den Anfang des Spaltennamens, damit die Sortierung in absteigender Reihenfolge erfolgt. - - - - The column to sort the seahorse keys by - Specify the column to sort the seahorse key manager main window by. Columns are: 'name', 'id', 'validity', 'expires', 'trust', and 'type'. Put a '-' in front of the column name to sort in descending order. - - - - Столбец для упорядочивания ключей Seahorse - Столбец, по которому нужно упорядочить таблицу ключей в главном окне Seahorse. Возможные значения: «name», «id», «validity», «expires», «trust» и «type». Если значение начинается с «-», то используется порядок убывания. - - - - /schemas/desktop/pgp/recipients/sort_by - /desktop/pgp/recipients/sort_by - seahorse - string - name - - The column to sort the recipients by - Specify the column to sort the recipients window by. - Columns are: 'name' and 'id'. Put a '-' in front of the - column name to sort in descending order. - - - - Spalte, nach der die Empfänger sortiert werden - Geben Sie die Spalte an, nach der die Empfänger sortiert werden sollen. Spalten sind: »name« und »id«. Stellen Sie ein »-« an den Anfang des Spaltennamens, damit die Sortierung in absteigender Reihenfolge erfolgt. - - - - The column to sort the recipients by - Specify the column to sort the recipients window by. Columns are: 'name' and 'id'. Put a '-' in front of the column name to sort in descending order. - - - - Столбец для упорядочивания получателей - Столбец, по которому нужно упорядочить таблицу получателей. Возможные значения: «name» и «id». Если значение начинается с «-», порядок меняется на обратный. - - - - /schemas/desktop/pgp/keyservers/all_keyservers - /desktop/pgp/keyservers/all_keyservers - seahorse - list - string - [hkp://pgp.mit.edu:11371,ldap://keyserver.pgp.com] - - PGP Key servers - A list of key server URIs to search for remote PGP keys. - In later versions a display name can be included, by appending a - space and then the name. - - - - PGP-Schlüssel-Server - Eine Liste von Schlüssel-Servern, über die nach entfernten PGP-Schlüsseln gesucht werden kann. In späteren Versionen kann ein Anzeigename durch Anfügen eines Leerzeichens, gefolgt von dem Namen, angegeben werden. - - - - PGP Key servers - A list of key server URIs to search for remote PGP keys. In later versions a display name can be included, by appending a space and then the name. - - - - Серверы ключей PGP - Список URI серверов ключей для поиска ключей PGP. В более поздних версиях можно указать отображаемое имя через пробел. - - - - /schemas/desktop/pgp/keyservers/auto_retrieve - /desktop/pgp/keyservers/auto_retrieve - seahorse - bool - false - - Auto Retrieve Keys - Whether or not keys should be automatically retrieved from key - servers. - - - - Automatisches Empfangen von Schlüsseln - Legt fest, ob Schlüssel automatisch von den Schlüssel-Servern empfangen werden sollen. - - - - Auto Retrieve Keys - Whether or not keys should be automatically retrieved from key servers. - - - - Автоматически получать ключи - Загружать ли ключи с серверов автоматически. - - - - /schemas/desktop/pgp/keyservers/auto_sync - /desktop/pgp/keyservers/auto_sync - seahorse - bool - false - - Auto Sync Keys - Whether or not modified keys should be automatically synced with the default - key server. - - - - Automatischer Abgleich von Schlüsseln - Bestimmt, ob Änderungen an Schlüsseln automatisch mit dem Standard-Schlüssel-Server abgeglichen werden sollen. - - - - Auto Sync Keys - Whether or not modified keys should be automatically synced with the default key server. - - - - Автоматически синхронизировать ключи - Следует ли автоматически синхронизировать изменённые ключи с сервером по умолчанию. - - - - /schemas/desktop/pgp/keyservers/publish_to - /desktop/pgp/keyservers/publish_to - seahorse - string - - - Publish keys to this key server. - The key server to publish PGP keys to. Or empty to suppress - publishing of PGP keys. - - - - Schlüssel auf diesem Schlüssel-Server veröffentlichen - Schlüssel-Server, der für die Veröffentlichung von PGP-Schlüsseln genutzt wird. Leer lassen, damit keine PGP-Schlüssel veröffentlicht werden. - - - - Publish keys to this key server. - The key server to publish PGP keys to. Or empty to suppress publishing of PGP keys. - - - - Экспортировать ключи на этот сервер. - Сервер ключей, на котором надо публиковать ключи PGP. Если пусто, ключи PGP не публикуются. - - - - /schemas/desktop/pgp/keyservers/search_text - /desktop/pgp/keyservers/search_text - seahorse - string - - - Last key server search pattern - The last search pattern searched for against a key server. - - - - Letzter Suchbegriff des Schlüssel-Servers - Der letzte Suchbegriff, nach dem auf einem Schlüssel-Server gesucht wurde - - - - Last key server search pattern - The last search pattern searched for against a key server. - - - - Шаблон последнего поиска на сервере ключей - Последний шаблон поиска на сервере ключей. - - - - /schemas/desktop/pgp/keyservers/search_keyservers - /desktop/pgp/keyservers/search_keyservers - seahorse - list - string - [] - - Last key servers used - The last key server a search was performed against - or empty for all key servers. - - - - Zuletzt genutzte Schlüssel-Server - Schlüssel-Server, der für die letzte Suche benutzt wurde oder leer für alle Schlüssel-Server - - - - Last key servers used - The last key server a search was performed against or empty for all key servers. - - - - Последний использованный сервер ключей - Последний сервер, на котором искались ключи. Если пусто, то использовались все серверы. - - - - diff --git a/gconf/schemas/sound-juicer.schemas b/gconf/schemas/sound-juicer.schemas index 2496d53..14ee44f 100644 --- a/gconf/schemas/sound-juicer.schemas +++ b/gconf/schemas/sound-juicer.schemas @@ -97,6 +97,10 @@ %aA -- album artist (lowercase) %as -- album artist (sortable) %aS -- album artist (sortable lowercase) + %ac -- album composer + %aC -- album composer (lowercase) + %ap -- album composer (sortable) + %aP -- album composer (sortable lowercase) %ay -- album year %tt -- track title %tT -- track title (lowercase) @@ -104,22 +108,26 @@ %tA -- track artist (lowercase) %ts -- track artist (sortable) %tS -- track artist (sortable lowercase) + %tc -- track composer + %tC -- track composer (lowercase) + %tp -- track composer (sortable) + %tP -- track composer (sortable lowercase) Die Ordnerstruktur für die Dateien - %at -- Albentitel %aT -- Albentitel (Kleinschreibung) %aa -- Albeninterpret %aA -- Albeninterpret (Kleinschreibung) %as -- Albeninterpret (sortierbar) %aS -- Albeninterpret (sortierbar, Kleinschreibung) %ay -- Albenjahr %tt -- Titelname %tT -- Titelname (Kleinschreibung) %ta -- Titelinterpret %tA -- Titelinterpret (Kleinschreibung) %ts -- Titelinterpret (sortierbar) %tS -- Titelinterpret (sortierbar, Kleinschreibung) + %at -- Albentitel %aT -- Albentitel (Kleinschreibung) %aa -- Albeninterpret %aA -- Albeninterpret (Kleinschreibung) %as -- Albeninterpret (sortierbar, Kleinschreibung) %aS -- Albeninterpret (sortierbar, Kleinschreibung) %ac -- Albenkomponist %aC -- Albenkomponist (Kleinschreibung) %ap -- Albenkomponist (sortierbar) %aP -- Albenkomponist (sortierbar, Kleinschreibung) %ay -- Albenjahr %tt -- Titelname %tT -- Titelname (Kleinschreibung) %ta -- Titelinterpret %tA -- Titelinterpret (Kleinschreibung) %ts -- Titelinterpret (sortierbar) %tS -- Titelinterpret (sortierbar, Kleinschreibung) %tc -- Titelkomponist %tC -- Titelkomponist (Kleinschreibung) %tp -- Titelkomponist (sortierbar) %tP -- Titelkomponist (sortierbar, Kleinschreibung) The directory structure for the files - %at -- album title %aT -- album title (lowercase) %aa -- album artist %aA -- album artist (lowercase) %as -- album artist (sortable) %aS -- album artist (sortable lowercase) %ay -- album year %tt -- track title %tT -- track title (lowercase) %ta -- track artist %tA -- track artist (lowercase) %ts -- track artist (sortable) %tS -- track artist (sortable lowercase) + Структура каталогов для файлов - %at — название альбома; %aT — название альбома в нижнем регистре; %aa — исполнитель альбома; %aA — исполнитель альбома в нижнем регистре; %as — исполнитель альбома (для упорядочивания); %aS — исполнитель альбома в нижнем регистре (для упорядочивания); %ay — год альбома; %tt — название дорожки; %tT — название дорожки в нижнем регистре; %ta — исполнитель дорожки; %tA — исполнитель дорожки в нижнем регистре; %ts — исполнитель дорожки (для упорядочивания); %tS — исполнитель дорожки в нижнем регистре (для упорядочивания) + %at — название альбома; %aT — название альбома (в нижнем регистре); %aa — исполнитель альбома; %aA — исполнитель альбома (в нижнем регистре); %as — исполнитель альбома (упорядочиваемый); %aS — исполнитель альбома (в нижнем регистре, упорядочиваемый); %ac — композитор альбома; %ac — композитор альбома (в нижнем регистре); %ap — композитор альбома (упорядочиваемый); %aP — композитор альбома (в нижнем регистре, упорядочиваемый); %ay — год выпуска альбома; %tt — название дорожки; %tT — название дорожки (в нижнем регистре); %ta — исполнитель дорожки; %tA — исполнитель дорожки (в нижнем регистре); %ts — исполнитель дорожки (упорядочиваемый); %tS — исполнитель дорожки (в нижнем регистре, упорядочиваемый); %tc — композитор дорожки; %tC — композитор дорожки (в нижнем регистре); %tp — композитор дорожки (упорядочиваемый); %tP — композитор дорожки (в нижнем регистре, упорядочиваемый) @@ -139,6 +147,10 @@ %aA -- album artist (lowercase) %as -- album artist (sortable) %aS -- album artist (sortable lowercase) + %ac -- album composer + %aC -- album composer (lowercase) + %ap -- album composer (sortable) + %aP -- album composer (sortable lowercase) %tn -- track number (i.e 8) %tN -- track number, zero padded (i.e 08) %tt -- track title @@ -147,24 +159,28 @@ %tA -- track artist (lowercase) %ts -- track artist (sortable) %tS -- track artist (sortable lowercase) - %dn -- disc and track number (i.e Disk 2 - 6, or 6) - %dN -- disc number, zero padded (i.e d02t06, or 06) + %tc -- track composer + %tC -- track composer (lowercase) + %tp -- track composer (sortable) + %tP -- track composer (sortable lowercase) + %dn -- disc and track number, track zero padded (i.e Disk 2 - 06, or 06) + %dN -- condensed disc and track number, zero padded (i.e d02t06, or 06) Das Muster der Dateinamen - Keine Erweiterung angeben. %at -- Albentitel %aT -- Albentitel (Kleinschreibung) %aa -- Albeninterpret %aA -- Albeninterpret (Kleinschreibung) %as -- Albeninterpret (sortierbar, Kleinschreibung) %aS -- Albeninterpret (sortierbar, Kleinschreibung) %tn -- Titelnummer (z.B. 8) %tN -- Titelnummer, vorangestellte Null (z.B. 08) %tt -- Titelname %tT -- Titelname (Kleinschreibung) %ta -- Titelinterpret %tA -- Titelinterpret (Kleinschreibung)%ts -- Titelinterpret (sortierbar) %tS -- Titelinterpret (sortierbar, Kleinschreibung) %dn -- CD- und Titelnummer (z.B. CD 2 - 6, oder 6) %dN -- CD-Nummer, vorangestellte Null (z.B. d02t06 oder 06) + Keine Erweiterung angeben. %at -- Albentitel %aT -- Albentitel (Kleinschreibung) %aa -- Albeninterpret %aA -- Albeninterpret (Kleinschreibung) %as -- Albeninterpret (sortierbar, Kleinschreibung) %aS -- Albeninterpret (sortierbar, Kleinschreibung) %ac -- Albenkomponist %aC -- Albenkomponist (Kleinschreibung) %ap -- Albenkomponist (sortierbar) %aP -- Albenkomponist (sortierbar Kleinschreibung) %tn -- Titelnummer (z.B. »8«) %tN -- Titelnummer, vorangestellte Null (z.B. 08) %tt -- Titelname %tT -- Titelname (Kleinschreibung) %ta -- Titelinterpret %tA -- Titelinterpret (Kleinschreibung) %ts -- Titelinterpret (sortierbar) %tS -- Titelinterpret (sortierbar, Kleinschreibung) %tc -- Titelkomponist %tC -- Titelkomponist (Kleinschreibung) %tp -- Titelkomponist (sortierbar) %tP -- Titelkomponist (sortierbar, Kleinschreibung) %dn -- CD- und Titelnummer (z.B. »CD 2 - 06«, oder »06«) %dN -- CD-Nummer, vorangestellte Null (z.B. »d02t06« oder »06«) The name pattern for files - Do not specify an extension. %at -- album title %aT -- album title (lowercase) %aa -- album artist %aA -- album artist (lowercase) %as -- album artist (sortable) %aS -- album artist (sortable lowercase) %tn -- track number (i.e 8) %tN -- track number, zero padded (i.e 08) %tt -- track title %tT -- track title (lowercase) %ta -- track artist %tA -- track artist (lowercase) %ts -- track artist (sortable) %tS -- track artist (sortable lowercase) %dn -- disc and track number (i.e. Disk 2 - 6, or 6) %dN -- disc number, zero padded (i.e d02t06, or 06) + Шаблон имён файлов - Не указывайте расширение. %at — название альбома; %aT — название альбома в нижнем регистре; %aa — исполнитель альбома; %aA — исполнитель альбома в нижнем регистре; %as — исполнитель альбома (для упорядочивания); %aS — исполнитель альбома в нижнем регистре (для упорядочивания); %tn — номер дорожки; %tN — номер дорожки; %tt — название дорожки; %tT — название дорожки в нижнем регистре; %ta — исполнитель дорожки; %tA — исполнитель дорожки в нижнем регистре; %ts — исполнитель дорожки (для упорядочивания); %tS — исполнитель дорожки в нижнем регистре (для упорядочивания); %dn — номер диска и дорожки (например, Диск 2 - 6, или просто 6); %dN — номер диска, дополненный нулями (например, d02t06 или 06). + Не указывайте расширение. %at — название альбома; %aT — название альбома в нижнем регистре; %aa — исполнитель альбома; %aA — исполнитель альбома в нижнем регистре; %as — исполнитель альбома (упорядочиваемый); %aS — исполнитель альбома (в нижнем регистре, упорядочиваемый); %ac — композитор альбома; %ac — композитор альбома (в нижнем регистре); %ap — композитор альбома (упорядочиваемый); %aP — композитор альбома (в нижнем регистре, упорядочиваемый);%tn — номер дорожки (например, «8»); %tN — номер дорожки с добавлением нулей (например, «08»); %tt — название дорожки; %tT — название дорожки (в нижнем регистре); %ta — исполнитель дорожки; %tA — исполнитель дорожки (в нижнем регистре); %ts — исполнитель дорожки (упорядочиваемый); %tS — исполнитель дорожки (в нижнем регистре, упорядочиваемый); %tc — композитор дорожки; %tC — композитор дорожки (в нижнем регистре); %tp — композитор дорожки (упорядочиваемый); %tP — композитор дорожки (в нижнем регистре, упорядочиваемый); %dn — номер диска и дорожки (например, «Диск 2 - 06», или просто «06»); %dN — номер диска, дополненный нулями (например, «d02t06» или «06»). @@ -264,28 +280,50 @@ sound-juicer cdlossy - Audio Profile with which to encode + (obsolete) Audio Profile with which to encode - The GNOME Audio Profile with which to encode. + This key used to store the GNOME Audio Profile with which to encode. + This has been superseded by GStreamer encoding profiles, which are + configured using the audio_profile_media_type key. - Audioprofil mit dem kodiert werden soll - Das GNOME-Audioprofil welches zum Kodieren von Audiodaten verwendet werden soll. + (veraltet) Audioprofil, mit dem kodiert werden soll + Dieser Schlüssel gibt das GNOME-Audioprofil an, das als Ziel der Enkodierung verwendet werden soll. Dies wurde durch GSteamer-Enkodierungsprofile abgelöst, welche im Schlüssel »audio_profile_media_type« festgelegt werden.c - - Audio Profile with which to encode - The GNOME Audio Profile with which to encode. + + (устарело) Звуковой профиль для кодирования + Это ключ используется для хранения звукового профиля GNOME, который будет применяться для кодирования. Заменяется профилями кодирования GStreamer, которые настраиваются ключом audio_profile_media_type. + + + + + /schemas/apps/sound-juicer/audio_profile_media_type + /apps/sound-juicer/audio_profile_media_type + string + sound-juicer + audio/x-vorbis + + Media type to encode to + + The GStreamer media type to encode to. + + + + + Medien-Zieltyp der Enkodierung + Der GStreamer-Medientyp, in den enkodiert werden soll. - Звуковой профиль для кодирования - Звуковой профиль GNOME для кодирования звука. + Медиатип носителя для кодирования + Медиатип GStreamer для кодирования. + /schemas/apps/sound-juicer/volume /apps/sound-juicer/volume diff --git a/gconf/schemas/stickynotes.schemas b/gconf/schemas/stickynotes.schemas deleted file mode 100644 index 6d16866..0000000 --- a/gconf/schemas/stickynotes.schemas +++ /dev/null @@ -1,357 +0,0 @@ - - - - - /schemas/apps/stickynotes_applet/defaults/width - /apps/stickynotes_applet/defaults/width - stickynotes_applet - int - 100 - - Default width for new notes - Default width for new sticky notes in pixels. - - - - Vorgabebreite neuer Zettel - Vorgabebreite neuer Klebezettel in Pixel. - - - - Default width for new notes - Default width for new sticky notes in pixels. - - - - Ширина по умолчанию для новых записок - Ширина по умолчанию для новых липких записок в пикселях. - - - - - /schemas/apps/stickynotes_applet/defaults/height - /apps/stickynotes_applet/defaults/height - stickynotes_applet - int - 100 - - Default height for new notes - Default height for new sticky notes in pixels. - - - - Vorgabehöhe neuer Zettel - Vorgabehöhe neuer Klebezettel in Pixel. - - - - Default height for new notes - Default height for new sticky notes in pixels. - - - - Высота по умолчанию для новых записок - Высота по умолчанию для новых липких записок в пикселях. - - - - - /schemas/apps/stickynotes_applet/defaults/color - /apps/stickynotes_applet/defaults/color - stickynotes_applet - string - #ECF833 - - Default color for new notes - Default color for new sticky notes. This should be in html hex specification, for example "#30FF50". - - - - Vorgabefarbe neuer Zettel - Vorgabefarbe neuer Klebezettel. Dieser Wert sollte im HTML-Hex-Format angegeben werden, also z.B. »#30FF50«. - - - - Default colour for new notes - Default colour for new sticky notes. This should be in html hex specification, for example "#30FF50". - - - - Цвет новых записок по умолчанию - Цвет по умолчанию для новых липких записок. Цвет должен соответствовать шестнадцатеричной спецификации html, например «#30FF50». - - - - - /schemas/apps/stickynotes_applet/defaults/font_color - /apps/stickynotes_applet/defaults/font_color - stickynotes_applet - string - #000000 - - Default color for font - Default font color for new sticky notes. This should be in html hex specification, for example "#000000". - - - - Standardschriftfarbe - Standardschriftfarbe auf neuen Klebezetteln. Dieser Wert sollte im HTML-Hex-Format angegeben werden, also z.B. »#30FF50«. - - - - Default colour for font - Default font colour for new sticky notes. This should be in html hex specification, for example "#000000". - - - - Цвет шрифта по умолчанию - Цвет шрифта по умолчанию для новых липких записок. Цвет должен соответствовать шестнадцатеричной спецификации html, например «#000000». - - - - - /schemas/apps/stickynotes_applet/defaults/font - /apps/stickynotes_applet/defaults/font - stickynotes_applet - string - Sans 10 - - Default font for new notes - Default font for new sticky notes. This should be a Pango Font Name, for example "Sans Italic 10". - - - - Vorgabeschrift neuer Zettel - Vorgabeschrift für neue Klebezettel. Dieser Wert sollte als Pango-Schriftname angegeben werden, -z.B. »Sans Italic 10«. - - - - Default font for new notes - Default font for new sticky notes. This should be a Pango Font Name, for example "Sans Italic 10". - - - - Шрифт по умолчанию для новых записок - Шрифт по умолчанию для новых липких записок. Название шрифта должно указываться в формате Pango, например «Sans Italic 10». - - - - - /schemas/apps/stickynotes_applet/settings/sticky - /apps/stickynotes_applet/settings/sticky - stickynotes_applet - bool - true - - Sticky notes' workspace stickyness - Specifies whether the sticky notes are visible on ALL workspaces on the desktop, or not. - - - - Arbeitsflächenverhalten der Klebezettel - Gibt an, ob die Klebezettel auf ALLEN Arbeitsflächen der Arbeitsumgebung angezeigt werden sollen oder nicht. - - - - Sticky notes' workspace stickiness - Specifies whether the sticky notes are visible on ALL workspaces on the desktop, or not. - - - - Прилипчивость записок к рабочим местам - Указывает, видимы липкие записки на ВСЕХ рабочих местах или нет. - - - - - /schemas/apps/stickynotes_applet/settings/locked - /apps/stickynotes_applet/settings/locked - stickynotes_applet - bool - false - - Sticky notes' locked state - Specifies whether the sticky notes are locked (non-editable) or not. - - - - Sperrzustand der Klebezettel - Gibt an, ob die Klebezettel gesperrt werden sollen (nicht-editierbar) oder nicht. - - - - Sticky notes' locked state - Specifies whether the sticky notes are locked (non-editable) or not. - - - - Состояние фиксации липких записок - Указывает, зафиксированы липкие записки (недоступны для изменений) или нет. - - - - - /schemas/apps/stickynotes_applet/settings/date_format - /apps/stickynotes_applet/settings/date_format - stickynotes_applet - string - %x - - Date format of note's title - By default, sticky notes are given the current date as the title when they are created. This format is used; anything that can be parsed by strftime() is valid. - - - - Datumsformat des Zetteltitels - Als Vorgabe werden die Titel neu angelegter Klebezettel mit dem Erstellungsdatum versehen, wobei das hier angegebene Format verwendet wird. Dieses muss von »strftime()« verarbeitet werden können. - - - - Date format of note's title - By default, sticky notes are given the current date as the title when they are created. This format is used; anything that can be parsed by strftime() is valid. - - - - Формат даты в заголовках записок - По умолчанию липким запискам при создании даётся заголовок с текущей датой. Используется этот формат; всё, что может быть корректно проанализировано функцией strftime() является правильным. - - - - - /schemas/apps/stickynotes_applet/settings/use_system_color - /apps/stickynotes_applet/settings/use_system_color - stickynotes_applet - bool - true - - Whether to use the default system color - If this option is disabled, a custom color can be used as the default color for all sticky notes. - - - - Voreingestellte Systemfarbe verwenden? - Falls dieser Schlüssel falsch ist, kann eine benutzerdefinierte Farbe als Vorgabefarbe für alle Klebezettel verwendet werden. - - - - Whether to use the default system colour - If this option is disabled, a custom colour can be used as the default colour for all sticky notes. - - - - Использовать ли системный цвет по умолчанию - Если этот ключ не установлен, то цвет пользователя может быть использован как цвет по умолчанию для всех липких записок. - - - - - /schemas/apps/stickynotes_applet/settings/use_system_font - /apps/stickynotes_applet/settings/use_system_font - stickynotes_applet - bool - true - - Whether to use the default system font - If this option is disabled, a custom font can be used as the default font for all sticky notes. - - - - Voreingestellte Systemschrift verwenden? - Falls dieser Schlüssel falsch ist, kann eine benutzerdefinierte Schrift als Vorgabeschrift für alle Klebezettel verwendet werden. - - - - Whether to use the default system font - If this option is disabled, a custom font can be used as the default font for all sticky notes. - - - - Использовать ли системный шрифт по умолчанию - Если этот ключ не установлен, то шрифт пользователя может быть использован как исходный шрифт для всех липких записок. - - - - - /schemas/apps/stickynotes_applet/settings/force_default - /apps/stickynotes_applet/settings/force_default - stickynotes_applet - bool - false - - Whether to force the default color and font on all notes - If this option is enabled, the custom colors and fonts that have been assigned to individual notes will be ignored. - - - - Vorgabefarbe und -schrift für alle Zettel erzwingen? - Falls dieser Schlüssel wahr ist, werden einzelnen Zetteln zugewiesene, benutzerdefinierte Farben und Schriften ignoriert. - - - - Whether to force the default colour and font on all notes - If this option is enabled, the custom colours and fonts that have been assigned to individual notes will be ignored. - - - - Применять ли цвет и шрифт по умолчанию ко всем запискам - Если этот ключ установлен, то будут игнорироваться цвет и шрифт пользователя, назначенные отдельным запискам. - - - - - /schemas/apps/stickynotes_applet/settings/desktop_hide - /apps/stickynotes_applet/settings/desktop_hide - stickynotes_applet - bool - true - - Whether to hide all notes when the desktop is selected - If this option is enabled, selecting the desktop in any way will automatically hide all the open notes. - - - - Legt fest, ob bei ausgewähltem Arbeitsflächenhintergrund alle Notizen verborgen werden sollen - Falls diese Option aktiviert ist, werden beim Aktivieren des Arbeitsflächenhintergrundes automatisch alle geöffneten Notizen verborgen. - - - - Whether to hide all notes when the desktop is selected - If this option is enabled, selecting the desktop in any way will automatically hide all the open notes. - - - - Скрывать ли все записки когда выбирается рабочий стол - Если этот параметр включён, выбор рабочего стола автоматически скроет все открытые записки. - - - - - /schemas/apps/stickynotes_applet/settings/confirm_deletion - /apps/stickynotes_applet/settings/confirm_deletion - stickynotes_applet - bool - true - - Whether to ask for confirmation when deleting a note - Empty notes are always deleted without confirmation. - - - - Beim Löschen eines Zettels rückfragen? - Leere Zettel werden immer ohne Rückfrage gelöscht. - - - - Whether to ask for confirmation when deleting a note - Empty notes are always deleted without confirmation. - - - - Запрашивать ли подтверждение на удаление записки - Пустые записки всегда удаляются без подтверждения. - - - - - diff --git a/gconf/schemas/swfdec-thumbnailer.schemas b/gconf/schemas/swfdec-thumbnailer.schemas deleted file mode 100644 index 39a687c..0000000 --- a/gconf/schemas/swfdec-thumbnailer.schemas +++ /dev/null @@ -1,60 +0,0 @@ - - - - - /schemas/desktop/gnome/thumbnailers/application@x-shockwave-flash/enable - /desktop/gnome/thumbnailers/application@x-shockwave-flash/enable - swfdec-thumbnailer - bool - true - - Enable thumbnailing of Flash files - Enable the creation of new thumbnails. - - - - Vorschaubilder von Flash-Dateien einschalten - Erzeugen von Vorschaubilder aktivieren. - - - - Enable thumbnailing of Flash files - Enable the creation of new thumbnails. - - - - Включить создание миниатюр файлов Flash - Включить создание новых миниатюр - - - - - - /schemas/desktop/gnome/thumbnailers/application@x-shockwave-flash/command - /desktop/gnome/thumbnailers/application@x-shockwave-flash/command - swfdec-thumbnailer - string - swfdec-thumbnailer -s %s %i %o - - Thumbnail command for Flash files - Valid command plus arguments for the Flash file thumbnailer. See nautilus thumbnailer documentation for more information. - - - - Befehl für Vorschaubilder von Flash-Dateien - Gültiger Befehl und Argumente für das Flash-Datei-Vorschauwerkzeug. Schauen Sie für mehr Informationen in der Dokumentation der Vorschaufunktion von Nautilus nach. - - - - Thumbnail command for Flash files - Valid command plus arguments for the Flash file thumbnailer. See nautilus thumbnailer documentation for more information. - - - - Команда для создания миниатюр из файлов Flash - Команда и параметры для программы создания миниатюр. Смотрите документацию по создателю миниатюр для Nautilus для получения подробной информации. - - - - - diff --git a/gconf/schemas/totem-handlers.schemas b/gconf/schemas/totem-handlers.schemas deleted file mode 100644 index 2fb7cf0..0000000 --- a/gconf/schemas/totem-handlers.schemas +++ /dev/null @@ -1,355 +0,0 @@ - - - - - /schemas/desktop/gnome/url-handlers/pnm/command - /desktop/gnome/url-handlers/pnm/command - totem - string - totem "%s" - - - - - - - - - /schemas/desktop/gnome/url-handlers/pnm/needs_terminal - /desktop/gnome/url-handlers/pnm/needs_terminal - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/url-handlers/pnm/enabled - /desktop/gnome/url-handlers/pnm/enabled - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/url-handlers/mms/command - /desktop/gnome/url-handlers/mms/command - totem - string - totem "%s" - - - - - - - - - /schemas/desktop/gnome/url-handlers/mms/needs_terminal - /desktop/gnome/url-handlers/mms/needs_terminal - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/url-handlers/mms/enabled - /desktop/gnome/url-handlers/mms/enabled - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/url-handlers/net/command - /desktop/gnome/url-handlers/net/command - totem - string - totem "%s" - - - - - - - - - /schemas/desktop/gnome/url-handlers/net/needs_terminal - /desktop/gnome/url-handlers/net/needs_terminal - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/url-handlers/net/enabled - /desktop/gnome/url-handlers/net/enabled - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/url-handlers/rtp/command - /desktop/gnome/url-handlers/rtp/command - totem - string - totem "%s" - - - - - - - - - /schemas/desktop/gnome/url-handlers/rtp/needs_terminal - /desktop/gnome/url-handlers/rtp/needs_terminal - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/url-handlers/rtp/enabled - /desktop/gnome/url-handlers/rtp/enabled - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/url-handlers/rtsp/command - /desktop/gnome/url-handlers/rtsp/command - totem - string - totem "%s" - - - - - - - - - /schemas/desktop/gnome/url-handlers/rtsp/needs_terminal - /desktop/gnome/url-handlers/rtsp/needs_terminal - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/url-handlers/rtsp/enabled - /desktop/gnome/url-handlers/rtsp/enabled - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/url-handlers/mmsh/command - /desktop/gnome/url-handlers/mmsh/command - totem - string - totem "%s" - - - - - - - - - /schemas/desktop/gnome/url-handlers/mmsh/needs_terminal - /desktop/gnome/url-handlers/mmsh/needs_terminal - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/url-handlers/mmsh/enabled - /desktop/gnome/url-handlers/mmsh/enabled - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/url-handlers/uvox/command - /desktop/gnome/url-handlers/uvox/command - totem - string - totem "%s" - - - - - - - - - /schemas/desktop/gnome/url-handlers/uvox/needs_terminal - /desktop/gnome/url-handlers/uvox/needs_terminal - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/url-handlers/uvox/enabled - /desktop/gnome/url-handlers/uvox/enabled - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/url-handlers/icy/command - /desktop/gnome/url-handlers/icy/command - totem - string - totem "%s" - - - - - - - - - /schemas/desktop/gnome/url-handlers/icy/needs_terminal - /desktop/gnome/url-handlers/icy/needs_terminal - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/url-handlers/icy/enabled - /desktop/gnome/url-handlers/icy/enabled - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/url-handlers/icyx/command - /desktop/gnome/url-handlers/icyx/command - totem - string - totem "%s" - - - - - - - - - /schemas/desktop/gnome/url-handlers/icyx/needs_terminal - /desktop/gnome/url-handlers/icyx/needs_terminal - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/url-handlers/icyx/enabled - /desktop/gnome/url-handlers/icyx/enabled - totem - bool - true - - - - - - - - diff --git a/gconf/schemas/totem-video-thumbnail.schemas b/gconf/schemas/totem-video-thumbnail.schemas deleted file mode 100644 index 34e1631..0000000 --- a/gconf/schemas/totem-video-thumbnail.schemas +++ /dev/null @@ -1,2500 +0,0 @@ - - - - - /schemas/desktop/gnome/thumbnailers/application@mxf/enable - /desktop/gnome/thumbnailers/application@mxf/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@mxf/command - /desktop/gnome/thumbnailers/application@mxf/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@ogg/enable - /desktop/gnome/thumbnailers/application@ogg/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@ogg/command - /desktop/gnome/thumbnailers/application@ogg/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@ram/enable - /desktop/gnome/thumbnailers/application@ram/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@ram/command - /desktop/gnome/thumbnailers/application@ram/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@sdp/enable - /desktop/gnome/thumbnailers/application@sdp/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@sdp/command - /desktop/gnome/thumbnailers/application@sdp/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@vnd.ms-wpl/enable - /desktop/gnome/thumbnailers/application@vnd.ms-wpl/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@vnd.ms-wpl/command - /desktop/gnome/thumbnailers/application@vnd.ms-wpl/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@vnd.rn-realmedia/enable - /desktop/gnome/thumbnailers/application@vnd.rn-realmedia/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@vnd.rn-realmedia/command - /desktop/gnome/thumbnailers/application@vnd.rn-realmedia/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@x-extension-m4a/enable - /desktop/gnome/thumbnailers/application@x-extension-m4a/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@x-extension-m4a/command - /desktop/gnome/thumbnailers/application@x-extension-m4a/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@x-extension-mp4/enable - /desktop/gnome/thumbnailers/application@x-extension-mp4/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@x-extension-mp4/command - /desktop/gnome/thumbnailers/application@x-extension-mp4/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@x-flash-video/enable - /desktop/gnome/thumbnailers/application@x-flash-video/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@x-flash-video/command - /desktop/gnome/thumbnailers/application@x-flash-video/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@x-matroska/enable - /desktop/gnome/thumbnailers/application@x-matroska/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@x-matroska/command - /desktop/gnome/thumbnailers/application@x-matroska/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@x-netshow-channel/enable - /desktop/gnome/thumbnailers/application@x-netshow-channel/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@x-netshow-channel/command - /desktop/gnome/thumbnailers/application@x-netshow-channel/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@x-ogg/enable - /desktop/gnome/thumbnailers/application@x-ogg/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@x-ogg/command - /desktop/gnome/thumbnailers/application@x-ogg/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@x-quicktimeplayer/enable - /desktop/gnome/thumbnailers/application@x-quicktimeplayer/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@x-quicktimeplayer/command - /desktop/gnome/thumbnailers/application@x-quicktimeplayer/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@x-shorten/enable - /desktop/gnome/thumbnailers/application@x-shorten/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@x-shorten/command - /desktop/gnome/thumbnailers/application@x-shorten/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/image@vnd.rn-realpix/enable - /desktop/gnome/thumbnailers/image@vnd.rn-realpix/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/image@vnd.rn-realpix/command - /desktop/gnome/thumbnailers/image@vnd.rn-realpix/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/image@x-pict/enable - /desktop/gnome/thumbnailers/image@x-pict/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/image@x-pict/command - /desktop/gnome/thumbnailers/image@x-pict/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/misc@ultravox/enable - /desktop/gnome/thumbnailers/misc@ultravox/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/misc@ultravox/command - /desktop/gnome/thumbnailers/misc@ultravox/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/text@x-google-video-pointer/enable - /desktop/gnome/thumbnailers/text@x-google-video-pointer/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/text@x-google-video-pointer/command - /desktop/gnome/thumbnailers/text@x-google-video-pointer/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@3gpp/enable - /desktop/gnome/thumbnailers/video@3gpp/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@3gpp/command - /desktop/gnome/thumbnailers/video@3gpp/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@dv/enable - /desktop/gnome/thumbnailers/video@dv/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@dv/command - /desktop/gnome/thumbnailers/video@dv/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@fli/enable - /desktop/gnome/thumbnailers/video@fli/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@fli/command - /desktop/gnome/thumbnailers/video@fli/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@flv/enable - /desktop/gnome/thumbnailers/video@flv/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@flv/command - /desktop/gnome/thumbnailers/video@flv/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@mp2t/enable - /desktop/gnome/thumbnailers/video@mp2t/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@mp2t/command - /desktop/gnome/thumbnailers/video@mp2t/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@mp4/enable - /desktop/gnome/thumbnailers/video@mp4/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@mp4/command - /desktop/gnome/thumbnailers/video@mp4/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@mp4v-es/enable - /desktop/gnome/thumbnailers/video@mp4v-es/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@mp4v-es/command - /desktop/gnome/thumbnailers/video@mp4v-es/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@mpeg/enable - /desktop/gnome/thumbnailers/video@mpeg/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@mpeg/command - /desktop/gnome/thumbnailers/video@mpeg/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@msvideo/enable - /desktop/gnome/thumbnailers/video@msvideo/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@msvideo/command - /desktop/gnome/thumbnailers/video@msvideo/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@ogg/enable - /desktop/gnome/thumbnailers/video@ogg/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@ogg/command - /desktop/gnome/thumbnailers/video@ogg/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@quicktime/enable - /desktop/gnome/thumbnailers/video@quicktime/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@quicktime/command - /desktop/gnome/thumbnailers/video@quicktime/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@vivo/enable - /desktop/gnome/thumbnailers/video@vivo/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@vivo/command - /desktop/gnome/thumbnailers/video@vivo/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@vnd.divx/enable - /desktop/gnome/thumbnailers/video@vnd.divx/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@vnd.divx/command - /desktop/gnome/thumbnailers/video@vnd.divx/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@vnd.rn-realvideo/enable - /desktop/gnome/thumbnailers/video@vnd.rn-realvideo/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@vnd.rn-realvideo/command - /desktop/gnome/thumbnailers/video@vnd.rn-realvideo/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@vnd.vivo/enable - /desktop/gnome/thumbnailers/video@vnd.vivo/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@vnd.vivo/command - /desktop/gnome/thumbnailers/video@vnd.vivo/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@webm/enable - /desktop/gnome/thumbnailers/video@webm/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@webm/command - /desktop/gnome/thumbnailers/video@webm/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-anim/enable - /desktop/gnome/thumbnailers/video@x-anim/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-anim/command - /desktop/gnome/thumbnailers/video@x-anim/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-avi/enable - /desktop/gnome/thumbnailers/video@x-avi/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-avi/command - /desktop/gnome/thumbnailers/video@x-avi/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-flc/enable - /desktop/gnome/thumbnailers/video@x-flc/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-flc/command - /desktop/gnome/thumbnailers/video@x-flc/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-fli/enable - /desktop/gnome/thumbnailers/video@x-fli/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-fli/command - /desktop/gnome/thumbnailers/video@x-fli/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-flic/enable - /desktop/gnome/thumbnailers/video@x-flic/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-flic/command - /desktop/gnome/thumbnailers/video@x-flic/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-flv/enable - /desktop/gnome/thumbnailers/video@x-flv/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-flv/command - /desktop/gnome/thumbnailers/video@x-flv/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-m4v/enable - /desktop/gnome/thumbnailers/video@x-m4v/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-m4v/command - /desktop/gnome/thumbnailers/video@x-m4v/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-matroska/enable - /desktop/gnome/thumbnailers/video@x-matroska/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-matroska/command - /desktop/gnome/thumbnailers/video@x-matroska/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-mpeg/enable - /desktop/gnome/thumbnailers/video@x-mpeg/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-mpeg/command - /desktop/gnome/thumbnailers/video@x-mpeg/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-ms-asf/enable - /desktop/gnome/thumbnailers/video@x-ms-asf/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-ms-asf/command - /desktop/gnome/thumbnailers/video@x-ms-asf/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-ms-asx/enable - /desktop/gnome/thumbnailers/video@x-ms-asx/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-ms-asx/command - /desktop/gnome/thumbnailers/video@x-ms-asx/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-msvideo/enable - /desktop/gnome/thumbnailers/video@x-msvideo/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-msvideo/command - /desktop/gnome/thumbnailers/video@x-msvideo/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-ms-wm/enable - /desktop/gnome/thumbnailers/video@x-ms-wm/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-ms-wm/command - /desktop/gnome/thumbnailers/video@x-ms-wm/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-ms-wmv/enable - /desktop/gnome/thumbnailers/video@x-ms-wmv/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-ms-wmv/command - /desktop/gnome/thumbnailers/video@x-ms-wmv/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-ms-wmx/enable - /desktop/gnome/thumbnailers/video@x-ms-wmx/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-ms-wmx/command - /desktop/gnome/thumbnailers/video@x-ms-wmx/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-ms-wvx/enable - /desktop/gnome/thumbnailers/video@x-ms-wvx/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-ms-wvx/command - /desktop/gnome/thumbnailers/video@x-ms-wvx/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-nsv/enable - /desktop/gnome/thumbnailers/video@x-nsv/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-nsv/command - /desktop/gnome/thumbnailers/video@x-nsv/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-ogm@ogg/enable - /desktop/gnome/thumbnailers/video@x-ogm@ogg/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-ogm@ogg/command - /desktop/gnome/thumbnailers/video@x-ogm@ogg/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-theora@ogg/enable - /desktop/gnome/thumbnailers/video@x-theora@ogg/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-theora@ogg/command - /desktop/gnome/thumbnailers/video@x-theora@ogg/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-totem-stream/enable - /desktop/gnome/thumbnailers/video@x-totem-stream/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/video@x-totem-stream/command - /desktop/gnome/thumbnailers/video@x-totem-stream/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-pn-realaudio/enable - /desktop/gnome/thumbnailers/audio@x-pn-realaudio/enable - totem - bool - true - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-pn-realaudio/command - /desktop/gnome/thumbnailers/audio@x-pn-realaudio/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@3gpp/enable - /desktop/gnome/thumbnailers/audio@3gpp/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@3gpp/command - /desktop/gnome/thumbnailers/audio@3gpp/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@ac3/enable - /desktop/gnome/thumbnailers/audio@ac3/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@ac3/command - /desktop/gnome/thumbnailers/audio@ac3/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@AMR/enable - /desktop/gnome/thumbnailers/audio@AMR/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@AMR/command - /desktop/gnome/thumbnailers/audio@AMR/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@AMR-WB/enable - /desktop/gnome/thumbnailers/audio@AMR-WB/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@AMR-WB/command - /desktop/gnome/thumbnailers/audio@AMR-WB/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@basic/enable - /desktop/gnome/thumbnailers/audio@basic/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@basic/command - /desktop/gnome/thumbnailers/audio@basic/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@midi/enable - /desktop/gnome/thumbnailers/audio@midi/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@midi/command - /desktop/gnome/thumbnailers/audio@midi/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@mp4/enable - /desktop/gnome/thumbnailers/audio@mp4/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@mp4/command - /desktop/gnome/thumbnailers/audio@mp4/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@mpeg/enable - /desktop/gnome/thumbnailers/audio@mpeg/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@mpeg/command - /desktop/gnome/thumbnailers/audio@mpeg/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@ogg/enable - /desktop/gnome/thumbnailers/audio@ogg/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@ogg/command - /desktop/gnome/thumbnailers/audio@ogg/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@prs.sid/enable - /desktop/gnome/thumbnailers/audio@prs.sid/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@prs.sid/command - /desktop/gnome/thumbnailers/audio@prs.sid/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@vnd.rn-realaudio/enable - /desktop/gnome/thumbnailers/audio@vnd.rn-realaudio/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@vnd.rn-realaudio/command - /desktop/gnome/thumbnailers/audio@vnd.rn-realaudio/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-aiff/enable - /desktop/gnome/thumbnailers/audio@x-aiff/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-aiff/command - /desktop/gnome/thumbnailers/audio@x-aiff/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-ape/enable - /desktop/gnome/thumbnailers/audio@x-ape/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-ape/command - /desktop/gnome/thumbnailers/audio@x-ape/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-flac/enable - /desktop/gnome/thumbnailers/audio@x-flac/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-flac/command - /desktop/gnome/thumbnailers/audio@x-flac/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-gsm/enable - /desktop/gnome/thumbnailers/audio@x-gsm/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-gsm/command - /desktop/gnome/thumbnailers/audio@x-gsm/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-it/enable - /desktop/gnome/thumbnailers/audio@x-it/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-it/command - /desktop/gnome/thumbnailers/audio@x-it/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-m4a/enable - /desktop/gnome/thumbnailers/audio@x-m4a/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-m4a/command - /desktop/gnome/thumbnailers/audio@x-m4a/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-matroska/enable - /desktop/gnome/thumbnailers/audio@x-matroska/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-matroska/command - /desktop/gnome/thumbnailers/audio@x-matroska/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-mod/enable - /desktop/gnome/thumbnailers/audio@x-mod/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-mod/command - /desktop/gnome/thumbnailers/audio@x-mod/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-mp3/enable - /desktop/gnome/thumbnailers/audio@x-mp3/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-mp3/command - /desktop/gnome/thumbnailers/audio@x-mp3/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-mpeg/enable - /desktop/gnome/thumbnailers/audio@x-mpeg/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-mpeg/command - /desktop/gnome/thumbnailers/audio@x-mpeg/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-ms-asf/enable - /desktop/gnome/thumbnailers/audio@x-ms-asf/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-ms-asf/command - /desktop/gnome/thumbnailers/audio@x-ms-asf/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-ms-asx/enable - /desktop/gnome/thumbnailers/audio@x-ms-asx/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-ms-asx/command - /desktop/gnome/thumbnailers/audio@x-ms-asx/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-ms-wax/enable - /desktop/gnome/thumbnailers/audio@x-ms-wax/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-ms-wax/command - /desktop/gnome/thumbnailers/audio@x-ms-wax/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-ms-wma/enable - /desktop/gnome/thumbnailers/audio@x-ms-wma/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-ms-wma/command - /desktop/gnome/thumbnailers/audio@x-ms-wma/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-musepack/enable - /desktop/gnome/thumbnailers/audio@x-musepack/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-musepack/command - /desktop/gnome/thumbnailers/audio@x-musepack/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-pn-aiff/enable - /desktop/gnome/thumbnailers/audio@x-pn-aiff/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-pn-aiff/command - /desktop/gnome/thumbnailers/audio@x-pn-aiff/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-pn-au/enable - /desktop/gnome/thumbnailers/audio@x-pn-au/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-pn-au/command - /desktop/gnome/thumbnailers/audio@x-pn-au/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-pn-wav/enable - /desktop/gnome/thumbnailers/audio@x-pn-wav/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-pn-wav/command - /desktop/gnome/thumbnailers/audio@x-pn-wav/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-pn-windows-acm/enable - /desktop/gnome/thumbnailers/audio@x-pn-windows-acm/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-pn-windows-acm/command - /desktop/gnome/thumbnailers/audio@x-pn-windows-acm/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-realaudio/enable - /desktop/gnome/thumbnailers/audio@x-realaudio/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-realaudio/command - /desktop/gnome/thumbnailers/audio@x-realaudio/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-real-audio/enable - /desktop/gnome/thumbnailers/audio@x-real-audio/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-real-audio/command - /desktop/gnome/thumbnailers/audio@x-real-audio/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-sbc/enable - /desktop/gnome/thumbnailers/audio@x-sbc/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-sbc/command - /desktop/gnome/thumbnailers/audio@x-sbc/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-speex/enable - /desktop/gnome/thumbnailers/audio@x-speex/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-speex/command - /desktop/gnome/thumbnailers/audio@x-speex/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-tta/enable - /desktop/gnome/thumbnailers/audio@x-tta/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-tta/command - /desktop/gnome/thumbnailers/audio@x-tta/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-wav/enable - /desktop/gnome/thumbnailers/audio@x-wav/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-wav/command - /desktop/gnome/thumbnailers/audio@x-wav/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-wavpack/enable - /desktop/gnome/thumbnailers/audio@x-wavpack/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-wavpack/command - /desktop/gnome/thumbnailers/audio@x-wavpack/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-vorbis/enable - /desktop/gnome/thumbnailers/audio@x-vorbis/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-vorbis/command - /desktop/gnome/thumbnailers/audio@x-vorbis/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-vorbis@ogg/enable - /desktop/gnome/thumbnailers/audio@x-vorbis@ogg/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-vorbis@ogg/command - /desktop/gnome/thumbnailers/audio@x-vorbis@ogg/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-xm/enable - /desktop/gnome/thumbnailers/audio@x-xm/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/audio@x-xm/command - /desktop/gnome/thumbnailers/audio@x-xm/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@x-flac/enable - /desktop/gnome/thumbnailers/application@x-flac/enable - totem - bool - false - - - - - - - - - /schemas/desktop/gnome/thumbnailers/application@x-flac/command - /desktop/gnome/thumbnailers/application@x-flac/command - totem - string - /usr/bin/totem-video-thumbnailer -s %s %u %o - - - - - - - - diff --git a/gconf/schemas/totem.schemas b/gconf/schemas/totem.schemas deleted file mode 100644 index 7dd5192..0000000 --- a/gconf/schemas/totem.schemas +++ /dev/null @@ -1,677 +0,0 @@ - - - - - /schemas/apps/totem/lock_screensaver_on_audio - /apps/totem/lock_screensaver_on_audio - totem - bool - true - - Allow the screensaver to activate when playing audio - - Allow the screensaver to activate when playing audio. - Disable if you have monitor-powered speakers. - - - - - Bildschirmschoner darf auch starten, wenn lediglich Audio wiedergegeben wird - Legt fest, ob der Bildschirmschoner auch starten darf, wenn lediglich Audio wiedergegeben wird. Dies ist nützlich für im Monitor eingebaute Lautsprecher. - - - - Allow the screensaver to activate when playing audio - Allow the screensaver to activate when playing audio. Disable if you have monitor-powered speakers. - - - - Не выключать хранитель экрана при проигрывании аудио - Не выключать хранитель экрана при проигрывании аудио. Выключите, если колонки встроены в монитор. - - - - - /schemas/apps/totem/show_vfx - /apps/totem/show_vfx - totem - bool - true - - Show visual effects when no video is displayed - - Show visual effects when playing an audio only file. - - - - - Visuelle Effekte anzeigen, wenn kein Video angezeigt wird - Visuelle Effekte anzeigen, wenn eine Datei wiedergegeben wird, die lediglich eine Audio-Spur enthält. - - - - Show visual effects when no video is displayed - Show visual effects when playing an audio only file. - - - - Показывать эффекты визуализации при отсутствии видео - Показывать эффекты визуализации при воспроизведении звукового файла. - - - - - /schemas/apps/totem/visual - /apps/totem/visual - totem - string - goom - - Name of the visual effects plugins - - - - Name der visuellen Effekt-Plugins - - - - Name of the visual effects plugins - - - - Имя модуля визуализации - - - - - /schemas/apps/totem/brightness - /apps/totem/brightness - totem - int - 32767 - - The brightness of the video - - - - Die Helligkeit des Videos - - - - The brightness of the video - - - - Яркость видео - - - - - /schemas/apps/totem/contrast - /apps/totem/contrast - totem - int - 32767 - - The contrast of the video - - - - Der Kontrast des Videos - - - - The contrast of the video - - - - Контрастность видео - - - - - /schemas/apps/totem/hue - /apps/totem/hue - totem - int - 32767 - - The hue of the video - - - - Der Farbton des Videos - - - - The hue of the video - - - - Оттенок видео - - - - - /schemas/apps/totem/saturation - /apps/totem/saturation - totem - int - 32767 - - The saturation of the video - - - - Der Sättigung des Videos - - - - The saturation of the video - - - - Насыщенность видео - - - - - /schemas/apps/totem/auto_resize - /apps/totem/auto_resize - totem - bool - FALSE - - Resize the canvas automatically on file load - - - - Fenstergröße beim Laden automatisch der geöffneten Datei anpassen - - - - Resize the canvas automatically on file load - - - - Автоматически менять размер экрана при загрузке файла - - - - - /schemas/apps/totem/connection_speed - /apps/totem/connection_speed - totem - int - 11 - - Network connection speed - Approximate network connection speed, used to select quality on media over the network: - "0" for 14.4 Kbps Modem, - "1" for 19.2 Kbps Modem, - "2" for 28.8 Kbps Modem, - "3" for 33.6 Kbps Modem, - "4" for 34.4 Kbps Modem, - "5" for 56 Kbps Modem/ISDN, - "6" for 112 Kbps Dual ISDN/DSL, - "7" for 256 Kbps DSL/Cable, - "8" for 384 Kbps DSL/Cable, - "9" for 512 Kbps DSL/Cable, - "10" for 1.5 Mbps T1/Intranet/LAN, - "11" for Intranet/LAN. - - - - Verbindungsgeschwindigkeit - Geschätzte Geschwindigkeit der Netzwerkverbindung, verwendet zur Auswahl der Qualität der Medien im Netzwerk: »0« für 14.4 Kbps Modem, »1« für 19.2 Kbps Modem, »2« für 28.8 Kbps Modem, »3« für 33.6 Kbps Modem, »4« für 34.4 Kbps Modem, »5« für 56 Kbps Modem/ISDN, »6« für 112 Kbps Dual ISDN/DSL, »7« für 256 Kbps DSL/Kabel, »8« für 384 Kbps DSL/Kabel, »9« für 512 Kbps DSL/Kabel, »10« für 1.5 Mbps T1/Intranet/LAN, »11« für Intranet/LAN. - - - - Network connection speed - Approximate network connection speed, used to select quality on media over the network: "0" for 14.4 Kbps Modem, "1" for 19.2 Kbps Modem, "2" for 28.8 Kbps Modem, "3" for 33.6 Kbps Modem, "4" for 34.4 Kbps Modem, "5" for 56 Kbps Modem/ISDN, "6" for 112 Kbps Dual ISDN/DSL, "7" for 256 Kbps DSL/Cable, "8" for 384 Kbps DSL/Cable, "9" for 512 Kbps DSL/Cable, "10" for 1.5 Mbps T1/Intranet/LAN, "11" for Intranet/LAN. - - - - Скорость сетевого соединения - Приблизительная скорость сетевого соединения. Используется для определения качества воспроизведения мультимедиа через сеть: «0» — 14.4 Кбит/c модем, «1» — 19.2 Кбит/c модем, «2» — 28.8 Кбит/c модем, «3» — 33.6 Кбит/c модем, «4» — 34.4 Кбит/c модем, «5» — 56 Кбит/c модем/ISDN, «6» — 112 Кбит/c ISDN/DSL, «7» — 256 Кбит/c DSL/кабель, «8» — 384 Кбит/c DSL/кабель, «9» — 512 Кбит/c DSL/кабель, «10» — 1.5 Мбит/с T1/Внутренняя сеть/Локальная сеть, «11» — Внутренняя сеть/Локальная сеть. - - - - - /schemas/apps/totem/repeat - /apps/totem/repeat - totem - bool - FALSE - - Repeat mode - - - - Endlosschleife - - - - Repeat mode - - - - Режим повтора - - - - - /schemas/apps/totem/shuffle - /apps/totem/shuffle - totem - bool - FALSE - - Shuffle mode - - - - Zufallsmodus - - - - Shuffle mode - - - - В случайном порядке - - - - - /schemas/apps/totem/disable_deinterlacing - /apps/totem/disable_deinterlacing - totem - bool - FALSE - - Whether to disable deinterlacing for interlaced movies - - - - Soll das Deinterlacing für aus Halbbildern bestehende Videos deaktiviert werden? - - - - Whether to disable deinterlacing for interlaced movies - - - - Отключать деинтерлейсинг для фильмов с интерлейсингом или нет. - - - - - /schemas/apps/totem/debug - /apps/totem/debug - totem - bool - false - - Whether to enable debug for the playback engine - - - - Soll die Wiedergabe-Engine im Fehlerdiagnosemodus ausgeführt werden? - - - - Whether to enable debug for the playback engine - - - - Включить отладку движка воспроизведения или нет - - - - - /schemas/apps/totem/audio_output_type - /apps/totem/audio_output_type - totem - int - 0 - - Type of audio output to use - - Type of audio output to use: - "0" for stereo, - "1" for 4-channel output, - "2" for 5.0 channel output, - "3" for 5.1 channel output, - "4" for AC3 Passthrough. - - - - - Zu verwendender Audio-Ausgabetyp - Der Typ der zu verwendenden Audio-Ausgabe. Zulässige Werte: 0 (Stereo), 1 (4-Kanal-Ausgabe), 2 (5.0-Kanal-Ausgabe), 3 (5.1-Kanal-Ausgabe) sowie 4 (AC3 durchschleifen). - - - - Type of audio output to use - Type of audio output to use: "0" for stereo, "1" for 4-channel output, "2" for 5.0 channel output, "3" for 5.1 channel output, "4" for AC3 Passthrough. - - - - Тип аудиовыхода - Тип используемого аудиовыхода: «0» — стерео, «1» — выход на 4 канала, «2» — выход 5.0, «3» — выход 5.1, «4» — пропуск AC3. - - - - - /schemas/apps/totem/visual_quality - /apps/totem/visual_quality - totem - int - 0 - - Visualization quality setting - Quality settings for the audio visualization: - "0" for small, - "1" for normal, - "2" for large, - "3" for extra large. - - - - Qualität der Visualisierung einstellen - Qualitätseinstellungen für die Audio-Visualisierung: »0« für klein, »1« für normal, »2« für groß, »3« für extra groß. - - - - Visualisation quality setting - Quality settings for the audio visualisation: "0" for small, "1" for normal, "2" for large, "3" for extra large. - - - - Качество визуализации - Качество визуализации для аудио: «0» — низкое, «1» — обычное, «2» — высокое, «3» — очень высокое. - - - - - /schemas/apps/totem/network-buffer-threshold - /apps/totem/network-buffer-threshold - totem - float - 2 - - Network buffering threshold - Amount of data to buffer for network streams before starting to display the stream (in seconds) - - - - Grenzwert des Netzwerkzwischenspeichers - Größe des anzulegenden Zwischenspeichers für Netzwerk-Streams, bevor mit der Wiedergabe des Streams begonnen wird (in Sekunden) - - - - Network buffering threshold - Amount of data to buffer for network streams before starting to display the stream (in seconds) - - - - Порог сетевой буферизации - Количество накопленных в буфере данных, необходимых для начала воспроизведения потока (в секундах) - - - - - /schemas/apps/totem/subtitle_font - /apps/totem/subtitle_font - totem - string - Sans Bold 20 - - Subtitle font - Pango font description for subtitle rendering - - - - Untertitelschrift - Pango-Schriftbeschreibung für die Untertiteldarstellung - - - - Subtitle font - Pango font description for subtitle rendering - - - - Шрифт субтитров - Pango-описание шрифта субтитров - - - - - /schemas/apps/totem/subtitle_encoding - /apps/totem/subtitle_encoding - totem - string - - - - UTF-8 - - Subtitle encoding - Encoding charset for subtitle - - - - UTF-8 - Untertitelkodierung - Zeichenkodierung für Untertitel - - - - UTF-8 - Subtitle encoding - Encoding charset for subtitle - - - - UTF-8 - Кодировка субтитров - Кодировка символов для субтитров - - - - - /schemas/apps/totem/open_path - /apps/totem/open_path - totem - string - - - Default location for the "Open..." dialogs - Default location for the "Open..." dialogs, default is the current directory - - - - Standardmäßiger Ort des »Öffnen …«-Dialogs - Standardmäßiger Ort des »Öffnen …«-Dialogs, Vorgabe ist der momentane Ordner - - - - Default location for the "Open…" dialogues - Default location for the "Open…" dialogues, default is the current directory - - - - Адрес по умолчанию для диалоговых окон «Открыть…» - Адрес по умолчанию для диалоговых окон открытия файлов, первоначально — текущий каталог - - - - - /schemas/apps/totem/screenshot_save_path - /apps/totem/screenshot_save_path - totem - string - - - Default location for the "Take Screenshot" dialogs - Default location for the "Take Screenshot" dialogs, default is the Pictures directory - - - - Standardmäßiger Ort des »Bildschirmfoto aufnehmen …«-Dialogs - Standardmäßiger Ort des »Bildschirmfoto aufnehmen …«-Dialogs, Vorgabe ist der Bilder-Ordner - - - - Default location for the "Take Screenshot" dialogues - Default location for the "Take Screenshot" dialogues, default is the Pictures directory - - - - Адрес по умолчанию для диалоговых окон «Сохранить кадр» - Адрес по умолчанию для диалоговых окон сохранения кадров, первоначально — каталог Рисунки - - - - - /schemas/apps/totem/disable_user_plugins - /apps/totem/disable_user_plugins - totem - bool - false - - Whether to disable the plugins in the user's home directory - Whether to disable the plugins in the user's home directory - - - - Legt fest, ob die Plugins im persönlichen Ordner des Benutzers deaktiviert werden. - Legt fest, ob die Plugins im persönlichen Ordner des Benutzers deaktiviert werden. - - - - Whether to disable the plugins in the user's home directory - Whether to disable the plugins in the user's home directory - - - - Отключить модули из домашнего каталога пользователя или нет - Отключить модули из домашнего каталога пользователя или нет - - - - - /schemas/apps/disable_keyboard_shortcuts - /apps/totem/disable_keyboard_shortcuts - totem - bool - false - - Whether to disable the keyboard shortcuts - Whether to disable the keyboard shortcuts - - - - Legt fest, ob die Tastenkombinationen deaktiviert sein sollen - Legt fest, ob die Tastenkombinationen deaktiviert sein sollen - - - - Whether to disable the keyboard shortcuts - Whether to disable the keyboard shortcuts - - - - Отключить комбинации клавиш или нет - Отключить комбинации клавиш или нет - - - - - /schemas/apps/totem/autoload_subtitles - /apps/totem/autoload_subtitles - totem - bool - false - - Whether to autoload text subtitle files when a movie is loaded - - Whether to autoload text subtitle files when a movie is loaded - - - - - Legt fest, ob Untertitel beim Laden eines Filmes automatisch geladen werden sollen - Legt fest, ob Untertitel beim Laden eines Filmes automatisch geladen werden sollen - - - - Whether to autoload text subtitle files when a movie is loaded - Whether to autoload text subtitle files when a movie is loaded - - - - Загружать автоматически файлы текстовых субтитров после загрузки фильма или нет - Загружать автоматически файлы текстовых субтитров после загрузки фильма или нет - - - - - /schemas/apps/totem/autoload_chapters - /apps/totem/autoload_chapters - totem - bool - true - - Whether to autoload external chapter files when a movie is loaded - - Whether to autoload external chapter files when a movie is loaded. - - - - - Legt fest, ob externe Kapiteldateien beim Laden eines Filmes automatisch geladen werden sollen - Legt fest, ob externe Kapiteldateien beim Laden eines Filmes automatisch geladen werden sollen. - - - - Whether to autoload external chapter files when a movie is loaded - Whether to autoload external chapter files when a movie is loaded. - - - - Загружать автоматически файлы с внешними главами после загрузки фильма или нет - Загружать автоматически файлы с внешними главами после загрузки фильма или нет. - - - - - /schemas/apps/totem/remember_position - /apps/totem/remember_position - totem - bool - false - - Whether to remember the position of played audio/video files when pausing or closing them. - - - - Legt fest, ob die Wiedergabeposition von Audio- und Videodateien beim Unterbrechen oder Schließen gespeichert werden soll. - - - - Whether to remember the position of played audio/video files when pausing or closing them. - - - - Запоминать позицию воспроизведения аудио/видео файлов при приостановке и закрытии или нет - - - - - diff --git a/gconf/schemas/vinagre.schemas b/gconf/schemas/vinagre.schemas deleted file mode 100644 index ae77dab..0000000 --- a/gconf/schemas/vinagre.schemas +++ /dev/null @@ -1,218 +0,0 @@ - - - - /schemas/desktop/gnome/url-handlers/vnc/command - /desktop/gnome/url-handlers/vnc/command - vinagre - string - vinagre %s - - The handler for "vnc://" URLs - - - - - Die genutzte Anwendung für »vnc://«-Adressen - - - - - The handler for "vnc://" URLs - - - - - Обработчик для URL вида «vnc://» - - - - - - /schemas/desktop/gnome/url-handlers/vnc/needs_terminal - /desktop/gnome/url-handlers/vnc/needs_terminal - vinagre - bool - false - - - - - - - - /schemas/desktop/gnome/url-handlers/vnc/enabled - /desktop/gnome/url-handlers/vnc/enabled - vinagre - bool - true - - - - - - - - /schemas/apps/vinagre/shared_flag - /apps/vinagre/shared_flag - vinagre - bool - true - - Whether we should leave other clients connected - When connecting to a host, the client can say to the server to leave other clients connected or to drop the existent connections. Set the value to true to share the desktop with the other clients. - - - - Verbindung zu anderen Clients aufrechterhalten/zurücksetzen - Beim Verbinden mit einem Rechner kann der Client den Server entweder anweisen, die Verbindung zu anderen Clients aufrecht zu erhalten oder die laufenden Verbindungen zurückzusetzen. Setzen Sie den Wert dieses Schlüssels auf »WAHR«, um die Arbeitsfläche mit anderen Clients zu teilen. - - - - Whether we should leave other clients connected - When connecting to a host, the client can say to the server to leave other clients connected or to drop the existent connections. Set the value to true to share the desktop with the other clients. - - - - Нужно ли оставлять другие клиенты подключёнными - При подключении к узлу клиент может указать серверу оставить другие клиенты подключёнными или сбросить существующие подключения. Установите флажок, чтобы использовать рабочий стол совместно с другими клиентами. - - - - - /schemas/apps/vinagre/always_show_tabs - /apps/vinagre/always_show_tabs - vinagre - bool - false - - Whether we should show tabs even when there is only one active connection - Set to "true" to always show the tabs. Set to "false" to only show the tabs when there is more than one active connection. - - - - Reiter bei einer einzigen aktiven Verbindung anzeigen/nicht anzeigen - Falls dieser Schlüssel »WAHR« ist, werden immer Reiter angezeigt. Setzen Sie diesen Schlüssel auf »FALSCH«, wenn Reiter nur bei mehr als einer aktiven Verbindung angezeigt werden sollen. - - - - Whether we should show tabs even when there is only one active connection - Set to "true" to always show the tabs. Set to "false" to only show the tabs when there is more than one active connection. - - - - Нужно ли показывать вкладки, если активно только одно подключение - Установите флажок, чтобы всегда показывать вкладки. Уберите флажок, чтобы показывать вкладки только тогда, когда открыто больше одного активного подключения. - - - - - /schemas/apps/vinagre/show_accels - /apps/vinagre/show_accels - vinagre - bool - false - - Whether we should show the menu accelerators (shortcut keys) - Set to "false" to disable menu shortcuts. Set to "true" to enable them. Note that if they are enabled, those keys will be intercepted by the menu and will not be sent to the remote host. - - - - Menü-Zugriffstasten (Tastenkombinationen) anzeigen/nicht anzeigen - Falls dieser Schlüssel »FALSCH« ist, werden die Menü-Zugriffstasten deaktiviert. Zur Aktivierung setzen Sie diesen Schlüssel auf »WAHR«. Beachten Sie, dass diese Tastencodes vom Menü abgefangen und nicht zum entfernten Rechner weitergeleitet werden. - - - - Whether we should show the menu accelerators (shortcut keys) - Set to "false" to disable menu shortcuts. Set to "true" to enable them. Note that if they are enabled, those keys will be intercepted by the menu and will not be sent to the remote host. - - - - Нужно ли показывать ускорители меню (клавиатурные комбинации) - Уберите флажок для отключения ускорителей меню. Установите флажок для их включения. Если они включены, эти сочетания клавиш будут перехватываться меню и не будут посылаться на удалённый узел. - - - - - /schemas/apps/vinagre/history_size - /apps/vinagre/history_size - vinagre - int - 15 - - Maximum number of history items in connect dialog - Specifies the maximum number of items in the host dropdown entry. - - - - Maximale Zahl von Chronik-Einträgen im Verbindungsdialog - Dieser Schlüssel legt die maximal angezeigte Anzahl in der Rechner-Auswahlliste fest. - - - - Maximum number of history items in connect dialogue - Specifies the maximum number of items in the host dropdown entry. - - - - Сколько предыдущих соединений показывать в диалоге подключения - Определяет максимальное количество элементов в раскрывающемся списке узлов. - - - - - /schemas/apps/vinagre/plugins/active-plugins - /apps/vinagre/plugins/active-plugins - vinagre - list - string - [vnc,ssh] - - Active plugins - List of active plugins. It contains the "Location" of the active plugins. See the .vinagre-plugin file for obtaining the "Location" of a given plugin. - - - - Aktive Plugins - Liste der aktiven Plugins. Diese enthält den »Ort« der aktiven Plugins. Den »Ort« jedes Plugins finden Sie über .vinagre-plugin heraus. - - - - Active plugins - List of active plugins. It contains the "Location" of the active plugins. See the .vinagre-plugin file for obtaining the "Location" of a given plugin. - - - - Активные модули - Список активных модулей. Он содержит «Адрес» активных модулей. Для получения «адреса» конкретного модуля смотрите файл .vinagre-plugin. - - - - - /schemas/apps/vinagre/always_enable_listening - /apps/vinagre/always_enable_listening - vinagre - bool - false - - Whether we should start the program listening for reverse connections - Set to "true" to always start the program listening for reverse connections. - - - - Legt fest, ob das Programm gestartet wird und dabei auf umgekehrte Verbindungen horcht - Falls dieser Schlüssel »WAHR« ist, wird das Programm immer so gestartet, dass es auf umgekehrte Verbindungen horcht. - - - - Whether we should start the program listening for reverse connections - Set to "true" to always start the program listening for reverse connections. - - - - Нужно ли слушать обратные соединения - Установите флажок, чтобы программа всегда слушала обратные соединения. - - - - - diff --git a/gconf/schemas/vino-server.schemas b/gconf/schemas/vino-server.schemas deleted file mode 100644 index aa48980..0000000 --- a/gconf/schemas/vino-server.schemas +++ /dev/null @@ -1,475 +0,0 @@ - - - - - /schemas/desktop/gnome/remote_access/enabled - /desktop/gnome/remote_access/enabled - gnome - bool - false - - Enable remote desktop access - - If true, allows remote access to the desktop via the - RFB protocol. Users on remote machines may then - connect to the desktop using a vncviewer. - - - - - Entfernten Bildschirmzugriff freischalten - Soll der Fernzugriff auf den Bildschirm via RFB-Protokoll zulässig sein? In diesem Fall können Benutzer an entfernten Rechnern mit Hilfe einer Anwendung zur Betrachtung entfernter Bildschirme (vncviewer) auf den Bildschirm zugreifen. - - - - Enable remote desktop access - If true, allows remote access to the desktop via the RFB protocol. Users on remote machines may then connect to the desktop using a vncviewer. - - - - Включить удалённый доступ к рабочему столу - Если установлен, разрешает удалённый доступ к рабочему столу по протоколу RFB. Пользователи других компьютеров смогут подключиться к рабочему столу, используя vncviewer. - - - - - /schemas/desktop/gnome/remote_access/prompt_enabled - /desktop/gnome/remote_access/prompt_enabled - gnome - bool - true - - Prompt the user before completing a connection - - If true, remote users accessing the desktop are not - allowed access until the user on the host machine - approves the connection. Recommended especially when - access is not password protected. - - - - - Den Benutzer vor dem Herstellen einer Verbindung rückfragen - Sollen entfernte Benutzer ausschließlich auf den Bildschirm zugreifen dürfen, nachdem der Benutzer auf dem freigebenden Rechner die Verbindung explizit gestattet? Dies ist besonders empfehlenswert, falls der Zugriff nicht durch ein Passwort geschützt erfolgt. - - - - Prompt the user before completing a connection - If true, remote users accessing the desktop are not allowed access until the user on the host machine approves the connection. Recommended especially when access is not password protected. - - - - Запрашивать разрешение пользователя перед соединением - Если ключ установлен, пользователи с других компьютеров не смогут подключиться к рабочему столу, пока локальный пользователь не подтвердит соединение. Особенно рекомендуется, если доступ не защищен паролем. - - - - - /schemas/desktop/gnome/remote_access/view_only - /desktop/gnome/remote_access/view_only - gnome - bool - false - - Only allow remote users to view the desktop - - If true, remote users accessing the desktop are only - allowed to view the desktop. Remote users will not - be able to use the mouse or keyboard. - - - - - Entfernten Benutzern ausschließlich das Anzeigen des Desktops gestatten - Sollen entfernte Benutzer, die auf den Bildschirm zugreifen, diesen ausschließlich betrachten dürfen? In diesem Fall können sie weder Maus- noch Tastatureingaben ausführen. - - - - Only allow remote users to view the desktop - If true, remote users accessing the desktop are only allowed to view the desktop. Remote users will not be able to use the mouse or keyboard. - - - - Разрешить доступ к рабочему столу только для просмотра - Если ключ установлен, рабочий стол доступен удалённым пользователям только для просмотра. Они не смогут пользоваться мышью или клавиатурой. - - - - - /schemas/desktop/gnome/remote_access/network_interface - /desktop/gnome/remote_access/network_interface - gnome - string - - - Network interface for listening - - If not set, the server will listen on all network interfaces. - - Set this if you want that accept connections only from some specific - network interface. eg: eth0, wifi0, lo, ... - - - - - Netzwerkschnittstelle, auf der gelauscht wird - Wenn dieser Schlüssel nicht gesetzt ist, lauscht der Server auf allen Netzwerkschnittstellen. Setzen Sie diesen Schlüssel, falls Sie nur Verbindungen auf bestimmten Schnittstellen akzeptieren möchten, z.B.: eth0, wlan0, lo, … - - - - Network interface for listening - If not set, the server will listen on all network interfaces. Set this if you want that accept connections only from some specific network interface. e.g.: eth0, wifi0, lo, etc. - - - - Сетевой интерфейс для ожидания соединения - Если не установлен, сервер будет ожидать соединения на всех сетевых интерфейсах. Установите этот параметр, если хотите принимать соединения только от определённого сетевого интерфейса, например: eth0, wifi0, lo, ... - - - - - /schemas/desktop/gnome/remote_access/use_alternative_port - /desktop/gnome/remote_access/use_alternative_port - gnome - bool - false - - Listen an alternative port - - If true, the server will listen to another port, instead of the - default (5900). The port must be specified in the 'alternative_port' - key. - - - - - Auf einen alternative Port hören - Wenn dieser Schlüssel wahr ist, hört der Server auf einen anderen Port als den Vorgabeport (5900). Der Port selbst muss im Schlüssel »alternative_port« angegeben werden. - - - - Listen an alternative port - If true, the server will listen to another port, instead of the default (5900). The port must be specified in the 'alternative_port' key. - - - - Использовать альтернативный порт - Если этот ключ установлен, сервер будет слушать другой порт вместо порта по умолчанию (5900). Порт должен быть указан при помощи ключа 'alternative_port'. - - - - - /schemas/desktop/gnome/remote_access/alternative_port - /desktop/gnome/remote_access/alternative_port - gnome - int - 5900 - - Alternative port number - - The port which the server will listen to if the - 'use_alternative_port' key is set to true. - Valid values are in the range from 5000 to 50000. - - - - - Alternative Port-Nummer - Der Port auf den der Server hört, wenn der Schlüssel »use_alternative_port« auf TRUE (wahr) gesetzt ist. Gültige Werte liegen zwischen 5000 und 50000. - - - - Alternative port number - The port which the server will listen to if the 'use_alternative_port' key is set to true. Valid values are in the range from 5000 to 50000. - - - - Альтернативный номер порта - Порт, который будет слушать сервер, если установлен ключ 'use_alternative_port'. Допустимы значения в диапазоне от 5000 до 50000. - - - - - /schemas/desktop/gnome/remote_access/require_encryption - /desktop/gnome/remote_access/require_encryption - gnome - bool - false - - Require encryption - - If true, remote users accessing the desktop are required - to support encryption. It is highly recommended that you - use a client which supports encryption unless the - intervening network is trusted. - - - - - Verschlüsselung erforderlich machen - Sollen entfernte Benutzer, die auf den Bildschirm zugreifen wollen, Verschlüsselung unterstützen müssen? Es ist besonders empfehlenswert einen Client zu verwenden, der Verschlüsselung unterstützt, falls der Zugriff über ein nicht vertrauenswürdiges Netzwerk erfolgt. - - - - Require encryption - If true, remote users accessing the desktop are required to support encryption. It is highly recommended that you use a client which supports encryption unless the intervening network is trusted. - - - - Требовать шифрование - Если если этот ключ установлен, от удалённых пользователей требуется поддержка шифрования. Настоятельно рекомендуется использовать шифрование, если сеть между узлами не надёжна. - - - - - /schemas/desktop/gnome/remote_access/authentication_methods - /desktop/gnome/remote_access/authentication_methods - gnome - list - string - [none] - - Allowed authentication methods - - Lists the authentication methods with which remote users - may access the desktop. There are two possible authentication - methods; "vnc" causes the remote user to be prompted for - a password (the password is specified by the vnc_password - key) before connecting and "none" which allows any remote - user to connect. - - - - - Zulässige Legitimationsmethoden - Eine Liste der Legitimationsmethoden, mit Hilfe derer entfernte Benutzer auf den Bildschirm zugreifen dürfen. Zulässige Legitimationsmethoden sind: »vnc« (vor Verbindung Passwortabfrage bei entferntem Benutzer, Passwort siehe »vnc_passwort«-Schlüssel) sowie »none« (jeder entfernte Benutzer darf verbinden). - - - - Allowed authentication methods - Lists the authentication methods with which remote users may access the desktop. There are two possible authentication methods; "vnc" causes the remote user to be prompted for a password (the password is specified by the vnc_password key) before connecting and "none" which allows any remote user to connect. - - - - Разрешенные методы аутентификации - Перечиcляет методы аутентификации, пр помощи которых удалённые пользователи могут получить доступ к рабочему столу. Существует два возможных метода - "vnc" (заставляет удалённого пользователя вводить пароль, указанный в ключе vnc_password) и "none", который позволяет подключиться любому удалённому пользователю. - - - - - /schemas/desktop/gnome/remote_access/vnc_password - /desktop/gnome/remote_access/vnc_password - gnome - string - - - Password required for "vnc" authentication - - The password which the remote user will be prompted for - if the "vnc" authentication method is used. The password - specified by the key is base64 encoded. - - - - - Für »vnc«-Legitimation erforderliches Passwort - Das base64-kodierte Passwort, das vom entfernten Benutzer abgefragt werden soll, wenn die Legitimationsmethode »vnc« verwendet wird. - - - - Password required for "vnc" authentication - The password which the remote user will be prompted for if the "vnc" authentication method is used. The password specified by the key is base64 encoded. - - - - Требовать пароль для аутентификации "vnc" - Пароль для аутентификации vnc (зашифрован алгоритмом base64). - - - - - /schemas/desktop/gnome/remote_access/mailto - /desktop/gnome/remote_access/mailto - gnome - string - - - E-mail address to which the remote desktop URL should be sent - - This key specifies the e-mail address to which the remote - desktop URL should be sent if the user clicks on the URL - in the Remote Desktop preferences dialog. - - - - - E-Mail-Adresse, an die die Adresse des entfernten Bildschirms verschickt werden soll - Dieser Schlüssel legt die E-Mail-Adresse fest, an die die Adresse des entfernten Bildschirms verschickt werden soll, wenn der Benutzer die Adresse im Dialog »Entfernter Bildschirm-Einstellungen« anklickt. - - - - E-mail address to which the remote desktop URL should be sent - This key specifies the e-mail address to which the remote desktop URL should be sent if the user clicks on the URL in the Remote Desktop preferences dialogue. - - - - Адрес эл. почты, по которому должен быть отправлен URL удалённого рабочего стола - Этот ключ указывает адрес эл. почты, по которому должна быть отправлена ссылка, если пользователь нажимает на URL в диалоге "Свойства удалённого рабочего стола". - - - - - /schemas/desktop/gnome/remote_access/lock_screen_on_disconnect - /desktop/gnome/remote_access/lock_screen_on_disconnect - gnome - bool - false - - Lock the screen when last user disconnect - - If true, screen will be locked after the last remote client - disconnect. - - - - - Den Bildschirm nach Abmelden des letzten Benutzers sperren - Wenn dieser Schlüssel wahr ist, wird der Bildschirm gesperrt, sobald der letzte entfernte Benutzer die Verbindung beendet hat. - - - - Lock the screen when last user disconnect - If true, screen will be locked after the last remote client disconnect. - - - - Блокировать экран после отсоединения последнего пользователя - Если этот ключ установлен, экран будет заблокирован после отсоединения последнего пользователя. - - - - - /schemas/desktop/gnome/remote_access/icon_visibility - /desktop/gnome/remote_access/icon_visibility - gnome - string - client - - When the status icon should be shown - - This key controls the behavior of the status icon. There are - three options: "always" - The icon will be always there; "client" - - You will see the icon only when there is someone connected, this is - the default behavior; "never" - Never shows the icon. - - - - - Legt fest, wann das Statussymbol angezeigt werden soll - Dieser Schlüssel bestimmt das Verhalten des Statussymbols. Es bestehen drei Möglichkeiten: »always«: Das Symbol wird immer angezeigt; »client«: Das Symbol wird nur angezeigt wenn jemand verbunden ist (dies ist die Vorgabeeinstellung); »never«: Das Symbol wird nie angezeigt. - - - - When the status icon should be shown - This key controls the behaviour of the status icon. There are three options: "always" — The icon will be always there; "client" — You will see the icon only when there is someone connected, this is the default behaviour; "never" — Never shows the icon. - - - - Когда показывать значок статуса - Этот ключ отвечает за отображение значка статуса. Доступно три состояния: "всегда" - показывать значок постоянно; "клиент" - показывать значок если имеются активные подключения (по умолчанию) ; "никогда" - никогда не показывать. - - - - - /schemas/desktop/gnome/remote_access/disable_background - /desktop/gnome/remote_access/disable_background - gnome - bool - false - - When true, disable the background on receive valid session - - When true, disable the background on receive valid session - - - - - Falls »TRUE« (wahr), so wird der Hintergrund in einer gültigen Sitzung deaktiviert - Falls »TRUE« (wahr), so wird der Hintergrund in einer gültigen Sitzung deaktiviert - - - - When true, disable the background on receiving a valid session - When true, disable the background on receiving a valid session - - - - Если включено, при успешном подключении обои рабочего стола отключаются - Если включено, при успешном подключении обои рабочего стола отключаются - - - - - /schemas/desktop/gnome/remote_access/use_upnp - /desktop/gnome/remote_access/use_upnp - gnome - bool - false - - Whether we should use UPNP to forward the port in routers - - If true, we will use UPNP protocol to automatically forward the port - used by vino in the router. - - - - - Legt fest, ob UPNP zur Port-Weiterleitung im Router verwendet wird - Wenn dieser Schlüssel wahr ist, wird das UPNP-Protokoll verwendet, um von Vino benutzte Ports automatisch im Router weiterzuleiten. - - - - Whether we should use UPnP to forward the port in routers - If true, we will use the UPnP protocol to automatically forward the port used by Vino in the router. - - - - Будет ли использоваться UPNP для настройки портов на маршрутизаторах - Если установлен, будет использоваться протокол UPNP для автоматической настройки портов маршрутизатора, используемых vino. - - - - - /schemas/desktop/gnome/remote_access/disable_xdamage - /desktop/gnome/remote_access/disable_xdamage - gnome - bool - false - - Whether we should disable the XDamage extension of X.org - - If true, we will not use the XDamage extension of X.org. This extension - does not work properly on some video drivers when using 3D effects. - Disabling it will make vino work on these environments with a slower - rendering as side effect. - - - - - Legt fest, ob die XDamage-Erweiterung von X.org deaktiviert werden soll. - Wenn dieser Schlüssel auf »Wahr« gesetzt ist, wird die XDamage-Erweiterung von X.org nicht verwendet. Diese Erweiterung funktioniert zusammen mit einigen Grafiktreibern bei Verwendung von 3D-Effekten nicht richtig. Das Deaktivieren ermöglicht, dass vino in diesen Umgebungen funktionsfähig ist, wobei sich als Nebeneffekt der Bildschirmaufbau verlangsamt. - - - - Whether we should disable the XDamage extension of X.org - If true, we will not use the XDamage extension of X.org. This extension does not work properly on some video drivers when using 3D effects. Disabling it will make Vino work on these environments with a slower rendering as side effect. - - - - Должны ли мы отключить расширение XDamage для X.org - Если этот параметр установлен, расширение XDamage для X.org использоваться не будет. Расширение работает некорректно с некоторыми видео драйверами, когда применяются 3D эффекты. Отключение приведет к более медленному рендерингу в качестве побочного эффекта, когда vino будет работать в этом окружении. - - - - - diff --git a/gconf/schemas/window-list.schemas b/gconf/schemas/window-list.schemas deleted file mode 100644 index 452c3a9..0000000 --- a/gconf/schemas/window-list.schemas +++ /dev/null @@ -1,152 +0,0 @@ - - - - - /schemas/apps/window_list_applet/prefs/display_all_workspaces - window-list-applet - bool - false - - Show windows from all workspaces - - If true, the window list will show windows from all workspaces. - Otherwise it will only display windows from the current workspace. - - - - - Auf allen Arbeitsfläche befindliche Fenster anzeigen - Falls dieser Schlüssel WAHR ist, zeigt die Fensterliste alle geöffneten Fenster an, einschließlich denen, die sich auf anderen Arbeitsflächen befinden. Andernfalls zeigt sie lediglich die auf der momentan sichtbaren Arbeitsfläche befindlichen Fenster an. - - - - Show windows from all workspaces - If true, the window list will show windows from all workspaces. Otherwise it will only display windows from the current workspace. - - - - Показывать окна со всех рабочих мест - Если этот ключ установлен, список окон будет отображать окна со всех рабочих мест, а не только с текущего. - - - - - /schemas/apps/window_list_applet/prefs/group_windows - window-list-applet - string - never - - When to group windows - - Decides when to group windows from the same application on the - window list. Possible values are "never", "auto" and "always". - - - - - Wann Fenster gruppiert werden sollen - Dieser Schlüssel legt fest, wann Fenster der selben Anwendung in der Fensterliste gruppiert werden sollen. Zulässige Werte: »never« (nie), »auto« (bei Platzmangel) sowie »always« (immer). - - - - When to group windows - Decides when to group windows from the same application on the window list. Possible values are "never", "auto" and "always". - - - - Группировать ли окна - Определяет, когда группировать окна одинаковых приложений в списке окон. Допустимые значения: «never», «auto» и «always». - - - - - /schemas/apps/window_list_applet/prefs/move_unminimized_windows - window-list-applet - bool - true - - Move windows to current workspace when unminimized - - If true, then when unminimizing a window, move it to the - current workspace. Otherwise, switch to the workspace of - the window. - - - - - Fenster beim Wiederherstellen auf momentan sichtbare Arbeitsfläche verschieben - Fall dieser Schlüssel WAHR ist, wird ein Fenster auf die sichtbare Arbeitsfläche verschoben, wenn es wiederhergestellt wird. Andernfalls wird zur Arbeitsfläche gewechselt, auf der sich das Fenster befindet. - - - - Move windows to current workspace when unminimised - If true, then when unminimising a window, move it to the current workspace. Otherwise, switch to the workspace of the window. - - - - Перемещать окна на текущее рабочее место при восстановлении - Если этот ключ установлен, восстановление окна будет происходить на текущее рабочее место, а не на исходное. - - - - - /schemas/apps/window_list_applet/prefs/minimum_size - window-list-applet - int - 50 - - Minimum window list size - - The use of this key was deprecated in GNOME 2.20. The schema is - retained for compatibility with older versions. - - - - - Minimale Größe der Fensterliste - Im Zuge von GNOME 2.20 wurde dieser Schlüssel für nichtig erklärt. Das Schema wird zwecks Rückwärtskompatibilität beibehalten. - - - - Minimum window list size - The use of this key was deprecated in GNOME 2.20. The schema is retained for compatibility with older versions. - - - - Минимальный размер списка окон - Использовать этот ключ в среде GNOME версии начиная с 2.20 не рекомендуется. Данный ключ остаётся только для совместимости с предыдущими версиями. - - - - - /schemas/apps/window_list_applet/prefs/maximum_size - window-list-applet - int - 4096 - - Maximum window list size - - The use of this key was deprecated in GNOME 2.20. The schema is - retained for compatibility with older versions. - - - - - Maximale Größe der Fensterliste - Im Zuge von GNOME 2.20 wurde dieser Schlüssel für nichtig erklärt. Das Schema wird zwecks Rückwärtskompatibilität beibehalten. - - - - Maximum window list size - The use of this key was deprecated in GNOME 2.20. The schema is retained for compatibility with older versions. - - - - Максимальный размер списка окон - Использовать этот ключ в среде GNOME версии начиная с 2.20 не рекомендуется. Данный ключ остаётся только для совместимости с предыдущими версиями. - - - - - - diff --git a/gconf/schemas/workspace-switcher.schemas b/gconf/schemas/workspace-switcher.schemas deleted file mode 100644 index 47e2e33..0000000 --- a/gconf/schemas/workspace-switcher.schemas +++ /dev/null @@ -1,97 +0,0 @@ - - - - - /schemas/apps/workspace_switcher_applet/prefs/display_workspace_names - workspace-switcher-applet - bool - false - - Display workspace names - - If true, the workspaces in the workspace switcher will display - the names of the workspaces. Otherwise they will display the - windows on the workspace. This setting only works when the window - manager is Metacity. - - - - - Namen der Arbeitsflächen anzeigen - Falls dieser Schlüssel WAHR ist, zeigt der Arbeitsflächenumschalter auf den Mini-Arbeitsflächen im Umschalter deren Namen an. Andernfalls enthalten diese den Inhalt der Arbeitsflächen. Dies funktioniert nur, wenn der Fenster-Manager »Metacity« verwendet wird. - - - - Display workspace names - If true, the workspaces in the workspace switcher will display the names of the workspaces. Otherwise they will display the windows on the workspace. This setting only works when the window manager is Metacity. - - - - Показывать названия рабочих мест - Если этот ключ установлен, переключатель будет показывать названия рабочих мест. Если не установлен, на рабочих местах будут показываться окна. Этот ключ работает только тогда, когда используется менеджер окон Metacity. - - - - - /schemas/apps/workspace_switcher_applet/prefs/display_all_workspaces - workspace-switcher-applet - bool - true - - Display all workspaces - - If true, the workspace switcher will show all workspaces. Otherwise - it will only show the current workspace. - - - - - Alle Arbeitsflächen anzeigen - Falls dieser Schlüssel WAHR ist, zeigt der Arbeitsflächenumschalter alle Arbeitsflächen an. Andernfalls zeigt er lediglich die momentan sichtbare. - - - - Display all workspaces - If true, the workspace switcher will show all workspaces. Otherwise it will only show the current workspace. - - - - Показывать все рабочие места - Если этот ключ установлен, переключатель будет показывать все рабочие места. Иначе будет показано только текущее. - - - - - /schemas/apps/workspace_switcher_applet/prefs/num_rows - workspace-switcher-applet - int - 1 - - Rows in workspace switcher - - This key specifies how many rows (for horizontal layout) - or columns (for vertical layout) the workspace switcher shows the - workspaces in. This key is only relevant if the - display_all_workspaces key is true. - - - - - Zeilen in Arbeitsflächenumschalter - Dieser Schlüssel legt die Anzahl der Zeilen (bei horizontaler Darstellung) oder Spalten (bei vertikaler Darstellung) fest, in denen der Umschalter die Arbeitsflächen anzeigt. Dieser Schlüssel kommt ausschließlich zum Tragen, falls der Schlüssel »display_all_workspaces« WAHR ist. - - - - Rows in workspace switcher - This key specifies how many rows (for horizontal layout) or columns (for vertical layout) the workspace switcher shows the workspaces in. This key is only relevant if the display_all_workspaces key is true. - - - - Строк в переключателе - Этот ключ определяет, во сколько рядов (при горизонтальном размещении) или столбцов (при вертикальном размещении) переключатель будет показывать рабочие места. Имеет смысл только если установлен ключ display_all_workspaces. - - - - - - diff --git a/gconf/schemas/yelp.schemas b/gconf/schemas/yelp.schemas deleted file mode 100644 index a44c210..0000000 --- a/gconf/schemas/yelp.schemas +++ /dev/null @@ -1,117 +0,0 @@ - - - - - /schemas/apps/yelp/use_caret - /apps/yelp/use_caret - yelp - bool - true - - Use caret - - Use a keyboard-controllable caret when viewing pages. - - - - - Rahmen verwenden - Einen über die Tastatur kontrollierbaren Rahmen verwenden, wenn Seiten betrachtet werden. - - - - Use caret - Use a keyboard-controllable caret when viewing pages. - - - - Использовать курсор - Использовать управляемый с клавиатуры курсор при просмотре страниц - - - - /schemas/apps/yelp/use_system_fonts - /apps/yelp/use_system_fonts - yelp - bool - true - - Use system fonts - - Use the default fonts set for the system. - - - - - Systemschriften verwenden - Die vom System vorgegebenen Schriften verwenden. - - - - Use system fonts - Use the default fonts set for the system. - - - - Использовать системные шрифты - Использовать системный набор шрифтов по умолчанию. - - - - /schemas/apps/yelp/variable_font - /apps/yelp/variable_font - yelp - string - Sans 12 - - Font for text - - Font for text with variable width. - - - - - Standardschrift - Schrift für Buchstaben mit variabler Breite - - - - Font for text - Font for text with variable width. - - - - Шрифт для текста - Шрифт для текста переменной ширины. - - - - /schemas/apps/yelp/fixed_font - /apps/yelp/fixed_font - yelp - string - Monospace 12 - - Font for fixed text - - Font for text with fixed width. - - - - - Dicktengleiche Schrift - Schrift für Buchstaben mit fester Breite (Dicktengleichheit) - - - - Font for fixed text - Font for text with fixed width. - - - - Шрифт для фиксированного текста - Шрифт для текста постоянной ширины. - - - - diff --git a/gdm/Init/Default b/gdm/Init/Default new file mode 100755 index 0000000..a8e6993 --- /dev/null +++ b/gdm/Init/Default @@ -0,0 +1,89 @@ +#!/bin/sh +# Stolen from the debian kdm setup, aren't I sneaky +# Plus a lot of fun stuff added +# -George + +PATH="/usr/bin:$PATH" +OLD_IFS=$IFS + +gdmwhich () { + COMMAND="$1" + OUTPUT= + IFS=: + for dir in $PATH + do + if test -x "$dir/$COMMAND" ; then + if test "x$OUTPUT" = "x" ; then + OUTPUT="$dir/$COMMAND" + fi + fi + done + IFS=$OLD_IFS + echo "$OUTPUT" +} + +sysresources=/etc/X11/Xresources + +# merge in defaults +if [ -f "$sysresources" ]; then + xrdb -merge "$sysresources" +fi + +sysmodmap=/etc/X11/Xmodmap + +XMODMAP=`gdmwhich xmodmap` +if [ "x$XMODMAP" != "x" ] ; then + if [ "x$GDM_PARENT_DISPLAY" = "x" ]; then + if [ -f $sysmodmap ]; then + $XMODMAP $sysmodmap + fi + else + ( DISPLAY=$GDM_PARENT_DISPLAY XAUTHORITY=$GDM_PARENT_XAUTHORITY $XMODMAP -pke ) | $XMODMAP - + fi + + # + # Switch Sun's Alt and Meta mod mappings + # + + UNAME=`gdmwhich uname` + PROCESSOR=`$UNAME -p` + if [ "x$PROCESSOR" = "xsparc" ]; then + if $XMODMAP | grep mod4 | grep Alt > /dev/null 2>/dev/null + then + $XMODMAP -e "clear Mod1" \ + -e "clear Mod4" \ + -e "add Mod1 = Alt_L" \ + -e "add Mod1 = Alt_R" \ + -e "add Mod4 = Meta_L" \ + -e "add Mod4 = Meta_R" + fi + fi +fi + +SETXKBMAP=`gdmwhich setxkbmap` +if [ "x$SETXKBMAP" != "x" ] ; then + # FIXME: is this all right? Is this completely on crack? + # What this does is move the xkb configuration from the GDM_PARENT_DISPLAY + # FIXME: This should be done in code. Or there must be an easier way ... + if [ -n "$GDM_PARENT_DISPLAY" ]; then + XKBSETUP=`( DISPLAY=$GDM_PARENT_DISPLAY XAUTHORITY=$GDM_PARENT_XAUTHORITY $SETXKBMAP -v )` + if [ -n "$XKBSETUP" ]; then + XKBKEYMAP=`echo "$XKBSETUP" | grep '^keymap' | awk '{ print $2 }'` + XKBTYPES=`echo "$XKBSETUP" | grep '^types' | awk '{ print $2 }'` + XKBCOMPAT=`echo "$XKBSETUP" | grep '^compat' | awk '{ print $2 }'` + XKBSYMBOLS=`echo "$XKBSETUP" | grep '^symbols' | awk '{ print $2 }'` + XKBGEOMETRY=`echo "$XKBSETUP" | grep '^geometry' | awk '{ print $2 }'` + if [ -n "$XKBKEYMAP" ]; then + $SETXKBMAP -keymap "$XKBKEYMAP" + elif [ -n "$XKBTYPES" -a -n "$XKBCOMPAT" -a -n "$XKBSYMBOLS" -a -n "$XKBGEOMETRY" ]; then + $SETXKBMAP -types "$XKBTYPES" -compat "$XKBCOMPAT" -symbols "$XKBSYMBOLS" -geometry "$XKBGEOMETRY" + elif [ -n "$XKBTYPES" -a -n "$XKBCOMPAT" -a -n "$XKBSYMBOLS" ]; then + $SETXKBMAP -types "$XKBTYPES" -compat "$XKBCOMPAT" -symbols "$XKBSYMBOLS" + elif [ -n "$XKBSYMBOLS" ]; then + $SETXKBMAP -symbols "$XKBSYMBOLS" + fi + fi + fi +fi + +exit 0 diff --git a/gdm/PostLogin/Default.sample b/gdm/PostLogin/Default.sample new file mode 100755 index 0000000..efc6394 --- /dev/null +++ b/gdm/PostLogin/Default.sample @@ -0,0 +1,8 @@ +#!/bin/sh +# +# Note: this is a sample and will not be run as is. Change the name of this +# file to /PostLogin/Default for this script to be run. This +# script will be run before any setup is run on behalf of the user and is +# useful if you for example need to do some setup to create a home directory +# for the user or something like that. $HOME, $LOGIN and such will all be +# set appropriately and this script is run as root. diff --git a/gdm/PostSession/Default b/gdm/PostSession/Default new file mode 100755 index 0000000..c52d3c2 --- /dev/null +++ b/gdm/PostSession/Default @@ -0,0 +1,3 @@ +#!/bin/sh + +exit 0 diff --git a/gdm/PreSession/Default b/gdm/PreSession/Default new file mode 100755 index 0000000..23e5b86 --- /dev/null +++ b/gdm/PreSession/Default @@ -0,0 +1,9 @@ +#!/bin/sh +# +# Note that any setup should come before the sessreg command as +# that must be 'exec'ed for the pid to be correct (sessreg uses the parent +# pid) +# +# Note that output goes into the .xsession-errors file for easy debugging +# +PATH="/usr/bin:$PATH" diff --git a/gdm/Xsession b/gdm/Xsession new file mode 100755 index 0000000..1faba3f --- /dev/null +++ b/gdm/Xsession @@ -0,0 +1,205 @@ +#!/bin/sh +# +# This is SORT OF LIKE an X session, but not quite. You get a command as the +# first argument (it could be multiple words, so run it with "eval"). As a +# special case, the command can be: +# default - Run the appropriate Xclients startup (see the code below) +# custom - Run ~/.xsession and if that's not available run 'default' +# +# (Note that other arguments could also follow, but only the command one is +# right now relevant and supported) +# +# The output is ALREADY redirected to .xsession-errors in GDM. This way +# .xsession-errors actually gets more output such as if the PreSession script +# is failing. This also prevents DoS attacks if some app in the users session +# can be prodded to dump lots of stuff on the stdout/stderr. We wish to be +# robust don't we? In case you wish to use an existing script for other DM's, +# you can just not redirect when GDMSESSION is set. GDMSESSION will always +# be set from gdm. +# +# Also note that this is not run as a login shell, this is just executed. +# This is why we source the profile files below. +# +# based on: +# $XConsortium: Xsession /main/10 1995/12/18 18:21:28 gildea $ + +command="$@" + +# this will go into the .xsession-errors along with all other echo's +# good for debugging where things went wrong +echo "$0: Beginning session setup..." + +# First read /etc/profile and .profile +test -f /etc/profile && . /etc/profile +test -f "$HOME/.profile" && . "$HOME/.profile" +# Second read /etc/xprofile and .xprofile for X specific setup +test -f /etc/xprofile && . /etc/xprofile +test -f "$HOME/.xprofile" && . "$HOME/.xprofile" + +# Translation stuff +if [ -x "/usr/libexec/gdmtranslate" ] ; then + gdmtranslate="/usr/libexec/gdmtranslate" +else + gdmtranslate= +fi + +# Note that this should only go to zenity dialogs which always expect utf8 +gettextfunc () { + if [ "x$gdmtranslate" != "x" ] ; then + "$gdmtranslate" --utf8 "$1" + else + echo "$1" + fi +} + +OLD_IFS=$IFS + +gdmwhich () { + COMMAND="$1" + OUTPUT= + IFS=: + for dir in $PATH + do + if test -x "$dir/$COMMAND" ; then + if test "x$OUTPUT" = "x" ; then + OUTPUT="$dir/$COMMAND" + fi + fi + done + IFS=$OLD_IFS + echo "$OUTPUT" +} + +zenity=`gdmwhich zenity` + +# Note: ~/.xsession-errors is now done in the daemon so that it +# works for ALL sessions (except ones named 'Failsafe') + +# clean up after xbanner +freetemp=`gdmwhich freetemp` +if [ -n "$freetemp" ] ; then + "$freetemp" +fi + +userresources="$HOME/.Xresources" +usermodmap="$HOME/.Xmodmap" +userxkbmap="$HOME/.Xkbmap" + +sysresources=/etc/X11/Xresources +sysmodmap=/etc/X11/Xmodmap +sysxkbmap=/etc/X11/Xkbmap + +rh6sysresources=/etc/X11/xinit/Xresources +rh6sysmodmap=/etc/X11/xinit/Xmodmap + +# merge in defaults +if [ -f "$rh6sysresources" ]; then + xrdb -nocpp -merge "$rh6sysresources" +fi + +if [ -f "$sysresources" ]; then + xrdb -nocpp -merge "$sysresources" +fi + +if [ -f "$userresources" ]; then + xrdb -nocpp -merge "$userresources" +fi + +# merge in keymaps +if [ -f "$sysxkbmap" ]; then + setxkbmap `cat "$sysxkbmap"` + XKB_IN_USE=yes +fi + +if [ -f "$userxkbmap" ]; then + setxkbmap `cat "$userxkbmap"` + XKB_IN_USE=yes +fi + +# +# Eeek, this seems like too much magic here +# +if [ -z "$XKB_IN_USE" -a ! -L /etc/X11/X ]; then + if grep '^exec.*/Xsun' /etc/X11/X > /dev/null 2>&1 && [ -f /etc/X11/XF86Config ]; then + xkbsymbols=`sed -n -e 's/^[ ]*XkbSymbols[ ]*"\(.*\)".*$/\1/p' /etc/X11/XF86Config` + if [ -n "$xkbsymbols" ]; then + setxkbmap -symbols "$xkbsymbols" + XKB_IN_USE=yes + fi + fi +fi + +# xkb and xmodmap don't play nice together +if [ -z "$XKB_IN_USE" ]; then + if [ -f "$rh6sysmodmap" ]; then + xmodmap "$rh6sysmodmap" + fi + + if [ -f "$sysmodmap" ]; then + xmodmap "$sysmodmap" + fi + + if [ -f "$usermodmap" ]; then + xmodmap "$usermodmap" + fi +fi + +unset XKB_IN_USE + +# Overwrite $LANG from /etc/profile (and friends) with the one picked in the +# greeter +if [ -n "$GDM_LANG" ]; then + LANG="$GDM_LANG" + export LANG +fi + +xhost +si:localuser:`id -un` || : + +if [ "x$command" = "xcustom" ] ; then + if [ -x "$HOME/.xsession" ]; then + command="$HOME/.xsession" + else + echo "$0: Cannot find ~/.xsession will try the default session" + command="default" + fi +fi + +if [ "x$command" = "xdefault" ] ; then + if [ -x "$HOME/.Xclients" ]; then + command="$HOME/.Xclients" + elif [ -x /etc/X11/xinit/Xclients ]; then + command="/etc/X11/xinit/Xclients" + elif [ -x /etc/X11/Xclients ]; then + command="/etc/X11/Xclients" + else + if [ -n "$zenity" ] ; then + disptext=`gettextfunc "System has no Xclients file, so starting a failsafe xterm session. Windows will have focus only if the mouse pointer is above them. To get out of this mode type 'exit' in the window."` + "$zenity" --info --text "$disptext" + else + echo "$0: Cannot find Xclients" + fi + exec xterm -geometry 80x24+0+0 + fi +fi + +# run all system xinitrc shell scripts. +if [ -d /etc/X11/xinit/xinitrc.d ]; then + for i in /etc/X11/xinit/xinitrc.d/* ; do + if [ -x "$i" -a ! -d "$i" ]; then + . "$i" + fi + done +fi + +echo "$0: Setup done, will execute: $command" + +eval exec $command + +echo "$0: Executing $command failed, will run xterm" + +if [ -n "$zenity" ] ; then + disptext=`gettextfunc "Failed to start the session, so starting a failsafe xterm session. Windows will have focus only if the mouse pointer is above them. To get out of this mode type 'exit' in the window."` + "$zenity" --info --text "$disptext" +fi + +exec xterm -geometry 80x24+0+0 diff --git a/gdm/custom.conf b/gdm/custom.conf new file mode 100644 index 0000000..36591e3 --- /dev/null +++ b/gdm/custom.conf @@ -0,0 +1,14 @@ +# GDM configuration storage + +[daemon] + +[security] + +[xdmcp] + +[greeter] + +[chooser] + +[debug] + diff --git a/genkernel.conf b/genkernel.conf index af73931..c9240c7 100644 --- a/genkernel.conf +++ b/genkernel.conf @@ -17,6 +17,12 @@ OLDCONFIG="yes" # Run 'make menuconfig' before compiling this kernel? MENUCONFIG="no" +# Run 'make nconfig' (ncurses 'menuconfig') before compiling this kernel? +NCONFIG="no" + +# Note, that two previous lines are mutual exclusive (logically), while +# MENUCONFIG has a higher priority if both them is enabled. + # Run 'make clean' before compilation? # If set to NO, implies MRPROPER WILL NOT be run # Also, if clean is NO, it won't copy over any configuration @@ -90,9 +96,6 @@ USECOLOR="yes" # Add e2fsprogs support. #E2FSPROGS="no" -# Include support for unionfs -#UNIONFS="1" - # Enable copying of firmware into initramfs #FIRMWARE="no" # Specify directory to pull from @@ -100,9 +103,6 @@ USECOLOR="yes" # Specify specific firmware files to include. This overrides FIRMWARE_DIR #FIRMWARE_FILES="" -# Enable disklabel support (copies blkid to initrd) -DISKLABEL="yes" - # Add new kernel to grub? #BOOTLOADER="grub" @@ -114,6 +114,12 @@ DISKLABEL="yes" # This supersedes the "SPLASH_THEME" option of /etc/conf.d/splash (in early space). #SPLASH_THEME="gentoo" +# Installs, or not, plymouth into the initramfs. If "splash" will be +# passed at boot, plymouth will be activated. +# PLYMOUTH="yes" + +# Embeds the given plymouth theme into the initramfs. +# PLYMOUTH_THEME="text" # =========Keymap Settings========= # @@ -157,16 +163,6 @@ DISKLABEL="yes" # option. #UTILS_LD="ld" - -# Common prefix of cros compile commands -#UTILS_CROSS_COMPILE="x86_64-pc-linux-gnu" - - -# Value of CROSS_COMPILE utils variable -# during kernel compilation -#KERNEL_CROSS_COMPILE="x86_64-pc-linux-gnu" - - # =========GENKERNEL LOCATION CONFIGURATION============ # Variables: # %%ARCH%% - Final determined architecture diff --git a/ggz.modules b/ggz.modules index 3c04c50..e69de29 100644 --- a/ggz.modules +++ b/ggz.modules @@ -1,35 +0,0 @@ -[Games] -*Engines* = Gnect Iagno Gnibbles -Gnect = p1 -Gnibbles = p3 -Iagno = p2 - -[p1] -Author = The GNOME Project -CommandLine = /usr/bin/gnect -Frontend = gtk -Homepage = http://www.gnome.org/projects/gnome-games/ -Name = Gnect -ProtocolEngine = Gnect -ProtocolVersion = 1 -Version = 2.28.2 - -[p2] -Author = The GNOME Project -CommandLine = /usr/bin/iagno -Frontend = gtk -Homepage = http://www.gnome.org/projects/gnome-games/ -Name = Iagno -ProtocolEngine = Iagno -ProtocolVersion = 1 -Version = 2.28.2 - -[p3] -Author = The GNOME Project -CommandLine = /usr/bin/gnibbles -Frontend = gtk -Homepage = http://www.gnome.org/projects/gnome-games/ -Name = Gnibbles -ProtocolEngine = Gnibbles -ProtocolVersion = 1 -Version = 2.28.2 diff --git a/group b/group index 61d68c4..fe5a8e9 100644 --- a/group +++ b/group @@ -16,7 +16,7 @@ console:x:17: audio:x:18:pulse,fbrehm,mbalser cdrom:x:19:fbrehm,mbalser tape:x:26:root -video:x:27:root,fbrehm,mbalser +video:x:27:root,fbrehm,mbalser,gdm cdrw:x:80: usb:x:85: users:x:100:fbrehm,mbalser @@ -51,7 +51,7 @@ ulogd:x:992: vboxusers:x:991:fbrehm,mbalser kvm:x:78:qemu at:x:25: -gdm:x:990: +gdm:x:990:gdm locate:x:989:fbrehm,mbalser openvpn:x:988: scanner:x:987: @@ -66,3 +66,5 @@ sabayon-admin:x:982: apache:x:81: dropbox:x:981: chef:x:980: +dialout:x:979: +systemd-journal:x:978: diff --git a/group- b/group- index 43aa527..e4e84a9 100644 --- a/group- +++ b/group- @@ -65,3 +65,6 @@ postdrop:x:208: sabayon-admin:x:982: apache:x:81: dropbox:x:981: +chef:x:980: +dialout:x:979: +systemd-journal:x:978: diff --git a/grub.d/00_header b/grub.d/00_header new file mode 100755 index 0000000..3c6370d --- /dev/null +++ b/grub.d/00_header @@ -0,0 +1,328 @@ +#! /bin/sh +set -e + +# grub-mkconfig helper script. +# Copyright (C) 2006,2007,2008,2009,2010 Free Software Foundation, Inc. +# +# GRUB 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 3 of the License, or +# (at your option) any later version. +# +# GRUB 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 GRUB. If not, see . + +prefix="/usr" +exec_prefix="${prefix}" +datarootdir="${prefix}/share" +grub_lang=`echo $LANG | cut -d . -f 1` + +export TEXTDOMAIN=grub +export TEXTDOMAINDIR="${datarootdir}/locale" + +. "/usr/share/grub/grub-mkconfig_lib" + +# Do this as early as possible, since other commands might depend on it. +# (e.g. the `loadfont' command might need lvm or raid modules) +for i in ${GRUB_PRELOAD_MODULES} ; do + echo "insmod $i" +done + +if [ "x${GRUB_DEFAULT}" = "x" ] ; then GRUB_DEFAULT=0 ; fi +if [ "x${GRUB_DEFAULT}" = "xsaved" ] ; then GRUB_DEFAULT='${saved_entry}' ; fi +if [ "x${GRUB_TIMEOUT}" = "x" ] ; then GRUB_TIMEOUT=5 ; fi +if [ "x${GRUB_GFXMODE}" = "x" ] ; then GRUB_GFXMODE=auto ; fi + +if [ "x${GRUB_DEFAULT_BUTTON}" = "x" ] ; then GRUB_DEFAULT_BUTTON="$GRUB_DEFAULT" ; fi +if [ "x${GRUB_DEFAULT_BUTTON}" = "xsaved" ] ; then GRUB_DEFAULT_BUTTON='${saved_entry}' ; fi +if [ "x${GRUB_TIMEOUT_BUTTON}" = "x" ] ; then GRUB_TIMEOUT_BUTTON="$GRUB_TIMEOUT" ; fi + +cat << EOF +if [ -s \$prefix/grubenv ]; then + load_env +fi +EOF +if [ "x$GRUB_BUTTON_CMOS_ADDRESS" != "x" ]; then + cat < /dev/null ; then + font_path="${path}" + else + continue + fi + break 2 + done + done + if [ -n "${font_path}" ] ; then + cat << EOF +if [ x\$feature_default_font_path = xy ] ; then + font=unicode +else +EOF + # Make the font accessible + prepare_grub_to_access_device `${grub_probe} --target=device "${font_path}"` + cat << EOF + font="`make_system_path_relative_to_its_root "${font_path}"`" +fi + +if loadfont \$font ; then +EOF + else + cat << EOF +if loadfont unicode ; then +EOF + fi + fi + + cat << EOF + set gfxmode=${GRUB_GFXMODE} + load_video + insmod gfxterm +EOF + +# Gettext variables and module +if [ "x${LANG}" != "xC" ] ; then + cat << EOF + set locale_dir=\$prefix/locale + set lang=${grub_lang} + insmod gettext +EOF +fi + +cat <&2 + + prepare_grub_to_access_device `${grub_probe} --target=device "$GRUB_THEME"` + cat << EOF +insmod gfxmenu +EOF + themedir="`dirname "$GRUB_THEME"`" + for x in "$themedir"/*.pf2 "$themedir"/f/*.pf2; do + if [ -f "$x" ]; then + cat << EOF +loadfont (\$root)`make_system_path_relative_to_its_root $x` +EOF + fi + done + if [ x"`echo "$themedir"/*.jpg`" != x"$themedir/*.jpg" ] || [ x"`echo "$themedir"/*.jpeg`" != x"$themedir/*.jpeg" ]; then + cat << EOF +insmod jpeg +EOF + fi + if [ x"`echo "$themedir"/*.png`" != x"$themedir/*.png" ]; then + cat << EOF +insmod png +EOF + fi + if [ x"`echo "$themedir"/*.tga`" != x"$themedir/*.tga" ]; then + cat << EOF +insmod tga +EOF + fi + + cat << EOF +set theme=(\$root)`make_system_path_relative_to_its_root $GRUB_THEME` +export theme +EOF + elif [ "x$GRUB_BACKGROUND" != x ] && [ -f "$GRUB_BACKGROUND" ] \ + && is_path_readable_by_grub "$GRUB_BACKGROUND"; then + gettext_printf "Found background: %s\n" "$GRUB_BACKGROUND" >&2 + case "$GRUB_BACKGROUND" in + *.png) reader=png ;; + *.tga) reader=tga ;; + *.jpg|*.jpeg) reader=jpeg ;; + *) gettext "Unsupported image format" >&2; echo >&2; exit 1 ;; + esac + prepare_grub_to_access_device `${grub_probe} --target=device "$GRUB_BACKGROUND"` + cat << EOF +insmod $reader +background_image -m stretch `make_system_path_relative_to_its_root "$GRUB_BACKGROUND"` +EOF + fi +fi + +make_timeout () +{ + if [ "x${1}" != "x" ] ; then + if [ "x${GRUB_HIDDEN_TIMEOUT_QUIET}" = "xtrue" ] ; then + verbose= + else + verbose=" --verbose" + fi + cat << EOF +if sleep$verbose --interruptible ${1} ; then + set timeout=${2} +fi +EOF + else + cat << EOF +set timeout=${2} +EOF + fi +} + +if [ "x$GRUB_BUTTON_CMOS_ADDRESS" != "x" ]; then + cat <. + +prefix="/usr" +exec_prefix="${prefix}" +datarootdir="${prefix}/share" + +. "/usr/share/grub/grub-mkconfig_lib" + +export TEXTDOMAIN=grub +export TEXTDOMAINDIR="${datarootdir}/locale" + +CLASS="--class gnu-linux --class gnu --class os" + +if [ "x${GRUB_DISTRIBUTOR}" = "x" ] ; then + OS=GNU/Linux +else + OS="${GRUB_DISTRIBUTOR} GNU/Linux" + CLASS="--class $(echo ${GRUB_DISTRIBUTOR} | tr 'A-Z' 'a-z' | cut -d' ' -f1) ${CLASS}" +fi + +# loop-AES arranges things so that /dev/loop/X can be our root device, but +# the initrds that Linux uses don't like that. +case ${GRUB_DEVICE} in + /dev/loop/*|/dev/loop[0-9]) + GRUB_DEVICE=`losetup ${GRUB_DEVICE} | sed -e "s/^[^(]*(\([^)]\+\)).*/\1/"` + ;; +esac + +if [ "x${GRUB_DEVICE_UUID}" = "x" ] || [ "x${GRUB_DISABLE_LINUX_UUID}" = "xtrue" ] \ + || ! test -e "/dev/disk/by-uuid/${GRUB_DEVICE_UUID}" \ + || uses_abstraction "${GRUB_DEVICE}" lvm; then + LINUX_ROOT_DEVICE=${GRUB_DEVICE} +else + LINUX_ROOT_DEVICE=UUID=${GRUB_DEVICE_UUID} +fi + +GRUBFS="`${grub_probe} --device ${GRUB_DEVICE} --target=fs 2>/dev/null || true`" + +if [ x"$GRUBFS" = x ]; then + GRUBFS="$(stat -f --printf=%T / || true)" +fi + +case x"$GRUBFS" in + xbtrfs) + rootsubvol="`make_system_path_relative_to_its_root /`" + rootsubvol="${rootsubvol#/}" + if [ "x${rootsubvol}" != x ]; then + GRUB_CMDLINE_LINUX="rootflags=subvol=${rootsubvol} ${GRUB_CMDLINE_LINUX}" + fi;; + xzfs) + rpool=`${grub_probe} --device ${GRUB_DEVICE} --target=fs_label 2>/dev/null || true` + bootfs="`make_system_path_relative_to_its_root / | sed -e "s,@$,,"`" + LINUX_ROOT_DEVICE="ZFS=${rpool}${bootfs}" + ;; +esac + +title_correction_code= + +linux_entry () +{ + os="$1" + version="$2" + type="$3" + args="$4" + + if [ -z "$boot_device_id" ]; then + boot_device_id="$(grub_get_device_id "${GRUB_DEVICE}")" + fi + if [ x$type != xsimple ] ; then + case $type in + recovery) + title="$(gettext_printf "%s, with Linux %s (recovery mode)" "${os}" "${version}")" ;; + *) + title="$(gettext_printf "%s, with Linux %s" "${os}" "${version}")" ;; + esac + if [ x"$title" = x"$GRUB_ACTUAL_DEFAULT" ] || [ x"Previous Linux versions>$title" = x"$GRUB_ACTUAL_DEFAULT" ]; then + replacement_title="$(echo "Advanced options for ${OS}" | sed 's,>,>>,g')>$(echo "$title" | sed 's,>,>>,g')" + quoted="$(echo "$GRUB_ACTUAL_DEFAULT" | grub_quote)" + title_correction_code="${title_correction_code}if [ \"x\$default\" = '$quoted' ]; then default='$(echo "$replacement_title" | grub_quote)'; fi;" + grub_warn "$(gettext_printf "Please don't use old title \`%s' for GRUB_DEFAULT, use \`%s' (for versions before 2.00) or \`%s' (for 2.00 or later)" "$GRUB_ACTUAL_DEFAULT" "$replacement_title" "gnulinux-advanced-$boot_device_id>gnulinux-$version-$type-$boot_device_id")" + fi + echo "menuentry '$(echo "$title" | grub_quote)' ${CLASS} \$menuentry_id_option 'gnulinux-$version-$type-$boot_device_id' {" | sed "s/^/$submenu_indentation/" + else + echo "menuentry '$(echo "$os" | grub_quote)' ${CLASS} \$menuentry_id_option 'gnulinux-simple-$boot_device_id' {" | sed "s/^/$submenu_indentation/" + fi + if [ x$type != xrecovery ] ; then + save_default_entry | grub_add_tab + fi + + # Use ELILO's generic "efifb" when it's known to be available. + # FIXME: We need an interface to select vesafb in case efifb can't be used. + if [ "x$GRUB_GFXPAYLOAD_LINUX" = x ]; then + echo " load_video" | sed "s/^/$submenu_indentation/" + if grep -qx "CONFIG_FB_EFI=y" "${config}" 2> /dev/null \ + && grep -qx "CONFIG_VT_HW_CONSOLE_BINDING=y" "${config}" 2> /dev/null; then + echo " set gfxpayload=keep" | sed "s/^/$submenu_indentation/" + fi + else + if [ "x$GRUB_GFXPAYLOAD_LINUX" != xtext ]; then + echo " load_video" | sed "s/^/$submenu_indentation/" + fi + echo " set gfxpayload=$GRUB_GFXPAYLOAD_LINUX" | sed "s/^/$submenu_indentation/" + fi + + echo " insmod gzio" | sed "s/^/$submenu_indentation/" + + if [ x$dirname = x/ ]; then + if [ -z "${prepare_root_cache}" ]; then + prepare_root_cache="$(prepare_grub_to_access_device ${GRUB_DEVICE} | grub_add_tab)" + fi + printf '%s\n' "${prepare_root_cache}" | sed "s/^/$submenu_indentation/" + else + if [ -z "${prepare_boot_cache}" ]; then + prepare_boot_cache="$(prepare_grub_to_access_device ${GRUB_DEVICE_BOOT} | grub_add_tab)" + fi + printf '%s\n' "${prepare_boot_cache}" | sed "s/^/$submenu_indentation/" + fi + message="$(gettext_printf "Loading Linux %s ..." ${version})" + sed "s/^/$submenu_indentation/" << EOF + echo '$(echo "$message" | grub_quote)' + linux ${rel_dirname}/${basename} root=${linux_root_device_thisversion} ro ${args} +EOF + if test -n "${initrd}" ; then + # TRANSLATORS: ramdisk isn't identifier. Should be translated. + message="$(gettext_printf "Loading initial ramdisk ...")" + sed "s/^/$submenu_indentation/" << EOF + echo '$(echo "$message" | grub_quote)' + initrd ${rel_dirname}/${initrd} +EOF + fi + sed "s/^/$submenu_indentation/" << EOF +} +EOF +} + +machine=`uname -m` +case "x$machine" in + xi?86 | xx86_64) + list=`for i in /boot/vmlinuz-* /vmlinuz-* /boot/kernel-* ; do + if grub_file_is_not_garbage "$i" ; then echo -n "$i " ; fi + done` ;; + *) + list=`for i in /boot/vmlinuz-* /boot/vmlinux-* /vmlinuz-* /vmlinux-* /boot/kernel-* ; do + if grub_file_is_not_garbage "$i" ; then echo -n "$i " ; fi + done` ;; +esac + +case "$machine" in + i?86) GENKERNEL_ARCH="x86" ;; + mips|mips64) GENKERNEL_ARCH="mips" ;; + mipsel|mips64el) GENKERNEL_ARCH="mipsel" ;; + arm*) GENKERNEL_ARCH="arm" ;; + *) GENKERNEL_ARCH="$machine" ;; +esac + +prepare_boot_cache= +prepare_root_cache= +boot_device_id= +title_correction_code= + +# Extra indentation to add to menu entries in a submenu. We're not in a submenu +# yet, so it's empty. In a submenu it will be equal to '\t' (one tab). +submenu_indentation="" + +is_first_entry=true +while [ "x$list" != "x" ] ; do + linux=`version_find_latest $list` + gettext_printf "Found linux image: %s\n" "$linux" >&2 + basename=`basename $linux` + dirname=`dirname $linux` + rel_dirname=`make_system_path_relative_to_its_root $dirname` + version=`echo $basename | sed -e "s,^[^0-9]*-,,g"` + alt_version=`echo $version | sed -e "s,\.old$,,g"` + linux_root_device_thisversion="${LINUX_ROOT_DEVICE}" + + initrd= + for i in "initrd.img-${version}" "initrd-${version}.img" "initrd-${version}.gz" \ + "initrd-${version}" "initramfs-${version}.img" \ + "initrd.img-${alt_version}" "initrd-${alt_version}.img" \ + "initrd-${alt_version}" "initramfs-${alt_version}.img" \ + "initramfs-genkernel-${version}" \ + "initramfs-genkernel-${alt_version}" \ + "initramfs-genkernel-${GENKERNEL_ARCH}-${version}" \ + "initramfs-genkernel-${GENKERNEL_ARCH}-${alt_version}"; do + if test -e "${dirname}/${i}" ; then + initrd="$i" + break + fi + done + + config= + for i in "${dirname}/config-${version}" "${dirname}/config-${alt_version}" "/etc/kernels/kernel-config-${version}" ; do + if test -e "${i}" ; then + config="${i}" + break + fi + done + + initramfs= + if test -n "${config}" ; then + initramfs=`grep CONFIG_INITRAMFS_SOURCE= "${config}" | cut -f2 -d= | tr -d \"` + fi + + if test -n "${initrd}" ; then + gettext_printf "Found initrd image: %s\n" "${dirname}/${initrd}" >&2 + elif test -z "${initramfs}" ; then + # "UUID=" and "ZFS=" magic is parsed by initrd or initramfs. Since there's + # no initrd or builtin initramfs, it can't work here. + linux_root_device_thisversion=${GRUB_DEVICE} + fi + + if [ "x$is_first_entry" = xtrue ]; then + linux_entry "${OS}" "${version}" simple \ + "${GRUB_CMDLINE_LINUX} ${GRUB_CMDLINE_LINUX_DEFAULT}" + + submenu_indentation="$grub_tab" + + if [ -z "$boot_device_id" ]; then + boot_device_id="$(grub_get_device_id "${GRUB_DEVICE}")" + fi + # TRANSLATORS: %s is replaced with an OS name + echo "submenu '$(gettext_printf "Advanced options for %s" "${OS}" | grub_quote)' \$menuentry_id_option 'gnulinux-advanced-$boot_device_id' {" + fi + + linux_entry "${OS}" "${version}" advanced \ + "${GRUB_CMDLINE_LINUX} ${GRUB_CMDLINE_LINUX_DEFAULT}" + if [ "x${GRUB_DISABLE_RECOVERY}" != "xtrue" ]; then + linux_entry "${OS}" "${version}" recovery \ + "single ${GRUB_CMDLINE_LINUX}" + fi + + list=`echo $list | tr ' ' '\n' | grep -vx $linux | tr '\n' ' '` + is_first_entry=false +done + +# If at least one kernel was found, then we need to +# add a closing '}' for the submenu command. +if [ x"$is_first_entry" != xtrue ]; then + echo '}' +fi + +echo "$title_correction_code" diff --git a/grub.d/20_linux_xen b/grub.d/20_linux_xen new file mode 100755 index 0000000..dbd8891 --- /dev/null +++ b/grub.d/20_linux_xen @@ -0,0 +1,278 @@ +#! /bin/sh +set -e + +# grub-mkconfig helper script. +# Copyright (C) 2006,2007,2008,2009,2010 Free Software Foundation, Inc. +# +# GRUB 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 3 of the License, or +# (at your option) any later version. +# +# GRUB 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 GRUB. If not, see . + +prefix="/usr" +exec_prefix="${prefix}" +datarootdir="${prefix}/share" + +. "/usr/share/grub/grub-mkconfig_lib" + +export TEXTDOMAIN=grub +export TEXTDOMAINDIR="${datarootdir}/locale" + +CLASS="--class gnu-linux --class gnu --class os --class xen" + +if [ "x${GRUB_DISTRIBUTOR}" = "x" ] ; then + OS=GNU/Linux +else + OS="${GRUB_DISTRIBUTOR} GNU/Linux" + CLASS="--class $(echo ${GRUB_DISTRIBUTOR} | tr 'A-Z' 'a-z' | cut -d' ' -f1) ${CLASS}" +fi + +# loop-AES arranges things so that /dev/loop/X can be our root device, but +# the initrds that Linux uses don't like that. +case ${GRUB_DEVICE} in + /dev/loop/*|/dev/loop[0-9]) + GRUB_DEVICE=`losetup ${GRUB_DEVICE} | sed -e "s/^[^(]*(\([^)]\+\)).*/\1/"` + ;; +esac + +if [ "x${GRUB_DEVICE_UUID}" = "x" ] || [ "x${GRUB_DISABLE_LINUX_UUID}" = "xtrue" ] \ + || ! test -e "/dev/disk/by-uuid/${GRUB_DEVICE_UUID}" \ + || uses_abstraction "${GRUB_DEVICE}" lvm; then + LINUX_ROOT_DEVICE=${GRUB_DEVICE} +else + LINUX_ROOT_DEVICE=UUID=${GRUB_DEVICE_UUID} +fi + +# Allow overriding GRUB_CMDLINE_LINUX and GRUB_CMDLINE_LINUX_DEFAULT. +if [ "${GRUB_CMDLINE_LINUX_XEN_REPLACE}" ]; then + GRUB_CMDLINE_LINUX="${GRUB_CMDLINE_LINUX_XEN_REPLACE}" +fi +if [ "${GRUB_CMDLINE_LINUX_XEN_REPLACE_DEFAULT}" ]; then + GRUB_CMDLINE_LINUX_DEFAULT="${GRUB_CMDLINE_LINUX_XEN_REPLACE_DEFAULT}" +fi + +GRUBFS="`${grub_probe} --device ${GRUB_DEVICE} --target=fs 2>/dev/null || true`" + +if [ x"$GRUBFS" = x ]; then + GRUBFS="$(stat -f --printf=%T /)" +fi + +case x"$GRUBFS" in + xbtrfs) + rootsubvol="`make_system_path_relative_to_its_root /`" + rootsubvol="${rootsubvol#/}" + if [ "x${rootsubvol}" != x ]; then + GRUB_CMDLINE_LINUX="rootflags=subvol=${rootsubvol} ${GRUB_CMDLINE_LINUX}" + fi;; + xzfs) + rpool=`${grub_probe} --device ${GRUB_DEVICE} --target=fs_label 2>/dev/null || true` + bootfs="`make_system_path_relative_to_its_root / | sed -e "s,@$,,"`" + LINUX_ROOT_DEVICE="ZFS=${rpool}${bootfs}" + ;; +esac + +title_correction_code= + +linux_entry () +{ + os="$1" + version="$2" + xen_version="$3" + type="$4" + args="$5" + xen_args="$6" + if [ -z "$boot_device_id" ]; then + boot_device_id="$(grub_get_device_id "${GRUB_DEVICE}")" + fi + if [ x$type != xsimple ] ; then + if [ x$type = xrecovery ] ; then + title="$(gettext_printf "%s, with Xen %s and Linux %s (recovery mode)" "${os}" "${xen_version}" "${version}")" + else + title="$(gettext_printf "%s, with Xen %s and Linux %s" "${os}" "${xen_version}" "${version}")" + fi + replacement_title="$(echo "Advanced options for ${OS}" | sed 's,>,>>,g')>$(echo "$title" | sed 's,>,>>,g')" + if [ x"Xen ${xen_version}>$title" = x"$GRUB_ACTUAL_DEFAULT" ]; then + quoted="$(echo "$GRUB_ACTUAL_DEFAULT" | grub_quote)" + title_correction_code="${title_correction_code}if [ \"x\$default\" = '$quoted' ]; then default='$(echo "$replacement_title" | grub_quote)'; fi;" + grub_warn "$(gettext_printf "Please don't use old title \`%s' for GRUB_DEFAULT, use \`%s' (for versions before 2.00) or \`%s' (for 2.00 or later)" "$GRUB_ACTUAL_DEFAULT" "$replacement_title" "gnulinux-advanced-$boot_device_id>gnulinux-$version-$type-$boot_device_id")" + fi + echo "menuentry '$(echo "$title" | grub_quote)' ${CLASS} \$menuentry_id_option 'xen-gnulinux-$version-$type-$boot_device_id' {" | sed "s/^/$submenu_indentation/" + else + title="$(gettext_printf "%s, with Xen hypervisor" "${os}")" + echo "menuentry '$(echo "$title" | grub_quote)' ${CLASS} \$menuentry_id_option 'xen-gnulinux-simple-$boot_device_id' {" | sed "s/^/$submenu_indentation/" + fi + if [ x$type != xrecovery ] ; then + save_default_entry | grub_add_tab | sed "s/^/$submenu_indentation/" + fi + + if [ -z "${prepare_boot_cache}" ]; then + prepare_boot_cache="$(prepare_grub_to_access_device ${GRUB_DEVICE_BOOT} | grub_add_tab)" + fi + printf '%s\n' "${prepare_boot_cache}" | sed "s/^/$submenu_indentation/" + xmessage="$(gettext_printf "Loading Xen %s ..." ${xen_version})" + lmessage="$(gettext_printf "Loading Linux %s ..." ${version})" + sed "s/^/$submenu_indentation/" << EOF + echo '$(echo "$xmessage" | grub_quote)' + if [ "\$grub_platform" = "pc" -o "\$grub_platform" = "" ]; then + xen_rm_opts= + else + xen_rm_opts="no-real-mode edd=off" + fi + multiboot ${rel_xen_dirname}/${xen_basename} placeholder ${xen_args} \${xen_rm_opts} + echo '$(echo "$lmessage" | grub_quote)' + module ${rel_dirname}/${basename} placeholder root=${linux_root_device_thisversion} ro ${args} +EOF + if test -n "${initrd}" ; then + # TRANSLATORS: ramdisk isn't identifier. Should be translated. + message="$(gettext_printf "Loading initial ramdisk ...")" + sed "s/^/$submenu_indentation/" << EOF + echo '$(echo "$message" | grub_quote)' + module ${rel_dirname}/${initrd} +EOF + fi + sed "s/^/$submenu_indentation/" << EOF +} +EOF +} + +linux_list=`for i in /boot/vmlinu[xz]-* /vmlinu[xz]-* /boot/kernel-*; do + if grub_file_is_not_garbage "$i"; then + basename=$(basename $i) + version=$(echo $basename | sed -e "s,^[^0-9]*-,,g") + dirname=$(dirname $i) + config= + for j in "${dirname}/config-${version}" "${dirname}/config-${alt_version}" "/etc/kernels/kernel-config-${version}" ; do + if test -e "${j}" ; then + config="${j}" + break + fi + done + if (grep -qx "CONFIG_XEN_DOM0=y" "${config}" 2> /dev/null || grep -qx "CONFIG_XEN_PRIVILEGED_GUEST=y" "${config}" 2> /dev/null); then echo -n "$i " ; fi + fi + done` +if [ "x${linux_list}" = "x" ] ; then + exit 0 +fi + +file_is_not_sym () { + case "$1" in + */xen-syms-*) + return 1;; + *) + return 0;; + esac +} + +xen_list=`for i in /boot/xen*; do + if grub_file_is_not_garbage "$i" && file_is_not_sym "$i" ; then echo -n "$i " ; fi + done` +prepare_boot_cache= +boot_device_id= + +title_correction_code= + +machine=`uname -m` + +case "$machine" in + i?86) GENKERNEL_ARCH="x86" ;; + mips|mips64) GENKERNEL_ARCH="mips" ;; + mipsel|mips64el) GENKERNEL_ARCH="mipsel" ;; + arm*) GENKERNEL_ARCH="arm" ;; + *) GENKERNEL_ARCH="$machine" ;; +esac + +# Extra indentation to add to menu entries in a submenu. We're not in a submenu +# yet, so it's empty. In a submenu it will be equal to '\t' (one tab). +submenu_indentation="" + +is_first_entry=true + +while [ "x${xen_list}" != "x" ] ; do + list="${linux_list}" + current_xen=`version_find_latest $xen_list` + xen_basename=`basename ${current_xen}` + xen_dirname=`dirname ${current_xen}` + rel_xen_dirname=`make_system_path_relative_to_its_root $xen_dirname` + xen_version=`echo $xen_basename | sed -e "s,.gz$,,g;s,^xen-,,g"` + if [ -z "$boot_device_id" ]; then + boot_device_id="$(grub_get_device_id "${GRUB_DEVICE}")" + fi + if [ "x$is_first_entry" != xtrue ]; then + echo " submenu '$(gettext_printf "Xen hypervisor, version %s" "${xen_version}" | grub_quote)' \$menuentry_id_option 'xen-hypervisor-$xen_version-$boot_device_id' {" + fi + while [ "x$list" != "x" ] ; do + linux=`version_find_latest $list` + gettext_printf "Found linux image: %s\n" "$linux" >&2 + basename=`basename $linux` + dirname=`dirname $linux` + rel_dirname=`make_system_path_relative_to_its_root $dirname` + version=`echo $basename | sed -e "s,^[^0-9]*-,,g"` + alt_version=`echo $version | sed -e "s,\.old$,,g"` + linux_root_device_thisversion="${LINUX_ROOT_DEVICE}" + + initrd= + for i in "initrd.img-${version}" "initrd-${version}.img" "initrd-${version}.gz" \ + "initrd-${version}" "initramfs-${version}.img" \ + "initrd.img-${alt_version}" "initrd-${alt_version}.img" \ + "initrd-${alt_version}" "initramfs-${alt_version}.img" \ + "initramfs-genkernel-${version}" \ + "initramfs-genkernel-${alt_version}" \ + "initramfs-genkernel-${GENKERNEL_ARCH}-${version}" \ + "initramfs-genkernel-${GENKERNEL_ARCH}-${alt_version}" ; do + if test -e "${dirname}/${i}" ; then + initrd="$i" + break + fi + done + if test -n "${initrd}" ; then + gettext_printf "Found initrd image: %s\n" "${dirname}/${initrd}" >&2 + else + # "UUID=" magic is parsed by initrds. Since there's no initrd, it can't work here. + linux_root_device_thisversion=${GRUB_DEVICE} + fi + + if [ "x$is_first_entry" = xtrue ]; then + linux_entry "${OS}" "${version}" "${xen_version}" simple \ + "${GRUB_CMDLINE_LINUX} ${GRUB_CMDLINE_LINUX_DEFAULT}" "${GRUB_CMDLINE_XEN} ${GRUB_CMDLINE_XEN_DEFAULT}" + + submenu_indentation="$grub_tab$grub_tab" + + if [ -z "$boot_device_id" ]; then + boot_device_id="$(grub_get_device_id "${GRUB_DEVICE}")" + fi + # TRANSLATORS: %s is replaced with an OS name + echo "submenu '$(gettext_printf "Advanced options for %s (with Xen hypervisor)" "${OS}" | grub_quote)' \$menuentry_id_option 'gnulinux-advanced-$boot_device_id' {" + echo " submenu '$(gettext_printf "Xen hypervisor, version %s" "${xen_version}" | grub_quote)' \$menuentry_id_option 'xen-hypervisor-$xen_version-$boot_device_id' {" + fi + is_first_entry=false + + linux_entry "${OS}" "${version}" "${xen_version}" advanced \ + "${GRUB_CMDLINE_LINUX} ${GRUB_CMDLINE_LINUX_DEFAULT}" "${GRUB_CMDLINE_XEN} ${GRUB_CMDLINE_XEN_DEFAULT}" + if [ "x${GRUB_DISABLE_RECOVERY}" != "xtrue" ]; then + linux_entry "${OS}" "${version}" "${xen_version}" recovery \ + "single ${GRUB_CMDLINE_LINUX}" "${GRUB_CMDLINE_XEN}" + fi + + list=`echo $list | tr ' ' '\n' | grep -vx $linux | tr '\n' ' '` + done + if [ x"$is_first_entry" != xtrue ]; then + echo ' }' + fi + xen_list=`echo $xen_list | tr ' ' '\n' | grep -vx $current_xen | tr '\n' ' '` +done + +# If at least one kernel was found, then we need to +# add a closing '}' for the submenu command. +if [ x"$is_first_entry" != xtrue ]; then + echo '}' +fi + +echo "$title_correction_code" diff --git a/grub.d/30_os-prober b/grub.d/30_os-prober new file mode 100755 index 0000000..4af65f2 --- /dev/null +++ b/grub.d/30_os-prober @@ -0,0 +1,298 @@ +#! /bin/sh +set -e + +# grub-mkconfig helper script. +# Copyright (C) 2006,2007,2008,2009 Free Software Foundation, Inc. +# +# GRUB 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 3 of the License, or +# (at your option) any later version. +# +# GRUB 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 GRUB. If not, see . + +prefix="/usr" +exec_prefix="${prefix}" +datarootdir="${prefix}/share" + +export TEXTDOMAIN=grub +export TEXTDOMAINDIR="${datarootdir}/locale" + +. "/usr/share/grub/grub-mkconfig_lib" + +if [ "x${GRUB_DISABLE_OS_PROBER}" = "xtrue" ]; then + exit 0 +fi + +if [ -z "`which os-prober 2> /dev/null`" -o -z "`which linux-boot-prober 2> /dev/null`" ] ; then + # missing os-prober and/or linux-boot-prober + exit 0 +fi + +OSPROBED="`os-prober | tr ' ' '^' | paste -s -d ' '`" +if [ -z "${OSPROBED}" ] ; then + # empty os-prober output, nothing doing + exit 0 +fi + +osx_entry() { + if [ x$2 = x32 ]; then + # TRANSLATORS: it refers to kernel architecture (32-bit) + bitstr="$(gettext "(32-bit)")" + else + # TRANSLATORS: it refers to kernel architecture (64-bit) + bitstr="$(gettext "(64-bit)")" + fi + # TRANSLATORS: it refers on the OS residing on device %s + onstr="$(gettext_printf "(on %s)" "${DEVICE}")" + cat << EOF +menuentry '$(echo "${LONGNAME} $bitstr $onstr" | grub_quote)' --class osx --class darwin --class os \$menuentry_id_option 'osprober-xnu-$2-$(grub_get_device_id "${DEVICE}")' { +EOF + save_default_entry | grub_add_tab + prepare_grub_to_access_device ${DEVICE} | grub_add_tab + cat << EOF + load_video + set do_resume=0 + if [ /var/vm/sleepimage -nt10 / ]; then + if xnu_resume /var/vm/sleepimage; then + set do_resume=1 + fi + fi + if [ \$do_resume = 0 ]; then + xnu_uuid ${OSXUUID} uuid + if [ -f /Extra/DSDT.aml ]; then + acpi -e /Extra/DSDT.aml + fi + if [ /kernelcache -nt /System/Library/Extensions ]; then + $1 /kernelcache boot-uuid=\${uuid} rd=*uuid + else + $1 /mach_kernel boot-uuid=\${uuid} rd=*uuid + if [ /System/Library/Extensions.mkext -nt /System/Library/Extensions ]; then + xnu_mkext /System/Library/Extensions.mkext + else + xnu_kextdir /System/Library/Extensions + fi + fi + if [ -f /Extra/Extensions.mkext ]; then + xnu_mkext /Extra/Extensions.mkext + fi + if [ -d /Extra/Extensions ]; then + xnu_kextdir /Extra/Extensions + fi + if [ -f /Extra/devprop.bin ]; then + xnu_devprop_load /Extra/devprop.bin + fi + if [ -f /Extra/splash.jpg ]; then + insmod jpeg + xnu_splash /Extra/splash.jpg + fi + if [ -f /Extra/splash.png ]; then + insmod png + xnu_splash /Extra/splash.png + fi + if [ -f /Extra/splash.tga ]; then + insmod tga + xnu_splash /Extra/splash.tga + fi + fi +} +EOF +} + +used_osprober_linux_ids= + +for OS in ${OSPROBED} ; do + DEVICE="`echo ${OS} | cut -d ':' -f 1`" + LONGNAME="`echo ${OS} | cut -d ':' -f 2 | tr '^' ' '`" + LABEL="`echo ${OS} | cut -d ':' -f 3 | tr '^' ' '`" + BOOT="`echo ${OS} | cut -d ':' -f 4`" + BTRFS="`echo ${OS} | cut -d ':' -f 5`" + if [ "x$BTRFS" = "xbtrfs" ]; then + BTRFSuuid="`echo ${OS} | cut -d ':' -f 6`" + BTRFSsubvol="`echo ${OS} | cut -d ':' -f 7`" + fi + + if [ -z "${LONGNAME}" ] ; then + LONGNAME="${LABEL}" + fi + + gettext_printf "Found %s on %s\n" "${LONGNAME}" "${DEVICE}" >&2 + + case ${BOOT} in + chain) + + onstr="$(gettext_printf "(on %s)" "${DEVICE}")" + cat << EOF +menuentry '$(echo "${LONGNAME} $onstr" | grub_quote)' --class windows --class os \$menuentry_id_option 'osprober-chain-$(grub_get_device_id "${DEVICE}")' { +EOF + save_default_entry | grub_add_tab + prepare_grub_to_access_device ${DEVICE} | grub_add_tab + + case ${LONGNAME} in + Windows\ Vista*|Windows\ 7*|Windows\ Server\ 2008*) + ;; + *) + cat << EOF + drivemap -s (hd0) \${root} +EOF + ;; + esac + + cat < /dev/null; do + counter=$((counter+1)); + done + if [ -z "$boot_device_id" ]; then + boot_device_id="$(grub_get_device_id "${DEVICE}")" + fi + used_osprober_linux_ids="$used_osprober_linux_ids 'osprober-gnulinux-$LKERNEL-${recovery_params}-$counter-$boot_device_id'" + + if [ -z "${prepare_boot_cache}" ]; then + prepare_boot_cache="$(prepare_grub_to_access_device ${LBOOT} | grub_add_tab)" + fi + + if [ "x$is_first_entry" = xtrue ]; then + cat << EOF +menuentry '$(echo "$OS $onstr" | grub_quote)' --class gnu-linux --class gnu --class os \$menuentry_id_option 'osprober-gnulinux-simple-$boot_device_id' { +EOF + save_default_entry | grub_add_tab + printf '%s\n' "${prepare_boot_cache}" + cat << EOF + linux ${LKERNEL} ${LPARAMS} +EOF + if [ -n "${LINITRD}" ] ; then + cat << EOF + initrd ${LINITRD} +EOF + fi + cat << EOF +} +EOF + echo "submenu '$(gettext_printf "Advanced options for %s" "${OS} $onstr" | grub_quote)' \$menuentry_id_option 'osprober-gnulinux-advanced-$boot_device_id' {" + is_first_entry=false + fi + title="${LLABEL} $onstr" + cat << EOF + menuentry '$(echo "$title" | grub_quote)' --class gnu-linux --class gnu --class os \$menuentry_id_option 'osprober-gnulinux-$LKERNEL-${recovery_params}-$boot_device_id' { +EOF + save_default_entry | sed -e "s/^/$grub_tab$grub_tab/" + printf '%s\n' "${prepare_boot_cache}" | grub_add_tab + cat << EOF + linux ${LKERNEL} ${LPARAMS} +EOF + if [ -n "${LINITRD}" ] ; then + cat << EOF + initrd ${LINITRD} +EOF + fi + cat << EOF + } +EOF + if [ x"$title" = x"$GRUB_ACTUAL_DEFAULT" ] || [ x"Previous Linux versions>$title" = x"$GRUB_ACTUAL_DEFAULT" ]; then + replacement_title="$(echo "Advanced options for ${OS} $onstr" | sed 's,>,>>,g')>$(echo "$title" | sed 's,>,>>,g')" + quoted="$(echo "$GRUB_ACTUAL_DEFAULT" | grub_quote)" + title_correction_code="${title_correction_code}if [ \"x\$default\" = '$quoted' ]; then default='$(echo "$replacement_title" | grub_quote)'; fi;" + grub_warn "$(gettext_printf "Please don't use old title \`%s' for GRUB_DEFAULT, use \`%s' (for versions before 2.00) or \`%s' (for 2.00 or later)" "$GRUB_ACTUAL_DEFAULT" "$replacement_title" "gnulinux-advanced-$boot_device_id>gnulinux-$version-$type-$boot_device_id")" + fi + done + if [ x"$is_first_entry" != xtrue ]; then + echo '}' + fi + echo "$title_correction_code" + ;; + macosx) + OSXUUID="`${grub_probe} --target=fs_uuid --device ${DEVICE} 2> /dev/null`" + osx_entry xnu_kernel 32 + osx_entry xnu_kernel64 64 + ;; + hurd) + onstr="$(gettext_printf "(on %s)" "${DEVICE}")" + cat << EOF +menuentry '$(echo "${LONGNAME} $onstr" | grub_quote)' --class hurd --class gnu --class os \$menuentry_id_option 'osprober-gnuhurd-/boot/gnumach.gz-false-$(grub_get_device_id "${DEVICE}")' { +EOF + save_default_entry | grub_add_tab + prepare_grub_to_access_device ${DEVICE} | grub_add_tab + grub_device="`${grub_probe} --device ${DEVICE} --target=drive`" + mach_device="`echo "${grub_device}" | sed -e 's/(\(hd.*\),msdos\(.*\))/\1s\2/'`" + grub_fs="`${grub_probe} --device ${DEVICE} --target=fs`" + case "${grub_fs}" in + *fs) hurd_fs="${grub_fs}" ;; + *) hurd_fs="${grub_fs}fs" ;; + esac + cat << EOF + multiboot /boot/gnumach.gz root=device:${mach_device} + module /hurd/${hurd_fs}.static ${hurd_fs} --readonly \\ + --multiboot-command-line='\${kernel-command-line}' \\ + --host-priv-port='\${host-port}' \\ + --device-master-port='\${device-port}' \\ + --exec-server-task='\${exec-task}' -T typed '\${root}' \\ + '\$(task-create)' '\$(task-resume)' + module /lib/ld.so.1 exec /hurd/exec '\$(exec-task=task-create)' +} +EOF + ;; + *) + echo -n " " + # TRANSLATORS: %s is replaced by OS name. + gettext_printf "%s is not yet supported by grub-mkconfig.\n" "${LONGNAME}" >&2 + ;; + esac +done diff --git a/grub.d/40_custom b/grub.d/40_custom new file mode 100755 index 0000000..48068de --- /dev/null +++ b/grub.d/40_custom @@ -0,0 +1,5 @@ +#!/bin/sh +exec tail -n +3 $0 +# This file provides an easy way to add custom menu entries. Simply type the +# menu entries you want to add after this comment. Be careful not to change +# the 'exec tail' line above. diff --git a/grub.d/41_custom b/grub.d/41_custom new file mode 100755 index 0000000..fcc21a9 --- /dev/null +++ b/grub.d/41_custom @@ -0,0 +1,9 @@ +#!/bin/sh +cat < BITS <-**... the end result is APPROXIMATELY -# 10000000 bits of pixmap make your Xserver grow by 1Mb of RAM (VERY rough). -# As with any cache, the more, the better. The more you have, the less likely -# it is that you will get cache misses and so performance on scaling the same -# image to commonly used sizes (ie if 3 or 4 sizes of the same image are used) -# will be lightning fast, in fact in some tests I did, in 16bpp up to 38 times -# as fast, and in 8bpp (with dithering on) up to 105 times faster!!! (these -# are nominal figures obtained on my machine. these are MAXIMUM speedup -# results. Results may vary on other machines and according to the way -# programs are written and use Imlib) -Pixmap_Cache_Size 5242880 -# This FORCES Imlib to use the hexadecimal visual id stated here if it is -# defined in the imrc. This bypasses Imlib's routines that hunt for the best -# visual. You can obtain a list of visual ID's using the xdpyinfo command. -# You should only need this if Imlib doesn't pick the correct visual or you -# have strange hardware/Xserver combinations. -#ForceVisualID 22 -# This allows Imlib to fall back on Imagemagick and/or NETPBM -# utilities if it can't load the file. -Fallback on -# Default Gamma, Brightness and Contrast stuff.... -Gamma 1.0 -Brightness 1.0 -Contrast 1.0 -Red_Gamma 1.0 -Red_Brightness 1.0 -Red_Contrast 1.0 -Green_Gamma 1.0 -Green_Brightness 1.0 -Green_Contrast 1.0 -Blue_Gamma 1.0 -Blue_Brightness 1.0 -Blue_Contrast 1.0 -Ordered_Dither on diff --git a/init.d/NetworkManager b/init.d/NetworkManager index 1960795..8465449 100755 --- a/init.d/NetworkManager +++ b/init.d/NetworkManager @@ -1,47 +1,57 @@ #!/sbin/runscript # Copyright (c) 2008 Saleem Abdulrasool # Distributed under the terms of the GNU General Purpose License v2 -# $Header: $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/networkmanager/files/init.d.NetworkManager,v 1.1 2013/01/28 07:05:05 tetromino Exp $ description="NetworkManager daemon. The service is marked as started only \ when a network connection is established." depend() { - need dbus - provide net + need dbus + provide net } start() { - # If we are re-called by a dispatcher event, we want to mark the service - # as started without starting the daemon again - yesno "${IN_BACKGROUND}" && return 0 - - [ -z "${INACTIVE_TIMEOUT}" ] && INACTIVE_TIMEOUT="1" - - ebegin "Starting NetworkManager" - start-stop-daemon --start --quiet --pidfile /var/run/NetworkManager.pid \ - --exec /usr/sbin/NetworkManager -- --pid-file /var/run/NetworkManager.pid - local _retval=$? - eend "${_retval}" - if [ "x${_retval}" = 'x0' ] && ! nm-online -t "${INACTIVE_TIMEOUT}"; then - einfo "Marking NetworkManager as inactive. It will automatically be marked" - einfo "as started after a network connection has been established." - mark_service_inactive - fi - return "${_retval}" + # If we are re-called by a dispatcher event, we want to mark the service + # as started without starting the daemon again + yesno "${IN_BACKGROUND}" && return 0 + + [ -z "${INACTIVE_TIMEOUT}" ] && INACTIVE_TIMEOUT="1" + + ebegin "Starting NetworkManager" + start-stop-daemon --start --quiet --pidfile /run/NetworkManager/NetworkManager.pid \ + --exec /usr/sbin/NetworkManager -- --pid-file /run/NetworkManager/NetworkManager.pid + local _retval=$? + eend "${_retval}" + if [ "x${_retval}" = 'x0' ] && ! nm-online -t "${INACTIVE_TIMEOUT}"; then + einfo "Marking NetworkManager as inactive. It will automatically be marked" + einfo "as started after a network connection has been established." + mark_service_inactive + fi + return "${_retval}" } stop() { - # If we are re-called by a dispatcher event, we want to mark the service - # as inactive without stopping the daemon - if yesno "${IN_BACKGROUND}"; then - mark_service_inactive "${SVCNAME}" - return 0 - fi - - ebegin "Stopping NetworkManager" - start-stop-daemon --stop --quiet --pidfile /var/run/NetworkManager.pid - eend $? + # If we are re-called by a dispatcher event, we want to mark the service + # as inactive without stopping the daemon + if yesno "${IN_BACKGROUND}"; then + mark_service_inactive "${SVCNAME}" + return 0 + fi + + ebegin "Stopping NetworkManager" + local pidfile=/run/NetworkManager/NetworkManager.pid + if [ ! -e "${pidfile}" ] && [ -e /var/run/NetworkManager.pid ]; then + # Try stopping the pid file used by <0.9.7 + pidfile=/var/run/NetworkManager.pid + start-stop-daemon --stop --quiet --pidfile "${pidfile}" + ret=$? + [ ${ret} = 0 ] && [ -e "${pidfile}" ] && rm "${pidfile}" + eend ${ret} + else + start-stop-daemon --stop --quiet --pidfile "${pidfile}" + eend $? + fi } -# vim: set ft=gentoo-init-d ts=3 sw=3 et: +# vim: set ft=gentoo-init-d ts=4 : diff --git a/init.d/bootmisc b/init.d/bootmisc index 2b5248e..d77c720 100755 --- a/init.d/bootmisc +++ b/init.d/bootmisc @@ -27,9 +27,9 @@ cleanup_tmp_dir() ebegin "Wiping $dir directory" # Faster than raw find - if ! rm -rf -- [^ajlq\.]* 2>/dev/null ; then + if ! rm -rf -- [!ajlq\.]* 2>/dev/null ; then # Blah, too many files - find . -maxdepth 1 -name '[^ajlq\.]*' -exec rm -rf -- {} + + find . -maxdepth 1 -name '[!ajlq\.]*' -exec rm -rf -- {} + fi # pam_mktemp creates a .private directory within which @@ -59,6 +59,34 @@ cleanup_tmp_dir() fi } +cleanup_var_run_dir() +{ + ebegin "Cleaning /var/run" + for x in $(find /var/run ! -type d ! -name utmp \ + ! -name random-seed ! -name dev.db \ + ! -name ld-elf.so.hints ! -name ld.so.hints); + do + # Clean stale sockets + if [ -S "$x" ]; then + if type fuser >/dev/null 2>&1; then + fuser "$x" >/dev/null 2>&1 || rm -- "$x" + else + rm -- "$x" + fi + fi + [ ! -f "$x" ] && continue + # Do not remove pidfiles of already running daemons + case "$x" in + *.pid) + start-stop-daemon --test --quiet \ + --stop --pidfile "$x" && continue + ;; + esac + rm -f -- "$x" + done + eend 0 +} + mkutmp() { : >"$1" @@ -87,6 +115,17 @@ migrate_to_run() fi } +clean_run() +{ + [ "$RC_SYS" = VSERVER ] && return 0 + local dir + dir=$(mktemp -d) + mount --bind / $dir + rm -rf $dir/run/* + umount $dir + rm -rf $dir +} + start() { # Remove any added console dirs @@ -115,6 +154,7 @@ start() if [ "$RC_UNAME" = Linux -a -d /run ]; then migrate_to_run /var/lock /run/lock migrate_to_run /var/run /run + clean_run fi if checkpath -W /var/run; then @@ -127,36 +167,13 @@ start() [ -e /var/log/wtmp ] || mkutmp /var/log/wtmp eend 0 - ebegin "Cleaning /var/run" - for x in $(find /var/run ! -type d ! -name utmp \ - ! -name random-seed ! -name dev.db \ - ! -name ld-elf.so.hints ! -name ld.so.hints); - do - # Clean stale sockets - if [ -S "$x" ]; then - if type fuser >/dev/null 2>&1; then - fuser "$x" >/dev/null 2>&1 || rm -- "$x" - else - rm -- "$x" - fi - fi - [ ! -f "$x" ] && continue - # Do not remove pidfiles of already running daemons - case "$x" in - *.pid) - start-stop-daemon --test --quiet \ - --stop --pidfile "$x" && continue - ;; - esac - rm -f -- "$x" - done - eend 0 + mountinfo -q -f tmpfs /var/run || cleanup_var_run_dir fi # Clean up /tmp directories local tmp= for tmp in ${clean_tmp_dirs:-${wipe_tmp_dirs-/tmp}}; do - cleanup_tmp_dir "$tmp" + mountinfo -q -f tmpfs "$tmp" || cleanup_tmp_dir "$tmp" done if checkpath -W /tmp; then @@ -174,7 +191,7 @@ start() if yesno $log_dmesg; then if $logw || checkpath -W /var/log; then # Create an 'after-boot' dmesg log - if [ "$RC_SYS" != VSERVER -a "$RC_SYS" != OPENVZ ]; then + if [ "$RC_SYS" != VSERVER -a "$RC_SYS" != OPENVZ -a "$RC_SYS" != LXC ]; then dmesg > /var/log/dmesg chmod 640 /var/log/dmesg fi diff --git a/init.d/coherence b/init.d/coherence deleted file mode 100755 index 6e71e8f..0000000 --- a/init.d/coherence +++ /dev/null @@ -1,23 +0,0 @@ -#!/sbin/runscript - -depend() { - need net - after bootmisc -} - -start() { - ebegin "Starting Coherence" - start-stop-daemon --start --exec /usr/bin/coherence \ - --pidfile /var/run/coherence.pid \ - --background \ - -- -c /etc/coherence.conf - eend $? -} - -stop() { - ebegin "Stopping Coherence" - start-stop-daemon --stop --exec /usr/bin/coherence \ - --pidfile /var/run/coherence.pid - eend $? -} - diff --git a/init.d/consolefont b/init.d/consolefont index 9d212a0..2ef35e7 100755 --- a/init.d/consolefont +++ b/init.d/consolefont @@ -53,14 +53,10 @@ start() done eend $retval - # Store the last font so we can use it ASAP on boot + # Store the font so we can use it ASAP on boot if [ $retval -eq 0 ] && checkpath -W "$RC_LIBEXECDIR"; then mkdir -p "$RC_LIBEXECDIR"/console - for font in /usr/share/consolefonts/"$consolefont".*; do - : - done - cp "$font" "$RC_LIBEXECDIR"/console - echo "${font##*/}" >"$RC_LIBEXECDIR"/console/font + setfont -O "$RC_LIBEXECDIR"/console/font fi return $retval diff --git a/init.d/devfs b/init.d/devfs index db80c04..4a6a7e8 100755 --- a/init.d/devfs +++ b/init.d/devfs @@ -7,12 +7,13 @@ description="Mount system critical filesystems in /dev." depend() { use dev-mount before dev - keyword -prefix -vserver + keyword -prefix -vserver -lxc } start() { # Mount required stuff as user may not have then in /etc/fstab for x in \ + "mqueue /dev/mqueue 1777 ,nodev mqueue" \ "devpts /dev/pts 0755 ,gid=5,mode=0620 devpts" \ "tmpfs /dev/shm 1777 ,nodev shm" \ ; do diff --git a/init.d/device-mapper b/init.d/device-mapper index 404c269..9ac8cdb 100755 --- a/init.d/device-mapper +++ b/init.d/device-mapper @@ -1,7 +1,7 @@ #!/sbin/runscript -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/files/device-mapper.rc-2.02.95-r2,v 1.1 2012/05/27 07:05:22 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/files/device-mapper.rc-2.02.95-r2,v 1.2 2013/04/09 11:00:26 ssuominen Exp $ depend() { # As of .67-r1, we call ALL lvm start/stop scripts with --sysinit, that diff --git a/init.d/dmeventd b/init.d/dmeventd index 1b8ebe6..cad661d 100755 --- a/init.d/dmeventd +++ b/init.d/dmeventd @@ -1,7 +1,7 @@ #!/sbin/runscript -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/files/dmeventd.initd-2.02.67-r1,v 1.1 2010/06/09 22:41:45 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/files/dmeventd.initd-2.02.67-r1,v 1.2 2013/04/09 11:00:26 ssuominen Exp $ depend() { # As of .67-r1, we call ALL lvm start/stop scripts with --sysinit, that diff --git a/init.d/fancontrol b/init.d/fancontrol index fb163ab..51857a1 100755 --- a/init.d/fancontrol +++ b/init.d/fancontrol @@ -1,33 +1,23 @@ #!/sbin/runscript -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/lm_sensors/files/fancontrol-init.d,v 1.1 2007/05/17 07:31:41 phreak Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/lm_sensors/files/fancontrol-init.d-2,v 1.1 2012/12/28 00:00:03 flameeyes Exp $ CONFIG=/etc/fancontrol -PID=/var/run/fancontrol.pid depend() { - after lm_sensors + need localmount + use lm_sensors } -checkconfig() { +command=/usr/sbin/fancontrol +command_arguments="${CONFIG}" +start_stop_daemon_args="--background" +pidfile=/var/run/fancontrol.pid + +start_pre() { if [ ! -f ${CONFIG} ]; then eerror "Configuration file ${CONFIG} not found" return 1 fi } - -start() { - checkconfig || return 1 - - ebegin "Starting fancontrol" - start-stop-daemon --start --quiet --background --pidfile ${PID} \ - --exec /usr/sbin/fancontrol -- ${CONFIG} - eend ${?} -} - -stop() { - ebegin "Stopping fancontrol" - start-stop-daemon --stop --pidfile ${PID} - eend ${?} -} diff --git a/init.d/fsck b/init.d/fsck index 5869c06..c2e883d 100755 --- a/init.d/fsck +++ b/init.d/fsck @@ -9,7 +9,7 @@ _IFS=" depend() { use dev clock modules - keyword -jail -openvz -prefix -timeout -vserver -lxc + keyword -jail -openvz -prefix -timeout -vserver -lxc -uml } _abort() { @@ -71,14 +71,12 @@ start() done if [ "$RC_UNAME" = Linux ]; then - local skiptypes x - for x in $net_fs_list $extra_net_fs_list; do - skiptypes="${skiptypes}no${x}," - done - skiptypes="${skiptypes}noopts=_netdev" - fsck_opts="$fsck_opts -C0 -T -t $skiptypes" + local skiptypes + skiptypes=$(printf 'no%s,' ${net_fs_list} ${extra_net_fs_list}) + [ "${skiptypes}" = "no," ] && skiptypes="" + fsck_opts="$fsck_opts -C0 -T -t ${skiptypes}noopts=_netdev" if [ -z "$fsck_passno" -a -z "$fsck_mnt" ]; then - fsck_args=${fsck_args--A -p} + fsck_args=${fsck_args:--A -p} if echo 2>/dev/null >/.test.$$; then rm -f /.test.$$ fsck_opts="$fsck_opts -R" @@ -87,7 +85,7 @@ start() fi trap : INT QUIT - fsck ${fsck_args--p} $fsck_opts "$@" + fsck ${fsck_args:--p} $fsck_opts "$@" case $? in 0) eend 0; return 0;; 1) ewend 1 "Filesystems repaired"; return 0;; diff --git a/init.d/hostname b/init.d/hostname index 9bd2c7d..fb6260f 100755 --- a/init.d/hostname +++ b/init.d/hostname @@ -10,7 +10,9 @@ depend() { start() { - hostname=${hostname-${HOSTNAME-localhost}} + # HOSTNAME variable used to be defined in caps in conf.d/hostname. + # It is also a magic variable in bash. + hostname=${hostname-${HOSTNAME-localhost}} # checkbashisms: false positive ebegin "Setting hostname to $hostname" hostname "$hostname" eend $? "Failed to set the hostname" diff --git a/init.d/ip6tables b/init.d/ip6tables index 6806bc9..a63d076 100755 --- a/init.d/ip6tables +++ b/init.d/ip6tables @@ -1,15 +1,16 @@ #!/sbin/runscript -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/files/iptables-1.4.13-r1.init,v 1.1 2012/09/14 17:58:26 axs Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/files/iptables-1.4.13-r1.init,v 1.3 2013/04/27 17:29:09 vapier Exp $ -extra_commands="save panic" +extra_commands="check save panic" extra_started_commands="reload" iptables_name=${SVCNAME} -if [ "${iptables_name}" != "iptables" -a "${iptables_name}" != "ip6tables" ] ; then - iptables_name="iptables" -fi +case ${iptables_name} in +iptables|ip6tables) ;; +*) iptables_name="iptables" ;; +esac iptables_bin="/sbin/${iptables_name}" case ${iptables_name} in @@ -20,6 +21,7 @@ case ${iptables_name} in esac depend() { + need localmount #434774 before net } @@ -79,6 +81,7 @@ stop() { reload() { checkkernel || return 1 + checkrules || return 1 ebegin "Flushing firewall" local a for a in $(cat ${iptables_proc}) ; do @@ -90,6 +93,17 @@ reload() { start } +checkrules() { + ebegin "Checking rules" + ${iptables_bin}-restore --test ${SAVE_RESTORE_OPTIONS} < "${iptables_save}" + eend $? +} + +check() { + # Short name for users of init.d script. + checkrules +} + save() { ebegin "Saving ${iptables_name} state" checkpath -q -d "$(dirname "${iptables_save}")" diff --git a/init.d/iptables b/init.d/iptables index 6806bc9..a63d076 100755 --- a/init.d/iptables +++ b/init.d/iptables @@ -1,15 +1,16 @@ #!/sbin/runscript -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/files/iptables-1.4.13-r1.init,v 1.1 2012/09/14 17:58:26 axs Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/files/iptables-1.4.13-r1.init,v 1.3 2013/04/27 17:29:09 vapier Exp $ -extra_commands="save panic" +extra_commands="check save panic" extra_started_commands="reload" iptables_name=${SVCNAME} -if [ "${iptables_name}" != "iptables" -a "${iptables_name}" != "ip6tables" ] ; then - iptables_name="iptables" -fi +case ${iptables_name} in +iptables|ip6tables) ;; +*) iptables_name="iptables" ;; +esac iptables_bin="/sbin/${iptables_name}" case ${iptables_name} in @@ -20,6 +21,7 @@ case ${iptables_name} in esac depend() { + need localmount #434774 before net } @@ -79,6 +81,7 @@ stop() { reload() { checkkernel || return 1 + checkrules || return 1 ebegin "Flushing firewall" local a for a in $(cat ${iptables_proc}) ; do @@ -90,6 +93,17 @@ reload() { start } +checkrules() { + ebegin "Checking rules" + ${iptables_bin}-restore --test ${SAVE_RESTORE_OPTIONS} < "${iptables_save}" + eend $? +} + +check() { + # Short name for users of init.d script. + checkrules +} + save() { ebegin "Saving ${iptables_name} state" checkpath -q -d "$(dirname "${iptables_save}")" diff --git a/init.d/iscsid b/init.d/iscsid new file mode 100755 index 0000000..ec99168 --- /dev/null +++ b/init.d/iscsid @@ -0,0 +1,131 @@ +#!/sbin/runscript +# Copyright 1999-2013 Gentoo Foundation, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/sys-block/open-iscsi/files/open-iscsi-2.0.872-init.d-r1,v 1.1 2013/03/07 10:23:45 ssuominen Exp $ + +opts="${opts} starttargets stoptargets restarttargets" + +depend() { + after modules + use net +} + +PIDFILE=${PIDFILE:-/var/run/${SVCNAME}.pid} +BINARY="/usr/sbin/iscsid" + +checkconfig() { + if [ ! -e /etc/conf.d/${SVCNAME} ]; then + eerror "Config file /etc/conf.d/${SVCNAME} does not exist!" + return 1 + fi + if [ ! -e "${CONFIG_FILE}" ]; then + eerror "Config file ${CONFIG_FILE} does not exist!" + return 1 + fi + if [ ! -e ${INITIATORNAME_FILE} ] || [ ! "$(grep "^InitiatorName=iqn\." ${INITIATORNAME_FILE})" ]; then + ewarn "${INITIATORNAME_FILE} should contain a string with your initiatior name." + IQN=iqn.$(date +%Y-%m).$(hostname -f | awk 'BEGIN { FS=".";}{x=NF; while (x>0) {printf $x ;x--; if (x>0) printf ".";} print ""}'):openiscsi + IQN=${IQN}-$(echo ${RANDOM}${RANDOM}${RANDOM}${RANDOM}${RANDOM} | md5sum | sed -e "s/\(.*\) -/\1/g" -e 's/ //g') + ebegin "Creating InitiatorName ${IQN} in ${INITIATORNAME_FILE}" + echo "InitiatorName=${IQN}" >> "${INITIATORNAME_FILE}" + eend $? + fi +} + +do_modules() { + msg="$1" + shift + modules="${1}" + shift + modopts="$@" + for m in ${modules} + do + if modprobe --show --quiet "${m}" + then + ebegin "${msg} ${m}" + modprobe ${modopts} ${m} + ret=$? + eend ${ret} + if [ ${ret} -ne 0 ]; then + return ${ret} + fi + else + ebegin "${msg} ${m}: not found" + return 1 + fi + done + return 0 +} + +start() { + ebegin "Checking open-iSCSI configuration" + checkconfig + ret=$? + if [ $ret -ne 0 ]; then + eend 1 + return 1 + fi + ebegin "Loading iSCSI modules" + do_modules 'Loading' 'libiscsi scsi_transport_iscsi iscsi_tcp' + ret=$? + if [ $ret -ne 0 ]; then + eend 1 + return 1 + fi + + ebegin "Starting ${SVCNAME}" + start-stop-daemon --start --quiet --exec ${BINARY} -- ${OPTS} + ret=$? + if [ $ret -ne 0 ]; then + eend $? + return $? + fi + + # Start automatic targets when iscsid is started + if [ "${AUTOSTARTTARGETS}" = "yes" ]; then + starttargets + ret=$? + if [ "${AUTOSTART}" = "strict" ] && [ $ret -ne 0 ]; then + stop + return $ret + fi + fi + return 0 +} + +stop() { + stoptargets + ebegin "Stopping ${SVCNAME}" + start-stop-daemon --stop --quiet --exec ${BINARY} --pidfile ${PIDFILE} + eend $? + + do_modules 'Removing iSCSI modules' 'iscsi_tcp scsi_transport_iscsi libiscsi' '-r' + eend $? +} + +starttargets() { + ebegin "Setting up iSCSI targets" + /usr/sbin/iscsiadm -m node --loginall=automatic + ret=$? + eend $ret + return $ret +} + +stoptargets() { + ebegin "Disconnecting iSCSI targets" + sync + /usr/sbin/iscsiadm -m node --logoutall=all + ret=$? + eend $ret + return $ret +} + +restarttargets() { + stoptargets + starttargets +} + +status() { + ebegin "Showing current active iSCSI sessions" + /usr/sbin/iscsiadm -m session +} diff --git a/init.d/keymaps b/init.d/keymaps index ea8be34..507424b 100755 --- a/init.d/keymaps +++ b/init.d/keymaps @@ -58,7 +58,7 @@ start() if yesno $fix_euro; then ebegin "Fixing font for euro symbol" # Fix some fonts displaying the Euro, #173528. - echo "altgr keycode 18 = U+20AC" | loadkeys -q + echo "altgr keycode 18 = U+20AC" | loadkeys -q - eend $? fi diff --git a/init.d/kmod-static-nodes b/init.d/kmod-static-nodes new file mode 100755 index 0000000..43d8431 --- /dev/null +++ b/init.d/kmod-static-nodes @@ -0,0 +1,18 @@ +#!/sbin/runscript +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/kmod/files/kmod-static-nodes,v 1.1 2013/08/09 19:08:18 ssuominen Exp $ + +description="Create list of required static device nodes for the current kernel" + +depend() { + after dev-mount + before tmpfiles.dev dev +} + +start() { + ebegin "Creating list of required static device nodes for the current kernel" + checkpath -q -d /run/tmpfiles.d + kmod static-nodes --format=tmpfiles --output=/run/tmpfiles.d/kmod.conf + eend $? +} diff --git a/init.d/libvirtd b/init.d/libvirtd index f5fdceb..00b5c3b 100755 --- a/init.d/libvirtd +++ b/init.d/libvirtd @@ -7,7 +7,7 @@ description_reload="Restarts the libvirt daemon without stopping your VMs" depend() { - use avahi-daemon dbus + use avahi-daemon dbus virtlockd after ntp-client ntpd nfs nfsmount portmap rpc.statd iptables ip6tables ebtables corosync sanlock cgconfig xenconsoled } diff --git a/init.d/localmount b/init.d/localmount index b5d7df2..7974765 100755 --- a/init.d/localmount +++ b/init.d/localmount @@ -9,7 +9,7 @@ depend() need fsck use lvm modules mtab after lvm modules - keyword -jail -openvz -prefix -vserver -lxc + keyword -jail -prefix -vserver -lxc } start() @@ -17,13 +17,13 @@ start() # Mount local filesystems in /etc/fstab. local types="noproc" x= no_netdev= for x in $net_fs_list $extra_net_fs_list; do - types="${types},${x}" + types="${types},no${x}" done if [ "$RC_UNAME" = Linux ]; then no_netdev="-O no_netdev" if mountinfo -q /usr; then - touch $RC_SVCDIR/usr_premounted + touch "$RC_SVCDIR"/usr_premounted fi fi ebegin "Mounting local filesystems" @@ -40,7 +40,7 @@ stop() # We never unmount / or /dev or $RC_SVCDIR # Bug 381783 - local rc_svcdir=$(echo $RC_SVCDIR | sed 's:/lib\(32\|64\)\?/:/lib(32|64)?/:g') + local rc_svcdir=$(printf '%s\n' "$RC_SVCDIR" | sed 's:/lib\(32\|64\)\?/:/lib(32|64)?/:g') local x= no_umounts_r="/|/dev|/dev/.*|${rc_svcdir}" no_umounts_r="${no_umounts_r}|/bin|/sbin|/lib(32|64)?|/libexec" @@ -52,7 +52,7 @@ stop() if [ "$RC_UNAME" = Linux ]; then no_umounts_r="$no_umounts_r|/proc|/proc/.*|/run|/sys|/sys/.*" - if [ -e $rc_svcdir/usr_premounted ]; then + if [ -e "$rc_svcdir"/usr_premounted ]; then no_umounts_r="$no_umounts_r|/usr" fi fi diff --git a/init.d/loopback b/init.d/loopback new file mode 100755 index 0000000..4c7e6e1 --- /dev/null +++ b/init.d/loopback @@ -0,0 +1,35 @@ +#!/sbin/runscript +# Copyright (c) 2013 William Hubbs +# Released under the 2-clause BSD license. + +description="Configures the loopback interface." + +depend() +{ + keyword -jail -prefix -vserver +} + +start() +{ + if [ "$RC_UNAME" = Linux ]; then + ebegin "Bringing up network interface lo" + if type ip > /dev/null 2>&1; then + ip addr add 127.0.0.1/8 dev lo brd + scope host + ip route add 127.0.0.0/8 dev lo scope host + ip link set lo up + else + ifconfig lo 127.0.0.1 netmask 255.0.0.0 + route add -net 127.0.0.0 netmask 255.0.0.0 gw 127.0.0.1 + fi + else + ebegin "Bringing up network interface lo0" + ifconfig lo0 127.0.0.1 netmask 255.0.0.0 + route -q add -inet 127.0.0.0 -netmask 255.0.0.0 127.0.0.1 + fi + eend $? +} + +stop() +{ + return 0 +} diff --git a/init.d/lvm b/init.d/lvm index a06aa0b..76d90f3 100755 --- a/init.d/lvm +++ b/init.d/lvm @@ -1,7 +1,7 @@ #!/sbin/runscript -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/files/lvm.rc-2.02.95-r2,v 1.1 2012/05/27 07:05:22 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/files/lvm.rc-2.02.95-r2,v 1.2 2013/04/09 11:00:26 ssuominen Exp $ depend() { use dmeventd diff --git a/init.d/lvm-monitoring b/init.d/lvm-monitoring index 0b67f33..6a41bb6 100755 --- a/init.d/lvm-monitoring +++ b/init.d/lvm-monitoring @@ -1,7 +1,7 @@ #!/sbin/runscript -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/files/lvm-monitoring.initd-2.02.67-r2,v 1.3 2010/08/20 19:18:29 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/files/lvm-monitoring.initd-2.02.67-r2,v 1.4 2013/04/09 11:00:26 ssuominen Exp $ # This script is based on upstream file # LVM2.2.02.67/scripts/lvm2_monitoring_init_red_hat.in diff --git a/init.d/net.lo b/init.d/net.lo index da7b3f4..5309423 100755 --- a/init.d/net.lo +++ b/init.d/net.lo @@ -2,7 +2,7 @@ # Copyright (c) 2007-2009 Roy Marples # Released under the 2-clause BSD license. -MODULESDIR="${RC_LIBEXECDIR}/net" +MODULESDIR="/lib/netifrc/net" MODULESLIST="${RC_SVCDIR}/nettree" _config_vars="config routes" @@ -116,12 +116,12 @@ _wait_for_carrier() yesno ${RC_PARALLEL} && efunc=einfo ${efunc} "Waiting for carrier (${timeout} seconds) " while [ ${timeout} -gt 0 ]; do - sleep 1 if _has_carrier; then [ "${efunc}" = "einfon" ] && echo eend 0 return 0 fi + sleep 1 : $(( timeout -= 1 )) [ "${efunc}" = "einfon" ] && printf "." done @@ -151,6 +151,9 @@ _netmask2cidr() local i= len= local IFS=. for i in $1; do + case $i in + 0x*) i=$((i)) ;; + esac while [ ${i} -ne 0 ]; do : $(( len += i % 2 )) : $(( i >>= 1 )) @@ -633,7 +636,7 @@ start() return 1 fi - local hidefirstroute=false first=true routes= + local hideFirstroute=false first=true routes= if ${fallback}; then routes="$(_get_array "fallback_routes_${IFVAR}")" fi @@ -644,18 +647,25 @@ start() if [ "${config_0}" != "null" ]; then routes="127.0.0.0/8 via 127.0.0.1 ${routes}" - hidefirstroute=true + hideFirstroute=true fi fi local OIFS="${IFS}" SIFS="${IFS-y}" local IFS="$__IFS" + local fam for cmd in ${routes}; do unset IFS if ${first}; then first=false einfo "Adding routes" fi + + case ${cmd} in + -6" "*) fam="-6"; cmd=${cmd#-6 };; + -4" "*) fam="-4"; cmd=${cmd#-4 };; + esac + eindent ebegin ${cmd} # Work out if we're a host or a net if not told @@ -665,13 +675,15 @@ ${routes}" *.*.*.*/32*) cmd="-host ${cmd}";; *.*.*.*/*|0.0.0.0|0.0.0.0" "*) cmd="-net ${cmd}";; default|default" "*) cmd="-net ${cmd}";; + *:*/128*) cmd="-host ${cmd}";; + *:*/*) cmd="-net ${cmd}";; *) cmd="-host ${cmd}";; esac - if ${hidefirstroute}; then - _add_route ${cmd} >/dev/null 2>&1 - hidefirstroute=false + if ${hideFirstroute}; then + _add_route ${fam} ${cmd} >/dev/null 2>&1 + hideFirstroute=false else - _add_route ${cmd} >/dev/null + _add_route ${fam} ${cmd} >/dev/null fi eend $? eoutdent @@ -700,6 +712,11 @@ ${routes}" stop() { + # Don't stop the network at shutdown. + # We don't use the noshutdown keyword so that we are started again + # correctly if we go back to multiuser. + yesno ${keep_network:-YES} && yesno $RC_GOINGDOWN && return 0 + local IFACE=${RC_SVCNAME#*.} module= local IFVAR=$(shell_var "${IFACE}") opts= diff --git a/init.d/netmount b/init.d/netmount index 9795960..be1a3ba 100755 --- a/init.d/netmount +++ b/init.d/netmount @@ -12,7 +12,7 @@ depend() config /etc/fstab use afc-client amd autofs openvpn use dns - keyword -jail -prefix -vserver + keyword -jail -prefix -vserver -lxc } start() diff --git a/init.d/nfs b/init.d/nfs index c99a1bf..ab25b4d 100755 --- a/init.d/nfs +++ b/init.d/nfs @@ -1,7 +1,7 @@ #!/sbin/runscript -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/files/nfs.initd,v 1.26 2011/09/18 01:51:51 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/files/nfs.initd,v 1.27 2013/03/24 19:37:22 vapier Exp $ extra_started_commands="reload" @@ -17,20 +17,18 @@ smnotify=/usr/sbin/sm-notify depend() { local myneed="" - if [ -e /etc/exports ] ; then - # XXX: no way to detect NFSv4 is desired and so need rpc.idmapd - myneed="${myneed} $( - awk '!/^[[:space:]]*#/ { - # clear the path to avoid spurious matches - $1 = ""; - if ($0 ~ /[(][^)]*sec=(krb|spkm)[^)]*[)]/) { - print "rpc.svcgssd" - exit 0 - } - }' /etc/exports - )" - fi - config /etc/exports + # XXX: no way to detect NFSv4 is desired and so need rpc.idmapd + myneed="${myneed} $( + awk '!/^[[:space:]]*#/ { + # clear the path to avoid spurious matches + $1 = ""; + if ($0 ~ /[(][^)]*sec=(krb|spkm)[^)]*[)]/) { + print "rpc.svcgssd" + exit 0 + } + }' /etc/exports /etc/exports.d/*.exports 2>/dev/null + )" + config /etc/exports /etc/exports.d/*.exports need portmap rpc.statd ${myneed} ${NFS_NEEDED_SERVICES} use ypbind net dns rpc.rquotad rpc.idmapd rpc.svcgssd after quota @@ -46,7 +44,7 @@ mkdir_nfsdirs() { waitfor_exportfs() { local pid=$1 - ( sleep ${EXPORTFS_TIMEOUT:-30}; kill -9 $pid 2>/dev/null ) & + ( sleep ${EXPORTFS_TIMEOUT:-30}; kill -9 ${pid} 2>/dev/null ) & wait $1 } @@ -91,7 +89,7 @@ start() { # Exportfs likes to hang if networking isn't working. # If that's the case, then try to kill it so the # bootup process can continue. - if grep -qs '^[[:space:]]*/' /etc/exports ; then + if grep -qs '^[[:space:]]*/' /etc/exports /etc/exports.d/*.exports ; then ebegin "Exporting NFS directories" ${exportfs} -r & waitfor_exportfs $! diff --git a/init.d/nfsmount b/init.d/nfsmount index 62bf028..6bb1009 100755 --- a/init.d/nfsmount +++ b/init.d/nfsmount @@ -1,7 +1,7 @@ #!/sbin/runscript -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/files/nfsmount.initd,v 1.14 2010/06/28 21:03:11 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/files/nfsmount.initd,v 1.15 2013/03/24 20:29:48 vapier Exp $ [ -e /etc/conf.d/nfs ] && . /etc/conf.d/nfs @@ -20,7 +20,7 @@ depend() { )" fi config /etc/fstab - need net portmap rpc.statd ${myneed} + need portmap rpc.statd ${myneed} use ypbind dns rpc.idmapd rpc.gssd } diff --git a/init.d/nscd b/init.d/nscd index ebff59c..04a7681 100755 --- a/init.d/nscd +++ b/init.d/nscd @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo/src/patchsets/glibc/extra/etc/nscd,v 1.6 2012/07/03 20:05:39 vapier Exp $ +# $Header: /var/cvsroot/gentoo/src/patchsets/glibc/extra/etc/nscd,v 1.8 2012/12/16 22:28:41 vapier Exp $ depend() { use dns ldap net slapd @@ -31,14 +31,14 @@ start() { local secure=`while read curline ; do table=${curline%:*} entries=${curline##$table:} - table=${table%%[^a-z]*} + table=${table%%[!a-z]*} case $table in passwd*|group*|hosts) for entry in $entries ; do case $entry in nisplus*) - /usr/sbin/nscd_nischeck $table || \ - /echo "-S $table,yes" + nscd_nischeck $table || \ + echo "-S $table,yes" ;; esac done @@ -51,7 +51,7 @@ start() { start-stop-daemon --start --quiet --background \ --exec /usr/sbin/nscd --pidfile ${pidfile} \ - -- $secure + -- --foreground $secure eend $? } diff --git a/init.d/postgresql-9.2 b/init.d/postgresql-9.2 index 1785c73..ea9d922 100755 --- a/init.d/postgresql-9.2 +++ b/init.d/postgresql-9.2 @@ -61,7 +61,7 @@ checkconfig() { # Set the proper permission for the socket path and create it if # it doesn't exist. - checkpath -d -m 0770 -o postgres:postgres ${socket_path} + checkpath -d -m 0775 -o postgres:postgres ${socket_path} if [ -e ${socket_path%/}/.s.PGSQL.${configured_port} ] ; then eerror "Socket conflict." eerror "A server is already listening on:" @@ -95,8 +95,9 @@ start() { local retval=$? if [ $retval -ne 0 ] ; then - eerror "Check the log for a possible explanation of the above error." + eerror "Check the log for a possible explanation of the above error. The log may be" eerror " ${DATA_DIR%/}/postmaster.log" + eerror "Or wherever you configured PostgreSQL 9.2 log messages to be sent." eend $retval return $retval fi diff --git a/init.d/pydoc-3.3 b/init.d/pydoc-3.3 new file mode 100755 index 0000000..fc1676e --- /dev/null +++ b/init.d/pydoc-3.3 @@ -0,0 +1,29 @@ +#!/sbin/runscript +# Copyright 1999-2011 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public Licence v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/python/files/pydoc.init,v 1.4 2011/10/27 13:56:55 neurogeek Exp $ + +depend() { + need net +} + +start() { + local pydoc_port="${PYDOC3_3_PORT-${PYDOC_PORT}}" + + if [ -z "${pydoc_port}" ]; then + eerror "Port not set" + return 1 + fi + + ebegin "Starting pydoc server on port ${pydoc_port}" + start-stop-daemon --start --background --make-pidfile \ + --pidfile /var/run/pydoc3.3.pid \ + --exec /usr/bin/pydoc3.3 -- -p "${pydoc_port}" + eend $? +} + +stop() { + ebegin "Stopping pydoc server" + start-stop-daemon --stop --quiet --pidfile /var/run/pydoc3.3.pid + eend $? +} diff --git a/init.d/sntp b/init.d/sntp new file mode 100755 index 0000000..cd42b44 --- /dev/null +++ b/init.d/sntp @@ -0,0 +1,27 @@ +#!/sbin/runscript +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/ntp/files/sntp.rc,v 1.1 2013/07/06 07:15:02 pacho Exp $ + +depend() { + before cron portmap + after net + use dns logger +} + +checkconfig() { + if [ -z "${SNTP_OPTS}" ] ; then + eerror "Please edit /etc/conf.d/sntp" + eerror "I need to know what server/options to use!" + return 1 + fi + return 0 +} + +start() { + checkconfig || return $? + + ebegin "Setting clock via SNTP" + /usr/bin/sntp ${SNTP_OPTS} + eend $? "Failed to set clock" +} diff --git a/init.d/swapfiles b/init.d/swapfiles index 086f25e..8a851fa 100755 --- a/init.d/swapfiles +++ b/init.d/swapfiles @@ -21,14 +21,6 @@ start() stop() { ebegin "Deactivating additional swap space" - - # Try to unmount all tmpfs filesystems not in use, else a deadlock may - # occur. As $RC_SVCDIR may also be tmpfs we cd to it to lock it - # fixme: Do we need this here since we are only unmounting swap files - # and loopback swap? - cd "$RC_SVCDIR" - umount -a -t tmpfs 2>/dev/null - case "$RC_UNAME" in Linux) if [ -e /proc/swaps ]; then diff --git a/init.d/sysfs b/init.d/sysfs index d129fde..ec88c6d 100755 --- a/init.d/sysfs +++ b/init.d/sysfs @@ -4,6 +4,8 @@ description="Mount the sys filesystem." +sysfs_opts=nodev,noexec,nosuid + depend() { keyword -lxc -prefix -vserver @@ -23,7 +25,7 @@ mount_sys() ebegin "Mounting /sys" if ! fstabinfo --mount /sys; then - mount -n -t sysfs -o noexec,nosuid,nodev sysfs /sys + mount -n -t sysfs -o ${sysfs_opts} sysfs /sys fi eend $? } @@ -35,7 +37,7 @@ mount_misc() ! mountinfo -q /sys/kernel/security; then if grep -qs securityfs /proc/filesystems; then ebegin "Mounting security filesystem" - mount -n -t securityfs -o nodev,noexec,nosuid \ + mount -n -t securityfs -o ${sysfs_opts} \ securityfs /sys/kernel/security eend $? fi @@ -45,8 +47,7 @@ mount_misc() if [ -d /sys/kernel/debug ] && ! mountinfo -q /sys/kernel/debug; then if grep -qs debugfs /proc/filesystems; then ebegin "Mounting debug filesystem" - mount -n -t debugfs -o nodev,noexec,nosuid \ - debugfs /sys/kernel/debug + mount -n -t debugfs -o ${sysfs_opts} debugfs /sys/kernel/debug eend $? fi fi @@ -55,8 +56,7 @@ mount_misc() if [ -d /sys/kernel/config ] && ! mountinfo -q /sys/kernel/config; then if grep -qs configfs /proc/filesystems; then ebegin "Mounting config filesystem" - mount -n -t configfs -o nodev,noexec,nosuid \ - configfs /sys/kernel/config + mount -n -t configfs -o ${sysfs_opts} configfs /sys/kernel/config eend $? fi fi @@ -65,11 +65,36 @@ mount_misc() if [ -d /sys/fs/cgroup ] && ! mountinfo -q /sys/fs/cgroup; then if grep -qs cgroup /proc/filesystems; then ebegin "Mounting cgroup filesystem" - local opts="nodev,noexec,nosuid,mode=755,size=${rc_cgroupsize:-10m}" + local opts="${sysfs_opts},mode=755,size=${rc_cgroupsize:-10m}" mount -n -t tmpfs -o ${opts} cgroup_root /sys/fs/cgroup eend $? fi fi + + # set up kernel support for fusectl + if [ -d /sys/fs/fuse/connections ] \ + && ! mountinfo -q /sys/fs/fuse/connections; then + if grep -qs fusectl /proc/filesystems; then + ebegin "Mounting fuse control filesystem" + mount -n -t fusectl -o ${sysfs_opts} \ + fusectl /sys/fs/fuse/connections + eend $? + fi + fi + + # setup up kernel support for efivarfs + # slightly complicated, as if it's build as a module but NOT yet loaded, + # it will NOT appear in /proc/filesystems yet + if [ -d /sys/firmware/efi/efivars ] \ + && ! mountinfo -q /sys/firmware/efi/efivars; then + modprobe -q efivarfs + if grep -qs efivarfs /proc/filesystems; then + ebegin "Mounting efivarfs filesystem" + mount -n -t efivarfs -o ${sysfs_opts} \ + efivarfs /sys/firmware/efi/efivars + eend $? + fi + fi } mount_cgroups() @@ -79,7 +104,7 @@ mount_cgroups() local agent="/lib64/rc/sh/cgroup-release-agent.sh" mkdir /sys/fs/cgroup/openrc mount -n -t cgroup \ - -o none,nodev,noexec,nosuid,name=openrc,release_agent="$agent" \ + -o none,${sysfs_opts},name=openrc,release_agent="$agent" \ openrc /sys/fs/cgroup/openrc echo 1 > /sys/fs/cgroup/openrc/notify_on_release @@ -87,7 +112,7 @@ mount_cgroups() while read name hier groups enabled rest; do case "${enabled}" in 1) mkdir /sys/fs/cgroup/${name} - mount -n -t cgroup -o nodev,noexec,nosuid,${name} \ + mount -n -t cgroup -o ${sysfs_opts},${name} \ ${name} /sys/fs/cgroup/${name} ;; esac diff --git a/init.d/syslog-ng b/init.d/syslog-ng index 318b3a8..eb28bb8 100755 --- a/init.d/syslog-ng +++ b/init.d/syslog-ng @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/syslog-ng/files/3.4/syslog-ng.rc6,v 1.5 2013/05/08 20:12:59 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/syslog-ng/files/3.4/syslog-ng.rc6,v 1.6 2013/08/31 17:44:03 mr_bones_ Exp $ SYSLOG_NG_CONFIGFILE=${SYSLOG_NG_CONFIGFILE:-/etc/syslog-ng/${RC_SVCNAME}.conf} SYSLOG_NG_STATEFILE_DIR=${SYSLOG_NG_STATEFILE_DIR:-/var/lib/syslog-ng} @@ -12,7 +12,7 @@ SYSLOG_NG_PIDFILE=${SYSLOG_NG_PIDFILE:-${SYSLOG_NG_PIDFILE_DIR}/${RC_SVCNAME}.pi SYSLOG_NG_GROUP=${SYSLOG_NG_GROUP:-root} SYSLOG_NG_USER=${SYSLOG_NG_USER:-root} -command="syslog-ng" +command="/usr/sbin/syslog-ng" command_args="--persist-file \"${SYSLOG_NG_STATEFILE}\" --cfgfile \"${SYSLOG_NG_CONFIGFILE}\" --pidfile \"${SYSLOG_NG_PIDFILE}\" ${SYSLOG_NG_OPTS}" extra_commands="checkconfig" extra_started_commands="reload" diff --git a/init.d/tmpfiles.dev b/init.d/tmpfiles.dev new file mode 100755 index 0000000..058980e --- /dev/null +++ b/init.d/tmpfiles.dev @@ -0,0 +1,21 @@ +#!/sbin/runscript +# Copyright 1999-2012 Gentoo Foundation +# Released under the 2-clause BSD license. + +description="set up tmpfiles.d entries" + +depend() +{ + use dev-mount + before dev + keyword -prefix -vserver +} + +start() +{ + ebegin "setting up tmpfiles.d entries for /dev" + /lib64/rc/sh/tmpfiles.sh --prefix=/dev --create --remove \ + ${tmpfiles_opts} + eend $? + return 0 +} diff --git a/init.d/tmpfiles.setup b/init.d/tmpfiles.setup index fc74426..7772741 100755 --- a/init.d/tmpfiles.setup +++ b/init.d/tmpfiles.setup @@ -12,7 +12,8 @@ depend() start() { ebegin "setting up tmpfiles.d entries" - /lib64/rc/sh/tmpfiles.sh --create --remove ${tmpfiles_opts} + /lib64/rc/sh/tmpfiles.sh --exclude-prefix=/dev --create --remove \ + ${tmpfiles_opts} eend $? return 0 } diff --git a/init.d/virtlockd b/init.d/virtlockd new file mode 100755 index 0000000..2c80af6 --- /dev/null +++ b/init.d/virtlockd @@ -0,0 +1,13 @@ +#!/sbin/runscript +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt/files/virtlockd.init,v 1.1 2013/10/25 20:06:42 cardoe Exp $ + +description="libvirt virtual machine lock manager" +command="/usr/sbin/virtlockd" +command_args="-d" +pidfile="/var/run/virtlockd.pid" + +depend() { + after ntp-client ntpd nfs nfsmount corosync +} diff --git a/init.d/xdm b/init.d/xdm index c776738..9826e6b 100755 --- a/init.d/xdm +++ b/init.d/xdm @@ -1,7 +1,7 @@ #!/sbin/runscript -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License, v2 -# $Header: /var/cvsroot/gentoo-x86/x11-base/xorg-server/files/xdm.initd-9,v 1.1 2012/11/11 01:49:30 chithanh Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-base/xorg-server/files/xdm.initd-10,v 1.1 2013/09/26 15:23:33 axs Exp $ # This is here to serve as a note to myself, and future developers. # @@ -69,16 +69,24 @@ setup_dm() { case "${MY_XDM}" in kdm|kde) EXE=/usr/bin/kdm - PIDFILE=/var/run/kdm.pid + PIDFILE=/run/kdm.pid ;; entrance*) EXE=/usr/sbin/entrance - PIDFILE=/var/run/entrance.pid + PIDFILE=/run/entrance.pid ;; gdm|gnome) - EXE=/usr/bin/gdm + # gdm-3 and above has different paths + if [ -f /usr/sbin/gdm ]; then + EXE=/usr/sbin/gdm + PIDFILE=/run/gdm/gdm.pid + START_STOP_ARGS="--background" + AUTOCLEAN_CGROUP="yes" + else + EXE=/usr/bin/gdm + PIDFILE=/run/gdm.pid + fi [ "${RC_UNAME}" != "Linux" ] && NAME=gdm-binary - PIDFILE=/var/run/gdm.pid ;; wdm) EXE=/usr/bin/wdm @@ -86,22 +94,22 @@ setup_dm() { ;; gpe) EXE=/usr/bin/gpe-dm - PIDFILE=/var/run/gpe-dm.pid + PIDFILE=/run/gpe-dm.pid ;; lxdm) EXE=/usr/sbin/lxdm-binary - PIDFILE=/var/run/lxdm.pid + PIDFILE=/run/lxdm.pid START_STOP_ARGS="--background" ;; lightdm) EXE=/usr/sbin/lightdm - PIDFILE=/var/run/lightdm.pid + PIDFILE=/run/lightdm.pid START_STOP_ARGS="--background" ;; *) # first find out if there is such executable EXE="$(command -v ${MY_XDM} 2>/dev/null)" - PIDFILE="/var/run/${MY_XDM}.pid" + PIDFILE="/run/${MY_XDM}.pid" # warn user that he is doing sick things if the exe was not found if [ -z "${EXE}" ]; then @@ -113,7 +121,7 @@ setup_dm() { if ! [ -x "${EXE}" ]; then EXE=/usr/bin/xdm - PIDFILE=/var/run/xdm.pid + PIDFILE=/run/xdm.pid if ! [ -x "/usr/bin/xdm" ]; then echo "ERROR: Please set your DISPLAYMANAGER variable in /etc/conf.d/xdm," echo " or install x11-apps/xdm package" @@ -134,7 +142,7 @@ vtstatic() { } start() { - local EXE NAME PIDFILE + local EXE NAME PIDFILE AUTOCLEAN_CGROUP setup_dm if [ -f /etc/.noxdm ]; then @@ -150,6 +158,7 @@ start() { save_options "name" "${NAME}" save_options "pidfile" "${PIDFILE}" save_options "start_stop_args" "${START_STOP_ARGS}" + save_options "autoclean_cgroup" "${AUTOCLEAN_CGROUP:-no}" if [ -n "${CHECKVT-y}" ] ; then if vtstatic "${CHECKVT:-7}" ; then @@ -188,6 +197,7 @@ stop() { myname=$(get_options "name") mypidfile=$(get_options "pidfile") myservice=${myexe##*/} + yesno "${rc_cgroup_cleanup:-no}" || rc_cgroup_cleanup=$(get_options "autoclean_cgroup") [ -z "${myexe}" ] && return 0 diff --git a/iscsi/ifaces/iface.example b/iscsi/ifaces/iface.example new file mode 100644 index 0000000..3c7354f --- /dev/null +++ b/iscsi/ifaces/iface.example @@ -0,0 +1,62 @@ +# +# Example iSCSI interface config +# +# There must be a seperate iscsi interface config file for each NIC, network +# interface or port or iscsi HBA you want to bind sessions to. +# +# For hardware iscsi, this is created for you when you run iscsiadm. +# For software iscsi, you must define these files yourself. +# + +# REQUIRED: iface.transport_name +# +# Set the iscsi transport/driver to use for the iface by setting +# iface.transport_name +# example: +# iface.transport_name = tcp + +# This value is required and valid values for iface.transport_name are: +# - tcp (Software iSCSI over TCP/IP) +# - iser (Software iSCSI over infinniband +# - qla4xxx (Qlogic QLA4XXX HBAs) +# - bnx2i (Broadcom bnx iSCSI HBAs); +# - cxgb3i (Chelsio cxgb S3 iSCSI HBAs); +# +#OPTIONAL: iface.initiatorname +# To use a initiator name other than the one set in +# /etc/iscsi/initiatorname.iscsi for normal sessions set the +# iface.initiatorname. This is only used for normal sessions. +# For discovery sessions the /etc/iscsi/initiatorname.iscsi value +# is used. +# +# iface.initiatorname = iqn.2003-04.com.fedora:test +# +# +# REQUIRED to be able to bind a session to a network device: +# [iface.net_ifacename | iface.hwaddress] +# +# OPTIONAL if you are creating ifaces so you can create multiple sessions +# using the default behavior where the network layer selects the device. +# +# __One__ of the following values are required for binding a session +# to a specific nic/netdevice. +# +# To bind by network interface name (example: eth0, eth2:2, eth1.3) +# set iface.net_ifacename +# example: +# iface.net_ifacename = eth0 + +# To bind by hardware address set the NIC's MAC address to iface.hwaddress +# example: +# iface.hwaddress = 00:0F:1F:92:6B:BF + +# Note you can only bind using one value. If you set multiple values +# the bahavior is not defined. + +# For some transport (cxgb3i), a user could to set the private ip address for +# the iscsi traffic for an network interface: +# example: +# - set iscsi ip on eth0 to be 102.50.50.101, eth0 needs to be up and be on +# the same subnet. +# iface.net_ifacename = eth0 +# iface.ipaddress = 102.50.50.101 diff --git a/iscsi/initiatorname.iscsi b/iscsi/initiatorname.iscsi new file mode 100644 index 0000000..b2a0e02 --- /dev/null +++ b/iscsi/initiatorname.iscsi @@ -0,0 +1,31 @@ +# Copyright 1999-2005 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/sys-block/open-iscsi/files/initiatorname.iscsi,v 1.2 2006/03/08 09:19:25 robbat2 Exp $ +# +# This file must contain a InitiatorName entry! +# white space is significent here! +#InitiatorName=iqn.2005-09.tld.domain.hostname:openiscsi-initiator +#InitiatorAlias=foobar + +# Sample documentation follows: + +# The InitiatorName should take the following format +# iqn.${YEAR}-${MONTH}-${DOMAIN_REVERSED}.${HOSTNAME}:${UNIQUE_STRING} +# Where YEAR and MONTH are the dates that your domain was registered. +# You can use WHOIS to find when your domain was registered. +# If you don't have a real domain in the outside world, invent one, but use +# .local for your top-level. + +# Example case #1: +# This assumes you own foobar.co.uk. +# Domain name: foobar.co.uk. +# Registration date: March 2001 +# Hostname: linux +# InitiatorName=iqn.2001-03.uk.co.foobar.linux:openiscsi-29b48ad602d5f83dd9cd9aa3ef741216 + +# Example case #2: +# This assumes you don't have a domain of your own. +# Domain name: foobar.local +# Registration date: March 2001 +# Hostname: linux +# InitiatorName=iqn.2001-03.local.foobar.linux:openiscsi-29b48ad602d5f83dd9cd9aa3ef741216 diff --git a/iscsi/initiatorname.iscsi.example b/iscsi/initiatorname.iscsi.example new file mode 100644 index 0000000..b2a0e02 --- /dev/null +++ b/iscsi/initiatorname.iscsi.example @@ -0,0 +1,31 @@ +# Copyright 1999-2005 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/sys-block/open-iscsi/files/initiatorname.iscsi,v 1.2 2006/03/08 09:19:25 robbat2 Exp $ +# +# This file must contain a InitiatorName entry! +# white space is significent here! +#InitiatorName=iqn.2005-09.tld.domain.hostname:openiscsi-initiator +#InitiatorAlias=foobar + +# Sample documentation follows: + +# The InitiatorName should take the following format +# iqn.${YEAR}-${MONTH}-${DOMAIN_REVERSED}.${HOSTNAME}:${UNIQUE_STRING} +# Where YEAR and MONTH are the dates that your domain was registered. +# You can use WHOIS to find when your domain was registered. +# If you don't have a real domain in the outside world, invent one, but use +# .local for your top-level. + +# Example case #1: +# This assumes you own foobar.co.uk. +# Domain name: foobar.co.uk. +# Registration date: March 2001 +# Hostname: linux +# InitiatorName=iqn.2001-03.uk.co.foobar.linux:openiscsi-29b48ad602d5f83dd9cd9aa3ef741216 + +# Example case #2: +# This assumes you don't have a domain of your own. +# Domain name: foobar.local +# Registration date: March 2001 +# Hostname: linux +# InitiatorName=iqn.2001-03.local.foobar.linux:openiscsi-29b48ad602d5f83dd9cd9aa3ef741216 diff --git a/iscsi/iscsid.conf b/iscsi/iscsid.conf new file mode 100644 index 0000000..e8087c8 --- /dev/null +++ b/iscsi/iscsid.conf @@ -0,0 +1,295 @@ +# +# Open-iSCSI default configuration. +# Could be located at /etc/iscsi/iscsid.conf or ~/.iscsid.conf +# +# Note: To set any of these values for a specific node/session run +# the iscsiadm --mode node --op command for the value. See the README +# and man page for iscsiadm for details on the --op command. +# + +###################### +# iscsid daemon config +###################### +# If you want iscsid to start the first time a iscsi tool +# needs to access it, instead of starting it when the init +# scripts run, set the iscsid startup command here. This +# should normally only need to be done by distro package +# maintainers. +# +# Default for Fedora and RHEL. (uncomment to activate). +# iscsid.startup = /etc/rc.d/init.d/iscsid force-start +# +# Default for upstream open-iscsi scripts (uncomment to activate). +iscsid.startup = /sbin/iscsid + + +############################# +# NIC/HBA and driver settings +############################# +# open-iscsi can create a session and bind it to a NIC/HBA. +# To set this up see the example iface config file. + +#***************** +# Startup settings +#***************** + +# To request that the iscsi initd scripts startup a session set to "automatic". +# node.startup = automatic +# +# To manually startup the session set to "manual". The default is manual. +node.startup = manual + + +# ************* +# CHAP Settings +# ************* + +# To enable CHAP authentication set node.session.auth.authmethod +# to CHAP. The default is None. +#node.session.auth.authmethod = CHAP + +# To set a CHAP username and password for initiator +# authentication by the target(s), uncomment the following lines: +#node.session.auth.username = username +#node.session.auth.password = password + +# To set a CHAP username and password for target(s) +# authentication by the initiator, uncomment the following lines: +#node.session.auth.username_in = username_in +#node.session.auth.password_in = password_in + +# To enable CHAP authentication for a discovery session to the target +# set discovery.sendtargets.auth.authmethod to CHAP. The default is None. +#discovery.sendtargets.auth.authmethod = CHAP + +# To set a discovery session CHAP username and password for the initiator +# authentication by the target(s), uncomment the following lines: +#discovery.sendtargets.auth.username = username +#discovery.sendtargets.auth.password = password + +# To set a discovery session CHAP username and password for target(s) +# authentication by the initiator, uncomment the following lines: +#discovery.sendtargets.auth.username_in = username_in +#discovery.sendtargets.auth.password_in = password_in + +# ******** +# Timeouts +# ******** +# +# See the iSCSI REAME's Advanced Configuration section for tips +# on setting timeouts when using multipath or doing root over iSCSI. +# +# To specify the length of time to wait for session re-establishment +# before failing SCSI commands back to the application when running +# the Linux SCSI Layer error handler, edit the line. +# The value is in seconds and the default is 120 seconds. +# Special values: +# - If the value is 0, IO will be failed immediately. +# - If the value is less than 0, IO will remain queued until the session +# is logged back in, or until the user runs the logout command. +node.session.timeo.replacement_timeout = 120 + +# To specify the time to wait for login to complete, edit the line. +# The value is in seconds and the default is 15 seconds. +node.conn[0].timeo.login_timeout = 15 + +# To specify the time to wait for logout to complete, edit the line. +# The value is in seconds and the default is 15 seconds. +node.conn[0].timeo.logout_timeout = 15 + +# Time interval to wait for on connection before sending a ping. +node.conn[0].timeo.noop_out_interval = 5 + +# To specify the time to wait for a Nop-out response before failing +# the connection, edit this line. Failing the connection will +# cause IO to be failed back to the SCSI layer. If using dm-multipath +# this will cause the IO to be failed to the multipath layer. +node.conn[0].timeo.noop_out_timeout = 5 + +# To specify the time to wait for abort response before +# failing the operation and trying a logical unit reset edit the line. +# The value is in seconds and the default is 15 seconds. +node.session.err_timeo.abort_timeout = 15 + +# To specify the time to wait for a logical unit response +# before failing the operation and trying session re-establishment +# edit the line. +# The value is in seconds and the default is 30 seconds. +node.session.err_timeo.lu_reset_timeout = 30 + +# To specify the time to wait for a target response +# before failing the operation and trying session re-establishment +# edit the line. +# The value is in seconds and the default is 30 seconds. +node.session.err_timeo.tgt_reset_timeout = 30 + + +#****** +# Retry +#****** + +# To specify the number of times iscsid should retry a login +# if the login attempt fails due to the node.conn[0].timeo.login_timeout +# expiring modify the following line. Note that if the login fails +# quickly (before node.conn[0].timeo.login_timeout fires) because the network +# layer or the target returns an error, iscsid may retry the login more than +# node.session.initial_login_retry_max times. +# +# This retry count along with node.conn[0].timeo.login_timeout +# determines the maximum amount of time iscsid will try to +# establish the initial login. node.session.initial_login_retry_max is +# multiplied by the node.conn[0].timeo.login_timeout to determine the +# maximum amount. +# +# The default node.session.initial_login_retry_max is 8 and +# node.conn[0].timeo.login_timeout is 15 so we have: +# +# node.conn[0].timeo.login_timeout * node.session.initial_login_retry_max = +# 120 seconds +# +# Valid values are any integer value. This only +# affects the initial login. Setting it to a high value can slow +# down the iscsi service startup. Setting it to a low value can +# cause a session to not get logged into, if there are distuptions +# during startup or if the network is not ready at that time. +node.session.initial_login_retry_max = 8 + +################################ +# session and device queue depth +################################ + +# To control how many commands the session will queue set +# node.session.cmds_max to an integer between 2 and 2048 that is also +# a power of 2. The default is 128. +node.session.cmds_max = 128 + +# To control the device's queue depth set node.session.queue_depth +# to a value between 1 and 1024. The default is 32. +node.session.queue_depth = 32 + +################################## +# MISC SYSTEM PERFORMANCE SETTINGS +################################## + +# For software iscsi (iscsi_tcp) and iser (ib_iser) each session +# has a thread used to transmit or queue data to the hardware. For +# cxgb3i you will get a thread per host. +# +# Setting the thread's priority to a lower value can lead to higher throughput +# and lower latencies. The lowest value is -20. Setting the priority to +# a higher value, can lead to reduced IO performance, but if you are seeing +# the iscsi or scsi threads dominate the use of the CPU then you may want +# to set this value higher. +# +# Note: For cxgb3i you must set all sessions to the same value, or the +# behavior is not defined. +# +# The default value is -20. The setting must be between -20 and 20. +node.session.xmit_thread_priority = -20 + + +#*************** +# iSCSI settings +#*************** + +# To enable R2T flow control (i.e., the initiator must wait for an R2T +# command before sending any data), uncomment the following line: +# +#node.session.iscsi.InitialR2T = Yes +# +# To disable R2T flow control (i.e., the initiator has an implied +# initial R2T of "FirstBurstLength" at offset 0), uncomment the following line: +# +# The defaults is No. +node.session.iscsi.InitialR2T = No + +# +# To disable immediate data (i.e., the initiator does not send +# unsolicited data with the iSCSI command PDU), uncomment the following line: +# +#node.session.iscsi.ImmediateData = No +# +# To enable immediate data (i.e., the initiator sends unsolicited data +# with the iSCSI command packet), uncomment the following line: +# +# The default is Yes +node.session.iscsi.ImmediateData = Yes + +# To specify the maximum number of unsolicited data bytes the initiator +# can send in an iSCSI PDU to a target, edit the following line. +# +# The value is the number of bytes in the range of 512 to (2^24-1) and +# the default is 262144 +node.session.iscsi.FirstBurstLength = 262144 + +# To specify the maximum SCSI payload that the initiator will negotiate +# with the target for, edit the following line. +# +# The value is the number of bytes in the range of 512 to (2^24-1) and +# the defauls it 16776192 +node.session.iscsi.MaxBurstLength = 16776192 + +# To specify the maximum number of data bytes the initiator can receive +# in an iSCSI PDU from a target, edit the following line. +# +# The value is the number of bytes in the range of 512 to (2^24-1) and +# the default is 262144 +node.conn[0].iscsi.MaxRecvDataSegmentLength = 262144 + +# To specify the maximum number of data bytes the initiator will send +# in an iSCSI PDU to the target, edit the following line. +# +# The value is the number of bytes in the range of 512 to (2^24-1). +# Zero is a special case. If set to zero, the initiator will use +# the target's MaxRecvDataSegmentLength for the MaxXmitDataSegmentLength. +# The default is 0. +node.conn[0].iscsi.MaxXmitDataSegmentLength = 0 + +# To specify the maximum number of data bytes the initiator can receive +# in an iSCSI PDU from a target during a discovery session, edit the +# following line. +# +# The value is the number of bytes in the range of 512 to (2^24-1) and +# the default is 32768 +# +discovery.sendtargets.iscsi.MaxRecvDataSegmentLength = 32768 + +# To allow the targets to control the setting of the digest checking, +# with the initiator requesting a preference of enabling the checking, uncomment# one or both of the following lines: +#node.conn[0].iscsi.HeaderDigest = CRC32C,None +#node.conn[0].iscsi.DataDigest = CRC32C,None +# +# To allow the targets to control the setting of the digest checking, +# with the initiator requesting a preference of disabling the checking, +# uncomment one or both of the following lines: +#node.conn[0].iscsi.HeaderDigest = None,CRC32C +#node.conn[0].iscsi.DataDigest = None,CRC32C +# +# To enable CRC32C digest checking for the header and/or data part of +# iSCSI PDUs, uncomment one or both of the following lines: +#node.conn[0].iscsi.HeaderDigest = CRC32C +#node.conn[0].iscsi.DataDigest = CRC32C +# +# To disable digest checking for the header and/or data part of +# iSCSI PDUs, uncomment one or both of the following lines: +#node.conn[0].iscsi.HeaderDigest = None +#node.conn[0].iscsi.DataDigest = None +# +# The default is to never use DataDigests or HeaderDigests. +# + + +#************ +# Workarounds +#************ + +# Some targets like IET prefer after an initiator has sent a task +# management function like an ABORT TASK or LOGICAL UNIT RESET, that +# it does not respond to PDUs like R2Ts. To enable this behavior uncomment +# the following line (The default behavior is Yes): +node.session.iscsi.FastAbort = Yes + +# Some targets like Equalogic prefer that after an initiator has sent +# a task management function like an ABORT TASK or LOGICAL UNIT RESET, that +# it continue to respond to R2Ts. To enable this uncomment this line +# node.session.iscsi.FastAbort = No diff --git a/kernel-config/config-3.10.7-gentoo-00 b/kernel-config/config-3.10.7-gentoo-00 new file mode 100644 index 0000000..7b581e0 --- /dev/null +++ b/kernel-config/config-3.10.7-gentoo-00 @@ -0,0 +1,5342 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/x86 3.10.7-gentoo Kernel Configuration +# + +# +# Gentoo Linux +# +CONFIG_GENTOO_LINUX=y +CONFIG_GENTOO_LINUX_UDEV=y + +# +# Support for init systems, system and service managers +# +CONFIG_GENTOO_LINUX_INIT_SCRIPT=y +CONFIG_GENTOO_LINUX_INIT_SYSTEMD=y +CONFIG_64BIT=y +CONFIG_X86_64=y +CONFIG_X86=y +CONFIG_INSTRUCTION_DECODER=y +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_HAVE_LATENCYTOP_SUPPORT=y +CONFIG_MMU=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_GENERIC_ISA_DMA=y +CONFIG_GENERIC_BUG=y +CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y +CONFIG_GENERIC_HWEIGHT=y +CONFIG_ARCH_MAY_HAVE_PC_FDC=y +CONFIG_RWSEM_XCHGADD_ALGORITHM=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_ARCH_HAS_CPU_AUTOPROBE=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ZONE_DMA32=y +CONFIG_AUDIT_ARCH=y +CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_HAVE_INTEL_TXT=y +CONFIG_X86_64_SMP=y +CONFIG_X86_HT=y +CONFIG_ARCH_HWEIGHT_CFLAGS="-fcall-saved-rdi -fcall-saved-rsi -fcall-saved-rdx -fcall-saved-rcx -fcall-saved-r8 -fcall-saved-r9 -fcall-saved-r10 -fcall-saved-r11" +CONFIG_ARCH_CPU_PROBE_RELEASE=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_EXTABLE_SORT=y + +# +# General setup +# +CONFIG_INIT_ENV_ARG_LIMIT=32 +CONFIG_CROSS_COMPILE="" +CONFIG_LOCALVERSION="" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_KERNEL_GZIP=y +# CONFIG_KERNEL_BZIP2 is not set +# CONFIG_KERNEL_LZMA is not set +# CONFIG_KERNEL_XZ is not set +# CONFIG_KERNEL_LZO is not set +CONFIG_DEFAULT_HOSTNAME="samara" +CONFIG_SWAP=y +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_SYSCTL=y +CONFIG_POSIX_MQUEUE=y +CONFIG_POSIX_MQUEUE_SYSCTL=y +# CONFIG_FHANDLE is not set +CONFIG_AUDIT=y +CONFIG_AUDITSYSCALL=y +CONFIG_AUDIT_WATCH=y +CONFIG_AUDIT_TREE=y +# CONFIG_AUDIT_LOGINUID_IMMUTABLE is not set +CONFIG_HAVE_GENERIC_HARDIRQS=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_HARDIRQS=y +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_PENDING_IRQ=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_DEBUG=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_ARCH_CLOCKSOURCE_DATA=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y + +# +# Timers subsystem +# +CONFIG_TICK_ONESHOT=y +CONFIG_NO_HZ_COMMON=y +# CONFIG_HZ_PERIODIC is not set +CONFIG_NO_HZ_IDLE=y +# CONFIG_NO_HZ_FULL is not set +CONFIG_NO_HZ=y +CONFIG_HIGH_RES_TIMERS=y + +# +# CPU/Task time and stats accounting +# +CONFIG_TICK_CPU_ACCOUNTING=y +# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set +# CONFIG_IRQ_TIME_ACCOUNTING is not set +CONFIG_BSD_PROCESS_ACCT=y +# CONFIG_BSD_PROCESS_ACCT_V3 is not set +CONFIG_TASKSTATS=y +CONFIG_TASK_DELAY_ACCT=y +CONFIG_TASK_XACCT=y +CONFIG_TASK_IO_ACCOUNTING=y + +# +# RCU Subsystem +# +CONFIG_TREE_RCU=y +# CONFIG_PREEMPT_RCU is not set +CONFIG_RCU_STALL_COMMON=y +# CONFIG_RCU_USER_QS is not set +CONFIG_RCU_FANOUT=64 +CONFIG_RCU_FANOUT_LEAF=16 +# CONFIG_RCU_FANOUT_EXACT is not set +# CONFIG_RCU_FAST_NO_HZ is not set +# CONFIG_TREE_RCU_TRACE is not set +# CONFIG_RCU_NOCB_CPU is not set +CONFIG_IKCONFIG=y +CONFIG_IKCONFIG_PROC=y +CONFIG_LOG_BUF_SHIFT=21 +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_WANTS_PROT_NUMA_PROT_NONE=y +# CONFIG_NUMA_BALANCING is not set +CONFIG_CGROUPS=y +# CONFIG_CGROUP_DEBUG is not set +CONFIG_CGROUP_FREEZER=y +CONFIG_CGROUP_DEVICE=y +CONFIG_CPUSETS=y +CONFIG_PROC_PID_CPUSET=y +CONFIG_CGROUP_CPUACCT=y +CONFIG_RESOURCE_COUNTERS=y +CONFIG_MEMCG=y +CONFIG_MEMCG_SWAP=y +CONFIG_MEMCG_SWAP_ENABLED=y +CONFIG_MEMCG_KMEM=y +CONFIG_CGROUP_HUGETLB=y +CONFIG_CGROUP_PERF=y +CONFIG_CGROUP_SCHED=y +CONFIG_FAIR_GROUP_SCHED=y +CONFIG_CFS_BANDWIDTH=y +CONFIG_RT_GROUP_SCHED=y +CONFIG_BLK_CGROUP=y +# CONFIG_DEBUG_BLK_CGROUP is not set +# CONFIG_CHECKPOINT_RESTORE is not set +CONFIG_NAMESPACES=y +CONFIG_UTS_NS=y +CONFIG_IPC_NS=y +CONFIG_PID_NS=y +CONFIG_NET_NS=y +# CONFIG_SCHED_AUTOGROUP is not set +CONFIG_MM_OWNER=y +CONFIG_SYSFS_DEPRECATED=y +# CONFIG_SYSFS_DEPRECATED_V2 is not set +CONFIG_RELAY=y +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_SOURCE="" +CONFIG_RD_GZIP=y +CONFIG_RD_BZIP2=y +CONFIG_RD_LZMA=y +CONFIG_RD_XZ=y +CONFIG_RD_LZO=y +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_SYSCTL=y +CONFIG_ANON_INODES=y +CONFIG_HAVE_UID16=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_HOTPLUG=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +# CONFIG_EXPERT is not set +CONFIG_UID16=y +# CONFIG_SYSCTL_SYSCALL is not set +CONFIG_KALLSYMS=y +# CONFIG_KALLSYMS_ALL is not set +CONFIG_PRINTK=y +CONFIG_BUG=y +CONFIG_ELF_CORE=y +CONFIG_PCSPKR_PLATFORM=y +CONFIG_BASE_FULL=y +CONFIG_FUTEX=y +CONFIG_EPOLL=y +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y +CONFIG_SHMEM=y +CONFIG_AIO=y +CONFIG_PCI_QUIRKS=y +# CONFIG_EMBEDDED is not set +CONFIG_HAVE_PERF_EVENTS=y + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +CONFIG_VM_EVENT_COUNTERS=y +CONFIG_SLUB_DEBUG=y +# CONFIG_COMPAT_BRK is not set +# CONFIG_SLAB is not set +CONFIG_SLUB=y +CONFIG_PROFILING=y +CONFIG_TRACEPOINTS=y +# CONFIG_OPROFILE is not set +CONFIG_HAVE_OPROFILE=y +CONFIG_OPROFILE_NMI_TIMER=y +CONFIG_KPROBES=y +# CONFIG_JUMP_LABEL is not set +CONFIG_OPTPROBES=y +CONFIG_UPROBES=y +# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_KRETPROBES=y +CONFIG_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_ATTRS=y +CONFIG_USE_GENERIC_SMP_HELPERS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_DMA_API_DEBUG=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y +CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_SECCOMP_FILTER=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_OLD_SIGSUSPEND3=y +CONFIG_COMPAT_OLD_SIGACTION=y + +# +# GCOV-based kernel profiling +# +# CONFIG_GCOV_KERNEL is not set +# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set +CONFIG_SLABINFO=y +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=0 +CONFIG_MODULES=y +# CONFIG_MODULE_FORCE_LOAD is not set +CONFIG_MODULE_UNLOAD=y +CONFIG_MODULE_FORCE_UNLOAD=y +# CONFIG_MODVERSIONS is not set +# CONFIG_MODULE_SRCVERSION_ALL is not set +# CONFIG_MODULE_SIG is not set +CONFIG_STOP_MACHINE=y +CONFIG_BLOCK=y +CONFIG_BLK_DEV_BSG=y +CONFIG_BLK_DEV_BSGLIB=y +# CONFIG_BLK_DEV_INTEGRITY is not set +CONFIG_BLK_DEV_THROTTLING=y + +# +# Partition Types +# +CONFIG_PARTITION_ADVANCED=y +CONFIG_ACORN_PARTITION=y +CONFIG_ACORN_PARTITION_CUMANA=y +CONFIG_ACORN_PARTITION_EESOX=y +CONFIG_ACORN_PARTITION_ICS=y +CONFIG_ACORN_PARTITION_ADFS=y +CONFIG_ACORN_PARTITION_POWERTEC=y +CONFIG_ACORN_PARTITION_RISCIX=y +CONFIG_OSF_PARTITION=y +CONFIG_AMIGA_PARTITION=y +CONFIG_ATARI_PARTITION=y +CONFIG_MAC_PARTITION=y +CONFIG_MSDOS_PARTITION=y +CONFIG_BSD_DISKLABEL=y +CONFIG_MINIX_SUBPARTITION=y +CONFIG_SOLARIS_X86_PARTITION=y +CONFIG_UNIXWARE_DISKLABEL=y +CONFIG_LDM_PARTITION=y +CONFIG_LDM_DEBUG=y +CONFIG_SGI_PARTITION=y +CONFIG_ULTRIX_PARTITION=y +CONFIG_SUN_PARTITION=y +CONFIG_KARMA_PARTITION=y +CONFIG_EFI_PARTITION=y +CONFIG_SYSV68_PARTITION=y +CONFIG_BLOCK_COMPAT=y + +# +# IO Schedulers +# +CONFIG_IOSCHED_NOOP=y +CONFIG_IOSCHED_DEADLINE=y +CONFIG_IOSCHED_CFQ=y +CONFIG_CFQ_GROUP_IOSCHED=y +# CONFIG_IOSCHED_BFQ is not set +# CONFIG_DEFAULT_DEADLINE is not set +CONFIG_DEFAULT_CFQ=y +# CONFIG_DEFAULT_NOOP is not set +CONFIG_DEFAULT_IOSCHED="cfq" +CONFIG_PREEMPT_NOTIFIERS=y +CONFIG_PADATA=y +CONFIG_ASN1=m +CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_FREEZER=y + +# +# Processor type and features +# +CONFIG_ZONE_DMA=y +CONFIG_SMP=y +CONFIG_X86_X2APIC=y +CONFIG_X86_MPPARSE=y +CONFIG_X86_EXTENDED_PLATFORM=y +# CONFIG_X86_NUMACHIP is not set +# CONFIG_X86_VSMP is not set +# CONFIG_X86_UV is not set +# CONFIG_X86_INTEL_LPSS is not set +CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y +CONFIG_SCHED_OMIT_FRAME_POINTER=y +# CONFIG_HYPERVISOR_GUEST is not set +CONFIG_NO_BOOTMEM=y +# CONFIG_MEMTEST is not set +# CONFIG_MK8 is not set +# CONFIG_MPSC is not set +CONFIG_MCORE2=y +# CONFIG_MATOM is not set +# CONFIG_GENERIC_CPU is not set +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_INTEL_USERCOPY=y +CONFIG_X86_USE_PPRO_CHECKSUM=y +CONFIG_X86_P6_NOP=y +CONFIG_X86_TSC=y +CONFIG_X86_CMPXCHG64=y +CONFIG_X86_CMOV=y +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_DEBUGCTLMSR=y +CONFIG_CPU_SUP_INTEL=y +CONFIG_CPU_SUP_AMD=y +CONFIG_CPU_SUP_CENTAUR=y +CONFIG_HPET_TIMER=y +CONFIG_HPET_EMULATE_RTC=y +CONFIG_DMI=y +CONFIG_GART_IOMMU=y +CONFIG_CALGARY_IOMMU=y +CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT=y +CONFIG_SWIOTLB=y +CONFIG_IOMMU_HELPER=y +# CONFIG_MAXSMP is not set +CONFIG_NR_CPUS=64 +CONFIG_SCHED_SMT=y +CONFIG_SCHED_MC=y +# CONFIG_PREEMPT_NONE is not set +CONFIG_PREEMPT_VOLUNTARY=y +# CONFIG_PREEMPT is not set +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_IO_APIC=y +CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y +CONFIG_X86_MCE=y +CONFIG_X86_MCE_INTEL=y +CONFIG_X86_MCE_AMD=y +CONFIG_X86_MCE_THRESHOLD=y +# CONFIG_X86_MCE_INJECT is not set +CONFIG_X86_THERMAL_VECTOR=y +# CONFIG_I8K is not set +CONFIG_MICROCODE=y +CONFIG_MICROCODE_INTEL=y +CONFIG_MICROCODE_AMD=y +CONFIG_MICROCODE_OLD_INTERFACE=y +CONFIG_MICROCODE_INTEL_LIB=y +CONFIG_MICROCODE_INTEL_EARLY=y +CONFIG_MICROCODE_EARLY=y +CONFIG_X86_MSR=y +CONFIG_X86_CPUID=y +CONFIG_ARCH_PHYS_ADDR_T_64BIT=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_DIRECT_GBPAGES=y +CONFIG_NUMA=y +CONFIG_AMD_NUMA=y +CONFIG_X86_64_ACPI_NUMA=y +CONFIG_NODES_SPAN_OTHER_NODES=y +# CONFIG_NUMA_EMU is not set +CONFIG_NODES_SHIFT=6 +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ARCH_PROC_KCORE_TEXT=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_NEED_MULTIPLE_NODES=y +CONFIG_HAVE_MEMORY_PRESENT=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y +CONFIG_SPARSEMEM_VMEMMAP=y +CONFIG_HAVE_MEMBLOCK=y +CONFIG_HAVE_MEMBLOCK_NODE_MAP=y +CONFIG_ARCH_DISCARD_MEMBLOCK=y +# CONFIG_MOVABLE_NODE is not set +# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set +# CONFIG_MEMORY_HOTPLUG is not set +CONFIG_PAGEFLAGS_EXTENDED=y +CONFIG_SPLIT_PTLOCK_CPUS=4 +# CONFIG_COMPACTION is not set +CONFIG_MIGRATION=y +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_ZONE_DMA_FLAG=1 +CONFIG_BOUNCE=y +CONFIG_VIRT_TO_BUS=y +CONFIG_MMU_NOTIFIER=y +# CONFIG_KSM is not set +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 +CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y +# CONFIG_MEMORY_FAILURE is not set +# CONFIG_TRANSPARENT_HUGEPAGE is not set +CONFIG_CROSS_MEMORY_ATTACH=y +# CONFIG_CLEANCACHE is not set +CONFIG_FRONTSWAP=y +CONFIG_X86_CHECK_BIOS_CORRUPTION=y +CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y +CONFIG_X86_RESERVE_LOW=64 +CONFIG_MTRR=y +# CONFIG_MTRR_SANITIZER is not set +CONFIG_X86_PAT=y +CONFIG_ARCH_USES_PG_UNCACHED=y +CONFIG_ARCH_RANDOM=y +CONFIG_X86_SMAP=y +CONFIG_EFI=y +CONFIG_EFI_STUB=y +CONFIG_SECCOMP=y +# CONFIG_CC_STACKPROTECTOR is not set +# CONFIG_HZ_100 is not set +# CONFIG_HZ_250 is not set +# CONFIG_HZ_300 is not set +CONFIG_HZ_1000=y +CONFIG_HZ=1000 +CONFIG_SCHED_HRTICK=y +CONFIG_KEXEC=y +CONFIG_CRASH_DUMP=y +# CONFIG_KEXEC_JUMP is not set +CONFIG_PHYSICAL_START=0x1000000 +CONFIG_RELOCATABLE=y +CONFIG_PHYSICAL_ALIGN=0x1000000 +CONFIG_HOTPLUG_CPU=y +# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set +# CONFIG_DEBUG_HOTPLUG_CPU0 is not set +# CONFIG_COMPAT_VDSO is not set +# CONFIG_CMDLINE_BOOL is not set +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_USE_PERCPU_NUMA_NODE_ID=y + +# +# Power management and ACPI options +# +CONFIG_ARCH_HIBERNATION_HEADER=y +CONFIG_SUSPEND=y +CONFIG_SUSPEND_FREEZER=y +CONFIG_HIBERNATE_CALLBACKS=y +CONFIG_HIBERNATION=y +CONFIG_PM_STD_PARTITION="" +CONFIG_PM_SLEEP=y +CONFIG_PM_SLEEP_SMP=y +CONFIG_PM_AUTOSLEEP=y +CONFIG_PM_WAKELOCKS=y +CONFIG_PM_WAKELOCKS_LIMIT=100 +CONFIG_PM_WAKELOCKS_GC=y +# CONFIG_PM_RUNTIME is not set +CONFIG_PM=y +CONFIG_PM_DEBUG=y +# CONFIG_PM_ADVANCED_DEBUG is not set +# CONFIG_PM_TEST_SUSPEND is not set +CONFIG_PM_SLEEP_DEBUG=y +CONFIG_PM_TRACE=y +CONFIG_PM_TRACE_RTC=y +CONFIG_ACPI=y +CONFIG_ACPI_SLEEP=y +CONFIG_ACPI_PROCFS=y +# CONFIG_ACPI_PROCFS_POWER is not set +CONFIG_ACPI_EC_DEBUGFS=y +CONFIG_ACPI_PROC_EVENT=y +CONFIG_ACPI_AC=y +CONFIG_ACPI_BATTERY=m +CONFIG_ACPI_BUTTON=y +CONFIG_ACPI_VIDEO=m +CONFIG_ACPI_FAN=y +CONFIG_ACPI_DOCK=y +CONFIG_ACPI_I2C=y +CONFIG_ACPI_PROCESSOR=y +CONFIG_ACPI_IPMI=m +CONFIG_ACPI_HOTPLUG_CPU=y +CONFIG_ACPI_PROCESSOR_AGGREGATOR=m +CONFIG_ACPI_THERMAL=y +CONFIG_ACPI_NUMA=y +# CONFIG_ACPI_CUSTOM_DSDT is not set +CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y +CONFIG_ACPI_BLACKLIST_YEAR=0 +# CONFIG_ACPI_DEBUG is not set +# CONFIG_ACPI_PCI_SLOT is not set +CONFIG_X86_PM_TIMER=y +CONFIG_ACPI_CONTAINER=y +# CONFIG_ACPI_SBS is not set +CONFIG_ACPI_HED=m +# CONFIG_ACPI_CUSTOM_METHOD is not set +CONFIG_ACPI_BGRT=y +# CONFIG_ACPI_APEI is not set +# CONFIG_SFI is not set + +# +# CPU Frequency scaling +# +CONFIG_CPU_FREQ=y +CONFIG_CPU_FREQ_TABLE=y +CONFIG_CPU_FREQ_GOV_COMMON=y +CONFIG_CPU_FREQ_STAT=m +CONFIG_CPU_FREQ_STAT_DETAILS=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y +CONFIG_CPU_FREQ_GOV_POWERSAVE=m +CONFIG_CPU_FREQ_GOV_USERSPACE=y +CONFIG_CPU_FREQ_GOV_ONDEMAND=y +CONFIG_CPU_FREQ_GOV_CONSERVATIVE=m + +# +# x86 CPU frequency scaling drivers +# +# CONFIG_X86_INTEL_PSTATE is not set +# CONFIG_X86_PCC_CPUFREQ is not set +CONFIG_X86_ACPI_CPUFREQ=y +CONFIG_X86_ACPI_CPUFREQ_CPB=y +CONFIG_X86_POWERNOW_K8=m +# CONFIG_X86_AMD_FREQ_SENSITIVITY is not set +# CONFIG_X86_SPEEDSTEP_CENTRINO is not set +# CONFIG_X86_P4_CLOCKMOD is not set + +# +# shared options +# +# CONFIG_X86_SPEEDSTEP_LIB is not set +CONFIG_CPU_IDLE=y +# CONFIG_CPU_IDLE_MULTIPLE_DRIVERS is not set +CONFIG_CPU_IDLE_GOV_LADDER=y +CONFIG_CPU_IDLE_GOV_MENU=y +# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set +CONFIG_INTEL_IDLE=y + +# +# Memory power savings +# +CONFIG_I7300_IDLE_IOAT_CHANNEL=y +CONFIG_I7300_IDLE=m + +# +# Bus options (PCI etc.) +# +CONFIG_PCI=y +CONFIG_PCI_DIRECT=y +CONFIG_PCI_MMCONFIG=y +CONFIG_PCI_DOMAINS=y +CONFIG_PCIEPORTBUS=y +# CONFIG_HOTPLUG_PCI_PCIE is not set +CONFIG_PCIEAER=y +# CONFIG_PCIE_ECRC is not set +# CONFIG_PCIEAER_INJECT is not set +CONFIG_PCIEASPM=y +# CONFIG_PCIEASPM_DEBUG is not set +CONFIG_PCIEASPM_DEFAULT=y +# CONFIG_PCIEASPM_POWERSAVE is not set +# CONFIG_PCIEASPM_PERFORMANCE is not set +CONFIG_ARCH_SUPPORTS_MSI=y +CONFIG_PCI_MSI=y +# CONFIG_PCI_DEBUG is not set +CONFIG_PCI_REALLOC_ENABLE_AUTO=y +# CONFIG_PCI_STUB is not set +CONFIG_HT_IRQ=y +CONFIG_PCI_ATS=y +CONFIG_PCI_IOV=y +CONFIG_PCI_PRI=y +CONFIG_PCI_PASID=y +CONFIG_PCI_IOAPIC=y +CONFIG_PCI_LABEL=y +CONFIG_ISA_DMA_API=y +CONFIG_AMD_NB=y +CONFIG_PCCARD=m +CONFIG_PCMCIA=m +CONFIG_PCMCIA_LOAD_CIS=y +CONFIG_CARDBUS=y + +# +# PC-card bridges +# +CONFIG_YENTA=m +CONFIG_YENTA_O2=y +CONFIG_YENTA_RICOH=y +CONFIG_YENTA_TI=y +CONFIG_YENTA_ENE_TUNE=y +CONFIG_YENTA_TOSHIBA=y +CONFIG_PD6729=m +CONFIG_I82092=m +CONFIG_PCCARD_NONSTATIC=y +CONFIG_HOTPLUG_PCI=y +# CONFIG_HOTPLUG_PCI_ACPI is not set +# CONFIG_HOTPLUG_PCI_CPCI is not set +CONFIG_HOTPLUG_PCI_SHPC=m +# CONFIG_RAPIDIO is not set + +# +# Executable file formats / Emulations +# +CONFIG_BINFMT_ELF=y +CONFIG_COMPAT_BINFMT_ELF=y +CONFIG_ARCH_BINFMT_ELF_RANDOMIZE_PIE=y +CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y +CONFIG_BINFMT_SCRIPT=y +# CONFIG_HAVE_AOUT is not set +CONFIG_BINFMT_MISC=y +CONFIG_COREDUMP=y +CONFIG_IA32_EMULATION=y +CONFIG_IA32_AOUT=m +# CONFIG_X86_X32 is not set +CONFIG_COMPAT=y +CONFIG_COMPAT_FOR_U64_ALIGNMENT=y +CONFIG_SYSVIPC_COMPAT=y +CONFIG_KEYS_COMPAT=y +CONFIG_HAVE_TEXT_POKE_SMP=y +CONFIG_X86_DEV_DMA_OPS=y +CONFIG_NET=y + +# +# Networking options +# +CONFIG_PACKET=y +CONFIG_PACKET_DIAG=m +CONFIG_UNIX=y +CONFIG_UNIX_DIAG=y +CONFIG_XFRM=y +CONFIG_XFRM_ALGO=y +CONFIG_XFRM_USER=y +CONFIG_XFRM_SUB_POLICY=y +CONFIG_XFRM_MIGRATE=y +CONFIG_XFRM_STATISTICS=y +CONFIG_XFRM_IPCOMP=m +CONFIG_NET_KEY=m +CONFIG_NET_KEY_MIGRATE=y +CONFIG_INET=y +CONFIG_IP_MULTICAST=y +CONFIG_IP_ADVANCED_ROUTER=y +# CONFIG_IP_FIB_TRIE_STATS is not set +CONFIG_IP_MULTIPLE_TABLES=y +CONFIG_IP_ROUTE_MULTIPATH=y +CONFIG_IP_ROUTE_VERBOSE=y +CONFIG_IP_ROUTE_CLASSID=y +CONFIG_IP_PNP=y +CONFIG_IP_PNP_DHCP=y +CONFIG_IP_PNP_BOOTP=y +CONFIG_IP_PNP_RARP=y +CONFIG_NET_IPIP=m +CONFIG_NET_IPGRE_DEMUX=m +CONFIG_NET_IP_TUNNEL=y +CONFIG_NET_IPGRE=m +CONFIG_NET_IPGRE_BROADCAST=y +CONFIG_IP_MROUTE=y +CONFIG_IP_MROUTE_MULTIPLE_TABLES=y +CONFIG_IP_PIMSM_V1=y +CONFIG_IP_PIMSM_V2=y +CONFIG_ARPD=y +CONFIG_SYN_COOKIES=y +CONFIG_NET_IPVTI=m +CONFIG_INET_AH=m +CONFIG_INET_ESP=m +CONFIG_INET_IPCOMP=m +CONFIG_INET_XFRM_TUNNEL=m +CONFIG_INET_TUNNEL=y +CONFIG_INET_XFRM_MODE_TRANSPORT=m +CONFIG_INET_XFRM_MODE_TUNNEL=m +CONFIG_INET_XFRM_MODE_BEET=m +CONFIG_INET_LRO=y +CONFIG_INET_DIAG=m +CONFIG_INET_TCP_DIAG=m +CONFIG_INET_UDP_DIAG=m +CONFIG_TCP_CONG_ADVANCED=y +CONFIG_TCP_CONG_BIC=m +CONFIG_TCP_CONG_CUBIC=y +CONFIG_TCP_CONG_WESTWOOD=m +CONFIG_TCP_CONG_HTCP=m +CONFIG_TCP_CONG_HSTCP=m +CONFIG_TCP_CONG_HYBLA=m +CONFIG_TCP_CONG_VEGAS=m +CONFIG_TCP_CONG_SCALABLE=m +CONFIG_TCP_CONG_LP=m +CONFIG_TCP_CONG_VENO=m +CONFIG_TCP_CONG_YEAH=m +CONFIG_TCP_CONG_ILLINOIS=m +CONFIG_DEFAULT_CUBIC=y +# CONFIG_DEFAULT_RENO is not set +CONFIG_DEFAULT_TCP_CONG="cubic" +CONFIG_TCP_MD5SIG=y +CONFIG_IPV6=y +CONFIG_IPV6_PRIVACY=y +CONFIG_IPV6_ROUTER_PREF=y +CONFIG_IPV6_ROUTE_INFO=y +CONFIG_IPV6_OPTIMISTIC_DAD=y +CONFIG_INET6_AH=y +CONFIG_INET6_ESP=y +CONFIG_INET6_IPCOMP=m +CONFIG_IPV6_MIP6=m +CONFIG_INET6_XFRM_TUNNEL=m +CONFIG_INET6_TUNNEL=m +CONFIG_INET6_XFRM_MODE_TRANSPORT=y +CONFIG_INET6_XFRM_MODE_TUNNEL=y +CONFIG_INET6_XFRM_MODE_BEET=y +CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m +CONFIG_IPV6_SIT=y +# CONFIG_IPV6_SIT_6RD is not set +CONFIG_IPV6_NDISC_NODETYPE=y +CONFIG_IPV6_TUNNEL=m +CONFIG_IPV6_GRE=m +CONFIG_IPV6_MULTIPLE_TABLES=y +CONFIG_IPV6_SUBTREES=y +CONFIG_IPV6_MROUTE=y +CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y +CONFIG_IPV6_PIMSM_V2=y +CONFIG_NETLABEL=y +CONFIG_NETWORK_SECMARK=y +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +CONFIG_NETFILTER=y +# CONFIG_NETFILTER_DEBUG is not set +CONFIG_NETFILTER_ADVANCED=y +CONFIG_BRIDGE_NETFILTER=y + +# +# Core Netfilter Configuration +# +CONFIG_NETFILTER_NETLINK=y +CONFIG_NETFILTER_NETLINK_ACCT=m +CONFIG_NETFILTER_NETLINK_QUEUE=m +CONFIG_NETFILTER_NETLINK_LOG=y +CONFIG_NF_CONNTRACK=m +CONFIG_NF_CONNTRACK_MARK=y +CONFIG_NF_CONNTRACK_SECMARK=y +CONFIG_NF_CONNTRACK_ZONES=y +CONFIG_NF_CONNTRACK_PROCFS=y +CONFIG_NF_CONNTRACK_EVENTS=y +CONFIG_NF_CONNTRACK_TIMEOUT=y +# CONFIG_NF_CONNTRACK_TIMESTAMP is not set +CONFIG_NF_CONNTRACK_LABELS=y +CONFIG_NF_CT_PROTO_DCCP=m +CONFIG_NF_CT_PROTO_GRE=m +CONFIG_NF_CT_PROTO_SCTP=m +CONFIG_NF_CT_PROTO_UDPLITE=m +CONFIG_NF_CONNTRACK_AMANDA=m +CONFIG_NF_CONNTRACK_FTP=m +CONFIG_NF_CONNTRACK_H323=m +CONFIG_NF_CONNTRACK_IRC=m +CONFIG_NF_CONNTRACK_BROADCAST=m +CONFIG_NF_CONNTRACK_NETBIOS_NS=m +CONFIG_NF_CONNTRACK_SNMP=m +CONFIG_NF_CONNTRACK_PPTP=m +CONFIG_NF_CONNTRACK_SANE=m +CONFIG_NF_CONNTRACK_SIP=m +CONFIG_NF_CONNTRACK_TFTP=m +CONFIG_NF_CT_NETLINK=m +CONFIG_NF_CT_NETLINK_TIMEOUT=m +CONFIG_NF_CT_NETLINK_HELPER=m +CONFIG_NETFILTER_NETLINK_QUEUE_CT=y +CONFIG_NF_NAT=m +CONFIG_NF_NAT_NEEDED=y +CONFIG_NF_NAT_PROTO_DCCP=m +CONFIG_NF_NAT_PROTO_UDPLITE=m +CONFIG_NF_NAT_PROTO_SCTP=m +CONFIG_NF_NAT_AMANDA=m +CONFIG_NF_NAT_FTP=m +CONFIG_NF_NAT_IRC=m +CONFIG_NF_NAT_SIP=m +CONFIG_NF_NAT_TFTP=m +CONFIG_NETFILTER_TPROXY=m +CONFIG_NETFILTER_XTABLES=y + +# +# Xtables combined modules +# +CONFIG_NETFILTER_XT_MARK=y +CONFIG_NETFILTER_XT_CONNMARK=m +CONFIG_NETFILTER_XT_SET=m + +# +# Xtables targets +# +CONFIG_NETFILTER_XT_TARGET_AUDIT=m +CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m +CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m +CONFIG_NETFILTER_XT_TARGET_CONNMARK=m +CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m +CONFIG_NETFILTER_XT_TARGET_CT=m +CONFIG_NETFILTER_XT_TARGET_DSCP=m +CONFIG_NETFILTER_XT_TARGET_HL=m +CONFIG_NETFILTER_XT_TARGET_HMARK=m +CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m +CONFIG_NETFILTER_XT_TARGET_LED=m +CONFIG_NETFILTER_XT_TARGET_LOG=m +CONFIG_NETFILTER_XT_TARGET_MARK=m +CONFIG_NETFILTER_XT_TARGET_NETMAP=m +CONFIG_NETFILTER_XT_TARGET_NFLOG=m +CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m +CONFIG_NETFILTER_XT_TARGET_NOTRACK=m +CONFIG_NETFILTER_XT_TARGET_RATEEST=m +CONFIG_NETFILTER_XT_TARGET_REDIRECT=m +CONFIG_NETFILTER_XT_TARGET_TEE=m +CONFIG_NETFILTER_XT_TARGET_TPROXY=m +CONFIG_NETFILTER_XT_TARGET_TRACE=m +CONFIG_NETFILTER_XT_TARGET_SECMARK=m +CONFIG_NETFILTER_XT_TARGET_TCPMSS=m +CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m + +# +# Xtables matches +# +CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m +CONFIG_NETFILTER_XT_MATCH_BPF=m +CONFIG_NETFILTER_XT_MATCH_CLUSTER=m +CONFIG_NETFILTER_XT_MATCH_COMMENT=m +CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m +CONFIG_NETFILTER_XT_MATCH_CONNLABEL=m +CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m +CONFIG_NETFILTER_XT_MATCH_CONNMARK=m +CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m +CONFIG_NETFILTER_XT_MATCH_CPU=m +CONFIG_NETFILTER_XT_MATCH_DCCP=m +CONFIG_NETFILTER_XT_MATCH_DEVGROUP=m +CONFIG_NETFILTER_XT_MATCH_DSCP=m +CONFIG_NETFILTER_XT_MATCH_ECN=m +CONFIG_NETFILTER_XT_MATCH_ESP=m +CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m +CONFIG_NETFILTER_XT_MATCH_HELPER=m +CONFIG_NETFILTER_XT_MATCH_HL=m +CONFIG_NETFILTER_XT_MATCH_IPRANGE=m +CONFIG_NETFILTER_XT_MATCH_LENGTH=m +CONFIG_NETFILTER_XT_MATCH_LIMIT=m +CONFIG_NETFILTER_XT_MATCH_MAC=m +CONFIG_NETFILTER_XT_MATCH_MARK=m +CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m +CONFIG_NETFILTER_XT_MATCH_NFACCT=m +CONFIG_NETFILTER_XT_MATCH_OSF=m +CONFIG_NETFILTER_XT_MATCH_OWNER=m +CONFIG_NETFILTER_XT_MATCH_POLICY=m +CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m +CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m +CONFIG_NETFILTER_XT_MATCH_QUOTA=m +CONFIG_NETFILTER_XT_MATCH_RATEEST=m +CONFIG_NETFILTER_XT_MATCH_REALM=m +CONFIG_NETFILTER_XT_MATCH_RECENT=m +CONFIG_NETFILTER_XT_MATCH_SCTP=m +CONFIG_NETFILTER_XT_MATCH_SOCKET=m +CONFIG_NETFILTER_XT_MATCH_STATE=m +CONFIG_NETFILTER_XT_MATCH_STATISTIC=m +CONFIG_NETFILTER_XT_MATCH_STRING=m +CONFIG_NETFILTER_XT_MATCH_TCPMSS=m +CONFIG_NETFILTER_XT_MATCH_TIME=m +CONFIG_NETFILTER_XT_MATCH_U32=m +CONFIG_IP_SET=y +CONFIG_IP_SET_MAX=256 +CONFIG_IP_SET_BITMAP_IP=m +CONFIG_IP_SET_BITMAP_IPMAC=m +CONFIG_IP_SET_BITMAP_PORT=m +CONFIG_IP_SET_HASH_IP=m +CONFIG_IP_SET_HASH_IPPORT=m +CONFIG_IP_SET_HASH_IPPORTIP=m +CONFIG_IP_SET_HASH_IPPORTNET=m +CONFIG_IP_SET_HASH_NET=m +CONFIG_IP_SET_HASH_NETPORT=m +CONFIG_IP_SET_HASH_NETIFACE=m +CONFIG_IP_SET_LIST_SET=m +# CONFIG_IP_VS is not set + +# +# IP: Netfilter Configuration +# +CONFIG_NF_DEFRAG_IPV4=m +CONFIG_NF_CONNTRACK_IPV4=m +CONFIG_NF_CONNTRACK_PROC_COMPAT=y +CONFIG_IP_NF_IPTABLES=m +CONFIG_IP_NF_MATCH_AH=m +CONFIG_IP_NF_MATCH_ECN=m +CONFIG_IP_NF_MATCH_RPFILTER=m +CONFIG_IP_NF_MATCH_TTL=m +CONFIG_IP_NF_FILTER=m +CONFIG_IP_NF_TARGET_REJECT=m +CONFIG_IP_NF_TARGET_ULOG=m +CONFIG_NF_NAT_IPV4=m +CONFIG_IP_NF_TARGET_MASQUERADE=m +CONFIG_IP_NF_TARGET_NETMAP=m +CONFIG_IP_NF_TARGET_REDIRECT=m +CONFIG_NF_NAT_SNMP_BASIC=m +CONFIG_NF_NAT_PROTO_GRE=m +CONFIG_NF_NAT_PPTP=m +CONFIG_NF_NAT_H323=m +CONFIG_IP_NF_MANGLE=m +CONFIG_IP_NF_TARGET_CLUSTERIP=m +CONFIG_IP_NF_TARGET_ECN=m +CONFIG_IP_NF_TARGET_TTL=m +CONFIG_IP_NF_RAW=m +CONFIG_IP_NF_SECURITY=m +CONFIG_IP_NF_ARPTABLES=m +CONFIG_IP_NF_ARPFILTER=m +CONFIG_IP_NF_ARP_MANGLE=m + +# +# IPv6: Netfilter Configuration +# +CONFIG_NF_DEFRAG_IPV6=m +CONFIG_NF_CONNTRACK_IPV6=m +CONFIG_IP6_NF_IPTABLES=m +CONFIG_IP6_NF_MATCH_AH=m +CONFIG_IP6_NF_MATCH_EUI64=m +CONFIG_IP6_NF_MATCH_FRAG=m +CONFIG_IP6_NF_MATCH_OPTS=m +CONFIG_IP6_NF_MATCH_HL=m +CONFIG_IP6_NF_MATCH_IPV6HEADER=m +CONFIG_IP6_NF_MATCH_MH=m +CONFIG_IP6_NF_MATCH_RPFILTER=m +CONFIG_IP6_NF_MATCH_RT=m +CONFIG_IP6_NF_TARGET_HL=m +CONFIG_IP6_NF_FILTER=m +CONFIG_IP6_NF_TARGET_REJECT=m +CONFIG_IP6_NF_MANGLE=m +CONFIG_IP6_NF_RAW=m +CONFIG_IP6_NF_SECURITY=m +CONFIG_NF_NAT_IPV6=m +CONFIG_IP6_NF_TARGET_MASQUERADE=m +CONFIG_IP6_NF_TARGET_NPT=m +CONFIG_BRIDGE_NF_EBTABLES=m +CONFIG_BRIDGE_EBT_BROUTE=m +CONFIG_BRIDGE_EBT_T_FILTER=m +CONFIG_BRIDGE_EBT_T_NAT=m +CONFIG_BRIDGE_EBT_802_3=m +CONFIG_BRIDGE_EBT_AMONG=m +CONFIG_BRIDGE_EBT_ARP=m +CONFIG_BRIDGE_EBT_IP=m +CONFIG_BRIDGE_EBT_IP6=m +CONFIG_BRIDGE_EBT_LIMIT=m +CONFIG_BRIDGE_EBT_MARK=m +CONFIG_BRIDGE_EBT_PKTTYPE=m +CONFIG_BRIDGE_EBT_STP=m +CONFIG_BRIDGE_EBT_VLAN=m +CONFIG_BRIDGE_EBT_ARPREPLY=m +CONFIG_BRIDGE_EBT_DNAT=m +CONFIG_BRIDGE_EBT_MARK_T=m +CONFIG_BRIDGE_EBT_REDIRECT=m +CONFIG_BRIDGE_EBT_SNAT=m +CONFIG_BRIDGE_EBT_LOG=m +CONFIG_BRIDGE_EBT_ULOG=m +CONFIG_BRIDGE_EBT_NFLOG=m +CONFIG_IP_DCCP=m +CONFIG_INET_DCCP_DIAG=m + +# +# DCCP CCIDs Configuration +# +# CONFIG_IP_DCCP_CCID2_DEBUG is not set +CONFIG_IP_DCCP_CCID3=y +# CONFIG_IP_DCCP_CCID3_DEBUG is not set +CONFIG_IP_DCCP_TFRC_LIB=y + +# +# DCCP Kernel Hacking +# +# CONFIG_IP_DCCP_DEBUG is not set +# CONFIG_NET_DCCPPROBE is not set +CONFIG_IP_SCTP=m +# CONFIG_NET_SCTPPROBE is not set +# CONFIG_SCTP_DBG_MSG is not set +# CONFIG_SCTP_DBG_OBJCNT is not set +CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5=y +# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1 is not set +# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set +CONFIG_SCTP_COOKIE_HMAC_MD5=y +CONFIG_SCTP_COOKIE_HMAC_SHA1=y +CONFIG_RDS=m +CONFIG_RDS_RDMA=m +CONFIG_RDS_TCP=m +# CONFIG_RDS_DEBUG is not set +CONFIG_TIPC=m +CONFIG_TIPC_PORTS=8191 +# CONFIG_TIPC_MEDIA_IB is not set +# CONFIG_ATM is not set +CONFIG_L2TP=m +# CONFIG_L2TP_DEBUGFS is not set +CONFIG_L2TP_V3=y +CONFIG_L2TP_IP=m +CONFIG_L2TP_ETH=m +CONFIG_STP=y +CONFIG_BRIDGE=y +CONFIG_BRIDGE_IGMP_SNOOPING=y +# CONFIG_BRIDGE_VLAN_FILTERING is not set +CONFIG_HAVE_NET_DSA=y +CONFIG_NET_DSA=m +CONFIG_NET_DSA_TAG_DSA=y +CONFIG_NET_DSA_TAG_EDSA=y +CONFIG_NET_DSA_TAG_TRAILER=y +CONFIG_VLAN_8021Q=y +# CONFIG_VLAN_8021Q_GVRP is not set +# CONFIG_VLAN_8021Q_MVRP is not set +# CONFIG_DECNET is not set +CONFIG_LLC=y +# CONFIG_LLC2 is not set +# CONFIG_IPX is not set +# CONFIG_ATALK is not set +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +# CONFIG_PHONET is not set +# CONFIG_IEEE802154 is not set +CONFIG_NET_SCHED=y + +# +# Queueing/Scheduling +# +CONFIG_NET_SCH_CBQ=m +CONFIG_NET_SCH_HTB=m +CONFIG_NET_SCH_HFSC=m +CONFIG_NET_SCH_PRIO=m +CONFIG_NET_SCH_MULTIQ=m +CONFIG_NET_SCH_RED=m +CONFIG_NET_SCH_SFB=m +CONFIG_NET_SCH_SFQ=m +CONFIG_NET_SCH_TEQL=m +CONFIG_NET_SCH_TBF=m +CONFIG_NET_SCH_GRED=m +CONFIG_NET_SCH_DSMARK=m +CONFIG_NET_SCH_NETEM=m +CONFIG_NET_SCH_DRR=m +CONFIG_NET_SCH_MQPRIO=m +CONFIG_NET_SCH_CHOKE=m +CONFIG_NET_SCH_QFQ=m +CONFIG_NET_SCH_CODEL=m +CONFIG_NET_SCH_FQ_CODEL=m +CONFIG_NET_SCH_INGRESS=m +CONFIG_NET_SCH_PLUG=m + +# +# Classification +# +CONFIG_NET_CLS=y +CONFIG_NET_CLS_BASIC=m +CONFIG_NET_CLS_TCINDEX=m +CONFIG_NET_CLS_ROUTE4=m +CONFIG_NET_CLS_FW=m +CONFIG_NET_CLS_U32=m +CONFIG_CLS_U32_PERF=y +CONFIG_CLS_U32_MARK=y +CONFIG_NET_CLS_RSVP=m +CONFIG_NET_CLS_RSVP6=m +CONFIG_NET_CLS_FLOW=m +CONFIG_NET_CLS_CGROUP=m +CONFIG_NET_EMATCH=y +CONFIG_NET_EMATCH_STACK=32 +CONFIG_NET_EMATCH_CMP=m +CONFIG_NET_EMATCH_NBYTE=m +CONFIG_NET_EMATCH_U32=m +CONFIG_NET_EMATCH_META=m +CONFIG_NET_EMATCH_TEXT=m +CONFIG_NET_EMATCH_IPSET=m +CONFIG_NET_CLS_ACT=y +CONFIG_NET_ACT_POLICE=m +CONFIG_NET_ACT_GACT=m +CONFIG_GACT_PROB=y +CONFIG_NET_ACT_MIRRED=m +CONFIG_NET_ACT_IPT=m +CONFIG_NET_ACT_NAT=m +CONFIG_NET_ACT_PEDIT=m +CONFIG_NET_ACT_SIMP=m +CONFIG_NET_ACT_SKBEDIT=m +CONFIG_NET_ACT_CSUM=m +CONFIG_NET_CLS_IND=y +CONFIG_NET_SCH_FIFO=y +# CONFIG_DCB is not set +CONFIG_DNS_RESOLVER=y +# CONFIG_BATMAN_ADV is not set +CONFIG_OPENVSWITCH=m +# CONFIG_VSOCKETS is not set +# CONFIG_NETLINK_MMAP is not set +# CONFIG_NETLINK_DIAG is not set +CONFIG_RPS=y +CONFIG_RFS_ACCEL=y +CONFIG_XPS=y +CONFIG_NETPRIO_CGROUP=m +CONFIG_BQL=y +# CONFIG_BPF_JIT is not set + +# +# Network testing +# +CONFIG_NET_PKTGEN=m +CONFIG_NET_TCPPROBE=m +# CONFIG_NET_DROP_MONITOR is not set +# CONFIG_HAMRADIO is not set +# CONFIG_CAN is not set +# CONFIG_IRDA is not set +# CONFIG_BT is not set +# CONFIG_AF_RXRPC is not set +CONFIG_FIB_RULES=y +# CONFIG_WIRELESS is not set +# CONFIG_WIMAX is not set +# CONFIG_RFKILL is not set +# CONFIG_RFKILL_REGULATOR is not set +# CONFIG_NET_9P is not set +# CONFIG_CAIF is not set +CONFIG_CEPH_LIB=m +# CONFIG_CEPH_LIB_PRETTYDEBUG is not set +# CONFIG_CEPH_LIB_USE_DNS_RESOLVER is not set +# CONFIG_NFC is not set +CONFIG_HAVE_BPF_JIT=y + +# +# Device Drivers +# + +# +# Generic Driver Options +# +CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" +CONFIG_DEVTMPFS=y +CONFIG_DEVTMPFS_MOUNT=y +CONFIG_STANDALONE=y +CONFIG_PREVENT_FIRMWARE_BUILD=y +CONFIG_FW_LOADER=y +CONFIG_FIRMWARE_IN_KERNEL=y +CONFIG_EXTRA_FIRMWARE="radeon/R700_rlc.bin radeon/TURKS_mc.bin radeon/TURKS_me.bin radeon/TURKS_pfp.bin radeon/BTC_rlc.bin" +CONFIG_EXTRA_FIRMWARE_DIR="/lib/firmware" +CONFIG_FW_LOADER_USER_HELPER=y +# CONFIG_DEBUG_DRIVER is not set +CONFIG_DEBUG_DEVRES=y +# CONFIG_SYS_HYPERVISOR is not set +# CONFIG_GENERIC_CPU_DEVICES is not set +CONFIG_REGMAP=y +CONFIG_REGMAP_I2C=y +CONFIG_REGMAP_MMIO=m +CONFIG_REGMAP_IRQ=y +CONFIG_DMA_SHARED_BUFFER=y + +# +# Bus devices +# +CONFIG_CONNECTOR=y +CONFIG_PROC_EVENTS=y +# CONFIG_MTD is not set +CONFIG_PARPORT=m +CONFIG_PARPORT_PC=m +CONFIG_PARPORT_SERIAL=m +CONFIG_PARPORT_PC_FIFO=y +CONFIG_PARPORT_PC_SUPERIO=y +CONFIG_PARPORT_PC_PCMCIA=m +# CONFIG_PARPORT_GSC is not set +CONFIG_PARPORT_AX88796=m +CONFIG_PARPORT_1284=y +CONFIG_PARPORT_NOT_PC=y +CONFIG_PNP=y +CONFIG_PNP_DEBUG_MESSAGES=y + +# +# Protocols +# +CONFIG_PNPACPI=y +CONFIG_BLK_DEV=y +CONFIG_BLK_DEV_FD=m +CONFIG_PARIDE=m + +# +# Parallel IDE high-level drivers +# +CONFIG_PARIDE_PD=m +CONFIG_PARIDE_PCD=m +CONFIG_PARIDE_PF=m +CONFIG_PARIDE_PT=m +CONFIG_PARIDE_PG=m + +# +# Parallel IDE protocol modules +# +CONFIG_PARIDE_ATEN=m +CONFIG_PARIDE_BPCK=m +CONFIG_PARIDE_COMM=m +CONFIG_PARIDE_DSTR=m +CONFIG_PARIDE_FIT2=m +CONFIG_PARIDE_FIT3=m +CONFIG_PARIDE_EPAT=m +CONFIG_PARIDE_EPATC8=y +CONFIG_PARIDE_EPIA=m +CONFIG_PARIDE_FRIQ=m +CONFIG_PARIDE_FRPW=m +CONFIG_PARIDE_KBIC=m +CONFIG_PARIDE_KTTI=m +CONFIG_PARIDE_ON20=m +CONFIG_PARIDE_ON26=m +CONFIG_BLK_DEV_PCIESSD_MTIP32XX=m +CONFIG_BLK_CPQ_DA=m +CONFIG_BLK_CPQ_CISS_DA=m +CONFIG_CISS_SCSI_TAPE=y +CONFIG_BLK_DEV_DAC960=m +CONFIG_BLK_DEV_UMEM=m +# CONFIG_BLK_DEV_COW_COMMON is not set +CONFIG_BLK_DEV_LOOP=y +CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 +CONFIG_BLK_DEV_CRYPTOLOOP=m +CONFIG_BLK_DEV_DRBD=m +# CONFIG_DRBD_FAULT_INJECTION is not set +CONFIG_BLK_DEV_NBD=m +CONFIG_BLK_DEV_NVME=m +CONFIG_BLK_DEV_SX8=m +CONFIG_BLK_DEV_RAM=y +CONFIG_BLK_DEV_RAM_COUNT=16 +CONFIG_BLK_DEV_RAM_SIZE=16384 +# CONFIG_BLK_DEV_XIP is not set +CONFIG_CDROM_PKTCDVD=m +CONFIG_CDROM_PKTCDVD_BUFFERS=8 +# CONFIG_CDROM_PKTCDVD_WCACHE is not set +CONFIG_ATA_OVER_ETH=m +CONFIG_VIRTIO_BLK=m +# CONFIG_BLK_DEV_HD is not set +CONFIG_BLK_DEV_RBD=m +# CONFIG_BLK_DEV_RSXX is not set + +# +# Misc devices +# +# CONFIG_SENSORS_LIS3LV02D is not set +# CONFIG_AD525X_DPOT is not set +# CONFIG_DUMMY_IRQ is not set +# CONFIG_IBM_ASM is not set +# CONFIG_PHANTOM is not set +# CONFIG_INTEL_MID_PTI is not set +# CONFIG_SGI_IOC4 is not set +CONFIG_TIFM_CORE=m +CONFIG_TIFM_7XX1=m +# CONFIG_ICS932S401 is not set +# CONFIG_ATMEL_SSC is not set +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_CS5535_MFGPT is not set +# CONFIG_HP_ILO is not set +# CONFIG_APDS9802ALS is not set +# CONFIG_ISL29003 is not set +# CONFIG_ISL29020 is not set +# CONFIG_SENSORS_TSL2550 is not set +# CONFIG_SENSORS_BH1780 is not set +# CONFIG_SENSORS_BH1770 is not set +# CONFIG_SENSORS_APDS990X is not set +# CONFIG_HMC6352 is not set +# CONFIG_DS1682 is not set +# CONFIG_BMP085_I2C is not set +# CONFIG_PCH_PHUB is not set +# CONFIG_USB_SWITCH_FSA9480 is not set +# CONFIG_SRAM is not set +# CONFIG_C2PORT is not set + +# +# EEPROM support +# +CONFIG_EEPROM_AT24=m +CONFIG_EEPROM_LEGACY=m +CONFIG_EEPROM_MAX6875=m +CONFIG_EEPROM_93CX6=m +CONFIG_CB710_CORE=m +# CONFIG_CB710_DEBUG is not set +CONFIG_CB710_DEBUG_ASSUMPTIONS=y + +# +# Texas Instruments shared transport line discipline +# +# CONFIG_SENSORS_LIS3_I2C is not set + +# +# Altera FPGA firmware download module +# +CONFIG_ALTERA_STAPL=m +# CONFIG_INTEL_MEI is not set +# CONFIG_INTEL_MEI_ME is not set +# CONFIG_VMWARE_VMCI is not set +CONFIG_HAVE_IDE=y +# CONFIG_IDE is not set + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +CONFIG_RAID_ATTRS=m +CONFIG_SCSI=y +CONFIG_SCSI_DMA=y +CONFIG_SCSI_TGT=m +CONFIG_SCSI_NETLINK=y +CONFIG_SCSI_PROC_FS=y + +# +# SCSI support type (disk, tape, CD-ROM) +# +CONFIG_BLK_DEV_SD=y +CONFIG_CHR_DEV_ST=m +CONFIG_CHR_DEV_OSST=m +CONFIG_BLK_DEV_SR=y +CONFIG_BLK_DEV_SR_VENDOR=y +CONFIG_CHR_DEV_SG=y +CONFIG_CHR_DEV_SCH=m +# CONFIG_SCSI_MULTI_LUN is not set +CONFIG_SCSI_CONSTANTS=y +CONFIG_SCSI_LOGGING=y +# CONFIG_SCSI_SCAN_ASYNC is not set + +# +# SCSI Transports +# +CONFIG_SCSI_SPI_ATTRS=y +CONFIG_SCSI_FC_ATTRS=m +# CONFIG_SCSI_FC_TGT_ATTRS is not set +CONFIG_SCSI_ISCSI_ATTRS=m +CONFIG_SCSI_SAS_ATTRS=m +CONFIG_SCSI_SAS_LIBSAS=m +CONFIG_SCSI_SAS_ATA=y +CONFIG_SCSI_SAS_HOST_SMP=y +CONFIG_SCSI_SRP_ATTRS=m +# CONFIG_SCSI_SRP_TGT_ATTRS is not set +CONFIG_SCSI_LOWLEVEL=y +CONFIG_ISCSI_TCP=m +CONFIG_ISCSI_BOOT_SYSFS=m +CONFIG_SCSI_CXGB3_ISCSI=m +CONFIG_SCSI_CXGB4_ISCSI=m +CONFIG_SCSI_BNX2_ISCSI=m +CONFIG_SCSI_BNX2X_FCOE=m +CONFIG_BE2ISCSI=m +CONFIG_BLK_DEV_3W_XXXX_RAID=m +CONFIG_SCSI_HPSA=m +CONFIG_SCSI_3W_9XXX=m +CONFIG_SCSI_3W_SAS=m +CONFIG_SCSI_ACARD=m +CONFIG_SCSI_AACRAID=m +CONFIG_SCSI_AIC7XXX=m +CONFIG_AIC7XXX_CMDS_PER_DEVICE=32 +CONFIG_AIC7XXX_RESET_DELAY_MS=5000 +CONFIG_AIC7XXX_DEBUG_ENABLE=y +CONFIG_AIC7XXX_DEBUG_MASK=0 +CONFIG_AIC7XXX_REG_PRETTY_PRINT=y +CONFIG_SCSI_AIC7XXX_OLD=m +CONFIG_SCSI_AIC79XX=m +CONFIG_AIC79XX_CMDS_PER_DEVICE=32 +CONFIG_AIC79XX_RESET_DELAY_MS=5000 +CONFIG_AIC79XX_DEBUG_ENABLE=y +CONFIG_AIC79XX_DEBUG_MASK=0 +CONFIG_AIC79XX_REG_PRETTY_PRINT=y +CONFIG_SCSI_AIC94XX=m +CONFIG_AIC94XX_DEBUG=y +CONFIG_SCSI_MVSAS=m +CONFIG_SCSI_MVSAS_DEBUG=y +CONFIG_SCSI_MVSAS_TASKLET=y +CONFIG_SCSI_MVUMI=m +CONFIG_SCSI_DPT_I2O=m +CONFIG_SCSI_ADVANSYS=m +CONFIG_SCSI_ARCMSR=m +# CONFIG_MEGARAID_NEWGEN is not set +CONFIG_MEGARAID_LEGACY=m +CONFIG_MEGARAID_SAS=m +CONFIG_SCSI_MPT2SAS=m +CONFIG_SCSI_MPT2SAS_MAX_SGE=128 +CONFIG_SCSI_MPT2SAS_LOGGING=y +CONFIG_SCSI_MPT3SAS=m +CONFIG_SCSI_MPT3SAS_MAX_SGE=128 +CONFIG_SCSI_MPT3SAS_LOGGING=y +CONFIG_SCSI_UFSHCD=m +# CONFIG_SCSI_UFSHCD_PCI is not set +# CONFIG_SCSI_UFSHCD_PLATFORM is not set +CONFIG_SCSI_HPTIOP=m +CONFIG_SCSI_BUSLOGIC=m +CONFIG_VMWARE_PVSCSI=m +CONFIG_LIBFC=m +CONFIG_LIBFCOE=m +CONFIG_FCOE=m +CONFIG_FCOE_FNIC=m +CONFIG_SCSI_DMX3191D=m +CONFIG_SCSI_EATA=m +CONFIG_SCSI_EATA_TAGGED_QUEUE=y +CONFIG_SCSI_EATA_LINKED_COMMANDS=y +CONFIG_SCSI_EATA_MAX_TAGS=16 +CONFIG_SCSI_FUTURE_DOMAIN=m +CONFIG_SCSI_GDTH=m +CONFIG_SCSI_ISCI=m +CONFIG_SCSI_IPS=m +CONFIG_SCSI_INITIO=m +CONFIG_SCSI_INIA100=m +CONFIG_SCSI_PPA=m +CONFIG_SCSI_IMM=m +# CONFIG_SCSI_IZIP_EPP16 is not set +# CONFIG_SCSI_IZIP_SLOW_CTR is not set +CONFIG_SCSI_STEX=m +CONFIG_SCSI_SYM53C8XX_2=m +CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=1 +CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16 +CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64 +CONFIG_SCSI_SYM53C8XX_MMIO=y +CONFIG_SCSI_IPR=m +CONFIG_SCSI_IPR_TRACE=y +CONFIG_SCSI_IPR_DUMP=y +CONFIG_SCSI_QLOGIC_1280=m +CONFIG_SCSI_QLA_FC=m +CONFIG_SCSI_QLA_ISCSI=m +CONFIG_SCSI_LPFC=m +# CONFIG_SCSI_LPFC_DEBUG_FS is not set +CONFIG_SCSI_DC395x=m +CONFIG_SCSI_DC390T=m +CONFIG_SCSI_DEBUG=m +CONFIG_SCSI_PMCRAID=m +CONFIG_SCSI_PM8001=m +CONFIG_SCSI_SRP=m +CONFIG_SCSI_BFA_FC=m +# CONFIG_SCSI_VIRTIO is not set +CONFIG_SCSI_CHELSIO_FCOE=m +CONFIG_SCSI_LOWLEVEL_PCMCIA=y +CONFIG_PCMCIA_AHA152X=m +CONFIG_PCMCIA_FDOMAIN=m +CONFIG_PCMCIA_QLOGIC=m +CONFIG_PCMCIA_SYM53C500=m +CONFIG_SCSI_DH=m +CONFIG_SCSI_DH_RDAC=m +CONFIG_SCSI_DH_HP_SW=m +CONFIG_SCSI_DH_EMC=m +CONFIG_SCSI_DH_ALUA=m +# CONFIG_SCSI_OSD_INITIATOR is not set +CONFIG_ATA=y +# CONFIG_ATA_NONSTANDARD is not set +CONFIG_ATA_VERBOSE_ERROR=y +CONFIG_ATA_ACPI=y +# CONFIG_SATA_ZPODD is not set +CONFIG_SATA_PMP=y + +# +# Controllers with non-SFF native interface +# +CONFIG_SATA_AHCI=y +CONFIG_SATA_AHCI_PLATFORM=y +CONFIG_SATA_INIC162X=m +CONFIG_SATA_ACARD_AHCI=m +CONFIG_SATA_SIL24=m +CONFIG_ATA_SFF=y + +# +# SFF controllers with custom DMA interface +# +CONFIG_PDC_ADMA=m +CONFIG_SATA_QSTOR=m +CONFIG_SATA_SX4=m +CONFIG_ATA_BMDMA=y + +# +# SATA SFF controllers with BMDMA +# +CONFIG_ATA_PIIX=y +CONFIG_SATA_HIGHBANK=m +CONFIG_SATA_MV=m +CONFIG_SATA_NV=m +CONFIG_SATA_PROMISE=m +CONFIG_SATA_SIL=m +CONFIG_SATA_SIS=m +CONFIG_SATA_SVW=m +CONFIG_SATA_ULI=m +CONFIG_SATA_VIA=m +CONFIG_SATA_VITESSE=m + +# +# PATA SFF controllers with BMDMA +# +CONFIG_PATA_ALI=m +CONFIG_PATA_AMD=y +CONFIG_PATA_ARASAN_CF=m +CONFIG_PATA_ARTOP=m +CONFIG_PATA_ATIIXP=m +CONFIG_PATA_ATP867X=m +CONFIG_PATA_CMD64X=m +CONFIG_PATA_CS5520=m +CONFIG_PATA_CS5530=m +CONFIG_PATA_CS5536=m +CONFIG_PATA_CYPRESS=m +CONFIG_PATA_EFAR=m +CONFIG_PATA_HPT366=m +CONFIG_PATA_HPT37X=m +CONFIG_PATA_HPT3X2N=m +CONFIG_PATA_HPT3X3=m +CONFIG_PATA_HPT3X3_DMA=y +CONFIG_PATA_IT8213=m +CONFIG_PATA_IT821X=m +CONFIG_PATA_JMICRON=m +CONFIG_PATA_MARVELL=m +CONFIG_PATA_NETCELL=m +CONFIG_PATA_NINJA32=m +CONFIG_PATA_NS87415=m +CONFIG_PATA_OLDPIIX=y +CONFIG_PATA_OPTIDMA=m +CONFIG_PATA_PDC2027X=m +CONFIG_PATA_PDC_OLD=m +CONFIG_PATA_RADISYS=m +CONFIG_PATA_RDC=m +CONFIG_PATA_SC1200=m +CONFIG_PATA_SCH=y +CONFIG_PATA_SERVERWORKS=m +CONFIG_PATA_SIL680=m +CONFIG_PATA_SIS=m +CONFIG_PATA_TOSHIBA=m +CONFIG_PATA_TRIFLEX=m +CONFIG_PATA_VIA=m +CONFIG_PATA_WINBOND=m + +# +# PIO-only SFF controllers +# +CONFIG_PATA_CMD640_PCI=m +CONFIG_PATA_MPIIX=m +CONFIG_PATA_NS87410=m +CONFIG_PATA_OPTI=m +CONFIG_PATA_PCMCIA=m +CONFIG_PATA_RZ1000=m + +# +# Generic fallback / legacy drivers +# +CONFIG_PATA_ACPI=m +CONFIG_ATA_GENERIC=m +CONFIG_PATA_LEGACY=m +CONFIG_MD=y +CONFIG_BLK_DEV_MD=y +CONFIG_MD_AUTODETECT=y +CONFIG_MD_LINEAR=y +CONFIG_MD_RAID0=y +CONFIG_MD_RAID1=y +CONFIG_MD_RAID10=y +CONFIG_MD_RAID456=m +CONFIG_MD_MULTIPATH=m +CONFIG_MD_FAULTY=m +# CONFIG_BCACHE is not set +CONFIG_BLK_DEV_DM=y +# CONFIG_DM_DEBUG is not set +CONFIG_DM_BUFIO=m +CONFIG_DM_BIO_PRISON=m +CONFIG_DM_PERSISTENT_DATA=m +CONFIG_DM_CRYPT=m +CONFIG_DM_SNAPSHOT=m +CONFIG_DM_THIN_PROVISIONING=m +CONFIG_DM_DEBUG_BLOCK_STACK_TRACING=y +# CONFIG_DM_CACHE is not set +CONFIG_DM_MIRROR=y +CONFIG_DM_RAID=m +CONFIG_DM_LOG_USERSPACE=m +CONFIG_DM_ZERO=y +CONFIG_DM_MULTIPATH=m +CONFIG_DM_MULTIPATH_QL=m +CONFIG_DM_MULTIPATH_ST=m +# CONFIG_DM_DELAY is not set +# CONFIG_DM_UEVENT is not set +CONFIG_DM_FLAKEY=m +CONFIG_DM_VERITY=m +# CONFIG_TARGET_CORE is not set +# CONFIG_FUSION is not set + +# +# IEEE 1394 (FireWire) support +# +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# CONFIG_I2O is not set +CONFIG_MACINTOSH_DRIVERS=y +CONFIG_MAC_EMUMOUSEBTN=y +CONFIG_NETDEVICES=y +CONFIG_NET_CORE=y +CONFIG_BONDING=m +CONFIG_DUMMY=m +CONFIG_EQUALIZER=m +# CONFIG_NET_FC is not set +CONFIG_MII=y +CONFIG_IFB=m +CONFIG_NET_TEAM=m +CONFIG_NET_TEAM_MODE_BROADCAST=m +CONFIG_NET_TEAM_MODE_ROUNDROBIN=m +# CONFIG_NET_TEAM_MODE_RANDOM is not set +CONFIG_NET_TEAM_MODE_ACTIVEBACKUP=m +CONFIG_NET_TEAM_MODE_LOADBALANCE=m +CONFIG_MACVLAN=m +CONFIG_MACVTAP=m +CONFIG_VXLAN=m +CONFIG_NETCONSOLE=y +CONFIG_NETPOLL=y +# CONFIG_NETPOLL_TRAP is not set +CONFIG_NET_POLL_CONTROLLER=y +CONFIG_TUN=y +CONFIG_VETH=m +CONFIG_VIRTIO_NET=m +CONFIG_SUNGEM_PHY=m +CONFIG_ARCNET=m +CONFIG_ARCNET_1201=m +CONFIG_ARCNET_1051=m +CONFIG_ARCNET_RAW=m +CONFIG_ARCNET_CAP=m +CONFIG_ARCNET_COM90xx=m +CONFIG_ARCNET_COM90xxIO=m +CONFIG_ARCNET_RIM_I=m +CONFIG_ARCNET_COM20020=m +CONFIG_ARCNET_COM20020_PCI=m +CONFIG_ARCNET_COM20020_CS=m + +# +# CAIF transport drivers +# +CONFIG_VHOST_NET=m +CONFIG_VHOST_RING=m + +# +# Distributed Switch Architecture drivers +# +CONFIG_NET_DSA_MV88E6XXX=m +CONFIG_NET_DSA_MV88E6060=m +CONFIG_NET_DSA_MV88E6XXX_NEED_PPU=y +CONFIG_NET_DSA_MV88E6131=m +CONFIG_NET_DSA_MV88E6123_61_65=m +CONFIG_ETHERNET=y +CONFIG_MDIO=m +CONFIG_NET_VENDOR_3COM=y +CONFIG_PCMCIA_3C574=m +CONFIG_PCMCIA_3C589=m +CONFIG_VORTEX=m +CONFIG_TYPHOON=m +CONFIG_NET_VENDOR_ADAPTEC=y +CONFIG_ADAPTEC_STARFIRE=m +CONFIG_NET_VENDOR_ALTEON=y +CONFIG_ACENIC=m +# CONFIG_ACENIC_OMIT_TIGON_I is not set +CONFIG_NET_VENDOR_AMD=y +CONFIG_AMD8111_ETH=m +CONFIG_PCNET32=m +CONFIG_PCMCIA_NMCLAN=m +CONFIG_NET_VENDOR_ATHEROS=y +CONFIG_ATL2=m +CONFIG_ATL1=m +CONFIG_ATL1E=m +CONFIG_ATL1C=m +# CONFIG_ALX is not set +CONFIG_NET_CADENCE=y +CONFIG_ARM_AT91_ETHER=m +CONFIG_MACB=m +CONFIG_NET_VENDOR_BROADCOM=y +CONFIG_B44=m +CONFIG_B44_PCI_AUTOSELECT=y +CONFIG_B44_PCICORE_AUTOSELECT=y +CONFIG_B44_PCI=y +CONFIG_BNX2=m +CONFIG_CNIC=m +CONFIG_TIGON3=y +CONFIG_BNX2X=m +CONFIG_BNX2X_SRIOV=y +CONFIG_NET_VENDOR_BROCADE=y +CONFIG_BNA=m +CONFIG_NET_CALXEDA_XGMAC=m +CONFIG_NET_VENDOR_CHELSIO=y +CONFIG_CHELSIO_T1=m +CONFIG_CHELSIO_T1_1G=y +CONFIG_CHELSIO_T3=m +CONFIG_CHELSIO_T4=m +CONFIG_CHELSIO_T4VF=m +CONFIG_NET_VENDOR_CISCO=y +CONFIG_ENIC=m +CONFIG_DNET=m +CONFIG_NET_VENDOR_DEC=y +CONFIG_NET_TULIP=y +CONFIG_DE2104X=m +CONFIG_DE2104X_DSL=0 +CONFIG_TULIP=m +CONFIG_TULIP_MWI=y +CONFIG_TULIP_MMIO=y +# CONFIG_TULIP_NAPI is not set +CONFIG_DE4X5=m +CONFIG_WINBOND_840=m +CONFIG_DM9102=m +CONFIG_ULI526X=m +CONFIG_PCMCIA_XIRCOM=m +CONFIG_NET_VENDOR_DLINK=y +CONFIG_DL2K=m +CONFIG_SUNDANCE=m +# CONFIG_SUNDANCE_MMIO is not set +CONFIG_NET_VENDOR_EMULEX=y +CONFIG_BE2NET=m +CONFIG_NET_VENDOR_EXAR=y +CONFIG_S2IO=m +CONFIG_VXGE=m +# CONFIG_VXGE_DEBUG_TRACE_ALL is not set +CONFIG_NET_VENDOR_FUJITSU=y +CONFIG_PCMCIA_FMVJ18X=m +CONFIG_NET_VENDOR_HP=y +CONFIG_HP100=m +CONFIG_NET_VENDOR_INTEL=y +CONFIG_E100=y +CONFIG_E1000=y +CONFIG_E1000E=m +CONFIG_IGB=m +CONFIG_IGB_HWMON=y +CONFIG_IGBVF=m +CONFIG_IXGB=m +CONFIG_IXGBE=m +CONFIG_IXGBE_HWMON=y +CONFIG_IXGBEVF=m +CONFIG_NET_VENDOR_I825XX=y +CONFIG_IP1000=m +CONFIG_JME=m +CONFIG_NET_VENDOR_MARVELL=y +CONFIG_MVMDIO=m +CONFIG_SKGE=m +# CONFIG_SKGE_DEBUG is not set +# CONFIG_SKGE_GENESIS is not set +CONFIG_SKY2=y +# CONFIG_SKY2_DEBUG is not set +CONFIG_NET_VENDOR_MELLANOX=y +CONFIG_MLX4_EN=m +CONFIG_MLX4_CORE=m +CONFIG_MLX4_DEBUG=y +CONFIG_NET_VENDOR_MICREL=y +# CONFIG_KS8842 is not set +CONFIG_KS8851_MLL=m +CONFIG_KSZ884X_PCI=m +CONFIG_NET_VENDOR_MYRI=y +CONFIG_MYRI10GE=m +CONFIG_FEALNX=m +CONFIG_NET_VENDOR_NATSEMI=y +CONFIG_NATSEMI=m +CONFIG_NS83820=m +CONFIG_NET_VENDOR_8390=y +CONFIG_PCMCIA_AXNET=m +CONFIG_NE2K_PCI=m +CONFIG_PCMCIA_PCNET=m +CONFIG_NET_VENDOR_NVIDIA=y +CONFIG_FORCEDETH=y +CONFIG_NET_VENDOR_OKI=y +CONFIG_PCH_GBE=m +CONFIG_ETHOC=m +CONFIG_NET_PACKET_ENGINE=y +CONFIG_HAMACHI=m +CONFIG_YELLOWFIN=m +CONFIG_NET_VENDOR_QLOGIC=y +CONFIG_QLA3XXX=m +CONFIG_QLCNIC=m +CONFIG_QLCNIC_SRIOV=y +CONFIG_QLGE=m +CONFIG_NETXEN_NIC=m +CONFIG_NET_VENDOR_REALTEK=y +CONFIG_ATP=m +CONFIG_8139CP=m +CONFIG_8139TOO=y +CONFIG_8139TOO_PIO=y +CONFIG_8139TOO_TUNE_TWISTER=y +# CONFIG_8139TOO_8129 is not set +# CONFIG_8139_OLD_RX_RESET is not set +CONFIG_R8169=y +CONFIG_NET_VENDOR_RDC=y +CONFIG_R6040=m +CONFIG_NET_VENDOR_SEEQ=y +CONFIG_NET_VENDOR_SILAN=y +CONFIG_SC92031=m +CONFIG_NET_VENDOR_SIS=y +CONFIG_SIS900=m +CONFIG_SIS190=m +CONFIG_SFC=m +CONFIG_SFC_MCDI_MON=y +CONFIG_SFC_SRIOV=y +CONFIG_NET_VENDOR_SMSC=y +CONFIG_PCMCIA_SMC91C92=m +CONFIG_EPIC100=m +CONFIG_SMSC9420=m +CONFIG_NET_VENDOR_STMICRO=y +CONFIG_STMMAC_ETH=m +CONFIG_STMMAC_PLATFORM=y +CONFIG_STMMAC_PCI=y +CONFIG_STMMAC_DEBUG_FS=y +# CONFIG_STMMAC_DA is not set +CONFIG_NET_VENDOR_SUN=y +CONFIG_HAPPYMEAL=m +CONFIG_SUNGEM=m +# CONFIG_CASSINI is not set +CONFIG_NIU=m +CONFIG_NET_VENDOR_TEHUTI=y +CONFIG_TEHUTI=m +CONFIG_NET_VENDOR_TI=y +CONFIG_TLAN=m +CONFIG_NET_VENDOR_VIA=y +CONFIG_VIA_RHINE=m +# CONFIG_VIA_RHINE_MMIO is not set +CONFIG_VIA_VELOCITY=m +CONFIG_NET_VENDOR_WIZNET=y +CONFIG_WIZNET_W5100=m +CONFIG_WIZNET_W5300=m +# CONFIG_WIZNET_BUS_DIRECT is not set +# CONFIG_WIZNET_BUS_INDIRECT is not set +CONFIG_WIZNET_BUS_ANY=y +CONFIG_NET_VENDOR_XIRCOM=y +CONFIG_PCMCIA_XIRC2PS=m +CONFIG_FDDI=y +# CONFIG_DEFXX is not set +# CONFIG_SKFP is not set +# CONFIG_HIPPI is not set +# CONFIG_NET_SB1000 is not set +CONFIG_PHYLIB=y + +# +# MII PHY device drivers +# +CONFIG_AT803X_PHY=m +CONFIG_AMD_PHY=m +CONFIG_MARVELL_PHY=m +CONFIG_DAVICOM_PHY=m +CONFIG_QSEMI_PHY=m +CONFIG_LXT_PHY=m +CONFIG_CICADA_PHY=m +CONFIG_VITESSE_PHY=m +CONFIG_SMSC_PHY=m +CONFIG_BROADCOM_PHY=m +CONFIG_BCM87XX_PHY=m +CONFIG_ICPLUS_PHY=m +CONFIG_REALTEK_PHY=m +CONFIG_NATIONAL_PHY=m +CONFIG_STE10XP=m +CONFIG_LSI_ET1011C_PHY=m +CONFIG_MICREL_PHY=m +# CONFIG_FIXED_PHY is not set +CONFIG_MDIO_BITBANG=m +# CONFIG_PLIP is not set +CONFIG_PPP=m +CONFIG_PPP_BSDCOMP=m +CONFIG_PPP_DEFLATE=m +CONFIG_PPP_FILTER=y +CONFIG_PPP_MPPE=m +CONFIG_PPP_MULTILINK=y +CONFIG_PPPOE=m +CONFIG_PPTP=m +CONFIG_PPPOL2TP=m +CONFIG_PPP_ASYNC=m +CONFIG_PPP_SYNC_TTY=m +CONFIG_SLIP=m +CONFIG_SLHC=m +CONFIG_SLIP_COMPRESSED=y +# CONFIG_SLIP_SMART is not set +# CONFIG_SLIP_MODE_SLIP6 is not set + +# +# USB Network Adapters +# +CONFIG_USB_CATC=m +CONFIG_USB_KAWETH=m +CONFIG_USB_PEGASUS=m +CONFIG_USB_RTL8150=m +# CONFIG_USB_RTL8152 is not set +CONFIG_USB_USBNET=m +CONFIG_USB_NET_AX8817X=m +CONFIG_USB_NET_AX88179_178A=m +CONFIG_USB_NET_CDCETHER=m +CONFIG_USB_NET_CDC_EEM=m +CONFIG_USB_NET_CDC_NCM=m +CONFIG_USB_NET_CDC_MBIM=m +CONFIG_USB_NET_DM9601=m +CONFIG_USB_NET_SMSC75XX=m +CONFIG_USB_NET_SMSC95XX=m +CONFIG_USB_NET_GL620A=m +CONFIG_USB_NET_NET1080=m +CONFIG_USB_NET_PLUSB=m +CONFIG_USB_NET_MCS7830=m +CONFIG_USB_NET_RNDIS_HOST=m +CONFIG_USB_NET_CDC_SUBSET=m +CONFIG_USB_ALI_M5632=y +CONFIG_USB_AN2720=y +CONFIG_USB_BELKIN=y +CONFIG_USB_ARMLINUX=y +CONFIG_USB_EPSON2888=y +CONFIG_USB_KC2190=y +CONFIG_USB_NET_ZAURUS=m +CONFIG_USB_NET_CX82310_ETH=m +CONFIG_USB_NET_KALMIA=m +CONFIG_USB_NET_QMI_WWAN=m +CONFIG_USB_NET_INT51X1=m +CONFIG_USB_IPHETH=m +CONFIG_USB_SIERRA_NET=m +CONFIG_USB_VL600=m +# CONFIG_WLAN is not set + +# +# Enable WiMAX (Networking options) to see the WiMAX drivers +# +# CONFIG_WAN is not set +# CONFIG_VMXNET3 is not set +# CONFIG_ISDN is not set + +# +# Input device support +# +CONFIG_INPUT=y +CONFIG_INPUT_FF_MEMLESS=y +CONFIG_INPUT_POLLDEV=y +CONFIG_INPUT_SPARSEKMAP=y +CONFIG_INPUT_MATRIXKMAP=m + +# +# Userland interfaces +# +CONFIG_INPUT_MOUSEDEV=y +# CONFIG_INPUT_MOUSEDEV_PSAUX is not set +CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 +CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 +# CONFIG_INPUT_JOYDEV is not set +CONFIG_INPUT_EVDEV=y +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +CONFIG_INPUT_KEYBOARD=y +CONFIG_KEYBOARD_ADP5520=m +CONFIG_KEYBOARD_ADP5588=m +CONFIG_KEYBOARD_ADP5589=m +CONFIG_KEYBOARD_ATKBD=y +CONFIG_KEYBOARD_QT1070=m +CONFIG_KEYBOARD_QT2160=m +CONFIG_KEYBOARD_LKKBD=m +CONFIG_KEYBOARD_TCA6416=m +CONFIG_KEYBOARD_TCA8418=m +CONFIG_KEYBOARD_LM8323=m +CONFIG_KEYBOARD_LM8333=m +CONFIG_KEYBOARD_MAX7359=m +CONFIG_KEYBOARD_MCS=m +CONFIG_KEYBOARD_MPR121=m +CONFIG_KEYBOARD_NEWTON=m +CONFIG_KEYBOARD_OPENCORES=m +CONFIG_KEYBOARD_STOWAWAY=m +CONFIG_KEYBOARD_SUNKBD=m +CONFIG_KEYBOARD_STMPE=m +CONFIG_KEYBOARD_TC3589X=m +CONFIG_KEYBOARD_TWL4030=m +CONFIG_KEYBOARD_XTKBD=m +CONFIG_INPUT_MOUSE=y +CONFIG_MOUSE_PS2=y +CONFIG_MOUSE_PS2_ALPS=y +CONFIG_MOUSE_PS2_LOGIPS2PP=y +CONFIG_MOUSE_PS2_SYNAPTICS=y +CONFIG_MOUSE_PS2_CYPRESS=y +CONFIG_MOUSE_PS2_LIFEBOOK=y +CONFIG_MOUSE_PS2_TRACKPOINT=y +# CONFIG_MOUSE_PS2_ELANTECH is not set +# CONFIG_MOUSE_PS2_SENTELIC is not set +# CONFIG_MOUSE_PS2_TOUCHKIT is not set +CONFIG_MOUSE_SERIAL=m +CONFIG_MOUSE_APPLETOUCH=m +CONFIG_MOUSE_BCM5974=m +# CONFIG_MOUSE_CYAPA is not set +CONFIG_MOUSE_VSXXXAA=m +CONFIG_MOUSE_SYNAPTICS_I2C=m +CONFIG_MOUSE_SYNAPTICS_USB=m +CONFIG_INPUT_JOYSTICK=y +CONFIG_JOYSTICK_ANALOG=m +CONFIG_JOYSTICK_A3D=m +CONFIG_JOYSTICK_ADI=m +CONFIG_JOYSTICK_COBRA=m +CONFIG_JOYSTICK_GF2K=m +CONFIG_JOYSTICK_GRIP=m +CONFIG_JOYSTICK_GRIP_MP=m +CONFIG_JOYSTICK_GUILLEMOT=m +CONFIG_JOYSTICK_INTERACT=m +CONFIG_JOYSTICK_SIDEWINDER=m +CONFIG_JOYSTICK_TMDC=m +CONFIG_JOYSTICK_IFORCE=m +CONFIG_JOYSTICK_IFORCE_USB=y +CONFIG_JOYSTICK_IFORCE_232=y +CONFIG_JOYSTICK_WARRIOR=m +CONFIG_JOYSTICK_MAGELLAN=m +CONFIG_JOYSTICK_SPACEORB=m +CONFIG_JOYSTICK_SPACEBALL=m +CONFIG_JOYSTICK_STINGER=m +CONFIG_JOYSTICK_TWIDJOY=m +CONFIG_JOYSTICK_ZHENHUA=m +CONFIG_JOYSTICK_DB9=m +CONFIG_JOYSTICK_GAMECON=m +CONFIG_JOYSTICK_TURBOGRAFX=m +CONFIG_JOYSTICK_AS5011=m +CONFIG_JOYSTICK_JOYDUMP=m +CONFIG_JOYSTICK_XPAD=m +CONFIG_JOYSTICK_XPAD_FF=y +CONFIG_JOYSTICK_XPAD_LEDS=y +CONFIG_JOYSTICK_WALKERA0701=m +CONFIG_INPUT_TABLET=y +CONFIG_TABLET_USB_ACECAD=m +CONFIG_TABLET_USB_AIPTEK=m +CONFIG_TABLET_USB_GTCO=m +CONFIG_TABLET_USB_HANWANG=m +CONFIG_TABLET_USB_KBTAB=m +CONFIG_TABLET_USB_WACOM=m +CONFIG_INPUT_TOUCHSCREEN=y +CONFIG_TOUCHSCREEN_88PM860X=m +CONFIG_TOUCHSCREEN_AD7879=m +CONFIG_TOUCHSCREEN_AD7879_I2C=m +CONFIG_TOUCHSCREEN_ATMEL_MXT=m +CONFIG_TOUCHSCREEN_BU21013=m +CONFIG_TOUCHSCREEN_CYTTSP_CORE=m +CONFIG_TOUCHSCREEN_CYTTSP_I2C=m +CONFIG_TOUCHSCREEN_DA9034=y +CONFIG_TOUCHSCREEN_DA9052=m +CONFIG_TOUCHSCREEN_DYNAPRO=m +CONFIG_TOUCHSCREEN_HAMPSHIRE=m +CONFIG_TOUCHSCREEN_EETI=m +CONFIG_TOUCHSCREEN_FUJITSU=m +CONFIG_TOUCHSCREEN_ILI210X=m +CONFIG_TOUCHSCREEN_GUNZE=m +CONFIG_TOUCHSCREEN_ELO=m +CONFIG_TOUCHSCREEN_WACOM_W8001=m +CONFIG_TOUCHSCREEN_WACOM_I2C=m +CONFIG_TOUCHSCREEN_MAX11801=m +CONFIG_TOUCHSCREEN_MCS5000=m +CONFIG_TOUCHSCREEN_MMS114=m +CONFIG_TOUCHSCREEN_MTOUCH=m +CONFIG_TOUCHSCREEN_INEXIO=m +CONFIG_TOUCHSCREEN_MK712=m +CONFIG_TOUCHSCREEN_PENMOUNT=m +CONFIG_TOUCHSCREEN_EDT_FT5X06=m +CONFIG_TOUCHSCREEN_TOUCHRIGHT=m +CONFIG_TOUCHSCREEN_TOUCHWIN=m +CONFIG_TOUCHSCREEN_TI_AM335X_TSC=m +CONFIG_TOUCHSCREEN_PIXCIR=m +CONFIG_TOUCHSCREEN_WM831X=m +CONFIG_TOUCHSCREEN_WM97XX=m +CONFIG_TOUCHSCREEN_WM9705=y +CONFIG_TOUCHSCREEN_WM9712=y +CONFIG_TOUCHSCREEN_WM9713=y +CONFIG_TOUCHSCREEN_USB_COMPOSITE=m +CONFIG_TOUCHSCREEN_MC13783=m +CONFIG_TOUCHSCREEN_USB_EGALAX=y +CONFIG_TOUCHSCREEN_USB_PANJIT=y +CONFIG_TOUCHSCREEN_USB_3M=y +CONFIG_TOUCHSCREEN_USB_ITM=y +CONFIG_TOUCHSCREEN_USB_ETURBO=y +CONFIG_TOUCHSCREEN_USB_GUNZE=y +CONFIG_TOUCHSCREEN_USB_DMC_TSC10=y +CONFIG_TOUCHSCREEN_USB_IRTOUCH=y +CONFIG_TOUCHSCREEN_USB_IDEALTEK=y +CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH=y +CONFIG_TOUCHSCREEN_USB_GOTOP=y +CONFIG_TOUCHSCREEN_USB_JASTEC=y +CONFIG_TOUCHSCREEN_USB_ELO=y +CONFIG_TOUCHSCREEN_USB_E2I=y +CONFIG_TOUCHSCREEN_USB_ZYTRONIC=y +CONFIG_TOUCHSCREEN_USB_ETT_TC45USB=y +CONFIG_TOUCHSCREEN_USB_NEXIO=y +CONFIG_TOUCHSCREEN_USB_EASYTOUCH=y +CONFIG_TOUCHSCREEN_TOUCHIT213=m +CONFIG_TOUCHSCREEN_TSC_SERIO=m +CONFIG_TOUCHSCREEN_TSC2007=m +CONFIG_TOUCHSCREEN_ST1232=m +CONFIG_TOUCHSCREEN_STMPE=m +CONFIG_TOUCHSCREEN_TPS6507X=m +CONFIG_INPUT_MISC=y +CONFIG_INPUT_88PM860X_ONKEY=m +CONFIG_INPUT_88PM80X_ONKEY=m +CONFIG_INPUT_AD714X=m +CONFIG_INPUT_AD714X_I2C=m +CONFIG_INPUT_BMA150=m +CONFIG_INPUT_PCSPKR=m +# CONFIG_INPUT_MAX8925_ONKEY is not set +CONFIG_INPUT_MC13783_PWRBUTTON=m +CONFIG_INPUT_MMA8450=m +CONFIG_INPUT_MPU3050=m +CONFIG_INPUT_APANEL=m +CONFIG_INPUT_ATLAS_BTNS=m +CONFIG_INPUT_ATI_REMOTE2=m +CONFIG_INPUT_KEYSPAN_REMOTE=m +CONFIG_INPUT_KXTJ9=m +# CONFIG_INPUT_KXTJ9_POLLED_MODE is not set +CONFIG_INPUT_POWERMATE=m +CONFIG_INPUT_YEALINK=m +CONFIG_INPUT_CM109=m +CONFIG_INPUT_RETU_PWRBUTTON=m +CONFIG_INPUT_TWL4030_PWRBUTTON=m +CONFIG_INPUT_TWL4030_VIBRA=m +# CONFIG_INPUT_TWL6040_VIBRA is not set +CONFIG_INPUT_UINPUT=m +CONFIG_INPUT_PCF50633_PMU=m +CONFIG_INPUT_PCF8574=m +CONFIG_INPUT_PWM_BEEPER=m +CONFIG_INPUT_DA9052_ONKEY=m +CONFIG_INPUT_WM831X_ON=m +CONFIG_INPUT_ADXL34X=m +CONFIG_INPUT_ADXL34X_I2C=m +# CONFIG_INPUT_IMS_PCU is not set +CONFIG_INPUT_CMA3000=m +CONFIG_INPUT_CMA3000_I2C=m + +# +# Hardware I/O ports +# +CONFIG_SERIO=y +CONFIG_SERIO_I8042=y +CONFIG_SERIO_SERPORT=y +CONFIG_SERIO_CT82C710=m +CONFIG_SERIO_PARKBD=m +CONFIG_SERIO_PCIPS2=m +CONFIG_SERIO_LIBPS2=y +CONFIG_SERIO_RAW=m +CONFIG_SERIO_ALTERA_PS2=m +CONFIG_SERIO_PS2MULT=m +CONFIG_SERIO_ARC_PS2=m +CONFIG_GAMEPORT=y +CONFIG_GAMEPORT_NS558=m +CONFIG_GAMEPORT_L4=m +CONFIG_GAMEPORT_EMU10K1=m +CONFIG_GAMEPORT_FM801=m + +# +# Character devices +# +CONFIG_TTY=y +CONFIG_VT=y +CONFIG_CONSOLE_TRANSLATIONS=y +CONFIG_VT_CONSOLE=y +CONFIG_VT_CONSOLE_SLEEP=y +CONFIG_HW_CONSOLE=y +CONFIG_VT_HW_CONSOLE_BINDING=y +CONFIG_UNIX98_PTYS=y +# CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set +# CONFIG_LEGACY_PTYS is not set +CONFIG_SERIAL_NONSTANDARD=y +CONFIG_ROCKETPORT=m +CONFIG_CYCLADES=m +# CONFIG_CYZ_INTR is not set +CONFIG_MOXA_INTELLIO=m +CONFIG_MOXA_SMARTIO=m +CONFIG_SYNCLINK=m +CONFIG_SYNCLINKMP=m +CONFIG_SYNCLINK_GT=m +CONFIG_NOZOMI=m +CONFIG_ISI=m +CONFIG_N_HDLC=m +CONFIG_N_GSM=m +# CONFIG_TRACE_ROUTER is not set +CONFIG_TRACE_SINK=m + +# +# KCopy +# +CONFIG_KCOPY=m +CONFIG_DEVKMEM=y +# CONFIG_STALDRV is not set + +# +# Serial drivers +# +CONFIG_SERIAL_8250=y +CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y +CONFIG_SERIAL_8250_PNP=y +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_SERIAL_8250_DMA=y +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_8250_CS=m +CONFIG_SERIAL_8250_NR_UARTS=32 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4 +CONFIG_SERIAL_8250_EXTENDED=y +CONFIG_SERIAL_8250_MANY_PORTS=y +CONFIG_SERIAL_8250_SHARE_IRQ=y +CONFIG_SERIAL_8250_DETECT_IRQ=y +CONFIG_SERIAL_8250_RSA=y +# CONFIG_SERIAL_8250_DW is not set + +# +# Non-8250 serial port support +# +CONFIG_SERIAL_MFD_HSU=m +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +CONFIG_SERIAL_JSM=m +CONFIG_SERIAL_SCCNXP=m +CONFIG_SERIAL_TIMBERDALE=m +CONFIG_SERIAL_ALTERA_JTAGUART=m +CONFIG_SERIAL_ALTERA_UART=m +CONFIG_SERIAL_ALTERA_UART_MAXPORTS=4 +CONFIG_SERIAL_ALTERA_UART_BAUDRATE=115200 +CONFIG_SERIAL_PCH_UART=m +CONFIG_SERIAL_ARC=m +CONFIG_SERIAL_ARC_NR_PORTS=1 +# CONFIG_SERIAL_RP2 is not set +CONFIG_PRINTER=m +# CONFIG_LP_CONSOLE is not set +CONFIG_PPDEV=m +CONFIG_HVC_DRIVER=y +CONFIG_VIRTIO_CONSOLE=m +CONFIG_IPMI_HANDLER=m +# CONFIG_IPMI_PANIC_EVENT is not set +CONFIG_IPMI_DEVICE_INTERFACE=m +CONFIG_IPMI_SI=m +CONFIG_IPMI_WATCHDOG=m +CONFIG_IPMI_POWEROFF=m +CONFIG_HW_RANDOM=y +CONFIG_HW_RANDOM_TIMERIOMEM=m +CONFIG_HW_RANDOM_INTEL=m +CONFIG_HW_RANDOM_AMD=m +CONFIG_HW_RANDOM_VIA=y +CONFIG_HW_RANDOM_VIRTIO=m +CONFIG_HW_RANDOM_TPM=m +CONFIG_NVRAM=y +CONFIG_R3964=m +CONFIG_APPLICOM=m + +# +# PCMCIA character devices +# +CONFIG_SYNCLINK_CS=m +CONFIG_CARDMAN_4000=m +CONFIG_CARDMAN_4040=m +CONFIG_IPWIRELESS=m +# CONFIG_MWAVE is not set +CONFIG_RAW_DRIVER=m +CONFIG_MAX_RAW_DEVS=256 +CONFIG_HPET=y +# CONFIG_HPET_MMAP is not set +CONFIG_HANGCHECK_TIMER=m +CONFIG_TCG_TPM=m +CONFIG_TCG_TIS=m +CONFIG_TCG_TIS_I2C_INFINEON=m +CONFIG_TCG_NSC=m +CONFIG_TCG_ATMEL=m +CONFIG_TCG_INFINEON=m +# CONFIG_TELCLOCK is not set +CONFIG_DEVPORT=y +CONFIG_I2C=y +CONFIG_I2C_BOARDINFO=y +CONFIG_I2C_COMPAT=y +CONFIG_I2C_CHARDEV=m +CONFIG_I2C_MUX=m + +# +# Multiplexer I2C Chip support +# +CONFIG_I2C_MUX_PCA9541=m +CONFIG_I2C_MUX_PCA954x=m +CONFIG_I2C_HELPER_AUTO=y +CONFIG_I2C_SMBUS=m +CONFIG_I2C_ALGOBIT=y +CONFIG_I2C_ALGOPCA=m + +# +# I2C Hardware Bus support +# + +# +# PC SMBus host controller drivers +# +CONFIG_I2C_ALI1535=m +CONFIG_I2C_ALI1563=m +CONFIG_I2C_ALI15X3=m +CONFIG_I2C_AMD756=m +CONFIG_I2C_AMD756_S4882=m +CONFIG_I2C_AMD8111=m +CONFIG_I2C_I801=y +CONFIG_I2C_ISCH=m +# CONFIG_I2C_ISMT is not set +CONFIG_I2C_PIIX4=m +CONFIG_I2C_NFORCE2=m +CONFIG_I2C_NFORCE2_S4985=m +CONFIG_I2C_SIS5595=m +CONFIG_I2C_SIS630=m +CONFIG_I2C_SIS96X=m +CONFIG_I2C_VIA=m +CONFIG_I2C_VIAPRO=m + +# +# ACPI drivers +# +CONFIG_I2C_SCMI=m + +# +# I2C system bus drivers (mostly embedded / system-on-chip) +# +CONFIG_I2C_DESIGNWARE_CORE=m +CONFIG_I2C_DESIGNWARE_PCI=m +CONFIG_I2C_EG20T=m +CONFIG_I2C_INTEL_MID=m +CONFIG_I2C_OCORES=m +CONFIG_I2C_PCA_PLATFORM=m +# CONFIG_I2C_PXA_PCI is not set +CONFIG_I2C_SIMTEC=m +CONFIG_I2C_XILINX=m + +# +# External I2C/SMBus adapter drivers +# +CONFIG_I2C_DIOLAN_U2C=m +CONFIG_I2C_PARPORT=m +CONFIG_I2C_PARPORT_LIGHT=m +CONFIG_I2C_TAOS_EVM=m +CONFIG_I2C_TINY_USB=m +CONFIG_I2C_VIPERBOARD=m + +# +# Other I2C/SMBus bus drivers +# +CONFIG_I2C_STUB=m +# CONFIG_I2C_DEBUG_CORE is not set +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# CONFIG_SPI is not set + +# +# Qualcomm MSM SSBI bus support +# +# CONFIG_SSBI is not set +# CONFIG_HSI is not set + +# +# PPS support +# +CONFIG_PPS=y +# CONFIG_PPS_DEBUG is not set + +# +# PPS clients support +# +CONFIG_PPS_CLIENT_KTIMER=m +CONFIG_PPS_CLIENT_LDISC=m +CONFIG_PPS_CLIENT_PARPORT=m +CONFIG_PPS_CLIENT_GPIO=m + +# +# PPS generators support +# + +# +# PTP clock support +# +CONFIG_PTP_1588_CLOCK=y + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +CONFIG_PTP_1588_CLOCK_PCH=m +CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y +CONFIG_GPIO_DEVRES=y +# CONFIG_GPIOLIB is not set +CONFIG_W1=m +CONFIG_W1_CON=y + +# +# 1-wire Bus Masters +# +# CONFIG_W1_MASTER_MATROX is not set +# CONFIG_W1_MASTER_DS2490 is not set +# CONFIG_W1_MASTER_DS2482 is not set +# CONFIG_W1_MASTER_DS1WM is not set + +# +# 1-wire Slaves +# +# CONFIG_W1_SLAVE_THERM is not set +# CONFIG_W1_SLAVE_SMEM is not set +# CONFIG_W1_SLAVE_DS2408 is not set +# CONFIG_W1_SLAVE_DS2413 is not set +# CONFIG_W1_SLAVE_DS2423 is not set +# CONFIG_W1_SLAVE_DS2431 is not set +# CONFIG_W1_SLAVE_DS2433 is not set +# CONFIG_W1_SLAVE_DS2760 is not set +CONFIG_W1_SLAVE_DS2780=m +CONFIG_W1_SLAVE_DS2781=m +CONFIG_W1_SLAVE_DS28E04=m +# CONFIG_W1_SLAVE_BQ27000 is not set +CONFIG_POWER_SUPPLY=y +# CONFIG_POWER_SUPPLY_DEBUG is not set +CONFIG_PDA_POWER=m +# CONFIG_GENERIC_ADC_BATTERY is not set +# CONFIG_MAX8925_POWER is not set +# CONFIG_WM831X_BACKUP is not set +# CONFIG_WM831X_POWER is not set +# CONFIG_WM8350_POWER is not set +CONFIG_TEST_POWER=m +# CONFIG_BATTERY_88PM860X is not set +CONFIG_BATTERY_DS2780=m +CONFIG_BATTERY_DS2781=m +CONFIG_BATTERY_DS2782=m +CONFIG_BATTERY_SBS=m +CONFIG_BATTERY_BQ27x00=m +CONFIG_BATTERY_BQ27X00_I2C=y +CONFIG_BATTERY_BQ27X00_PLATFORM=y +# CONFIG_BATTERY_DA9030 is not set +# CONFIG_BATTERY_DA9052 is not set +CONFIG_BATTERY_MAX17040=m +CONFIG_BATTERY_MAX17042=m +# CONFIG_CHARGER_PCF50633 is not set +CONFIG_BATTERY_RX51=m +CONFIG_CHARGER_MAX8903=m +# CONFIG_CHARGER_TWL4030 is not set +CONFIG_CHARGER_LP8727=m +CONFIG_CHARGER_MANAGER=y +# CONFIG_CHARGER_MAX8997 is not set +# CONFIG_CHARGER_MAX8998 is not set +CONFIG_CHARGER_BQ2415X=m +# CONFIG_CHARGER_SMB347 is not set +# CONFIG_CHARGER_TPS65090 is not set +# CONFIG_BATTERY_GOLDFISH is not set +CONFIG_POWER_RESET=y +CONFIG_POWER_AVS=y +CONFIG_HWMON=y +CONFIG_HWMON_VID=m +# CONFIG_HWMON_DEBUG_CHIP is not set + +# +# Native drivers +# +CONFIG_SENSORS_ABITUGURU=m +CONFIG_SENSORS_ABITUGURU3=m +CONFIG_SENSORS_AD7414=m +CONFIG_SENSORS_AD7418=m +CONFIG_SENSORS_ADM1021=m +CONFIG_SENSORS_ADM1025=m +CONFIG_SENSORS_ADM1026=m +CONFIG_SENSORS_ADM1029=m +CONFIG_SENSORS_ADM1031=m +CONFIG_SENSORS_ADM9240=m +CONFIG_SENSORS_ADT7X10=m +CONFIG_SENSORS_ADT7410=m +CONFIG_SENSORS_ADT7411=m +CONFIG_SENSORS_ADT7462=m +CONFIG_SENSORS_ADT7470=m +CONFIG_SENSORS_ADT7475=m +CONFIG_SENSORS_ASC7621=m +CONFIG_SENSORS_K8TEMP=m +CONFIG_SENSORS_K10TEMP=m +CONFIG_SENSORS_FAM15H_POWER=m +CONFIG_SENSORS_ASB100=m +CONFIG_SENSORS_ATXP1=m +CONFIG_SENSORS_DS620=m +CONFIG_SENSORS_DS1621=m +CONFIG_SENSORS_DA9052_ADC=m +CONFIG_SENSORS_I5K_AMB=m +CONFIG_SENSORS_F71805F=m +CONFIG_SENSORS_F71882FG=m +CONFIG_SENSORS_F75375S=m +CONFIG_SENSORS_FSCHMD=m +CONFIG_SENSORS_G760A=m +CONFIG_SENSORS_GL518SM=m +CONFIG_SENSORS_GL520SM=m +CONFIG_SENSORS_HIH6130=m +CONFIG_SENSORS_CORETEMP=m +CONFIG_SENSORS_IBMAEM=m +CONFIG_SENSORS_IBMPEX=m +# CONFIG_SENSORS_IIO_HWMON is not set +CONFIG_SENSORS_IT87=m +CONFIG_SENSORS_JC42=m +CONFIG_SENSORS_LINEAGE=m +CONFIG_SENSORS_LM63=m +CONFIG_SENSORS_LM73=m +CONFIG_SENSORS_LM75=m +CONFIG_SENSORS_LM77=m +CONFIG_SENSORS_LM78=m +CONFIG_SENSORS_LM80=m +CONFIG_SENSORS_LM83=m +CONFIG_SENSORS_LM85=m +CONFIG_SENSORS_LM87=m +CONFIG_SENSORS_LM90=m +CONFIG_SENSORS_LM92=m +CONFIG_SENSORS_LM93=m +CONFIG_SENSORS_LTC4151=m +CONFIG_SENSORS_LTC4215=m +CONFIG_SENSORS_LTC4245=m +CONFIG_SENSORS_LTC4261=m +# CONFIG_SENSORS_LM95234 is not set +CONFIG_SENSORS_LM95241=m +CONFIG_SENSORS_LM95245=m +CONFIG_SENSORS_MAX16065=m +CONFIG_SENSORS_MAX1619=m +CONFIG_SENSORS_MAX1668=m +CONFIG_SENSORS_MAX197=m +CONFIG_SENSORS_MAX6639=m +CONFIG_SENSORS_MAX6642=m +CONFIG_SENSORS_MAX6650=m +# CONFIG_SENSORS_MAX6697 is not set +CONFIG_SENSORS_MCP3021=m +# CONFIG_SENSORS_NCT6775 is not set +CONFIG_SENSORS_NTC_THERMISTOR=m +CONFIG_SENSORS_PC87360=m +CONFIG_SENSORS_PC87427=m +CONFIG_SENSORS_PCF8591=m +CONFIG_PMBUS=m +CONFIG_SENSORS_PMBUS=m +CONFIG_SENSORS_ADM1275=m +CONFIG_SENSORS_LM25066=m +CONFIG_SENSORS_LTC2978=m +CONFIG_SENSORS_MAX16064=m +CONFIG_SENSORS_MAX34440=m +CONFIG_SENSORS_MAX8688=m +CONFIG_SENSORS_UCD9000=m +CONFIG_SENSORS_UCD9200=m +CONFIG_SENSORS_ZL6100=m +CONFIG_SENSORS_SHT21=m +CONFIG_SENSORS_SIS5595=m +CONFIG_SENSORS_SMM665=m +CONFIG_SENSORS_DME1737=m +CONFIG_SENSORS_EMC1403=m +CONFIG_SENSORS_EMC2103=m +CONFIG_SENSORS_EMC6W201=m +CONFIG_SENSORS_SMSC47M1=m +CONFIG_SENSORS_SMSC47M192=m +CONFIG_SENSORS_SMSC47B397=m +CONFIG_SENSORS_SCH56XX_COMMON=m +CONFIG_SENSORS_SCH5627=m +CONFIG_SENSORS_SCH5636=m +CONFIG_SENSORS_ADS1015=m +CONFIG_SENSORS_ADS7828=m +CONFIG_SENSORS_AMC6821=m +# CONFIG_SENSORS_INA209 is not set +CONFIG_SENSORS_INA2XX=m +CONFIG_SENSORS_THMC50=m +CONFIG_SENSORS_TMP102=m +CONFIG_SENSORS_TMP401=m +CONFIG_SENSORS_TMP421=m +# CONFIG_SENSORS_TWL4030_MADC is not set +CONFIG_SENSORS_VIA_CPUTEMP=m +CONFIG_SENSORS_VIA686A=m +CONFIG_SENSORS_VT1211=m +CONFIG_SENSORS_VT8231=m +CONFIG_SENSORS_W83781D=m +CONFIG_SENSORS_W83791D=m +CONFIG_SENSORS_W83792D=m +CONFIG_SENSORS_W83793=m +CONFIG_SENSORS_W83795=m +# CONFIG_SENSORS_W83795_FANCTRL is not set +CONFIG_SENSORS_W83L785TS=m +CONFIG_SENSORS_W83L786NG=m +CONFIG_SENSORS_W83627HF=m +CONFIG_SENSORS_W83627EHF=m +# CONFIG_SENSORS_WM831X is not set +# CONFIG_SENSORS_WM8350 is not set +CONFIG_SENSORS_APPLESMC=m +CONFIG_SENSORS_MC13783_ADC=m + +# +# ACPI drivers +# +CONFIG_SENSORS_ACPI_POWER=m +CONFIG_SENSORS_ATK0110=m +CONFIG_THERMAL=y +CONFIG_THERMAL_HWMON=y +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y +# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set +# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set +# CONFIG_THERMAL_GOV_FAIR_SHARE is not set +CONFIG_THERMAL_GOV_STEP_WISE=y +# CONFIG_THERMAL_GOV_USER_SPACE is not set +CONFIG_CPU_THERMAL=y +# CONFIG_THERMAL_EMULATION is not set +# CONFIG_INTEL_POWERCLAMP is not set +CONFIG_WATCHDOG=y +CONFIG_WATCHDOG_CORE=y +# CONFIG_WATCHDOG_NOWAYOUT is not set + +# +# Watchdog Device Drivers +# +CONFIG_SOFT_WATCHDOG=m +CONFIG_DA9052_WATCHDOG=m +# CONFIG_WM831X_WATCHDOG is not set +# CONFIG_WM8350_WATCHDOG is not set +# CONFIG_TWL4030_WATCHDOG is not set +# CONFIG_RETU_WATCHDOG is not set +CONFIG_ACQUIRE_WDT=m +CONFIG_ADVANTECH_WDT=m +CONFIG_ALIM1535_WDT=m +CONFIG_ALIM7101_WDT=m +CONFIG_F71808E_WDT=m +CONFIG_SP5100_TCO=m +CONFIG_SC520_WDT=m +CONFIG_SBC_FITPC2_WATCHDOG=m +CONFIG_EUROTECH_WDT=m +CONFIG_IB700_WDT=m +CONFIG_IBMASR=m +CONFIG_WAFER_WDT=m +CONFIG_I6300ESB_WDT=m +CONFIG_IE6XX_WDT=m +CONFIG_ITCO_WDT=m +CONFIG_ITCO_VENDOR_SUPPORT=y +CONFIG_IT8712F_WDT=m +CONFIG_IT87_WDT=m +CONFIG_HP_WATCHDOG=m +CONFIG_HPWDT_NMI_DECODING=y +CONFIG_SC1200_WDT=m +CONFIG_PC87413_WDT=m +CONFIG_NV_TCO=m +CONFIG_60XX_WDT=m +CONFIG_SBC8360_WDT=m +CONFIG_CPU5_WDT=m +CONFIG_SMSC_SCH311X_WDT=m +CONFIG_SMSC37B787_WDT=m +CONFIG_VIA_WDT=m +CONFIG_W83627HF_WDT=m +CONFIG_W83697HF_WDT=m +CONFIG_W83697UG_WDT=m +CONFIG_W83877F_WDT=m +CONFIG_W83977F_WDT=m +CONFIG_MACHZ_WDT=m +CONFIG_SBC_EPX_C3_WATCHDOG=m + +# +# PCI-based Watchdog Cards +# +CONFIG_PCIPCWATCHDOG=m +CONFIG_WDTPCI=m + +# +# USB-based Watchdog Cards +# +CONFIG_USBPCWATCHDOG=m +CONFIG_SSB_POSSIBLE=y + +# +# Sonics Silicon Backplane +# +CONFIG_SSB=m +CONFIG_SSB_SPROM=y +CONFIG_SSB_PCIHOST_POSSIBLE=y +CONFIG_SSB_PCIHOST=y +# CONFIG_SSB_B43_PCI_BRIDGE is not set +CONFIG_SSB_PCMCIAHOST_POSSIBLE=y +CONFIG_SSB_PCMCIAHOST=y +CONFIG_SSB_SDIOHOST_POSSIBLE=y +CONFIG_SSB_SDIOHOST=y +CONFIG_SSB_DEBUG=y +CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y +CONFIG_SSB_DRIVER_PCICORE=y +CONFIG_BCMA_POSSIBLE=y + +# +# Broadcom specific AMBA +# +# CONFIG_BCMA is not set + +# +# Multifunction device drivers +# +CONFIG_MFD_CORE=y +CONFIG_MFD_CS5535=m +CONFIG_MFD_AS3711=y +CONFIG_PMIC_ADP5520=y +# CONFIG_MFD_CROS_EC is not set +CONFIG_PMIC_DA903X=y +CONFIG_PMIC_DA9052=y +CONFIG_MFD_DA9052_I2C=y +# CONFIG_MFD_DA9055 is not set +CONFIG_MFD_MC13783=m +CONFIG_MFD_MC13XXX=m +CONFIG_MFD_MC13XXX_I2C=m +CONFIG_HTC_PASIC3=m +CONFIG_LPC_ICH=m +CONFIG_LPC_SCH=m +CONFIG_MFD_JANZ_CMODIO=m +CONFIG_MFD_88PM800=m +CONFIG_MFD_88PM805=m +CONFIG_MFD_88PM860X=y +CONFIG_MFD_MAX77686=y +# CONFIG_MFD_MAX77693 is not set +# CONFIG_MFD_MAX8907 is not set +CONFIG_MFD_MAX8925=y +CONFIG_MFD_MAX8997=y +CONFIG_MFD_MAX8998=y +CONFIG_MFD_VIPERBOARD=m +CONFIG_MFD_RETU=m +CONFIG_MFD_PCF50633=m +CONFIG_PCF50633_ADC=m +CONFIG_PCF50633_GPIO=m +CONFIG_MFD_RDC321X=m +CONFIG_MFD_RTSX_PCI=m +CONFIG_MFD_RC5T583=y +CONFIG_MFD_SEC_CORE=y +# CONFIG_MFD_SI476X_CORE is not set +CONFIG_MFD_SM501=m +# CONFIG_MFD_SMSC is not set +CONFIG_ABX500_CORE=y +CONFIG_AB3100_CORE=y +CONFIG_AB3100_OTP=m +CONFIG_MFD_STMPE=y + +# +# STMicroelectronics STMPE Interface Drivers +# +CONFIG_STMPE_I2C=y +# CONFIG_MFD_SYSCON is not set +CONFIG_MFD_TI_AM335X_TSCADC=m +# CONFIG_MFD_LP8788 is not set +CONFIG_MFD_PALMAS=y +CONFIG_TPS6105X=m +CONFIG_TPS6507X=m +CONFIG_MFD_TPS65090=y +CONFIG_MFD_TPS65217=m +CONFIG_MFD_TPS6586X=y +CONFIG_MFD_TPS80031=y +CONFIG_TWL4030_CORE=y +CONFIG_TWL4030_MADC=m +CONFIG_MFD_TWL4030_AUDIO=y +CONFIG_TWL6040_CORE=y +CONFIG_MFD_WL1273_CORE=m +CONFIG_MFD_LM3533=m +CONFIG_MFD_TC3589X=y +# CONFIG_MFD_TMIO is not set +CONFIG_MFD_VX855=m +CONFIG_MFD_ARIZONA=y +CONFIG_MFD_ARIZONA_I2C=m +CONFIG_MFD_WM5102=y +CONFIG_MFD_WM5110=y +CONFIG_MFD_WM8400=y +CONFIG_MFD_WM831X=y +CONFIG_MFD_WM831X_I2C=y +CONFIG_MFD_WM8350=y +CONFIG_MFD_WM8350_I2C=y +CONFIG_MFD_WM8994=y +CONFIG_REGULATOR=y +# CONFIG_REGULATOR_DEBUG is not set +# CONFIG_REGULATOR_DUMMY is not set +CONFIG_REGULATOR_FIXED_VOLTAGE=m +CONFIG_REGULATOR_VIRTUAL_CONSUMER=m +CONFIG_REGULATOR_USERSPACE_CONSUMER=m +CONFIG_REGULATOR_AD5398=m +CONFIG_REGULATOR_DA903X=m +CONFIG_REGULATOR_DA9052=m +CONFIG_REGULATOR_FAN53555=m +CONFIG_REGULATOR_MC13XXX_CORE=m +CONFIG_REGULATOR_MC13783=m +CONFIG_REGULATOR_MC13892=m +CONFIG_REGULATOR_ISL6271A=m +CONFIG_REGULATOR_88PM8607=y +CONFIG_REGULATOR_MAX1586=m +CONFIG_REGULATOR_MAX8649=m +CONFIG_REGULATOR_MAX8660=m +CONFIG_REGULATOR_MAX8925=m +CONFIG_REGULATOR_MAX8952=m +CONFIG_REGULATOR_MAX8973=m +CONFIG_REGULATOR_MAX8997=m +CONFIG_REGULATOR_MAX8998=m +CONFIG_REGULATOR_MAX77686=m +CONFIG_REGULATOR_LP3971=m +CONFIG_REGULATOR_LP3972=m +CONFIG_REGULATOR_LP872X=y +# CONFIG_REGULATOR_LP8755 is not set +CONFIG_REGULATOR_PCF50633=m +CONFIG_REGULATOR_RC5T583=m +CONFIG_REGULATOR_S2MPS11=m +CONFIG_REGULATOR_S5M8767=m +CONFIG_REGULATOR_AB3100=y +CONFIG_REGULATOR_PALMAS=m +CONFIG_REGULATOR_TPS51632=m +CONFIG_REGULATOR_TPS6105X=m +CONFIG_REGULATOR_TPS62360=m +CONFIG_REGULATOR_TPS65023=m +CONFIG_REGULATOR_TPS6507X=m +CONFIG_REGULATOR_TPS65090=m +CONFIG_REGULATOR_TPS65217=m +CONFIG_REGULATOR_TPS6586X=m +CONFIG_REGULATOR_TPS80031=m +CONFIG_REGULATOR_TWL4030=y +CONFIG_REGULATOR_WM831X=m +CONFIG_REGULATOR_WM8350=m +CONFIG_REGULATOR_WM8400=m +CONFIG_REGULATOR_WM8994=m +CONFIG_REGULATOR_AS3711=m +CONFIG_MEDIA_SUPPORT=y + +# +# Multimedia core support +# +CONFIG_MEDIA_CAMERA_SUPPORT=y +CONFIG_MEDIA_ANALOG_TV_SUPPORT=y +CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y +CONFIG_MEDIA_RADIO_SUPPORT=y +CONFIG_MEDIA_RC_SUPPORT=y +# CONFIG_MEDIA_CONTROLLER is not set +CONFIG_VIDEO_DEV=y +CONFIG_VIDEO_V4L2=y +# CONFIG_VIDEO_ADV_DEBUG is not set +# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set +CONFIG_VIDEO_TUNER=m +CONFIG_V4L2_MEM2MEM_DEV=m +CONFIG_VIDEOBUF_GEN=m +CONFIG_VIDEOBUF_DMA_SG=m +CONFIG_VIDEOBUF_VMALLOC=m +CONFIG_VIDEOBUF_DMA_CONTIG=m +CONFIG_VIDEOBUF_DVB=m +CONFIG_VIDEOBUF2_CORE=m +CONFIG_VIDEOBUF2_MEMOPS=m +CONFIG_VIDEOBUF2_DMA_CONTIG=m +CONFIG_VIDEOBUF2_VMALLOC=m +# CONFIG_VIDEO_V4L2_INT_DEVICE is not set +CONFIG_DVB_CORE=y +CONFIG_DVB_NET=y +CONFIG_TTPCI_EEPROM=m +CONFIG_DVB_MAX_ADAPTERS=8 +# CONFIG_DVB_DYNAMIC_MINORS is not set + +# +# Media drivers +# +CONFIG_RC_CORE=y +CONFIG_RC_MAP=y +CONFIG_RC_DECODERS=y +CONFIG_LIRC=y +CONFIG_IR_LIRC_CODEC=y +CONFIG_IR_NEC_DECODER=y +CONFIG_IR_RC5_DECODER=y +CONFIG_IR_RC6_DECODER=y +CONFIG_IR_JVC_DECODER=y +CONFIG_IR_SONY_DECODER=y +CONFIG_IR_RC5_SZ_DECODER=y +CONFIG_IR_SANYO_DECODER=y +CONFIG_IR_MCE_KBD_DECODER=y +CONFIG_RC_DEVICES=y +CONFIG_RC_ATI_REMOTE=m +CONFIG_IR_ENE=m +CONFIG_IR_IMON=m +CONFIG_IR_MCEUSB=m +CONFIG_IR_ITE_CIR=m +CONFIG_IR_FINTEK=m +CONFIG_IR_NUVOTON=m +CONFIG_IR_REDRAT3=m +CONFIG_IR_STREAMZAP=m +CONFIG_IR_WINBOND_CIR=m +CONFIG_IR_IGUANA=m +CONFIG_IR_TTUSBIR=m +CONFIG_RC_LOOPBACK=m +CONFIG_IR_GPIO_CIR=m +CONFIG_MEDIA_USB_SUPPORT=y + +# +# Webcam devices +# +CONFIG_USB_VIDEO_CLASS=m +CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y +CONFIG_USB_GSPCA=m +CONFIG_USB_M5602=m +CONFIG_USB_STV06XX=m +CONFIG_USB_GL860=m +CONFIG_USB_GSPCA_BENQ=m +CONFIG_USB_GSPCA_CONEX=m +CONFIG_USB_GSPCA_CPIA1=m +CONFIG_USB_GSPCA_ETOMS=m +CONFIG_USB_GSPCA_FINEPIX=m +CONFIG_USB_GSPCA_JEILINJ=m +CONFIG_USB_GSPCA_JL2005BCD=m +CONFIG_USB_GSPCA_KINECT=m +CONFIG_USB_GSPCA_KONICA=m +CONFIG_USB_GSPCA_MARS=m +CONFIG_USB_GSPCA_MR97310A=m +CONFIG_USB_GSPCA_NW80X=m +CONFIG_USB_GSPCA_OV519=m +CONFIG_USB_GSPCA_OV534=m +CONFIG_USB_GSPCA_OV534_9=m +CONFIG_USB_GSPCA_PAC207=m +CONFIG_USB_GSPCA_PAC7302=m +CONFIG_USB_GSPCA_PAC7311=m +CONFIG_USB_GSPCA_SE401=m +CONFIG_USB_GSPCA_SN9C2028=m +CONFIG_USB_GSPCA_SN9C20X=m +CONFIG_USB_GSPCA_SONIXB=m +CONFIG_USB_GSPCA_SONIXJ=m +CONFIG_USB_GSPCA_SPCA500=m +CONFIG_USB_GSPCA_SPCA501=m +CONFIG_USB_GSPCA_SPCA505=m +CONFIG_USB_GSPCA_SPCA506=m +CONFIG_USB_GSPCA_SPCA508=m +CONFIG_USB_GSPCA_SPCA561=m +CONFIG_USB_GSPCA_SPCA1528=m +CONFIG_USB_GSPCA_SQ905=m +CONFIG_USB_GSPCA_SQ905C=m +CONFIG_USB_GSPCA_SQ930X=m +CONFIG_USB_GSPCA_STK014=m +CONFIG_USB_GSPCA_STV0680=m +CONFIG_USB_GSPCA_SUNPLUS=m +CONFIG_USB_GSPCA_T613=m +CONFIG_USB_GSPCA_TOPRO=m +CONFIG_USB_GSPCA_TV8532=m +CONFIG_USB_GSPCA_VC032X=m +CONFIG_USB_GSPCA_VICAM=m +CONFIG_USB_GSPCA_XIRLINK_CIT=m +CONFIG_USB_GSPCA_ZC3XX=m +CONFIG_USB_PWC=m +# CONFIG_USB_PWC_DEBUG is not set +CONFIG_USB_PWC_INPUT_EVDEV=y +CONFIG_VIDEO_CPIA2=m +CONFIG_USB_ZR364XX=m +CONFIG_USB_STKWEBCAM=m +CONFIG_USB_S2255=m +CONFIG_USB_SN9C102=m + +# +# Analog TV USB devices +# +CONFIG_VIDEO_PVRUSB2=m +CONFIG_VIDEO_PVRUSB2_SYSFS=y +CONFIG_VIDEO_PVRUSB2_DVB=y +# CONFIG_VIDEO_PVRUSB2_DEBUGIFC is not set +CONFIG_VIDEO_HDPVR=m +CONFIG_VIDEO_TLG2300=m +CONFIG_VIDEO_USBVISION=m +CONFIG_VIDEO_STK1160=m +CONFIG_VIDEO_STK1160_AC97=y + +# +# Analog/digital TV USB devices +# +CONFIG_VIDEO_AU0828=m +CONFIG_VIDEO_AU0828_V4L2=y +CONFIG_VIDEO_CX231XX=m +CONFIG_VIDEO_CX231XX_RC=y +CONFIG_VIDEO_CX231XX_ALSA=m +CONFIG_VIDEO_CX231XX_DVB=m +CONFIG_VIDEO_TM6000=m +CONFIG_VIDEO_TM6000_ALSA=m +CONFIG_VIDEO_TM6000_DVB=m + +# +# Digital TV USB devices +# +CONFIG_DVB_USB=m +# CONFIG_DVB_USB_DEBUG is not set +# CONFIG_DVB_USB_A800 is not set +CONFIG_DVB_USB_DIBUSB_MB=m +CONFIG_DVB_USB_DIBUSB_MB_FAULTY=y +CONFIG_DVB_USB_DIBUSB_MC=m +CONFIG_DVB_USB_DIB0700=m +CONFIG_DVB_USB_UMT_010=m +CONFIG_DVB_USB_CXUSB=m +CONFIG_DVB_USB_M920X=m +CONFIG_DVB_USB_DIGITV=m +CONFIG_DVB_USB_VP7045=m +CONFIG_DVB_USB_VP702X=m +CONFIG_DVB_USB_GP8PSK=m +CONFIG_DVB_USB_NOVA_T_USB2=m +CONFIG_DVB_USB_TTUSB2=m +CONFIG_DVB_USB_DTT200U=m +CONFIG_DVB_USB_OPERA1=m +CONFIG_DVB_USB_AF9005=m +CONFIG_DVB_USB_AF9005_REMOTE=m +CONFIG_DVB_USB_PCTV452E=m +CONFIG_DVB_USB_DW2102=m +CONFIG_DVB_USB_CINERGY_T2=m +CONFIG_DVB_USB_DTV5100=m +CONFIG_DVB_USB_FRIIO=m +CONFIG_DVB_USB_AZ6027=m +CONFIG_DVB_USB_TECHNISAT_USB2=m +CONFIG_DVB_USB_V2=m +CONFIG_DVB_USB_AF9015=m +CONFIG_DVB_USB_AF9035=m +CONFIG_DVB_USB_ANYSEE=m +CONFIG_DVB_USB_AU6610=m +CONFIG_DVB_USB_AZ6007=m +CONFIG_DVB_USB_CE6230=m +CONFIG_DVB_USB_EC168=m +CONFIG_DVB_USB_GL861=m +CONFIG_DVB_USB_IT913X=m +CONFIG_DVB_USB_LME2510=m +CONFIG_DVB_USB_MXL111SF=m +CONFIG_DVB_USB_RTL28XXU=m +CONFIG_DVB_TTUSB_BUDGET=m +CONFIG_DVB_TTUSB_DEC=m +CONFIG_SMS_USB_DRV=m +CONFIG_DVB_B2C2_FLEXCOP_USB=m +# CONFIG_DVB_B2C2_FLEXCOP_USB_DEBUG is not set + +# +# Webcam, TV (analog/digital) USB devices +# +CONFIG_VIDEO_EM28XX=m +CONFIG_VIDEO_EM28XX_ALSA=m +CONFIG_VIDEO_EM28XX_DVB=m +CONFIG_VIDEO_EM28XX_RC=m +CONFIG_MEDIA_PCI_SUPPORT=y + +# +# Media capture support +# + +# +# Media capture/analog TV support +# +CONFIG_VIDEO_IVTV=m +CONFIG_VIDEO_IVTV_ALSA=m +CONFIG_VIDEO_FB_IVTV=m +CONFIG_VIDEO_ZORAN=m +CONFIG_VIDEO_ZORAN_DC30=m +CONFIG_VIDEO_ZORAN_ZR36060=m +CONFIG_VIDEO_ZORAN_BUZ=m +CONFIG_VIDEO_ZORAN_DC10=m +CONFIG_VIDEO_ZORAN_LML33=m +CONFIG_VIDEO_ZORAN_LML33R10=m +CONFIG_VIDEO_ZORAN_AVS6EYES=m +CONFIG_VIDEO_HEXIUM_GEMINI=m +CONFIG_VIDEO_HEXIUM_ORION=m +CONFIG_VIDEO_MXB=m + +# +# Media capture/analog/hybrid TV support +# +CONFIG_VIDEO_CX18=m +CONFIG_VIDEO_CX18_ALSA=m +CONFIG_VIDEO_CX23885=m +CONFIG_MEDIA_ALTERA_CI=m +CONFIG_VIDEO_CX25821=m +CONFIG_VIDEO_CX25821_ALSA=m +CONFIG_VIDEO_CX88=m +CONFIG_VIDEO_CX88_ALSA=m +CONFIG_VIDEO_CX88_BLACKBIRD=m +CONFIG_VIDEO_CX88_DVB=m +CONFIG_VIDEO_CX88_VP3054=m +CONFIG_VIDEO_CX88_MPEG=m +CONFIG_VIDEO_BT848=m +CONFIG_DVB_BT8XX=m +CONFIG_VIDEO_SAA7134=m +CONFIG_VIDEO_SAA7134_ALSA=m +CONFIG_VIDEO_SAA7134_RC=y +CONFIG_VIDEO_SAA7134_DVB=m +CONFIG_VIDEO_SAA7164=m + +# +# Media digital TV PCI Adapters +# +CONFIG_DVB_AV7110=m +CONFIG_DVB_AV7110_OSD=y +CONFIG_DVB_BUDGET_CORE=m +CONFIG_DVB_BUDGET=m +CONFIG_DVB_BUDGET_CI=m +CONFIG_DVB_BUDGET_AV=m +CONFIG_DVB_BUDGET_PATCH=m +CONFIG_DVB_B2C2_FLEXCOP_PCI=m +# CONFIG_DVB_B2C2_FLEXCOP_PCI_DEBUG is not set +CONFIG_DVB_PLUTO2=m +CONFIG_DVB_DM1105=m +CONFIG_DVB_PT1=m +CONFIG_MANTIS_CORE=m +CONFIG_DVB_MANTIS=m +CONFIG_DVB_HOPPER=m +CONFIG_DVB_NGENE=m +CONFIG_DVB_DDBRIDGE=m +CONFIG_V4L_PLATFORM_DRIVERS=y +CONFIG_VIDEO_CAFE_CCIC=m +CONFIG_VIDEO_TIMBERDALE=m +CONFIG_SOC_CAMERA=m +CONFIG_SOC_CAMERA_PLATFORM=m +# CONFIG_V4L_MEM2MEM_DRIVERS is not set +CONFIG_V4L_TEST_DRIVERS=y +CONFIG_VIDEO_VIVI=m +CONFIG_VIDEO_MEM2MEM_TESTDEV=m + +# +# Supported MMC/SDIO adapters +# +CONFIG_SMS_SDIO_DRV=m +CONFIG_MEDIA_PARPORT_SUPPORT=y +CONFIG_VIDEO_BWQCAM=m +CONFIG_VIDEO_CQCAM=m +CONFIG_VIDEO_W9966=m +CONFIG_RADIO_ADAPTERS=y +CONFIG_RADIO_SI470X=y +CONFIG_USB_SI470X=m +CONFIG_I2C_SI470X=m +CONFIG_USB_MR800=m +CONFIG_USB_DSBR=m +CONFIG_RADIO_MAXIRADIO=m +CONFIG_RADIO_SHARK=m +CONFIG_RADIO_SHARK2=m +CONFIG_I2C_SI4713=m +CONFIG_RADIO_SI4713=m +CONFIG_USB_KEENE=m +# CONFIG_USB_MA901 is not set +CONFIG_RADIO_TEA5764=m +CONFIG_RADIO_SAA7706H=m +CONFIG_RADIO_TEF6862=m +CONFIG_RADIO_WL1273=m + +# +# Texas Instruments WL128x FM driver (ST based) +# +CONFIG_MEDIA_COMMON_OPTIONS=y + +# +# common driver options +# +CONFIG_VIDEO_CX2341X=m +CONFIG_VIDEO_BTCX=m +CONFIG_VIDEO_TVEEPROM=m +CONFIG_CYPRESS_FIRMWARE=m +CONFIG_DVB_B2C2_FLEXCOP=m +CONFIG_VIDEO_SAA7146=m +CONFIG_VIDEO_SAA7146_VV=m +CONFIG_SMS_SIANO_MDTV=m +CONFIG_SMS_SIANO_RC=y +# CONFIG_SMS_SIANO_DEBUGFS is not set + +# +# Media ancillary drivers (tuners, sensors, i2c, frontends) +# +CONFIG_MEDIA_SUBDRV_AUTOSELECT=y +CONFIG_MEDIA_ATTACH=y +CONFIG_VIDEO_IR_I2C=y + +# +# Audio decoders, processors and mixers +# +CONFIG_VIDEO_TVAUDIO=m +CONFIG_VIDEO_TDA7432=m +CONFIG_VIDEO_TDA9840=m +CONFIG_VIDEO_TEA6415C=m +CONFIG_VIDEO_TEA6420=m +CONFIG_VIDEO_MSP3400=m +CONFIG_VIDEO_CS5345=m +CONFIG_VIDEO_CS53L32A=m +CONFIG_VIDEO_WM8775=m +CONFIG_VIDEO_WM8739=m +CONFIG_VIDEO_VP27SMPX=m + +# +# RDS decoders +# +CONFIG_VIDEO_SAA6588=m + +# +# Video decoders +# +CONFIG_VIDEO_ADV7180=m +CONFIG_VIDEO_BT819=m +CONFIG_VIDEO_BT856=m +CONFIG_VIDEO_BT866=m +CONFIG_VIDEO_KS0127=m +CONFIG_VIDEO_SAA7110=m +CONFIG_VIDEO_SAA711X=m +CONFIG_VIDEO_TVP5150=m +CONFIG_VIDEO_VPX3220=m + +# +# Video and audio decoders +# +CONFIG_VIDEO_SAA717X=m +CONFIG_VIDEO_CX25840=m + +# +# Video encoders +# +CONFIG_VIDEO_SAA7127=m +CONFIG_VIDEO_SAA7185=m +CONFIG_VIDEO_ADV7170=m +CONFIG_VIDEO_ADV7175=m + +# +# Camera sensor devices +# +CONFIG_VIDEO_OV7670=m +CONFIG_VIDEO_MT9V011=m + +# +# Flash devices +# + +# +# Video improvement chips +# +CONFIG_VIDEO_UPD64031A=m +CONFIG_VIDEO_UPD64083=m + +# +# Miscelaneous helper chips +# +CONFIG_VIDEO_M52790=m + +# +# Sensors used on soc_camera driver +# + +# +# soc_camera sensor drivers +# +CONFIG_SOC_CAMERA_IMX074=m +CONFIG_SOC_CAMERA_MT9M001=m +CONFIG_SOC_CAMERA_MT9M111=m +CONFIG_SOC_CAMERA_MT9T031=m +CONFIG_SOC_CAMERA_MT9T112=m +CONFIG_SOC_CAMERA_MT9V022=m +CONFIG_SOC_CAMERA_OV2640=m +CONFIG_SOC_CAMERA_OV5642=m +CONFIG_SOC_CAMERA_OV6650=m +CONFIG_SOC_CAMERA_OV772X=m +CONFIG_SOC_CAMERA_OV9640=m +CONFIG_SOC_CAMERA_OV9740=m +CONFIG_SOC_CAMERA_RJ54N1=m +CONFIG_SOC_CAMERA_TW9910=m +CONFIG_MEDIA_TUNER=y +CONFIG_MEDIA_TUNER_SIMPLE=y +CONFIG_MEDIA_TUNER_TDA8290=y +CONFIG_MEDIA_TUNER_TDA827X=y +CONFIG_MEDIA_TUNER_TDA18271=y +CONFIG_MEDIA_TUNER_TDA9887=y +CONFIG_MEDIA_TUNER_TEA5761=y +CONFIG_MEDIA_TUNER_TEA5767=y +CONFIG_MEDIA_TUNER_MT20XX=y +CONFIG_MEDIA_TUNER_MT2060=m +CONFIG_MEDIA_TUNER_MT2063=m +CONFIG_MEDIA_TUNER_MT2266=m +CONFIG_MEDIA_TUNER_MT2131=m +CONFIG_MEDIA_TUNER_QT1010=m +CONFIG_MEDIA_TUNER_XC2028=y +CONFIG_MEDIA_TUNER_XC5000=y +CONFIG_MEDIA_TUNER_XC4000=y +CONFIG_MEDIA_TUNER_MXL5005S=m +CONFIG_MEDIA_TUNER_MXL5007T=m +CONFIG_MEDIA_TUNER_MC44S803=y +CONFIG_MEDIA_TUNER_MAX2165=m +CONFIG_MEDIA_TUNER_TDA18218=m +CONFIG_MEDIA_TUNER_FC0011=m +CONFIG_MEDIA_TUNER_FC0012=m +CONFIG_MEDIA_TUNER_FC0013=m +CONFIG_MEDIA_TUNER_TDA18212=m +CONFIG_MEDIA_TUNER_E4000=m +CONFIG_MEDIA_TUNER_FC2580=m +CONFIG_MEDIA_TUNER_TUA9001=m +CONFIG_MEDIA_TUNER_IT913X=m +CONFIG_MEDIA_TUNER_R820T=m + +# +# Multistandard (satellite) frontends +# +CONFIG_DVB_STB0899=m +CONFIG_DVB_STB6100=m +CONFIG_DVB_STV090x=m +CONFIG_DVB_STV6110x=m + +# +# Multistandard (cable + terrestrial) frontends +# +CONFIG_DVB_DRXK=m +CONFIG_DVB_TDA18271C2DD=m + +# +# DVB-S (satellite) frontends +# +CONFIG_DVB_CX24110=m +CONFIG_DVB_CX24123=m +CONFIG_DVB_MT312=m +CONFIG_DVB_ZL10036=m +CONFIG_DVB_ZL10039=m +CONFIG_DVB_S5H1420=m +CONFIG_DVB_STV0288=m +CONFIG_DVB_STB6000=m +CONFIG_DVB_STV0299=m +CONFIG_DVB_STV6110=m +CONFIG_DVB_STV0900=m +CONFIG_DVB_TDA8083=m +CONFIG_DVB_TDA10086=m +CONFIG_DVB_TDA8261=m +CONFIG_DVB_VES1X93=m +CONFIG_DVB_TUNER_ITD1000=m +CONFIG_DVB_TUNER_CX24113=m +CONFIG_DVB_TDA826X=m +CONFIG_DVB_TUA6100=m +CONFIG_DVB_CX24116=m +CONFIG_DVB_SI21XX=m +CONFIG_DVB_TS2020=m +CONFIG_DVB_DS3000=m +CONFIG_DVB_MB86A16=m +CONFIG_DVB_TDA10071=m + +# +# DVB-T (terrestrial) frontends +# +CONFIG_DVB_SP8870=m +CONFIG_DVB_SP887X=m +CONFIG_DVB_CX22700=m +CONFIG_DVB_CX22702=m +CONFIG_DVB_DRXD=m +CONFIG_DVB_L64781=m +CONFIG_DVB_TDA1004X=m +CONFIG_DVB_NXT6000=m +CONFIG_DVB_MT352=m +CONFIG_DVB_ZL10353=m +CONFIG_DVB_DIB3000MB=m +CONFIG_DVB_DIB3000MC=m +CONFIG_DVB_DIB7000M=m +CONFIG_DVB_DIB7000P=m +CONFIG_DVB_TDA10048=m +CONFIG_DVB_AF9013=m +CONFIG_DVB_EC100=m +CONFIG_DVB_STV0367=m +CONFIG_DVB_CXD2820R=m +CONFIG_DVB_RTL2830=m +CONFIG_DVB_RTL2832=m + +# +# DVB-C (cable) frontends +# +CONFIG_DVB_VES1820=m +CONFIG_DVB_TDA10021=m +CONFIG_DVB_TDA10023=m +CONFIG_DVB_STV0297=m + +# +# ATSC (North American/Korean Terrestrial/Cable DTV) frontends +# +CONFIG_DVB_NXT200X=m +CONFIG_DVB_OR51211=m +CONFIG_DVB_OR51132=m +CONFIG_DVB_BCM3510=m +CONFIG_DVB_LGDT330X=m +CONFIG_DVB_LGDT3305=m +CONFIG_DVB_LG2160=m +CONFIG_DVB_S5H1409=m +CONFIG_DVB_AU8522=m +CONFIG_DVB_AU8522_DTV=m +CONFIG_DVB_AU8522_V4L=m +CONFIG_DVB_S5H1411=m + +# +# ISDB-T (terrestrial) frontends +# +CONFIG_DVB_S921=m +CONFIG_DVB_DIB8000=m +CONFIG_DVB_MB86A20S=m + +# +# Digital terrestrial only tuners/PLL +# +CONFIG_DVB_PLL=m +CONFIG_DVB_TUNER_DIB0070=m +CONFIG_DVB_TUNER_DIB0090=m + +# +# SEC control devices for DVB-S +# +CONFIG_DVB_LNBP21=m +CONFIG_DVB_LNBP22=m +CONFIG_DVB_ISL6405=m +CONFIG_DVB_ISL6421=m +CONFIG_DVB_ISL6423=m +CONFIG_DVB_A8293=m +CONFIG_DVB_LGS8GXX=m +CONFIG_DVB_ATBM8830=m +CONFIG_DVB_TDA665x=m +CONFIG_DVB_IX2505V=m +CONFIG_DVB_IT913X_FE=m +CONFIG_DVB_M88RS2000=m +CONFIG_DVB_AF9033=m + +# +# Tools to develop new frontends +# +# CONFIG_DVB_DUMMY_FE is not set + +# +# Graphics support +# +CONFIG_AGP=y +CONFIG_AGP_AMD64=y +CONFIG_AGP_INTEL=m +# CONFIG_AGP_SIS is not set +# CONFIG_AGP_VIA is not set +CONFIG_VGA_ARB=y +CONFIG_VGA_ARB_MAX_GPUS=16 +# CONFIG_VGA_SWITCHEROO is not set +CONFIG_DRM=y +CONFIG_DRM_USB=m +CONFIG_DRM_KMS_HELPER=y +# CONFIG_DRM_LOAD_EDID_FIRMWARE is not set +CONFIG_DRM_TTM=y + +# +# I2C encoder or helper chips +# +# CONFIG_DRM_I2C_CH7006 is not set +# CONFIG_DRM_I2C_SIL164 is not set +# CONFIG_DRM_I2C_NXP_TDA998X is not set +# CONFIG_DRM_TDFX is not set +# CONFIG_DRM_R128 is not set +CONFIG_DRM_RADEON=y +# CONFIG_DRM_RADEON_UMS is not set +# CONFIG_DRM_NOUVEAU is not set +# CONFIG_DRM_I810 is not set +CONFIG_DRM_I915=m +CONFIG_DRM_I915_KMS=y +# CONFIG_DRM_MGA is not set +# CONFIG_DRM_SIS is not set +# CONFIG_DRM_VIA is not set +# CONFIG_DRM_SAVAGE is not set +# CONFIG_DRM_VMWGFX is not set +# CONFIG_DRM_GMA500 is not set +CONFIG_DRM_UDL=m +CONFIG_DRM_AST=m +CONFIG_DRM_MGAG200=m +CONFIG_DRM_CIRRUS_QEMU=m +# CONFIG_DRM_QXL is not set +# CONFIG_VGASTATE is not set +CONFIG_VIDEO_OUTPUT_CONTROL=m +CONFIG_HDMI=y +CONFIG_FB=y +# CONFIG_FIRMWARE_EDID is not set +# CONFIG_FB_DDC is not set +# CONFIG_FB_BOOT_VESA_SUPPORT is not set +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_IMAGEBLIT=y +# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set +CONFIG_FB_SYS_FILLRECT=m +CONFIG_FB_SYS_COPYAREA=m +CONFIG_FB_SYS_IMAGEBLIT=m +# CONFIG_FB_FOREIGN_ENDIAN is not set +CONFIG_FB_SYS_FOPS=m +CONFIG_FB_DEFERRED_IO=y +# CONFIG_FB_SVGALIB is not set +# CONFIG_FB_MACMODES is not set +# CONFIG_FB_BACKLIGHT is not set +CONFIG_FB_MODE_HELPERS=y +CONFIG_FB_TILEBLITTING=y + +# +# Frame buffer hardware drivers +# +# CONFIG_FB_CIRRUS is not set +# CONFIG_FB_PM2 is not set +# CONFIG_FB_CYBER2000 is not set +# CONFIG_FB_ARC is not set +# CONFIG_FB_ASILIANT is not set +# CONFIG_FB_IMSTT is not set +# CONFIG_FB_VGA16 is not set +# CONFIG_FB_UVESA is not set +# CONFIG_FB_VESA is not set +# CONFIG_FB_EFI is not set +# CONFIG_FB_N411 is not set +# CONFIG_FB_HGA is not set +# CONFIG_FB_S1D13XXX is not set +# CONFIG_FB_NVIDIA is not set +# CONFIG_FB_RIVA is not set +# CONFIG_FB_I740 is not set +# CONFIG_FB_LE80578 is not set +# CONFIG_FB_MATROX is not set +# CONFIG_FB_RADEON is not set +# CONFIG_FB_ATY128 is not set +# CONFIG_FB_ATY is not set +# CONFIG_FB_S3 is not set +# CONFIG_FB_SAVAGE is not set +# CONFIG_FB_SIS is not set +# CONFIG_FB_VIA is not set +# CONFIG_FB_NEOMAGIC is not set +# CONFIG_FB_KYRO is not set +# CONFIG_FB_3DFX is not set +# CONFIG_FB_VOODOO1 is not set +# CONFIG_FB_VT8623 is not set +# CONFIG_FB_TRIDENT is not set +# CONFIG_FB_ARK is not set +# CONFIG_FB_PM3 is not set +# CONFIG_FB_CARMINE is not set +# CONFIG_FB_GEODE is not set +# CONFIG_FB_TMIO is not set +# CONFIG_FB_SM501 is not set +# CONFIG_FB_SMSCUFX is not set +# CONFIG_FB_UDL is not set +# CONFIG_FB_GOLDFISH is not set +# CONFIG_FB_VIRTUAL is not set +# CONFIG_FB_METRONOME is not set +# CONFIG_FB_MB862XX is not set +# CONFIG_FB_BROADSHEET is not set +CONFIG_FB_AUO_K190X=m +CONFIG_FB_AUO_K1900=m +CONFIG_FB_AUO_K1901=m +# CONFIG_EXYNOS_VIDEO is not set +CONFIG_BACKLIGHT_LCD_SUPPORT=y +# CONFIG_LCD_CLASS_DEVICE is not set +CONFIG_BACKLIGHT_CLASS_DEVICE=y +CONFIG_BACKLIGHT_GENERIC=y +CONFIG_BACKLIGHT_LM3533=m +CONFIG_BACKLIGHT_PWM=m +# CONFIG_BACKLIGHT_DA903X is not set +CONFIG_BACKLIGHT_DA9052=m +# CONFIG_BACKLIGHT_MAX8925 is not set +# CONFIG_BACKLIGHT_APPLE is not set +# CONFIG_BACKLIGHT_SAHARA is not set +# CONFIG_BACKLIGHT_WM831X is not set +# CONFIG_BACKLIGHT_ADP5520 is not set +# CONFIG_BACKLIGHT_ADP8860 is not set +# CONFIG_BACKLIGHT_ADP8870 is not set +# CONFIG_BACKLIGHT_88PM860X is not set +# CONFIG_BACKLIGHT_PCF50633 is not set +CONFIG_BACKLIGHT_LM3630=m +CONFIG_BACKLIGHT_LM3639=m +CONFIG_BACKLIGHT_LP855X=m +CONFIG_BACKLIGHT_PANDORA=m +CONFIG_BACKLIGHT_TPS65217=m +# CONFIG_BACKLIGHT_AS3711 is not set + +# +# Console display driver support +# +CONFIG_VGA_CONSOLE=y +CONFIG_VGACON_SOFT_SCROLLBACK=y +CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64 +CONFIG_DUMMY_CONSOLE=y +CONFIG_FRAMEBUFFER_CONSOLE=y +CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y +# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set +# CONFIG_FONTS is not set +CONFIG_FONT_8x8=y +CONFIG_FONT_8x16=y +CONFIG_LOGO=y +# CONFIG_LOGO_LINUX_MONO is not set +# CONFIG_LOGO_LINUX_VGA16 is not set +CONFIG_LOGO_LINUX_CLUT224=y +CONFIG_SOUND=y +CONFIG_SOUND_OSS_CORE=y +CONFIG_SOUND_OSS_CORE_PRECLAIM=y +CONFIG_SND=y +CONFIG_SND_TIMER=y +CONFIG_SND_PCM=y +CONFIG_SND_HWDEP=y +CONFIG_SND_RAWMIDI=m +CONFIG_SND_JACK=y +CONFIG_SND_SEQUENCER=y +CONFIG_SND_SEQ_DUMMY=y +CONFIG_SND_OSSEMUL=y +CONFIG_SND_MIXER_OSS=y +CONFIG_SND_PCM_OSS=y +CONFIG_SND_PCM_OSS_PLUGINS=y +CONFIG_SND_SEQUENCER_OSS=y +CONFIG_SND_HRTIMER=y +CONFIG_SND_SEQ_HRTIMER_DEFAULT=y +CONFIG_SND_DYNAMIC_MINORS=y +CONFIG_SND_SUPPORT_OLD_API=y +CONFIG_SND_VERBOSE_PROCFS=y +# CONFIG_SND_VERBOSE_PRINTK is not set +# CONFIG_SND_DEBUG is not set +CONFIG_SND_VMASTER=y +CONFIG_SND_KCTL_JACK=y +CONFIG_SND_DMA_SGBUF=y +CONFIG_SND_RAWMIDI_SEQ=m +CONFIG_SND_OPL3_LIB_SEQ=m +# CONFIG_SND_OPL4_LIB_SEQ is not set +# CONFIG_SND_SBAWE_SEQ is not set +CONFIG_SND_EMU10K1_SEQ=m +CONFIG_SND_MPU401_UART=m +CONFIG_SND_OPL3_LIB=m +CONFIG_SND_VX_LIB=m +CONFIG_SND_AC97_CODEC=y +CONFIG_SND_DRIVERS=y +CONFIG_SND_PCSP=m +CONFIG_SND_DUMMY=m +CONFIG_SND_ALOOP=m +CONFIG_SND_VIRMIDI=m +CONFIG_SND_MTPAV=m +CONFIG_SND_MTS64=m +CONFIG_SND_SERIAL_U16550=m +CONFIG_SND_MPU401=m +CONFIG_SND_PORTMAN2X4=m +# CONFIG_SND_AC97_POWER_SAVE is not set +CONFIG_SND_SB_COMMON=m +CONFIG_SND_SB16_DSP=m +CONFIG_SND_TEA575X=m +CONFIG_SND_PCI=y +CONFIG_SND_AD1889=m +CONFIG_SND_ALS300=m +CONFIG_SND_ALS4000=m +CONFIG_SND_ALI5451=m +CONFIG_SND_ASIHPI=m +CONFIG_SND_ATIIXP=y +CONFIG_SND_ATIIXP_MODEM=y +CONFIG_SND_AU8810=m +CONFIG_SND_AU8820=m +CONFIG_SND_AU8830=m +CONFIG_SND_AW2=m +CONFIG_SND_AZT3328=m +CONFIG_SND_BT87X=m +# CONFIG_SND_BT87X_OVERCLOCK is not set +CONFIG_SND_CA0106=m +CONFIG_SND_CMIPCI=m +CONFIG_SND_OXYGEN_LIB=m +CONFIG_SND_OXYGEN=m +CONFIG_SND_CS4281=m +CONFIG_SND_CS46XX=m +CONFIG_SND_CS46XX_NEW_DSP=y +CONFIG_SND_CS5530=m +CONFIG_SND_CS5535AUDIO=m +CONFIG_SND_CTXFI=m +CONFIG_SND_DARLA20=m +CONFIG_SND_GINA20=m +CONFIG_SND_LAYLA20=m +CONFIG_SND_DARLA24=m +CONFIG_SND_GINA24=m +CONFIG_SND_LAYLA24=m +CONFIG_SND_MONA=m +CONFIG_SND_MIA=m +CONFIG_SND_ECHO3G=m +CONFIG_SND_INDIGO=m +CONFIG_SND_INDIGOIO=m +CONFIG_SND_INDIGODJ=m +CONFIG_SND_INDIGOIOX=m +CONFIG_SND_INDIGODJX=m +CONFIG_SND_EMU10K1=m +CONFIG_SND_EMU10K1X=m +CONFIG_SND_ENS1370=m +CONFIG_SND_ENS1371=m +CONFIG_SND_ES1938=m +CONFIG_SND_ES1968=m +# CONFIG_SND_ES1968_INPUT is not set +# CONFIG_SND_ES1968_RADIO is not set +CONFIG_SND_FM801=m +CONFIG_SND_FM801_TEA575X_BOOL=y +CONFIG_SND_HDA_INTEL=y +CONFIG_SND_HDA_PREALLOC_SIZE=64 +CONFIG_SND_HDA_HWDEP=y +# CONFIG_SND_HDA_RECONFIG is not set +# CONFIG_SND_HDA_INPUT_BEEP is not set +# CONFIG_SND_HDA_INPUT_JACK is not set +# CONFIG_SND_HDA_PATCH_LOADER is not set +CONFIG_SND_HDA_CODEC_REALTEK=y +CONFIG_SND_HDA_CODEC_ANALOG=y +CONFIG_SND_HDA_CODEC_SIGMATEL=y +CONFIG_SND_HDA_CODEC_VIA=y +CONFIG_SND_HDA_CODEC_HDMI=y +CONFIG_SND_HDA_CODEC_CIRRUS=y +CONFIG_SND_HDA_CODEC_CONEXANT=y +CONFIG_SND_HDA_CODEC_CA0110=y +CONFIG_SND_HDA_CODEC_CA0132=y +# CONFIG_SND_HDA_CODEC_CA0132_DSP is not set +CONFIG_SND_HDA_CODEC_CMEDIA=y +CONFIG_SND_HDA_CODEC_SI3054=y +CONFIG_SND_HDA_GENERIC=y +CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0 +CONFIG_SND_HDSP=m +CONFIG_SND_HDSPM=m +CONFIG_SND_ICE1712=m +CONFIG_SND_ICE1724=m +CONFIG_SND_INTEL8X0=m +CONFIG_SND_INTEL8X0M=m +CONFIG_SND_KORG1212=m +CONFIG_SND_LOLA=m +CONFIG_SND_LX6464ES=m +CONFIG_SND_MAESTRO3=m +# CONFIG_SND_MAESTRO3_INPUT is not set +CONFIG_SND_MIXART=m +CONFIG_SND_NM256=m +CONFIG_SND_PCXHR=m +CONFIG_SND_RIPTIDE=m +CONFIG_SND_RME32=m +CONFIG_SND_RME96=m +CONFIG_SND_RME9652=m +CONFIG_SND_SONICVIBES=m +CONFIG_SND_TRIDENT=m +CONFIG_SND_VIA82XX=m +CONFIG_SND_VIA82XX_MODEM=m +CONFIG_SND_VIRTUOSO=m +CONFIG_SND_VX222=m +CONFIG_SND_YMFPCI=m +CONFIG_SND_USB=y +CONFIG_SND_USB_AUDIO=m +CONFIG_SND_USB_UA101=m +CONFIG_SND_USB_USX2Y=m +CONFIG_SND_USB_CAIAQ=m +# CONFIG_SND_USB_CAIAQ_INPUT is not set +CONFIG_SND_USB_US122L=m +CONFIG_SND_USB_6FIRE=m +# CONFIG_SND_PCMCIA is not set +# CONFIG_SND_SOC is not set +# CONFIG_SOUND_PRIME is not set +CONFIG_AC97_BUS=y + +# +# HID support +# +CONFIG_HID=y +CONFIG_HID_BATTERY_STRENGTH=y +CONFIG_HIDRAW=y +CONFIG_UHID=m +CONFIG_HID_GENERIC=y + +# +# Special HID drivers +# +CONFIG_HID_A4TECH=y +CONFIG_HID_ACRUX=m +CONFIG_HID_ACRUX_FF=y +CONFIG_HID_APPLE=y +# CONFIG_HID_APPLEIR is not set +CONFIG_HID_AUREAL=m +CONFIG_HID_BELKIN=y +CONFIG_HID_CHERRY=y +CONFIG_HID_CHICONY=y +CONFIG_HID_PRODIKEYS=m +CONFIG_HID_CYPRESS=y +CONFIG_HID_DRAGONRISE=m +CONFIG_DRAGONRISE_FF=y +CONFIG_HID_EMS_FF=m +# CONFIG_HID_ELECOM is not set +CONFIG_HID_EZKEY=y +CONFIG_HID_HOLTEK=m +CONFIG_HOLTEK_FF=y +CONFIG_HID_KEYTOUCH=m +CONFIG_HID_KYE=y +CONFIG_HID_UCLOGIC=m +CONFIG_HID_WALTOP=m +CONFIG_HID_GYRATION=y +# CONFIG_HID_ICADE is not set +CONFIG_HID_TWINHAN=m +CONFIG_HID_KENSINGTON=y +CONFIG_HID_LCPOWER=m +CONFIG_HID_LENOVO_TPKBD=m +CONFIG_HID_LOGITECH=y +CONFIG_HID_LOGITECH_DJ=m +CONFIG_LOGITECH_FF=y +CONFIG_LOGIRUMBLEPAD2_FF=y +CONFIG_LOGIG940_FF=y +CONFIG_LOGIWHEELS_FF=y +# CONFIG_HID_MAGICMOUSE is not set +CONFIG_HID_MICROSOFT=y +CONFIG_HID_MONTEREY=y +CONFIG_HID_MULTITOUCH=m +CONFIG_HID_NTRIG=y +CONFIG_HID_ORTEK=m +CONFIG_HID_PANTHERLORD=y +CONFIG_PANTHERLORD_FF=y +CONFIG_HID_PETALYNX=y +CONFIG_HID_PICOLCD=m +CONFIG_HID_PICOLCD_FB=y +CONFIG_HID_PICOLCD_BACKLIGHT=y +CONFIG_HID_PICOLCD_LEDS=y +CONFIG_HID_PICOLCD_CIR=y +CONFIG_HID_PRIMAX=m +# CONFIG_HID_PS3REMOTE is not set +CONFIG_HID_ROCCAT=m +CONFIG_HID_SAITEK=m +CONFIG_HID_SAMSUNG=y +CONFIG_HID_SONY=y +CONFIG_HID_SPEEDLINK=m +# CONFIG_HID_STEELSERIES is not set +CONFIG_HID_SUNPLUS=y +CONFIG_HID_GREENASIA=m +CONFIG_GREENASIA_FF=y +CONFIG_HID_SMARTJOYPLUS=m +# CONFIG_SMARTJOYPLUS_FF is not set +CONFIG_HID_TIVO=m +CONFIG_HID_TOPSEED=y +# CONFIG_HID_THINGM is not set +CONFIG_HID_THRUSTMASTER=m +CONFIG_THRUSTMASTER_FF=y +# CONFIG_HID_WACOM is not set +# CONFIG_HID_WIIMOTE is not set +CONFIG_HID_ZEROPLUS=m +CONFIG_ZEROPLUS_FF=y +CONFIG_HID_ZYDACRON=m +CONFIG_HID_SENSOR_HUB=m + +# +# USB HID support +# +CONFIG_USB_HID=y +CONFIG_HID_PID=y +CONFIG_USB_HIDDEV=y + +# +# I2C HID support +# +CONFIG_I2C_HID=m +CONFIG_USB_ARCH_HAS_OHCI=y +CONFIG_USB_ARCH_HAS_EHCI=y +CONFIG_USB_ARCH_HAS_XHCI=y +CONFIG_USB_SUPPORT=y +CONFIG_USB_COMMON=y +CONFIG_USB_ARCH_HAS_HCD=y +CONFIG_USB=y +# CONFIG_USB_DEBUG is not set +CONFIG_USB_ANNOUNCE_NEW_DEVICES=y + +# +# Miscellaneous USB options +# +CONFIG_USB_DEFAULT_PERSIST=y +# CONFIG_USB_DYNAMIC_MINORS is not set +CONFIG_USB_MON=y +CONFIG_USB_WUSB=m +CONFIG_USB_WUSB_CBAF=m +# CONFIG_USB_WUSB_CBAF_DEBUG is not set + +# +# USB Host Controller Drivers +# +CONFIG_USB_C67X00_HCD=m +CONFIG_USB_XHCI_HCD=y +CONFIG_USB_XHCI_PLATFORM=m +# CONFIG_USB_XHCI_HCD_DEBUGGING is not set +CONFIG_USB_EHCI_HCD=y +CONFIG_USB_EHCI_ROOT_HUB_TT=y +CONFIG_USB_EHCI_TT_NEWSCHED=y +CONFIG_USB_EHCI_PCI=y +CONFIG_USB_EHCI_HCD_PLATFORM=y +CONFIG_USB_OXU210HP_HCD=m +CONFIG_USB_ISP116X_HCD=m +CONFIG_USB_ISP1760_HCD=m +CONFIG_USB_ISP1362_HCD=m +CONFIG_USB_OHCI_HCD=y +CONFIG_USB_OHCI_HCD_PLATFORM=y +# CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set +# CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +CONFIG_USB_UHCI_HCD=y +CONFIG_USB_U132_HCD=m +CONFIG_USB_SL811_HCD=m +# CONFIG_USB_SL811_HCD_ISO is not set +CONFIG_USB_SL811_CS=m +CONFIG_USB_R8A66597_HCD=m +CONFIG_USB_RENESAS_USBHS_HCD=m +CONFIG_USB_WHCI_HCD=m +CONFIG_USB_HWA_HCD=m +CONFIG_USB_HCD_SSB=m +CONFIG_USB_MUSB_HDRC=m +CONFIG_USB_MUSB_TUSB6010=m +# CONFIG_USB_MUSB_DSPS is not set +# CONFIG_USB_MUSB_UX500 is not set +CONFIG_MUSB_PIO_ONLY=y +CONFIG_USB_RENESAS_USBHS=m + +# +# USB Device Class drivers +# +CONFIG_USB_ACM=m +CONFIG_USB_PRINTER=y +CONFIG_USB_WDM=m +CONFIG_USB_TMC=m + +# +# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may +# + +# +# also be needed; see USB_STORAGE Help for more info +# +CONFIG_USB_STORAGE=y +# CONFIG_USB_STORAGE_DEBUG is not set +CONFIG_USB_STORAGE_REALTEK=m +CONFIG_USB_STORAGE_DATAFAB=m +CONFIG_USB_STORAGE_FREECOM=m +CONFIG_USB_STORAGE_ISD200=m +CONFIG_USB_STORAGE_USBAT=m +CONFIG_USB_STORAGE_SDDR09=m +CONFIG_USB_STORAGE_SDDR55=m +CONFIG_USB_STORAGE_JUMPSHOT=m +CONFIG_USB_STORAGE_ALAUDA=m +CONFIG_USB_STORAGE_ONETOUCH=m +CONFIG_USB_STORAGE_KARMA=m +CONFIG_USB_STORAGE_CYPRESS_ATACB=m +CONFIG_USB_STORAGE_ENE_UB6250=m + +# +# USB Imaging devices +# +CONFIG_USB_MDC800=m +CONFIG_USB_MICROTEK=m +CONFIG_USB_DWC3=m +# CONFIG_USB_DWC3_HOST is not set +# CONFIG_USB_DWC3_GADGET is not set +CONFIG_USB_DWC3_DUAL_ROLE=y +# CONFIG_USB_DWC3_DEBUG is not set +CONFIG_USB_CHIPIDEA=m +CONFIG_USB_CHIPIDEA_UDC=y +CONFIG_USB_CHIPIDEA_HOST=y +# CONFIG_USB_CHIPIDEA_DEBUG is not set + +# +# USB port drivers +# +CONFIG_USB_USS720=m +CONFIG_USB_SERIAL=m +CONFIG_USB_SERIAL_GENERIC=y +CONFIG_USB_SERIAL_AIRCABLE=m +CONFIG_USB_SERIAL_ARK3116=m +CONFIG_USB_SERIAL_BELKIN=m +CONFIG_USB_SERIAL_CH341=m +CONFIG_USB_SERIAL_WHITEHEAT=m +CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m +CONFIG_USB_SERIAL_CP210X=m +CONFIG_USB_SERIAL_CYPRESS_M8=m +CONFIG_USB_SERIAL_EMPEG=m +CONFIG_USB_SERIAL_FTDI_SIO=m +CONFIG_USB_SERIAL_FUNSOFT=m +CONFIG_USB_SERIAL_VISOR=m +CONFIG_USB_SERIAL_IPAQ=m +CONFIG_USB_SERIAL_IR=m +CONFIG_USB_SERIAL_EDGEPORT=m +CONFIG_USB_SERIAL_EDGEPORT_TI=m +CONFIG_USB_SERIAL_F81232=m +CONFIG_USB_SERIAL_GARMIN=m +CONFIG_USB_SERIAL_IPW=m +CONFIG_USB_SERIAL_IUU=m +CONFIG_USB_SERIAL_KEYSPAN_PDA=m +CONFIG_USB_SERIAL_KEYSPAN=m +CONFIG_USB_SERIAL_KEYSPAN_MPR=y +CONFIG_USB_SERIAL_KEYSPAN_USA28=y +CONFIG_USB_SERIAL_KEYSPAN_USA28X=y +CONFIG_USB_SERIAL_KEYSPAN_USA28XA=y +CONFIG_USB_SERIAL_KEYSPAN_USA28XB=y +CONFIG_USB_SERIAL_KEYSPAN_USA19=y +CONFIG_USB_SERIAL_KEYSPAN_USA18X=y +CONFIG_USB_SERIAL_KEYSPAN_USA19W=y +CONFIG_USB_SERIAL_KEYSPAN_USA19QW=y +CONFIG_USB_SERIAL_KEYSPAN_USA19QI=y +CONFIG_USB_SERIAL_KEYSPAN_USA49W=y +CONFIG_USB_SERIAL_KEYSPAN_USA49WLC=y +CONFIG_USB_SERIAL_KLSI=m +CONFIG_USB_SERIAL_KOBIL_SCT=m +CONFIG_USB_SERIAL_MCT_U232=m +CONFIG_USB_SERIAL_METRO=m +CONFIG_USB_SERIAL_MOS7720=m +# CONFIG_USB_SERIAL_MOS7715_PARPORT is not set +CONFIG_USB_SERIAL_MOS7840=m +CONFIG_USB_SERIAL_MOTOROLA=m +CONFIG_USB_SERIAL_NAVMAN=m +CONFIG_USB_SERIAL_PL2303=m +CONFIG_USB_SERIAL_OTI6858=m +CONFIG_USB_SERIAL_QCAUX=m +CONFIG_USB_SERIAL_QUALCOMM=m +CONFIG_USB_SERIAL_SPCP8X5=m +CONFIG_USB_SERIAL_HP4X=m +CONFIG_USB_SERIAL_SAFE=m +# CONFIG_USB_SERIAL_SAFE_PADDED is not set +CONFIG_USB_SERIAL_SIEMENS_MPI=m +CONFIG_USB_SERIAL_SIERRAWIRELESS=m +CONFIG_USB_SERIAL_SYMBOL=m +CONFIG_USB_SERIAL_TI=m +CONFIG_USB_SERIAL_CYBERJACK=m +CONFIG_USB_SERIAL_XIRCOM=m +CONFIG_USB_SERIAL_WWAN=m +CONFIG_USB_SERIAL_OPTION=m +CONFIG_USB_SERIAL_OMNINET=m +CONFIG_USB_SERIAL_OPTICON=m +CONFIG_USB_SERIAL_VIVOPAY_SERIAL=m +# CONFIG_USB_SERIAL_XSENS_MT is not set +CONFIG_USB_SERIAL_ZIO=m +# CONFIG_USB_SERIAL_WISHBONE is not set +CONFIG_USB_SERIAL_ZTE=m +CONFIG_USB_SERIAL_SSU100=m +CONFIG_USB_SERIAL_QT2=m +CONFIG_USB_SERIAL_DEBUG=m + +# +# USB Miscellaneous drivers +# +CONFIG_USB_EMI62=m +CONFIG_USB_EMI26=m +CONFIG_USB_ADUTUX=m +CONFIG_USB_SEVSEG=m +CONFIG_USB_RIO500=m +CONFIG_USB_LEGOTOWER=m +CONFIG_USB_LCD=m +CONFIG_USB_LED=m +CONFIG_USB_CYPRESS_CY7C63=m +CONFIG_USB_CYTHERM=m +CONFIG_USB_IDMOUSE=m +CONFIG_USB_FTDI_ELAN=m +CONFIG_USB_APPLEDISPLAY=m +CONFIG_USB_SISUSBVGA=m +# CONFIG_USB_SISUSBVGA_CON is not set +CONFIG_USB_LD=m +CONFIG_USB_TRANCEVIBRATOR=m +CONFIG_USB_IOWARRIOR=m +CONFIG_USB_TEST=m +CONFIG_USB_ISIGHTFW=m +CONFIG_USB_YUREX=m +CONFIG_USB_EZUSB_FX2=m +# CONFIG_USB_HSIC_USB3503 is not set +# CONFIG_USB_PHY is not set +CONFIG_USB_GADGET=m +# CONFIG_USB_GADGET_DEBUG is not set +# CONFIG_USB_GADGET_DEBUG_FILES is not set +# CONFIG_USB_GADGET_DEBUG_FS is not set +CONFIG_USB_GADGET_VBUS_DRAW=2 +CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=2 + +# +# USB Peripheral Controller +# +CONFIG_USB_R8A66597=m +CONFIG_USB_RENESAS_USBHS_UDC=m +# CONFIG_USB_PXA27X is not set +CONFIG_USB_MV_UDC=m +# CONFIG_USB_MV_U3D is not set +CONFIG_USB_GADGET_MUSB_HDRC=m +CONFIG_USB_M66592=m +CONFIG_USB_AMD5536UDC=m +CONFIG_USB_NET2272=m +CONFIG_USB_NET2272_DMA=y +CONFIG_USB_NET2280=m +CONFIG_USB_GOKU=m +CONFIG_USB_EG20T=m +CONFIG_USB_DUMMY_HCD=m +CONFIG_USB_LIBCOMPOSITE=m +CONFIG_USB_F_ACM=m +CONFIG_USB_F_SS_LB=m +CONFIG_USB_U_SERIAL=m +CONFIG_USB_F_SERIAL=m +CONFIG_USB_F_OBEX=m +CONFIG_USB_ZERO=m +CONFIG_USB_AUDIO=m +# CONFIG_GADGET_UAC1 is not set +CONFIG_USB_ETH=m +CONFIG_USB_ETH_RNDIS=y +# CONFIG_USB_ETH_EEM is not set +CONFIG_USB_G_NCM=m +CONFIG_USB_GADGETFS=m +CONFIG_USB_FUNCTIONFS=m +# CONFIG_USB_FUNCTIONFS_ETH is not set +# CONFIG_USB_FUNCTIONFS_RNDIS is not set +CONFIG_USB_FUNCTIONFS_GENERIC=y +CONFIG_USB_MASS_STORAGE=m +CONFIG_USB_G_SERIAL=m +CONFIG_USB_MIDI_GADGET=m +CONFIG_USB_G_PRINTER=m +CONFIG_USB_CDC_COMPOSITE=m +CONFIG_USB_G_ACM_MS=m +CONFIG_USB_G_MULTI=m +CONFIG_USB_G_MULTI_RNDIS=y +# CONFIG_USB_G_MULTI_CDC is not set +CONFIG_USB_G_HID=m +CONFIG_USB_G_DBGP=m +# CONFIG_USB_G_DBGP_PRINTK is not set +CONFIG_USB_G_DBGP_SERIAL=y +CONFIG_USB_G_WEBCAM=m +CONFIG_UWB=m +CONFIG_UWB_HWA=m +CONFIG_UWB_WHCI=m +# CONFIG_UWB_I1480U is not set +CONFIG_MMC=y +# CONFIG_MMC_DEBUG is not set +# CONFIG_MMC_UNSAFE_RESUME is not set +# CONFIG_MMC_CLKGATE is not set + +# +# MMC/SD/SDIO Card Drivers +# +CONFIG_MMC_BLOCK=y +CONFIG_MMC_BLOCK_MINORS=8 +CONFIG_MMC_BLOCK_BOUNCE=y +CONFIG_SDIO_UART=m +CONFIG_MMC_TEST=m + +# +# MMC/SD/SDIO Host Controller Drivers +# +CONFIG_MMC_SDHCI=m +CONFIG_MMC_SDHCI_PCI=m +# CONFIG_MMC_RICOH_MMC is not set +CONFIG_MMC_SDHCI_ACPI=m +CONFIG_MMC_SDHCI_PLTFM=m +CONFIG_MMC_WBSD=m +CONFIG_MMC_TIFM_SD=m +CONFIG_MMC_SDRICOH_CS=m +CONFIG_MMC_CB710=m +CONFIG_MMC_VIA_SDMMC=m +CONFIG_MMC_VUB300=m +CONFIG_MMC_USHC=m +CONFIG_MMC_REALTEK_PCI=m +CONFIG_MEMSTICK=m +# CONFIG_MEMSTICK_DEBUG is not set + +# +# MemoryStick drivers +# +# CONFIG_MEMSTICK_UNSAFE_RESUME is not set +CONFIG_MSPRO_BLOCK=m + +# +# MemoryStick Host Controller Drivers +# +CONFIG_MEMSTICK_TIFM_MS=m +CONFIG_MEMSTICK_JMICRON_38X=m +CONFIG_MEMSTICK_R592=m +CONFIG_MEMSTICK_REALTEK_PCI=m +CONFIG_NEW_LEDS=y +CONFIG_LEDS_CLASS=y + +# +# LED drivers +# +# CONFIG_LEDS_88PM860X is not set +CONFIG_LEDS_LM3530=m +CONFIG_LEDS_LM3533=m +CONFIG_LEDS_LM3642=m +CONFIG_LEDS_PCA9532=m +CONFIG_LEDS_LP3944=m +CONFIG_LEDS_LP55XX_COMMON=m +CONFIG_LEDS_LP5521=m +CONFIG_LEDS_LP5523=m +# CONFIG_LEDS_LP5562 is not set +CONFIG_LEDS_CLEVO_MAIL=m +CONFIG_LEDS_PCA955X=m +CONFIG_LEDS_PCA9633=m +CONFIG_LEDS_WM831X_STATUS=m +CONFIG_LEDS_WM8350=m +CONFIG_LEDS_DA903X=m +CONFIG_LEDS_DA9052=m +# CONFIG_LEDS_PWM is not set +CONFIG_LEDS_REGULATOR=m +CONFIG_LEDS_BD2802=m +CONFIG_LEDS_INTEL_SS4200=m +CONFIG_LEDS_ADP5520=m +CONFIG_LEDS_DELL_NETBOOKS=m +CONFIG_LEDS_MC13783=m +CONFIG_LEDS_TCA6507=m +CONFIG_LEDS_MAX8997=m +CONFIG_LEDS_LM355x=m +CONFIG_LEDS_OT200=m +CONFIG_LEDS_BLINKM=m + +# +# LED Triggers +# +CONFIG_LEDS_TRIGGERS=y +CONFIG_LEDS_TRIGGER_TIMER=m +CONFIG_LEDS_TRIGGER_ONESHOT=m +CONFIG_LEDS_TRIGGER_HEARTBEAT=m +CONFIG_LEDS_TRIGGER_BACKLIGHT=m +CONFIG_LEDS_TRIGGER_CPU=y +CONFIG_LEDS_TRIGGER_DEFAULT_ON=m + +# +# iptables trigger is under Netfilter config (LED target) +# +CONFIG_LEDS_TRIGGER_TRANSIENT=m +# CONFIG_LEDS_TRIGGER_CAMERA is not set +# CONFIG_ACCESSIBILITY is not set +CONFIG_INFINIBAND=m +CONFIG_INFINIBAND_USER_MAD=m +CONFIG_INFINIBAND_USER_ACCESS=m +CONFIG_INFINIBAND_USER_MEM=y +CONFIG_INFINIBAND_ADDR_TRANS=y +CONFIG_INFINIBAND_MTHCA=m +CONFIG_INFINIBAND_MTHCA_DEBUG=y +CONFIG_INFINIBAND_IPATH=m +CONFIG_INFINIBAND_QIB=m +CONFIG_INFINIBAND_AMSO1100=m +# CONFIG_INFINIBAND_AMSO1100_DEBUG is not set +CONFIG_INFINIBAND_CXGB3=m +# CONFIG_INFINIBAND_CXGB3_DEBUG is not set +CONFIG_INFINIBAND_CXGB4=m +CONFIG_MLX4_INFINIBAND=m +CONFIG_INFINIBAND_NES=m +# CONFIG_INFINIBAND_NES_DEBUG is not set +CONFIG_INFINIBAND_OCRDMA=m +CONFIG_INFINIBAND_IPOIB=m +CONFIG_INFINIBAND_IPOIB_CM=y +CONFIG_INFINIBAND_IPOIB_DEBUG=y +CONFIG_INFINIBAND_IPOIB_DEBUG_DATA=y +CONFIG_INFINIBAND_SRP=m +CONFIG_INFINIBAND_ISER=m +CONFIG_EDAC=y +CONFIG_EDAC_LEGACY_SYSFS=y +# CONFIG_EDAC_DEBUG is not set +CONFIG_EDAC_DECODE_MCE=y +# CONFIG_EDAC_MCE_INJ is not set +# CONFIG_EDAC_MM_EDAC is not set +CONFIG_RTC_LIB=y +CONFIG_RTC_CLASS=y +# CONFIG_RTC_HCTOSYS is not set +CONFIG_RTC_SYSTOHC=y +CONFIG_RTC_HCTOSYS_DEVICE="rtc0" +# CONFIG_RTC_DEBUG is not set + +# +# RTC interfaces +# +CONFIG_RTC_INTF_SYSFS=y +CONFIG_RTC_INTF_PROC=y +CONFIG_RTC_INTF_DEV=y +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set +CONFIG_RTC_DRV_TEST=m + +# +# I2C RTC drivers +# +CONFIG_RTC_DRV_88PM860X=m +CONFIG_RTC_DRV_88PM80X=m +CONFIG_RTC_DRV_DS1307=m +CONFIG_RTC_DRV_DS1374=m +CONFIG_RTC_DRV_DS1672=m +CONFIG_RTC_DRV_DS3232=m +CONFIG_RTC_DRV_MAX6900=m +CONFIG_RTC_DRV_MAX8925=m +CONFIG_RTC_DRV_MAX8998=m +# CONFIG_RTC_DRV_MAX8997 is not set +# CONFIG_RTC_DRV_MAX77686 is not set +CONFIG_RTC_DRV_RS5C372=m +CONFIG_RTC_DRV_ISL1208=m +CONFIG_RTC_DRV_ISL12022=m +CONFIG_RTC_DRV_X1205=m +# CONFIG_RTC_DRV_PALMAS is not set +CONFIG_RTC_DRV_PCF8523=m +CONFIG_RTC_DRV_PCF8563=m +CONFIG_RTC_DRV_PCF8583=m +CONFIG_RTC_DRV_M41T80=m +# CONFIG_RTC_DRV_M41T80_WDT is not set +CONFIG_RTC_DRV_BQ32K=m +CONFIG_RTC_DRV_TWL4030=m +CONFIG_RTC_DRV_TPS6586X=m +# CONFIG_RTC_DRV_TPS80031 is not set +CONFIG_RTC_DRV_RC5T583=m +CONFIG_RTC_DRV_S35390A=m +CONFIG_RTC_DRV_FM3130=m +CONFIG_RTC_DRV_RX8581=m +CONFIG_RTC_DRV_RX8025=m +CONFIG_RTC_DRV_EM3027=m +CONFIG_RTC_DRV_RV3029C2=m + +# +# SPI RTC drivers +# + +# +# Platform RTC drivers +# +CONFIG_RTC_DRV_CMOS=y +CONFIG_RTC_DRV_DS1286=m +CONFIG_RTC_DRV_DS1511=m +CONFIG_RTC_DRV_DS1553=m +CONFIG_RTC_DRV_DS1742=m +CONFIG_RTC_DRV_DA9052=m +CONFIG_RTC_DRV_STK17TA8=m +CONFIG_RTC_DRV_M48T86=m +CONFIG_RTC_DRV_M48T35=m +CONFIG_RTC_DRV_M48T59=m +CONFIG_RTC_DRV_MSM6242=m +CONFIG_RTC_DRV_BQ4802=m +CONFIG_RTC_DRV_RP5C01=m +CONFIG_RTC_DRV_V3020=m +CONFIG_RTC_DRV_DS2404=m +CONFIG_RTC_DRV_WM831X=m +CONFIG_RTC_DRV_WM8350=m +# CONFIG_RTC_DRV_PCF50633 is not set +CONFIG_RTC_DRV_AB3100=y + +# +# on-CPU RTC drivers +# +CONFIG_RTC_DRV_MC13XXX=m + +# +# HID Sensor RTC drivers +# +# CONFIG_RTC_DRV_HID_SENSOR_TIME is not set +CONFIG_DMADEVICES=y +# CONFIG_DMADEVICES_DEBUG is not set + +# +# DMA Devices +# +# CONFIG_INTEL_MID_DMAC is not set +# CONFIG_INTEL_IOATDMA is not set +# CONFIG_DW_DMAC is not set +CONFIG_TIMB_DMA=m +# CONFIG_PCH_DMA is not set +CONFIG_DMA_ENGINE=y +CONFIG_DMA_ACPI=y + +# +# DMA Clients +# +# CONFIG_NET_DMA is not set +# CONFIG_ASYNC_TX_DMA is not set +# CONFIG_DMATEST is not set +# CONFIG_AUXDISPLAY is not set +CONFIG_UIO=m +# CONFIG_UIO_CIF is not set +# CONFIG_UIO_PDRV is not set +# CONFIG_UIO_PDRV_GENIRQ is not set +CONFIG_UIO_DMEM_GENIRQ=m +# CONFIG_UIO_AEC is not set +# CONFIG_UIO_SERCOS3 is not set +# CONFIG_UIO_PCI_GENERIC is not set +# CONFIG_UIO_NETX is not set +CONFIG_VFIO_IOMMU_TYPE1=m +CONFIG_VFIO=m +CONFIG_VFIO_PCI=m +# CONFIG_VFIO_PCI_VGA is not set +CONFIG_VIRT_DRIVERS=y +CONFIG_VIRTIO=m + +# +# Virtio drivers +# +CONFIG_VIRTIO_PCI=m +CONFIG_VIRTIO_BALLOON=m +CONFIG_VIRTIO_MMIO=m +# CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES is not set + +# +# Microsoft Hyper-V guest support +# +CONFIG_STAGING=y +# CONFIG_ET131X is not set +# CONFIG_SLICOSS is not set +# CONFIG_USBIP_CORE is not set +# CONFIG_ECHO is not set +# CONFIG_COMEDI is not set +# CONFIG_ASUS_OLED is not set +# CONFIG_PANEL is not set +CONFIG_RTS5139=m +# CONFIG_RTS5139_DEBUG is not set +# CONFIG_TRANZPORT is not set +# CONFIG_IDE_PHISON is not set +# CONFIG_LINE6_USB is not set +# CONFIG_USB_SERIAL_QUATECH2 is not set +# CONFIG_DX_SEP is not set + +# +# IIO staging drivers +# + +# +# Accelerometers +# + +# +# Analog to digital converters +# +# CONFIG_AD7291 is not set +# CONFIG_AD799X is not set + +# +# Analog digital bi-direction converters +# + +# +# Capacitance to digital converters +# +# CONFIG_AD7150 is not set +# CONFIG_AD7152 is not set +# CONFIG_AD7746 is not set + +# +# Direct Digital Synthesis +# + +# +# Digital gyroscope sensors +# + +# +# Network Analyzer, Impedance Converters +# +# CONFIG_AD5933 is not set + +# +# Light sensors +# +# CONFIG_SENSORS_ISL29018 is not set +# CONFIG_SENSORS_ISL29028 is not set +# CONFIG_TSL2583 is not set +# CONFIG_TSL2x7x is not set + +# +# Magnetometer sensors +# +# CONFIG_SENSORS_HMC5843 is not set + +# +# Active energy metering IC +# +# CONFIG_ADE7854 is not set + +# +# Resolver to digital converters +# + +# +# Triggers - standalone +# +CONFIG_IIO_PERIODIC_RTC_TRIGGER=m +CONFIG_IIO_SYSFS_TRIGGER=m +# CONFIG_IIO_SIMPLE_DUMMY is not set +# CONFIG_ZSMALLOC is not set +# CONFIG_FB_SM7XX is not set +# CONFIG_CRYSTALHD is not set +# CONFIG_FB_XGI is not set +# CONFIG_ACPI_QUICKSTART is not set +# CONFIG_USB_ENESTORAGE is not set +# CONFIG_BCM_WIMAX is not set +# CONFIG_FT1000 is not set + +# +# Speakup console speech +# +# CONFIG_SPEAKUP is not set +# CONFIG_TOUCHSCREEN_SYNAPTICS_I2C_RMI4 is not set +CONFIG_STAGING_MEDIA=y +CONFIG_DVB_AS102=m +# CONFIG_DVB_CXD2099 is not set +# CONFIG_VIDEO_DT3155 is not set +# CONFIG_VIDEO_GO7007 is not set +# CONFIG_LIRC_STAGING is not set + +# +# Android +# +# CONFIG_ANDROID is not set +# CONFIG_USB_WPAN_HCD is not set +CONFIG_WIMAX_GDM72XX=m +CONFIG_WIMAX_GDM72XX_QOS=y +CONFIG_WIMAX_GDM72XX_K_MODE=y +CONFIG_WIMAX_GDM72XX_WIMAX2=y +CONFIG_WIMAX_GDM72XX_USB=y +# CONFIG_WIMAX_GDM72XX_SDIO is not set +CONFIG_NET_VENDOR_SILICOM=y +CONFIG_SBYPASS=m +CONFIG_BPCTL=m +CONFIG_CED1401=m +CONFIG_DGRP=m +# CONFIG_USB_DWC2 is not set +CONFIG_X86_PLATFORM_DEVICES=y +# CONFIG_ACER_WMI is not set +CONFIG_ACERHDF=m +CONFIG_ASUS_LAPTOP=y +# CONFIG_CHROMEOS_LAPTOP is not set +CONFIG_DELL_WMI=m +CONFIG_DELL_WMI_AIO=m +CONFIG_FUJITSU_LAPTOP=y +# CONFIG_FUJITSU_LAPTOP_DEBUG is not set +# CONFIG_FUJITSU_TABLET is not set +# CONFIG_HP_ACCEL is not set +CONFIG_HP_WMI=m +# CONFIG_PANASONIC_LAPTOP is not set +# CONFIG_THINKPAD_ACPI is not set +# CONFIG_SENSORS_HDAPS is not set +CONFIG_INTEL_MENLOW=m +# CONFIG_EEEPC_LAPTOP is not set +CONFIG_ASUS_WMI=m +# CONFIG_ASUS_NB_WMI is not set +# CONFIG_EEEPC_WMI is not set +CONFIG_ACPI_WMI=m +CONFIG_MSI_WMI=m +# CONFIG_TOPSTAR_LAPTOP is not set +# CONFIG_ACPI_TOSHIBA is not set +CONFIG_TOSHIBA_BT_RFKILL=m +# CONFIG_ACPI_CMPC is not set +CONFIG_INTEL_IPS=m +CONFIG_IBM_RTL=m +# CONFIG_XO15_EBOOK is not set +# CONFIG_SAMSUNG_LAPTOP is not set +# CONFIG_MXM_WMI is not set +CONFIG_SAMSUNG_Q10=m +# CONFIG_APPLE_GMUX is not set +# CONFIG_PVPANIC is not set + +# +# Hardware Spinlock drivers +# +CONFIG_CLKEVT_I8253=y +CONFIG_I8253_LOCK=y +CONFIG_CLKBLD_I8253=y +# CONFIG_MAILBOX is not set +CONFIG_IOMMU_API=y +CONFIG_IOMMU_SUPPORT=y +CONFIG_AMD_IOMMU=y +CONFIG_AMD_IOMMU_STATS=y +CONFIG_AMD_IOMMU_V2=y +CONFIG_DMAR_TABLE=y +CONFIG_INTEL_IOMMU=y +CONFIG_INTEL_IOMMU_DEFAULT_ON=y +CONFIG_INTEL_IOMMU_FLOPPY_WA=y +CONFIG_IRQ_REMAP=y + +# +# Remoteproc drivers +# +CONFIG_REMOTEPROC=m +CONFIG_STE_MODEM_RPROC=m + +# +# Rpmsg drivers +# +# CONFIG_PM_DEVFREQ is not set +CONFIG_EXTCON=y + +# +# Extcon Device Drivers +# +CONFIG_EXTCON_ADC_JACK=m +CONFIG_EXTCON_MAX8997=m +CONFIG_MEMORY=y +CONFIG_IIO=m +CONFIG_IIO_BUFFER=y +# CONFIG_IIO_BUFFER_CB is not set +CONFIG_IIO_KFIFO_BUF=m +CONFIG_IIO_TRIGGERED_BUFFER=m +CONFIG_IIO_TRIGGER=y +CONFIG_IIO_CONSUMERS_PER_TRIGGER=2 + +# +# Accelerometers +# +CONFIG_HID_SENSOR_ACCEL_3D=m +# CONFIG_IIO_ST_ACCEL_3AXIS is not set + +# +# Analog to digital converters +# +# CONFIG_MAX1363 is not set +CONFIG_TI_ADC081C=m +CONFIG_TI_AM335X_ADC=m +CONFIG_VIPERBOARD_ADC=m + +# +# Amplifiers +# + +# +# Hid Sensor IIO Common +# +CONFIG_HID_SENSOR_IIO_COMMON=m +CONFIG_HID_SENSOR_IIO_TRIGGER=m +# CONFIG_HID_SENSOR_ENUM_BASE_QUIRKS is not set + +# +# Digital to analog converters +# +CONFIG_AD5064=m +# CONFIG_AD5380 is not set +# CONFIG_AD5446 is not set +# CONFIG_MAX517 is not set +CONFIG_MCP4725=m + +# +# Frequency Synthesizers DDS/PLL +# + +# +# Clock Generator/Distribution +# + +# +# Phase-Locked Loop (PLL) frequency synthesizers +# + +# +# Digital gyroscope sensors +# +CONFIG_HID_SENSOR_GYRO_3D=m +# CONFIG_IIO_ST_GYRO_3AXIS is not set +# CONFIG_ITG3200 is not set + +# +# Inertial measurement units +# +# CONFIG_INV_MPU6050_IIO is not set + +# +# Light sensors +# +CONFIG_ADJD_S311=m +CONFIG_SENSORS_LM3533=m +# CONFIG_SENSORS_TSL2563 is not set +CONFIG_VCNL4000=m +CONFIG_HID_SENSOR_ALS=m + +# +# Magnetometer sensors +# +CONFIG_HID_SENSOR_MAGNETOMETER_3D=m +# CONFIG_IIO_ST_MAGN_3AXIS is not set +# CONFIG_NTB is not set +CONFIG_VME_BUS=m + +# +# VME Bridge Drivers +# +CONFIG_VME_CA91CX42=m +CONFIG_VME_TSI148=m + +# +# VME Board Drivers +# +CONFIG_VMIVME_7805=m + +# +# VME Device Drivers +# +CONFIG_VME_USER=m +CONFIG_PWM=y +CONFIG_PWM_TWL=m +CONFIG_PWM_TWL_LED=m +CONFIG_IPACK_BUS=m +CONFIG_BOARD_TPCI200=m +CONFIG_SERIAL_IPOCTAL=m +# CONFIG_RESET_CONTROLLER is not set + +# +# Firmware Drivers +# +# CONFIG_EDD is not set +CONFIG_FIRMWARE_MEMMAP=y +# CONFIG_DELL_RBU is not set +# CONFIG_DCDBAS is not set +CONFIG_DMIID=y +# CONFIG_DMI_SYSFS is not set +# CONFIG_ISCSI_IBFT_FIND is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# EFI (Extensible Firmware Interface) Support +# +CONFIG_EFI_VARS=y + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +CONFIG_EXT2_FS=m +CONFIG_EXT2_FS_XATTR=y +CONFIG_EXT2_FS_POSIX_ACL=y +CONFIG_EXT2_FS_SECURITY=y +# CONFIG_EXT2_FS_XIP is not set +CONFIG_EXT3_FS=y +# CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set +CONFIG_EXT3_FS_XATTR=y +CONFIG_EXT3_FS_POSIX_ACL=y +CONFIG_EXT3_FS_SECURITY=y +CONFIG_EXT4_FS=y +CONFIG_EXT4_FS_POSIX_ACL=y +CONFIG_EXT4_FS_SECURITY=y +# CONFIG_EXT4_DEBUG is not set +CONFIG_JBD=y +# CONFIG_JBD_DEBUG is not set +CONFIG_JBD2=y +# CONFIG_JBD2_DEBUG is not set +CONFIG_FS_MBCACHE=y +CONFIG_REISERFS_FS=m +# CONFIG_REISERFS_CHECK is not set +CONFIG_REISERFS_PROC_INFO=y +CONFIG_REISERFS_FS_XATTR=y +CONFIG_REISERFS_FS_POSIX_ACL=y +CONFIG_REISERFS_FS_SECURITY=y +CONFIG_JFS_FS=m +CONFIG_JFS_POSIX_ACL=y +CONFIG_JFS_SECURITY=y +# CONFIG_JFS_DEBUG is not set +CONFIG_JFS_STATISTICS=y +CONFIG_XFS_FS=m +CONFIG_XFS_QUOTA=y +CONFIG_XFS_POSIX_ACL=y +CONFIG_XFS_RT=y +# CONFIG_XFS_WARN is not set +# CONFIG_XFS_DEBUG is not set +CONFIG_GFS2_FS=m +# CONFIG_GFS2_FS_LOCKING_DLM is not set +CONFIG_OCFS2_FS=m +CONFIG_OCFS2_FS_O2CB=m +CONFIG_OCFS2_FS_USERSPACE_CLUSTER=m +CONFIG_OCFS2_FS_STATS=y +CONFIG_OCFS2_DEBUG_MASKLOG=y +# CONFIG_OCFS2_DEBUG_FS is not set +CONFIG_BTRFS_FS=m +CONFIG_BTRFS_FS_POSIX_ACL=y +# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set +# CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set +# CONFIG_BTRFS_DEBUG is not set +CONFIG_NILFS2_FS=m +CONFIG_FS_POSIX_ACL=y +CONFIG_EXPORTFS=m +CONFIG_FILE_LOCKING=y +CONFIG_FSNOTIFY=y +CONFIG_DNOTIFY=y +CONFIG_INOTIFY_USER=y +CONFIG_FANOTIFY=y +CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y +CONFIG_QUOTA=y +CONFIG_QUOTA_NETLINK_INTERFACE=y +# CONFIG_PRINT_QUOTA_WARNING is not set +# CONFIG_QUOTA_DEBUG is not set +CONFIG_QUOTA_TREE=y +CONFIG_QFMT_V1=m +CONFIG_QFMT_V2=y +CONFIG_QUOTACTL=y +CONFIG_QUOTACTL_COMPAT=y +CONFIG_AUTOFS4_FS=y +CONFIG_FUSE_FS=m +CONFIG_CUSE=m +CONFIG_GENERIC_ACL=y + +# +# Caches +# +CONFIG_FSCACHE=m +CONFIG_FSCACHE_STATS=y +CONFIG_FSCACHE_HISTOGRAM=y +# CONFIG_FSCACHE_DEBUG is not set +# CONFIG_FSCACHE_OBJECT_LIST is not set +CONFIG_CACHEFILES=m +# CONFIG_CACHEFILES_DEBUG is not set +CONFIG_CACHEFILES_HISTOGRAM=y + +# +# CD-ROM/DVD Filesystems +# +CONFIG_ISO9660_FS=m +CONFIG_JOLIET=y +CONFIG_ZISOFS=y +CONFIG_UDF_FS=m +CONFIG_UDF_NLS=y + +# +# DOS/FAT/NT Filesystems +# +CONFIG_FAT_FS=m +CONFIG_MSDOS_FS=m +CONFIG_VFAT_FS=m +CONFIG_FAT_DEFAULT_CODEPAGE=437 +CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" +CONFIG_NTFS_FS=m +# CONFIG_NTFS_DEBUG is not set +CONFIG_NTFS_RW=y + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +CONFIG_PROC_KCORE=y +CONFIG_PROC_VMCORE=y +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +CONFIG_SYSFS=y +CONFIG_TMPFS=y +CONFIG_TMPFS_POSIX_ACL=y +CONFIG_TMPFS_XATTR=y +CONFIG_HUGETLBFS=y +CONFIG_HUGETLB_PAGE=y +CONFIG_CONFIGFS_FS=m +CONFIG_MISC_FILESYSTEMS=y +CONFIG_ADFS_FS=m +# CONFIG_ADFS_FS_RW is not set +CONFIG_AFFS_FS=m +CONFIG_ECRYPT_FS=m +# CONFIG_ECRYPT_FS_MESSAGING is not set +CONFIG_HFS_FS=m +CONFIG_HFSPLUS_FS=m +CONFIG_BEFS_FS=m +# CONFIG_BEFS_DEBUG is not set +CONFIG_BFS_FS=m +CONFIG_EFS_FS=m +CONFIG_LOGFS=m +CONFIG_CRAMFS=m +CONFIG_SQUASHFS=m +CONFIG_SQUASHFS_XATTR=y +CONFIG_SQUASHFS_ZLIB=y +CONFIG_SQUASHFS_LZO=y +CONFIG_SQUASHFS_XZ=y +CONFIG_SQUASHFS_4K_DEVBLK_SIZE=y +CONFIG_SQUASHFS_EMBEDDED=y +CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 +CONFIG_VXFS_FS=m +CONFIG_MINIX_FS=m +CONFIG_OMFS_FS=m +CONFIG_HPFS_FS=m +CONFIG_QNX4FS_FS=m +CONFIG_QNX6FS_FS=m +# CONFIG_QNX6FS_DEBUG is not set +CONFIG_ROMFS_FS=m +CONFIG_ROMFS_BACKED_BY_BLOCK=y +CONFIG_ROMFS_ON_BLOCK=y +# CONFIG_PSTORE is not set +CONFIG_SYSV_FS=m +CONFIG_UFS_FS=m +# CONFIG_UFS_FS_WRITE is not set +# CONFIG_UFS_DEBUG is not set +CONFIG_F2FS_FS=m +CONFIG_F2FS_STAT_FS=y +CONFIG_F2FS_FS_XATTR=y +CONFIG_F2FS_FS_POSIX_ACL=y +# CONFIG_EFIVAR_FS is not set +CONFIG_NETWORK_FILESYSTEMS=y +CONFIG_NFS_FS=y +CONFIG_NFS_V2=y +CONFIG_NFS_V3=y +CONFIG_NFS_V3_ACL=y +CONFIG_NFS_V4=y +# CONFIG_NFS_SWAP is not set +CONFIG_NFS_V4_1=y +CONFIG_PNFS_FILE_LAYOUT=m +CONFIG_PNFS_BLOCK=m +CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org" +CONFIG_ROOT_NFS=y +# CONFIG_NFS_USE_LEGACY_DNS is not set +CONFIG_NFS_USE_KERNEL_DNS=y +CONFIG_NFSD=m +CONFIG_NFSD_V2_ACL=y +CONFIG_NFSD_V3=y +CONFIG_NFSD_V3_ACL=y +# CONFIG_NFSD_V4 is not set +CONFIG_LOCKD=y +CONFIG_LOCKD_V4=y +CONFIG_NFS_ACL_SUPPORT=y +CONFIG_NFS_COMMON=y +CONFIG_SUNRPC=y +CONFIG_SUNRPC_GSS=y +CONFIG_SUNRPC_BACKCHANNEL=y +CONFIG_SUNRPC_XPRT_RDMA=m +CONFIG_RPCSEC_GSS_KRB5=m +# CONFIG_SUNRPC_DEBUG is not set +CONFIG_CEPH_FS=m +CONFIG_CIFS=m +CONFIG_CIFS_STATS=y +CONFIG_CIFS_STATS2=y +CONFIG_CIFS_WEAK_PW_HASH=y +# CONFIG_CIFS_UPCALL is not set +CONFIG_CIFS_XATTR=y +CONFIG_CIFS_POSIX=y +CONFIG_CIFS_ACL=y +CONFIG_CIFS_DEBUG=y +# CONFIG_CIFS_DEBUG2 is not set +# CONFIG_CIFS_DFS_UPCALL is not set +CONFIG_CIFS_SMB2=y +# CONFIG_CIFS_FSCACHE is not set +# CONFIG_NCP_FS is not set +# CONFIG_CODA_FS is not set +# CONFIG_AFS_FS is not set +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="utf8" +CONFIG_NLS_CODEPAGE_437=y +CONFIG_NLS_CODEPAGE_737=m +CONFIG_NLS_CODEPAGE_775=m +CONFIG_NLS_CODEPAGE_850=y +CONFIG_NLS_CODEPAGE_852=m +CONFIG_NLS_CODEPAGE_855=m +CONFIG_NLS_CODEPAGE_857=m +CONFIG_NLS_CODEPAGE_860=m +CONFIG_NLS_CODEPAGE_861=m +CONFIG_NLS_CODEPAGE_862=m +CONFIG_NLS_CODEPAGE_863=m +CONFIG_NLS_CODEPAGE_864=m +CONFIG_NLS_CODEPAGE_865=m +CONFIG_NLS_CODEPAGE_866=m +CONFIG_NLS_CODEPAGE_869=m +CONFIG_NLS_CODEPAGE_936=m +CONFIG_NLS_CODEPAGE_950=m +CONFIG_NLS_CODEPAGE_932=m +CONFIG_NLS_CODEPAGE_949=m +CONFIG_NLS_CODEPAGE_874=m +CONFIG_NLS_ISO8859_8=m +CONFIG_NLS_CODEPAGE_1250=m +CONFIG_NLS_CODEPAGE_1251=m +CONFIG_NLS_ASCII=y +CONFIG_NLS_ISO8859_1=y +CONFIG_NLS_ISO8859_2=m +CONFIG_NLS_ISO8859_3=m +CONFIG_NLS_ISO8859_4=m +CONFIG_NLS_ISO8859_5=m +CONFIG_NLS_ISO8859_6=m +CONFIG_NLS_ISO8859_7=m +CONFIG_NLS_ISO8859_9=m +CONFIG_NLS_ISO8859_13=m +CONFIG_NLS_ISO8859_14=m +CONFIG_NLS_ISO8859_15=y +CONFIG_NLS_KOI8_R=m +CONFIG_NLS_KOI8_U=m +CONFIG_NLS_MAC_ROMAN=m +CONFIG_NLS_MAC_CELTIC=m +CONFIG_NLS_MAC_CENTEURO=m +CONFIG_NLS_MAC_CROATIAN=m +CONFIG_NLS_MAC_CYRILLIC=m +CONFIG_NLS_MAC_GAELIC=m +CONFIG_NLS_MAC_GREEK=m +CONFIG_NLS_MAC_ICELAND=m +CONFIG_NLS_MAC_INUIT=m +CONFIG_NLS_MAC_ROMANIAN=m +CONFIG_NLS_MAC_TURKISH=m +CONFIG_NLS_UTF8=y +CONFIG_DLM=m +# CONFIG_DLM_DEBUG is not set + +# +# Kernel hacking +# +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +CONFIG_PRINTK_TIME=y +CONFIG_DEFAULT_MESSAGE_LOGLEVEL=4 +# CONFIG_ENABLE_WARN_DEPRECATED is not set +CONFIG_ENABLE_MUST_CHECK=y +CONFIG_FRAME_WARN=2048 +CONFIG_MAGIC_SYSRQ=y +# CONFIG_STRIP_ASM_SYMS is not set +# CONFIG_READABLE_ASM is not set +# CONFIG_UNUSED_SYMBOLS is not set +CONFIG_DEBUG_FS=y +# CONFIG_HEADERS_CHECK is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +CONFIG_DEBUG_KERNEL=y +# CONFIG_DEBUG_SHIRQ is not set +# CONFIG_LOCKUP_DETECTOR is not set +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +# CONFIG_DETECT_HUNG_TASK is not set +# CONFIG_SCHED_DEBUG is not set +CONFIG_SCHEDSTATS=y +CONFIG_TIMER_STATS=y +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_SLUB_DEBUG_ON is not set +# CONFIG_SLUB_STATS is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_RT_MUTEX_TESTER is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +CONFIG_STACKTRACE=y +CONFIG_DEBUG_STACK_USAGE=y +# CONFIG_DEBUG_KOBJECT is not set +CONFIG_DEBUG_BUGVERBOSE=y +# CONFIG_DEBUG_INFO is not set +# CONFIG_DEBUG_VM is not set +# CONFIG_DEBUG_VIRTUAL is not set +# CONFIG_DEBUG_WRITECOUNT is not set +CONFIG_DEBUG_MEMORY_INIT=y +# CONFIG_DEBUG_LIST is not set +# CONFIG_TEST_LIST_SORT is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_DEBUG_CREDENTIALS is not set +CONFIG_ARCH_WANT_FRAME_POINTERS=y +CONFIG_FRAME_POINTER=y +# CONFIG_BOOT_PRINTK_DELAY is not set + +# +# RCU Debugging +# +# CONFIG_SPARSE_RCU_POINTER is not set +# CONFIG_RCU_TORTURE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=60 +# CONFIG_RCU_CPU_STALL_INFO is not set +# CONFIG_RCU_TRACE is not set +# CONFIG_KPROBES_SANITY_TEST is not set +# CONFIG_BACKTRACE_SELF_TEST is not set +# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +# CONFIG_DEBUG_PER_CPU_MAPS is not set +# CONFIG_LKDTM is not set +CONFIG_NOTIFIER_ERROR_INJECTION=m +# CONFIG_CPU_NOTIFIER_ERROR_INJECT is not set +CONFIG_PM_NOTIFIER_ERROR_INJECT=m +# CONFIG_FAULT_INJECTION is not set +# CONFIG_LATENCYTOP is not set +CONFIG_ARCH_HAS_DEBUG_STRICT_USER_COPY_CHECKS=y +# CONFIG_DEBUG_STRICT_USER_COPY_CHECKS is not set +# CONFIG_DEBUG_PAGEALLOC is not set +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_NOP_TRACER=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_FP_TEST=y +CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACE_CLOCK=y +CONFIG_RING_BUFFER=y +CONFIG_EVENT_TRACING=y +CONFIG_CONTEXT_SWITCH_TRACER=y +CONFIG_TRACING=y +CONFIG_GENERIC_TRACER=y +CONFIG_TRACING_SUPPORT=y +CONFIG_FTRACE=y +# CONFIG_FUNCTION_TRACER is not set +# CONFIG_IRQSOFF_TRACER is not set +# CONFIG_SCHED_TRACER is not set +# CONFIG_FTRACE_SYSCALLS is not set +# CONFIG_TRACER_SNAPSHOT is not set +CONFIG_BRANCH_PROFILE_NONE=y +# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set +# CONFIG_PROFILE_ALL_BRANCHES is not set +# CONFIG_STACK_TRACER is not set +CONFIG_BLK_DEV_IO_TRACE=y +CONFIG_KPROBE_EVENT=y +CONFIG_UPROBE_EVENT=y +CONFIG_PROBE_EVENTS=y +# CONFIG_FTRACE_STARTUP_TEST is not set +# CONFIG_MMIOTRACE is not set +# CONFIG_RING_BUFFER_BENCHMARK is not set +# CONFIG_RING_BUFFER_STARTUP_TEST is not set +# CONFIG_RBTREE_TEST is not set +# CONFIG_INTERVAL_TREE_TEST is not set +CONFIG_PROVIDE_OHCI1394_DMA_INIT=y +# CONFIG_DYNAMIC_DEBUG is not set +# CONFIG_DMA_API_DEBUG is not set +# CONFIG_ATOMIC64_SELFTEST is not set +# CONFIG_ASYNC_RAID6_TEST is not set +# CONFIG_SAMPLES is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +CONFIG_HAVE_ARCH_KMEMCHECK=y +# CONFIG_KMEMCHECK is not set +# CONFIG_TEST_STRING_HELPERS is not set +# CONFIG_TEST_KSTRTOX is not set +# CONFIG_STRICT_DEVMEM is not set +CONFIG_X86_VERBOSE_BOOTUP=y +CONFIG_EARLY_PRINTK=y +CONFIG_EARLY_PRINTK_DBGP=y +CONFIG_DEBUG_STACKOVERFLOW=y +# CONFIG_X86_PTDUMP is not set +CONFIG_DEBUG_RODATA=y +# CONFIG_DEBUG_RODATA_TEST is not set +# CONFIG_DEBUG_SET_MODULE_RONX is not set +CONFIG_DEBUG_NX_TEST=m +# CONFIG_DEBUG_TLBFLUSH is not set +# CONFIG_IOMMU_DEBUG is not set +# CONFIG_IOMMU_STRESS is not set +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +# CONFIG_X86_DECODER_SELFTEST is not set +CONFIG_IO_DELAY_TYPE_0X80=0 +CONFIG_IO_DELAY_TYPE_0XED=1 +CONFIG_IO_DELAY_TYPE_UDELAY=2 +CONFIG_IO_DELAY_TYPE_NONE=3 +CONFIG_IO_DELAY_0X80=y +# CONFIG_IO_DELAY_0XED is not set +# CONFIG_IO_DELAY_UDELAY is not set +# CONFIG_IO_DELAY_NONE is not set +CONFIG_DEFAULT_IO_DELAY_TYPE=0 +CONFIG_DEBUG_BOOT_PARAMS=y +# CONFIG_CPA_DEBUG is not set +CONFIG_OPTIMIZE_INLINING=y +CONFIG_DEBUG_NMI_SELFTEST=y + +# +# Security options +# +CONFIG_KEYS=y +# CONFIG_TRUSTED_KEYS is not set +CONFIG_ENCRYPTED_KEYS=y +CONFIG_KEYS_DEBUG_PROC_KEYS=y +# CONFIG_SECURITY_DMESG_RESTRICT is not set +CONFIG_SECURITY=y +CONFIG_SECURITYFS=y +CONFIG_SECURITY_NETWORK=y +# CONFIG_SECURITY_NETWORK_XFRM is not set +CONFIG_SECURITY_PATH=y +# CONFIG_INTEL_TXT is not set +CONFIG_LSM_MMAP_MIN_ADDR=65536 +CONFIG_SECURITY_SELINUX=y +CONFIG_SECURITY_SELINUX_BOOTPARAM=y +CONFIG_SECURITY_SELINUX_BOOTPARAM_VALUE=1 +CONFIG_SECURITY_SELINUX_DISABLE=y +CONFIG_SECURITY_SELINUX_DEVELOP=y +CONFIG_SECURITY_SELINUX_AVC_STATS=y +CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1 +# CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX is not set +# CONFIG_SECURITY_SMACK is not set +# CONFIG_SECURITY_TOMOYO is not set +# CONFIG_SECURITY_APPARMOR is not set +CONFIG_SECURITY_YAMA=y +# CONFIG_SECURITY_YAMA_STACKED is not set +CONFIG_INTEGRITY=y +# CONFIG_INTEGRITY_SIGNATURE is not set +# CONFIG_IMA is not set +CONFIG_EVM=y +CONFIG_EVM_HMAC_VERSION=2 +CONFIG_DEFAULT_SECURITY_SELINUX=y +# CONFIG_DEFAULT_SECURITY_YAMA is not set +# CONFIG_DEFAULT_SECURITY_DAC is not set +CONFIG_DEFAULT_SECURITY="selinux" +CONFIG_XOR_BLOCKS=m +CONFIG_ASYNC_CORE=m +CONFIG_ASYNC_MEMCPY=m +CONFIG_ASYNC_XOR=m +CONFIG_ASYNC_PQ=m +CONFIG_ASYNC_RAID6_RECOV=m +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_BLKCIPHER=y +CONFIG_CRYPTO_BLKCIPHER2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_RNG=y +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_PCOMP=m +CONFIG_CRYPTO_PCOMP2=y +CONFIG_CRYPTO_MANAGER=y +CONFIG_CRYPTO_MANAGER2=y +CONFIG_CRYPTO_USER=m +CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y +CONFIG_CRYPTO_GF128MUL=m +CONFIG_CRYPTO_NULL=m +CONFIG_CRYPTO_PCRYPT=m +CONFIG_CRYPTO_WORKQUEUE=y +CONFIG_CRYPTO_CRYPTD=m +CONFIG_CRYPTO_AUTHENC=y +CONFIG_CRYPTO_TEST=m +CONFIG_CRYPTO_ABLK_HELPER_X86=m +CONFIG_CRYPTO_GLUE_HELPER_X86=m + +# +# Authenticated Encryption with Associated Data +# +CONFIG_CRYPTO_CCM=m +CONFIG_CRYPTO_GCM=m +CONFIG_CRYPTO_SEQIV=m + +# +# Block modes +# +CONFIG_CRYPTO_CBC=y +CONFIG_CRYPTO_CTR=m +CONFIG_CRYPTO_CTS=m +CONFIG_CRYPTO_ECB=m +CONFIG_CRYPTO_LRW=m +CONFIG_CRYPTO_PCBC=m +CONFIG_CRYPTO_XTS=m + +# +# Hash modes +# +# CONFIG_CRYPTO_CMAC is not set +CONFIG_CRYPTO_HMAC=y +CONFIG_CRYPTO_XCBC=m +CONFIG_CRYPTO_VMAC=m + +# +# Digest +# +CONFIG_CRYPTO_CRC32C=y +CONFIG_CRYPTO_CRC32C_INTEL=m +# CONFIG_CRYPTO_CRC32 is not set +# CONFIG_CRYPTO_CRC32_PCLMUL is not set +CONFIG_CRYPTO_GHASH=m +CONFIG_CRYPTO_MD4=m +CONFIG_CRYPTO_MD5=y +CONFIG_CRYPTO_MICHAEL_MIC=m +CONFIG_CRYPTO_RMD128=m +CONFIG_CRYPTO_RMD160=m +CONFIG_CRYPTO_RMD256=m +CONFIG_CRYPTO_RMD320=m +CONFIG_CRYPTO_SHA1=y +CONFIG_CRYPTO_SHA1_SSSE3=m +# CONFIG_CRYPTO_SHA256_SSSE3 is not set +# CONFIG_CRYPTO_SHA512_SSSE3 is not set +CONFIG_CRYPTO_SHA256=y +CONFIG_CRYPTO_SHA512=m +CONFIG_CRYPTO_TGR192=m +CONFIG_CRYPTO_WP512=m +CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL=m + +# +# Ciphers +# +CONFIG_CRYPTO_AES=y +CONFIG_CRYPTO_AES_X86_64=m +CONFIG_CRYPTO_AES_NI_INTEL=m +CONFIG_CRYPTO_ANUBIS=m +CONFIG_CRYPTO_ARC4=y +CONFIG_CRYPTO_BLOWFISH=m +CONFIG_CRYPTO_BLOWFISH_COMMON=m +CONFIG_CRYPTO_BLOWFISH_X86_64=m +CONFIG_CRYPTO_CAMELLIA=m +CONFIG_CRYPTO_CAMELLIA_X86_64=m +CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64=m +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set +CONFIG_CRYPTO_CAST_COMMON=m +CONFIG_CRYPTO_CAST5=m +CONFIG_CRYPTO_CAST5_AVX_X86_64=m +CONFIG_CRYPTO_CAST6=m +CONFIG_CRYPTO_CAST6_AVX_X86_64=m +CONFIG_CRYPTO_DES=y +CONFIG_CRYPTO_FCRYPT=m +CONFIG_CRYPTO_KHAZAD=m +CONFIG_CRYPTO_SALSA20=m +CONFIG_CRYPTO_SALSA20_X86_64=m +CONFIG_CRYPTO_SEED=m +CONFIG_CRYPTO_SERPENT=m +CONFIG_CRYPTO_SERPENT_SSE2_X86_64=m +CONFIG_CRYPTO_SERPENT_AVX_X86_64=m +# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set +CONFIG_CRYPTO_TEA=m +CONFIG_CRYPTO_TWOFISH=m +CONFIG_CRYPTO_TWOFISH_COMMON=m +CONFIG_CRYPTO_TWOFISH_X86_64=m +CONFIG_CRYPTO_TWOFISH_X86_64_3WAY=m +CONFIG_CRYPTO_TWOFISH_AVX_X86_64=m + +# +# Compression +# +CONFIG_CRYPTO_DEFLATE=m +CONFIG_CRYPTO_ZLIB=m +CONFIG_CRYPTO_LZO=m + +# +# Random Number Generation +# +CONFIG_CRYPTO_ANSI_CPRNG=m +CONFIG_CRYPTO_USER_API=m +CONFIG_CRYPTO_USER_API_HASH=m +CONFIG_CRYPTO_USER_API_SKCIPHER=m +CONFIG_CRYPTO_HW=y +CONFIG_CRYPTO_DEV_PADLOCK=m +CONFIG_CRYPTO_DEV_PADLOCK_AES=m +CONFIG_CRYPTO_DEV_PADLOCK_SHA=m +CONFIG_ASYMMETRIC_KEY_TYPE=m +CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=m +CONFIG_PUBLIC_KEY_ALGO_RSA=m +CONFIG_X509_CERTIFICATE_PARSER=m +CONFIG_HAVE_KVM=y +CONFIG_HAVE_KVM_IRQCHIP=y +CONFIG_HAVE_KVM_IRQ_ROUTING=y +CONFIG_HAVE_KVM_EVENTFD=y +CONFIG_KVM_APIC_ARCHITECTURE=y +CONFIG_KVM_MMIO=y +CONFIG_KVM_ASYNC_PF=y +CONFIG_HAVE_KVM_MSI=y +CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT=y +CONFIG_VIRTUALIZATION=y +CONFIG_KVM=m +CONFIG_KVM_INTEL=m +CONFIG_KVM_AMD=m +# CONFIG_KVM_MMU_AUDIT is not set +CONFIG_KVM_DEVICE_ASSIGNMENT=y +CONFIG_BINARY_PRINTF=y + +# +# Library routines +# +CONFIG_RAID6_PQ=m +CONFIG_BITREVERSE=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_IOMAP=y +CONFIG_GENERIC_IO=y +CONFIG_PERCPU_RWSEM=y +CONFIG_CRC_CCITT=m +CONFIG_CRC16=y +CONFIG_CRC_T10DIF=y +CONFIG_CRC_ITU_T=y +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +CONFIG_CRC7=m +CONFIG_LIBCRC32C=m +CONFIG_CRC8=m +CONFIG_ZLIB_INFLATE=y +CONFIG_ZLIB_DEFLATE=m +CONFIG_LZO_COMPRESS=y +CONFIG_LZO_DECOMPRESS=y +CONFIG_XZ_DEC=y +CONFIG_XZ_DEC_X86=y +CONFIG_XZ_DEC_POWERPC=y +CONFIG_XZ_DEC_IA64=y +CONFIG_XZ_DEC_ARM=y +CONFIG_XZ_DEC_ARMTHUMB=y +CONFIG_XZ_DEC_SPARC=y +CONFIG_XZ_DEC_BCJ=y +CONFIG_XZ_DEC_TEST=m +CONFIG_DECOMPRESS_GZIP=y +CONFIG_DECOMPRESS_BZIP2=y +CONFIG_DECOMPRESS_LZMA=y +CONFIG_DECOMPRESS_XZ=y +CONFIG_DECOMPRESS_LZO=y +CONFIG_GENERIC_ALLOCATOR=y +CONFIG_TEXTSEARCH=y +CONFIG_TEXTSEARCH_KMP=m +CONFIG_TEXTSEARCH_BM=m +CONFIG_TEXTSEARCH_FSM=m +CONFIG_BTREE=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT=y +CONFIG_HAS_DMA=y +CONFIG_CHECK_SIGNATURE=y +CONFIG_CPU_RMAP=y +CONFIG_DQL=y +CONFIG_NLATTR=y +CONFIG_ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE=y +CONFIG_LRU_CACHE=m +CONFIG_AVERAGE=y +CONFIG_CLZ_TAB=y +CONFIG_CORDIC=m +CONFIG_DDR=y +CONFIG_MPILIB=m +CONFIG_OID_REGISTRY=y +CONFIG_UCS2_STRING=y diff --git a/kernel-config/config-3.8.13-gentoo-01 b/kernel-config/config-3.8.13-gentoo-01 new file mode 100644 index 0000000..6a11571 --- /dev/null +++ b/kernel-config/config-3.8.13-gentoo-01 @@ -0,0 +1,5251 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/x86_64 3.8.13-gentoo Kernel Configuration +# +CONFIG_64BIT=y +CONFIG_X86_64=y +CONFIG_X86=y +CONFIG_INSTRUCTION_DECODER=y +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_HAVE_LATENCYTOP_SUPPORT=y +CONFIG_MMU=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_GENERIC_ISA_DMA=y +CONFIG_GENERIC_BUG=y +CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y +CONFIG_GENERIC_HWEIGHT=y +CONFIG_ARCH_MAY_HAVE_PC_FDC=y +CONFIG_RWSEM_XCHGADD_ALGORITHM=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_DEFAULT_IDLE=y +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_ARCH_HAS_CPU_AUTOPROBE=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ZONE_DMA32=y +CONFIG_AUDIT_ARCH=y +CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_HAVE_INTEL_TXT=y +CONFIG_X86_64_SMP=y +CONFIG_X86_HT=y +CONFIG_ARCH_HWEIGHT_CFLAGS="-fcall-saved-rdi -fcall-saved-rsi -fcall-saved-rdx -fcall-saved-rcx -fcall-saved-r8 -fcall-saved-r9 -fcall-saved-r10 -fcall-saved-r11" +CONFIG_ARCH_CPU_PROBE_RELEASE=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" +CONFIG_HAVE_IRQ_WORK=y +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_EXTABLE_SORT=y + +# +# General setup +# +CONFIG_EXPERIMENTAL=y +CONFIG_INIT_ENV_ARG_LIMIT=32 +CONFIG_CROSS_COMPILE="" +CONFIG_LOCALVERSION="" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_KERNEL_GZIP=y +# CONFIG_KERNEL_BZIP2 is not set +# CONFIG_KERNEL_LZMA is not set +# CONFIG_KERNEL_XZ is not set +# CONFIG_KERNEL_LZO is not set +CONFIG_DEFAULT_HOSTNAME="samara" +CONFIG_SWAP=y +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_SYSCTL=y +CONFIG_POSIX_MQUEUE=y +CONFIG_POSIX_MQUEUE_SYSCTL=y +# CONFIG_FHANDLE is not set +CONFIG_AUDIT=y +CONFIG_AUDITSYSCALL=y +CONFIG_AUDIT_WATCH=y +CONFIG_AUDIT_TREE=y +# CONFIG_AUDIT_LOGINUID_IMMUTABLE is not set +CONFIG_HAVE_GENERIC_HARDIRQS=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_HARDIRQS=y +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_PENDING_IRQ=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_DEBUG=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_ARCH_CLOCKSOURCE_DATA=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y + +# +# Timers subsystem +# +CONFIG_TICK_ONESHOT=y +CONFIG_NO_HZ=y +CONFIG_HIGH_RES_TIMERS=y + +# +# CPU/Task time and stats accounting +# +CONFIG_TICK_CPU_ACCOUNTING=y +# CONFIG_IRQ_TIME_ACCOUNTING is not set +CONFIG_BSD_PROCESS_ACCT=y +# CONFIG_BSD_PROCESS_ACCT_V3 is not set +CONFIG_TASKSTATS=y +CONFIG_TASK_DELAY_ACCT=y +CONFIG_TASK_XACCT=y +CONFIG_TASK_IO_ACCOUNTING=y + +# +# RCU Subsystem +# +CONFIG_TREE_RCU=y +# CONFIG_PREEMPT_RCU is not set +# CONFIG_RCU_USER_QS is not set +CONFIG_RCU_FANOUT=64 +CONFIG_RCU_FANOUT_LEAF=16 +# CONFIG_RCU_FANOUT_EXACT is not set +# CONFIG_RCU_FAST_NO_HZ is not set +# CONFIG_TREE_RCU_TRACE is not set +# CONFIG_RCU_NOCB_CPU is not set +CONFIG_IKCONFIG=y +CONFIG_IKCONFIG_PROC=y +CONFIG_LOG_BUF_SHIFT=21 +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_WANTS_PROT_NUMA_PROT_NONE=y +# CONFIG_NUMA_BALANCING is not set +CONFIG_CGROUPS=y +# CONFIG_CGROUP_DEBUG is not set +CONFIG_CGROUP_FREEZER=y +CONFIG_CGROUP_DEVICE=y +CONFIG_CPUSETS=y +CONFIG_PROC_PID_CPUSET=y +CONFIG_CGROUP_CPUACCT=y +CONFIG_RESOURCE_COUNTERS=y +CONFIG_MEMCG=y +CONFIG_MEMCG_SWAP=y +CONFIG_MEMCG_SWAP_ENABLED=y +CONFIG_MEMCG_KMEM=y +CONFIG_CGROUP_HUGETLB=y +CONFIG_CGROUP_PERF=y +CONFIG_CGROUP_SCHED=y +CONFIG_FAIR_GROUP_SCHED=y +CONFIG_CFS_BANDWIDTH=y +CONFIG_RT_GROUP_SCHED=y +CONFIG_BLK_CGROUP=y +# CONFIG_DEBUG_BLK_CGROUP is not set +# CONFIG_CHECKPOINT_RESTORE is not set +CONFIG_NAMESPACES=y +CONFIG_UTS_NS=y +CONFIG_IPC_NS=y +CONFIG_PID_NS=y +CONFIG_NET_NS=y +# CONFIG_SCHED_AUTOGROUP is not set +CONFIG_MM_OWNER=y +CONFIG_SYSFS_DEPRECATED=y +# CONFIG_SYSFS_DEPRECATED_V2 is not set +CONFIG_RELAY=y +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_SOURCE="" +CONFIG_RD_GZIP=y +CONFIG_RD_BZIP2=y +CONFIG_RD_LZMA=y +CONFIG_RD_XZ=y +CONFIG_RD_LZO=y +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_SYSCTL=y +CONFIG_ANON_INODES=y +# CONFIG_EXPERT is not set +CONFIG_HAVE_UID16=y +CONFIG_UID16=y +# CONFIG_SYSCTL_SYSCALL is not set +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_KALLSYMS=y +# CONFIG_KALLSYMS_ALL is not set +CONFIG_HOTPLUG=y +CONFIG_PRINTK=y +CONFIG_BUG=y +CONFIG_ELF_CORE=y +CONFIG_PCSPKR_PLATFORM=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +CONFIG_BASE_FULL=y +CONFIG_FUTEX=y +CONFIG_EPOLL=y +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y +CONFIG_SHMEM=y +CONFIG_AIO=y +# CONFIG_EMBEDDED is not set +CONFIG_HAVE_PERF_EVENTS=y + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +CONFIG_VM_EVENT_COUNTERS=y +CONFIG_PCI_QUIRKS=y +CONFIG_SLUB_DEBUG=y +# CONFIG_COMPAT_BRK is not set +# CONFIG_SLAB is not set +CONFIG_SLUB=y +CONFIG_PROFILING=y +CONFIG_TRACEPOINTS=y +# CONFIG_OPROFILE is not set +CONFIG_HAVE_OPROFILE=y +CONFIG_OPROFILE_NMI_TIMER=y +CONFIG_KPROBES=y +# CONFIG_JUMP_LABEL is not set +CONFIG_OPTPROBES=y +CONFIG_UPROBES=y +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_KRETPROBES=y +CONFIG_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_ATTRS=y +CONFIG_USE_GENERIC_SMP_HELPERS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_DMA_API_DEBUG=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y +CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_SECCOMP_FILTER=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_GENERIC_SIGALTSTACK=y + +# +# GCOV-based kernel profiling +# +# CONFIG_GCOV_KERNEL is not set +# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set +CONFIG_SLABINFO=y +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=0 +CONFIG_MODULES=y +# CONFIG_MODULE_FORCE_LOAD is not set +CONFIG_MODULE_UNLOAD=y +CONFIG_MODULE_FORCE_UNLOAD=y +# CONFIG_MODVERSIONS is not set +# CONFIG_MODULE_SRCVERSION_ALL is not set +# CONFIG_MODULE_SIG is not set +CONFIG_STOP_MACHINE=y +CONFIG_BLOCK=y +CONFIG_BLK_DEV_BSG=y +CONFIG_BLK_DEV_BSGLIB=y +# CONFIG_BLK_DEV_INTEGRITY is not set +CONFIG_BLK_DEV_THROTTLING=y + +# +# Partition Types +# +CONFIG_PARTITION_ADVANCED=y +CONFIG_ACORN_PARTITION=y +CONFIG_ACORN_PARTITION_CUMANA=y +CONFIG_ACORN_PARTITION_EESOX=y +CONFIG_ACORN_PARTITION_ICS=y +CONFIG_ACORN_PARTITION_ADFS=y +CONFIG_ACORN_PARTITION_POWERTEC=y +CONFIG_ACORN_PARTITION_RISCIX=y +CONFIG_OSF_PARTITION=y +CONFIG_AMIGA_PARTITION=y +CONFIG_ATARI_PARTITION=y +CONFIG_MAC_PARTITION=y +CONFIG_MSDOS_PARTITION=y +CONFIG_BSD_DISKLABEL=y +CONFIG_MINIX_SUBPARTITION=y +CONFIG_SOLARIS_X86_PARTITION=y +CONFIG_UNIXWARE_DISKLABEL=y +CONFIG_LDM_PARTITION=y +CONFIG_LDM_DEBUG=y +CONFIG_SGI_PARTITION=y +CONFIG_ULTRIX_PARTITION=y +CONFIG_SUN_PARTITION=y +CONFIG_KARMA_PARTITION=y +CONFIG_EFI_PARTITION=y +CONFIG_SYSV68_PARTITION=y +CONFIG_BLOCK_COMPAT=y + +# +# IO Schedulers +# +CONFIG_IOSCHED_NOOP=y +CONFIG_IOSCHED_DEADLINE=y +CONFIG_IOSCHED_CFQ=y +CONFIG_CFQ_GROUP_IOSCHED=y +# CONFIG_DEFAULT_DEADLINE is not set +CONFIG_DEFAULT_CFQ=y +# CONFIG_DEFAULT_NOOP is not set +CONFIG_DEFAULT_IOSCHED="cfq" +CONFIG_PREEMPT_NOTIFIERS=y +CONFIG_PADATA=y +CONFIG_ASN1=m +CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_FREEZER=y + +# +# Processor type and features +# +CONFIG_ZONE_DMA=y +CONFIG_SMP=y +CONFIG_X86_X2APIC=y +CONFIG_X86_MPPARSE=y +CONFIG_X86_EXTENDED_PLATFORM=y +# CONFIG_X86_NUMACHIP is not set +# CONFIG_X86_VSMP is not set +# CONFIG_X86_UV is not set +CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y +CONFIG_SCHED_OMIT_FRAME_POINTER=y +CONFIG_PARAVIRT_GUEST=y +# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set +CONFIG_XEN=y +CONFIG_XEN_DOM0=y +CONFIG_XEN_PRIVILEGED_GUEST=y +CONFIG_XEN_PVHVM=y +CONFIG_XEN_MAX_DOMAIN_MEMORY=500 +CONFIG_XEN_SAVE_RESTORE=y +# CONFIG_XEN_DEBUG_FS is not set +CONFIG_KVM_GUEST=y +CONFIG_PARAVIRT=y +# CONFIG_PARAVIRT_SPINLOCKS is not set +CONFIG_PARAVIRT_CLOCK=y +# CONFIG_PARAVIRT_DEBUG is not set +CONFIG_NO_BOOTMEM=y +# CONFIG_MEMTEST is not set +# CONFIG_MK8 is not set +# CONFIG_MPSC is not set +CONFIG_MCORE2=y +# CONFIG_MATOM is not set +# CONFIG_GENERIC_CPU is not set +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_INTEL_USERCOPY=y +CONFIG_X86_USE_PPRO_CHECKSUM=y +CONFIG_X86_P6_NOP=y +CONFIG_X86_TSC=y +CONFIG_X86_CMPXCHG64=y +CONFIG_X86_CMOV=y +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_DEBUGCTLMSR=y +CONFIG_CPU_SUP_INTEL=y +CONFIG_CPU_SUP_AMD=y +CONFIG_CPU_SUP_CENTAUR=y +CONFIG_HPET_TIMER=y +CONFIG_HPET_EMULATE_RTC=y +CONFIG_DMI=y +CONFIG_GART_IOMMU=y +CONFIG_CALGARY_IOMMU=y +CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT=y +CONFIG_SWIOTLB=y +CONFIG_IOMMU_HELPER=y +# CONFIG_MAXSMP is not set +CONFIG_NR_CPUS=64 +CONFIG_SCHED_SMT=y +CONFIG_SCHED_MC=y +# CONFIG_PREEMPT_NONE is not set +CONFIG_PREEMPT_VOLUNTARY=y +# CONFIG_PREEMPT is not set +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_IO_APIC=y +CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y +CONFIG_X86_MCE=y +CONFIG_X86_MCE_INTEL=y +CONFIG_X86_MCE_AMD=y +CONFIG_X86_MCE_THRESHOLD=y +# CONFIG_X86_MCE_INJECT is not set +CONFIG_X86_THERMAL_VECTOR=y +# CONFIG_I8K is not set +CONFIG_MICROCODE=y +CONFIG_MICROCODE_INTEL=y +CONFIG_MICROCODE_AMD=y +CONFIG_MICROCODE_OLD_INTERFACE=y +CONFIG_X86_MSR=y +CONFIG_X86_CPUID=y +CONFIG_ARCH_PHYS_ADDR_T_64BIT=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_DIRECT_GBPAGES=y +CONFIG_NUMA=y +CONFIG_AMD_NUMA=y +CONFIG_X86_64_ACPI_NUMA=y +CONFIG_NODES_SPAN_OTHER_NODES=y +# CONFIG_NUMA_EMU is not set +CONFIG_NODES_SHIFT=6 +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ARCH_PROC_KCORE_TEXT=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_NEED_MULTIPLE_NODES=y +CONFIG_HAVE_MEMORY_PRESENT=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y +CONFIG_SPARSEMEM_VMEMMAP=y +CONFIG_HAVE_MEMBLOCK=y +CONFIG_HAVE_MEMBLOCK_NODE_MAP=y +CONFIG_ARCH_DISCARD_MEMBLOCK=y +# CONFIG_MOVABLE_NODE is not set +# CONFIG_MEMORY_HOTPLUG is not set +CONFIG_PAGEFLAGS_EXTENDED=y +CONFIG_SPLIT_PTLOCK_CPUS=4 +# CONFIG_COMPACTION is not set +CONFIG_MIGRATION=y +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_ZONE_DMA_FLAG=1 +CONFIG_BOUNCE=y +CONFIG_VIRT_TO_BUS=y +CONFIG_MMU_NOTIFIER=y +# CONFIG_KSM is not set +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 +CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y +# CONFIG_MEMORY_FAILURE is not set +# CONFIG_TRANSPARENT_HUGEPAGE is not set +CONFIG_CROSS_MEMORY_ATTACH=y +# CONFIG_CLEANCACHE is not set +CONFIG_FRONTSWAP=y +CONFIG_X86_CHECK_BIOS_CORRUPTION=y +CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y +CONFIG_X86_RESERVE_LOW=64 +CONFIG_MTRR=y +# CONFIG_MTRR_SANITIZER is not set +CONFIG_X86_PAT=y +CONFIG_ARCH_USES_PG_UNCACHED=y +CONFIG_ARCH_RANDOM=y +CONFIG_X86_SMAP=y +CONFIG_EFI=y +CONFIG_EFI_STUB=y +CONFIG_SECCOMP=y +# CONFIG_CC_STACKPROTECTOR is not set +# CONFIG_HZ_100 is not set +# CONFIG_HZ_250 is not set +# CONFIG_HZ_300 is not set +CONFIG_HZ_1000=y +CONFIG_HZ=1000 +CONFIG_SCHED_HRTICK=y +CONFIG_KEXEC=y +CONFIG_CRASH_DUMP=y +# CONFIG_KEXEC_JUMP is not set +CONFIG_PHYSICAL_START=0x1000000 +CONFIG_RELOCATABLE=y +CONFIG_PHYSICAL_ALIGN=0x1000000 +CONFIG_HOTPLUG_CPU=y +# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set +# CONFIG_DEBUG_HOTPLUG_CPU0 is not set +# CONFIG_COMPAT_VDSO is not set +# CONFIG_CMDLINE_BOOL is not set +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_USE_PERCPU_NUMA_NODE_ID=y + +# +# Power management and ACPI options +# +CONFIG_ARCH_HIBERNATION_HEADER=y +CONFIG_SUSPEND=y +CONFIG_SUSPEND_FREEZER=y +CONFIG_HIBERNATE_CALLBACKS=y +CONFIG_HIBERNATION=y +CONFIG_PM_STD_PARTITION="" +CONFIG_PM_SLEEP=y +CONFIG_PM_SLEEP_SMP=y +CONFIG_PM_AUTOSLEEP=y +CONFIG_PM_WAKELOCKS=y +CONFIG_PM_WAKELOCKS_LIMIT=100 +CONFIG_PM_WAKELOCKS_GC=y +# CONFIG_PM_RUNTIME is not set +CONFIG_PM=y +CONFIG_PM_DEBUG=y +# CONFIG_PM_ADVANCED_DEBUG is not set +# CONFIG_PM_TEST_SUSPEND is not set +CONFIG_PM_SLEEP_DEBUG=y +CONFIG_PM_TRACE=y +CONFIG_PM_TRACE_RTC=y +CONFIG_ACPI=y +CONFIG_ACPI_SLEEP=y +CONFIG_ACPI_PROCFS=y +# CONFIG_ACPI_PROCFS_POWER is not set +CONFIG_ACPI_EC_DEBUGFS=y +CONFIG_ACPI_PROC_EVENT=y +CONFIG_ACPI_AC=y +CONFIG_ACPI_BATTERY=m +CONFIG_ACPI_BUTTON=y +CONFIG_ACPI_VIDEO=m +CONFIG_ACPI_FAN=y +CONFIG_ACPI_DOCK=y +CONFIG_ACPI_I2C=y +CONFIG_ACPI_PROCESSOR=y +CONFIG_ACPI_IPMI=m +CONFIG_ACPI_HOTPLUG_CPU=y +CONFIG_ACPI_PROCESSOR_AGGREGATOR=m +CONFIG_ACPI_THERMAL=y +CONFIG_ACPI_NUMA=y +# CONFIG_ACPI_CUSTOM_DSDT is not set +CONFIG_ACPI_INITRD_TABLE_OVERRIDE=y +CONFIG_ACPI_BLACKLIST_YEAR=0 +# CONFIG_ACPI_DEBUG is not set +CONFIG_ACPI_PCI_SLOT=m +CONFIG_X86_PM_TIMER=y +CONFIG_ACPI_CONTAINER=y +# CONFIG_ACPI_SBS is not set +CONFIG_ACPI_HED=m +# CONFIG_ACPI_CUSTOM_METHOD is not set +CONFIG_ACPI_BGRT=y +# CONFIG_ACPI_APEI is not set +# CONFIG_SFI is not set + +# +# CPU Frequency scaling +# +CONFIG_CPU_FREQ=y +CONFIG_CPU_FREQ_TABLE=y +CONFIG_CPU_FREQ_GOV_COMMON=y +CONFIG_CPU_FREQ_STAT=m +CONFIG_CPU_FREQ_STAT_DETAILS=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y +CONFIG_CPU_FREQ_GOV_POWERSAVE=m +CONFIG_CPU_FREQ_GOV_USERSPACE=y +CONFIG_CPU_FREQ_GOV_ONDEMAND=y +CONFIG_CPU_FREQ_GOV_CONSERVATIVE=m + +# +# x86 CPU frequency scaling drivers +# +# CONFIG_X86_PCC_CPUFREQ is not set +CONFIG_X86_ACPI_CPUFREQ=y +CONFIG_X86_ACPI_CPUFREQ_CPB=y +CONFIG_X86_POWERNOW_K8=m +# CONFIG_X86_SPEEDSTEP_CENTRINO is not set +# CONFIG_X86_P4_CLOCKMOD is not set + +# +# shared options +# +# CONFIG_X86_SPEEDSTEP_LIB is not set +CONFIG_CPU_IDLE=y +# CONFIG_CPU_IDLE_MULTIPLE_DRIVERS is not set +CONFIG_CPU_IDLE_GOV_LADDER=y +CONFIG_CPU_IDLE_GOV_MENU=y +# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set +CONFIG_INTEL_IDLE=y + +# +# Memory power savings +# +CONFIG_I7300_IDLE_IOAT_CHANNEL=y +CONFIG_I7300_IDLE=m + +# +# Bus options (PCI etc.) +# +CONFIG_PCI=y +CONFIG_PCI_DIRECT=y +CONFIG_PCI_MMCONFIG=y +CONFIG_PCI_XEN=y +CONFIG_PCI_DOMAINS=y +CONFIG_PCIEPORTBUS=y +# CONFIG_HOTPLUG_PCI_PCIE is not set +CONFIG_PCIEAER=y +# CONFIG_PCIE_ECRC is not set +# CONFIG_PCIEAER_INJECT is not set +CONFIG_PCIEASPM=y +# CONFIG_PCIEASPM_DEBUG is not set +CONFIG_PCIEASPM_DEFAULT=y +# CONFIG_PCIEASPM_POWERSAVE is not set +# CONFIG_PCIEASPM_PERFORMANCE is not set +CONFIG_ARCH_SUPPORTS_MSI=y +CONFIG_PCI_MSI=y +# CONFIG_PCI_DEBUG is not set +CONFIG_PCI_REALLOC_ENABLE_AUTO=y +# CONFIG_PCI_STUB is not set +CONFIG_XEN_PCIDEV_FRONTEND=y +CONFIG_HT_IRQ=y +CONFIG_PCI_ATS=y +CONFIG_PCI_IOV=y +CONFIG_PCI_PRI=y +CONFIG_PCI_PASID=y +CONFIG_PCI_IOAPIC=y +CONFIG_PCI_LABEL=y +CONFIG_ISA_DMA_API=y +CONFIG_AMD_NB=y +CONFIG_PCCARD=m +CONFIG_PCMCIA=m +CONFIG_PCMCIA_LOAD_CIS=y +CONFIG_CARDBUS=y + +# +# PC-card bridges +# +CONFIG_YENTA=m +CONFIG_YENTA_O2=y +CONFIG_YENTA_RICOH=y +CONFIG_YENTA_TI=y +CONFIG_YENTA_ENE_TUNE=y +CONFIG_YENTA_TOSHIBA=y +CONFIG_PD6729=m +CONFIG_I82092=m +CONFIG_PCCARD_NONSTATIC=y +CONFIG_HOTPLUG_PCI=y +CONFIG_HOTPLUG_PCI_ACPI=m +CONFIG_HOTPLUG_PCI_ACPI_IBM=m +# CONFIG_HOTPLUG_PCI_CPCI is not set +CONFIG_HOTPLUG_PCI_SHPC=m +# CONFIG_RAPIDIO is not set + +# +# Executable file formats / Emulations +# +CONFIG_BINFMT_ELF=y +CONFIG_COMPAT_BINFMT_ELF=y +CONFIG_ARCH_BINFMT_ELF_RANDOMIZE_PIE=y +CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y +# CONFIG_HAVE_AOUT is not set +CONFIG_BINFMT_MISC=y +CONFIG_COREDUMP=y +CONFIG_IA32_EMULATION=y +CONFIG_IA32_AOUT=m +# CONFIG_X86_X32 is not set +CONFIG_COMPAT=y +CONFIG_COMPAT_FOR_U64_ALIGNMENT=y +CONFIG_SYSVIPC_COMPAT=y +CONFIG_KEYS_COMPAT=y +CONFIG_HAVE_TEXT_POKE_SMP=y +CONFIG_X86_DEV_DMA_OPS=y +CONFIG_NET=y + +# +# Networking options +# +CONFIG_PACKET=y +CONFIG_PACKET_DIAG=m +CONFIG_UNIX=y +CONFIG_UNIX_DIAG=y +CONFIG_XFRM=y +CONFIG_XFRM_ALGO=y +CONFIG_XFRM_USER=y +CONFIG_XFRM_SUB_POLICY=y +CONFIG_XFRM_MIGRATE=y +CONFIG_XFRM_STATISTICS=y +CONFIG_XFRM_IPCOMP=m +CONFIG_NET_KEY=m +CONFIG_NET_KEY_MIGRATE=y +CONFIG_INET=y +CONFIG_IP_MULTICAST=y +CONFIG_IP_ADVANCED_ROUTER=y +# CONFIG_IP_FIB_TRIE_STATS is not set +CONFIG_IP_MULTIPLE_TABLES=y +CONFIG_IP_ROUTE_MULTIPATH=y +CONFIG_IP_ROUTE_VERBOSE=y +CONFIG_IP_ROUTE_CLASSID=y +CONFIG_IP_PNP=y +CONFIG_IP_PNP_DHCP=y +CONFIG_IP_PNP_BOOTP=y +CONFIG_IP_PNP_RARP=y +CONFIG_NET_IPIP=m +CONFIG_NET_IPGRE_DEMUX=m +CONFIG_NET_IPGRE=m +CONFIG_NET_IPGRE_BROADCAST=y +CONFIG_IP_MROUTE=y +CONFIG_IP_MROUTE_MULTIPLE_TABLES=y +CONFIG_IP_PIMSM_V1=y +CONFIG_IP_PIMSM_V2=y +CONFIG_ARPD=y +CONFIG_SYN_COOKIES=y +CONFIG_NET_IPVTI=m +CONFIG_INET_AH=m +CONFIG_INET_ESP=m +CONFIG_INET_IPCOMP=m +CONFIG_INET_XFRM_TUNNEL=m +CONFIG_INET_TUNNEL=y +CONFIG_INET_XFRM_MODE_TRANSPORT=m +CONFIG_INET_XFRM_MODE_TUNNEL=m +CONFIG_INET_XFRM_MODE_BEET=m +CONFIG_INET_LRO=y +CONFIG_INET_DIAG=m +CONFIG_INET_TCP_DIAG=m +CONFIG_INET_UDP_DIAG=m +CONFIG_TCP_CONG_ADVANCED=y +CONFIG_TCP_CONG_BIC=m +CONFIG_TCP_CONG_CUBIC=y +CONFIG_TCP_CONG_WESTWOOD=m +CONFIG_TCP_CONG_HTCP=m +CONFIG_TCP_CONG_HSTCP=m +CONFIG_TCP_CONG_HYBLA=m +CONFIG_TCP_CONG_VEGAS=m +CONFIG_TCP_CONG_SCALABLE=m +CONFIG_TCP_CONG_LP=m +CONFIG_TCP_CONG_VENO=m +CONFIG_TCP_CONG_YEAH=m +CONFIG_TCP_CONG_ILLINOIS=m +CONFIG_DEFAULT_CUBIC=y +# CONFIG_DEFAULT_RENO is not set +CONFIG_DEFAULT_TCP_CONG="cubic" +CONFIG_TCP_MD5SIG=y +CONFIG_IPV6=y +CONFIG_IPV6_PRIVACY=y +CONFIG_IPV6_ROUTER_PREF=y +CONFIG_IPV6_ROUTE_INFO=y +CONFIG_IPV6_OPTIMISTIC_DAD=y +CONFIG_INET6_AH=y +CONFIG_INET6_ESP=y +CONFIG_INET6_IPCOMP=m +CONFIG_IPV6_MIP6=m +CONFIG_INET6_XFRM_TUNNEL=m +CONFIG_INET6_TUNNEL=m +CONFIG_INET6_XFRM_MODE_TRANSPORT=y +CONFIG_INET6_XFRM_MODE_TUNNEL=y +CONFIG_INET6_XFRM_MODE_BEET=y +CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m +CONFIG_IPV6_SIT=y +# CONFIG_IPV6_SIT_6RD is not set +CONFIG_IPV6_NDISC_NODETYPE=y +CONFIG_IPV6_TUNNEL=m +CONFIG_IPV6_GRE=m +CONFIG_IPV6_MULTIPLE_TABLES=y +CONFIG_IPV6_SUBTREES=y +CONFIG_IPV6_MROUTE=y +CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y +CONFIG_IPV6_PIMSM_V2=y +CONFIG_NETLABEL=y +CONFIG_NETWORK_SECMARK=y +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +CONFIG_NETFILTER=y +# CONFIG_NETFILTER_DEBUG is not set +CONFIG_NETFILTER_ADVANCED=y +CONFIG_BRIDGE_NETFILTER=y + +# +# Core Netfilter Configuration +# +CONFIG_NETFILTER_NETLINK=y +CONFIG_NETFILTER_NETLINK_ACCT=m +CONFIG_NETFILTER_NETLINK_QUEUE=m +CONFIG_NETFILTER_NETLINK_LOG=y +CONFIG_NF_CONNTRACK=y +CONFIG_NF_CONNTRACK_MARK=y +CONFIG_NF_CONNTRACK_SECMARK=y +# CONFIG_NF_CONNTRACK_ZONES is not set +CONFIG_NF_CONNTRACK_PROCFS=y +CONFIG_NF_CONNTRACK_EVENTS=y +CONFIG_NF_CONNTRACK_TIMEOUT=y +# CONFIG_NF_CONNTRACK_TIMESTAMP is not set +CONFIG_NF_CT_PROTO_DCCP=m +CONFIG_NF_CT_PROTO_GRE=m +CONFIG_NF_CT_PROTO_SCTP=m +CONFIG_NF_CT_PROTO_UDPLITE=m +CONFIG_NF_CONNTRACK_AMANDA=m +CONFIG_NF_CONNTRACK_FTP=y +CONFIG_NF_CONNTRACK_H323=m +CONFIG_NF_CONNTRACK_IRC=y +CONFIG_NF_CONNTRACK_BROADCAST=m +CONFIG_NF_CONNTRACK_NETBIOS_NS=m +CONFIG_NF_CONNTRACK_SNMP=m +CONFIG_NF_CONNTRACK_PPTP=m +CONFIG_NF_CONNTRACK_SANE=m +CONFIG_NF_CONNTRACK_SIP=y +CONFIG_NF_CONNTRACK_TFTP=m +CONFIG_NF_CT_NETLINK=y +CONFIG_NF_CT_NETLINK_TIMEOUT=m +CONFIG_NF_CT_NETLINK_HELPER=m +CONFIG_NETFILTER_NETLINK_QUEUE_CT=y +CONFIG_NF_NAT=m +CONFIG_NF_NAT_NEEDED=y +CONFIG_NF_NAT_PROTO_DCCP=m +CONFIG_NF_NAT_PROTO_UDPLITE=m +CONFIG_NF_NAT_PROTO_SCTP=m +CONFIG_NF_NAT_AMANDA=m +CONFIG_NF_NAT_FTP=m +CONFIG_NF_NAT_IRC=m +CONFIG_NF_NAT_SIP=m +CONFIG_NF_NAT_TFTP=m +CONFIG_NETFILTER_TPROXY=m +CONFIG_NETFILTER_XTABLES=y + +# +# Xtables combined modules +# +CONFIG_NETFILTER_XT_MARK=y +CONFIG_NETFILTER_XT_CONNMARK=m +CONFIG_NETFILTER_XT_SET=m + +# +# Xtables targets +# +CONFIG_NETFILTER_XT_TARGET_AUDIT=m +CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m +CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m +CONFIG_NETFILTER_XT_TARGET_CONNMARK=m +CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=y +CONFIG_NETFILTER_XT_TARGET_CT=m +CONFIG_NETFILTER_XT_TARGET_DSCP=m +CONFIG_NETFILTER_XT_TARGET_HL=m +CONFIG_NETFILTER_XT_TARGET_HMARK=m +CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m +CONFIG_NETFILTER_XT_TARGET_LED=m +CONFIG_NETFILTER_XT_TARGET_LOG=y +CONFIG_NETFILTER_XT_TARGET_MARK=m +CONFIG_NETFILTER_XT_TARGET_NETMAP=m +CONFIG_NETFILTER_XT_TARGET_NFLOG=y +CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m +CONFIG_NETFILTER_XT_TARGET_NOTRACK=m +CONFIG_NETFILTER_XT_TARGET_RATEEST=m +CONFIG_NETFILTER_XT_TARGET_REDIRECT=m +CONFIG_NETFILTER_XT_TARGET_TEE=m +CONFIG_NETFILTER_XT_TARGET_TPROXY=m +CONFIG_NETFILTER_XT_TARGET_TRACE=m +CONFIG_NETFILTER_XT_TARGET_SECMARK=y +CONFIG_NETFILTER_XT_TARGET_TCPMSS=y +CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m + +# +# Xtables matches +# +CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m +CONFIG_NETFILTER_XT_MATCH_CLUSTER=m +CONFIG_NETFILTER_XT_MATCH_COMMENT=m +CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m +CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m +CONFIG_NETFILTER_XT_MATCH_CONNMARK=m +CONFIG_NETFILTER_XT_MATCH_CONNTRACK=y +CONFIG_NETFILTER_XT_MATCH_CPU=m +CONFIG_NETFILTER_XT_MATCH_DCCP=m +CONFIG_NETFILTER_XT_MATCH_DEVGROUP=m +CONFIG_NETFILTER_XT_MATCH_DSCP=m +CONFIG_NETFILTER_XT_MATCH_ECN=m +CONFIG_NETFILTER_XT_MATCH_ESP=m +CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m +CONFIG_NETFILTER_XT_MATCH_HELPER=m +CONFIG_NETFILTER_XT_MATCH_HL=m +CONFIG_NETFILTER_XT_MATCH_IPRANGE=m +CONFIG_NETFILTER_XT_MATCH_LENGTH=m +CONFIG_NETFILTER_XT_MATCH_LIMIT=m +CONFIG_NETFILTER_XT_MATCH_MAC=m +CONFIG_NETFILTER_XT_MATCH_MARK=y +CONFIG_NETFILTER_XT_MATCH_MULTIPORT=y +CONFIG_NETFILTER_XT_MATCH_NFACCT=m +CONFIG_NETFILTER_XT_MATCH_OSF=m +CONFIG_NETFILTER_XT_MATCH_OWNER=m +CONFIG_NETFILTER_XT_MATCH_POLICY=y +CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m +CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m +CONFIG_NETFILTER_XT_MATCH_QUOTA=m +CONFIG_NETFILTER_XT_MATCH_RATEEST=m +CONFIG_NETFILTER_XT_MATCH_REALM=m +CONFIG_NETFILTER_XT_MATCH_RECENT=m +CONFIG_NETFILTER_XT_MATCH_SCTP=m +CONFIG_NETFILTER_XT_MATCH_SOCKET=m +CONFIG_NETFILTER_XT_MATCH_STATE=y +CONFIG_NETFILTER_XT_MATCH_STATISTIC=m +CONFIG_NETFILTER_XT_MATCH_STRING=m +CONFIG_NETFILTER_XT_MATCH_TCPMSS=m +CONFIG_NETFILTER_XT_MATCH_TIME=m +CONFIG_NETFILTER_XT_MATCH_U32=m +CONFIG_IP_SET=y +CONFIG_IP_SET_MAX=256 +CONFIG_IP_SET_BITMAP_IP=y +CONFIG_IP_SET_BITMAP_IPMAC=y +CONFIG_IP_SET_BITMAP_PORT=y +CONFIG_IP_SET_HASH_IP=y +CONFIG_IP_SET_HASH_IPPORT=y +CONFIG_IP_SET_HASH_IPPORTIP=y +CONFIG_IP_SET_HASH_IPPORTNET=y +CONFIG_IP_SET_HASH_NET=y +CONFIG_IP_SET_HASH_NETPORT=y +CONFIG_IP_SET_HASH_NETIFACE=y +CONFIG_IP_SET_LIST_SET=y +# CONFIG_IP_VS is not set + +# +# IP: Netfilter Configuration +# +CONFIG_NF_DEFRAG_IPV4=y +CONFIG_NF_CONNTRACK_IPV4=y +CONFIG_NF_CONNTRACK_PROC_COMPAT=y +CONFIG_IP_NF_QUEUE=m +CONFIG_IP_NF_IPTABLES=y +CONFIG_IP_NF_MATCH_AH=m +CONFIG_IP_NF_MATCH_ECN=m +CONFIG_IP_NF_MATCH_RPFILTER=m +CONFIG_IP_NF_MATCH_TTL=m +CONFIG_IP_NF_FILTER=y +CONFIG_IP_NF_TARGET_REJECT=y +CONFIG_IP_NF_TARGET_ULOG=y +CONFIG_NF_NAT_IPV4=m +CONFIG_IP_NF_TARGET_MASQUERADE=m +CONFIG_IP_NF_TARGET_NETMAP=m +CONFIG_IP_NF_TARGET_REDIRECT=m +CONFIG_NF_NAT_SNMP_BASIC=m +CONFIG_NF_NAT_PROTO_GRE=m +CONFIG_NF_NAT_PPTP=m +CONFIG_NF_NAT_H323=m +CONFIG_IP_NF_MANGLE=y +CONFIG_IP_NF_TARGET_CLUSTERIP=m +CONFIG_IP_NF_TARGET_ECN=m +CONFIG_IP_NF_TARGET_TTL=m +CONFIG_IP_NF_RAW=m +CONFIG_IP_NF_SECURITY=m +CONFIG_IP_NF_ARPTABLES=m +CONFIG_IP_NF_ARPFILTER=m +CONFIG_IP_NF_ARP_MANGLE=m + +# +# IPv6: Netfilter Configuration +# +CONFIG_NF_DEFRAG_IPV6=y +CONFIG_NF_CONNTRACK_IPV6=y +CONFIG_IP6_NF_IPTABLES=y +CONFIG_IP6_NF_MATCH_AH=m +CONFIG_IP6_NF_MATCH_EUI64=m +CONFIG_IP6_NF_MATCH_FRAG=m +CONFIG_IP6_NF_MATCH_OPTS=m +CONFIG_IP6_NF_MATCH_HL=m +CONFIG_IP6_NF_MATCH_IPV6HEADER=y +CONFIG_IP6_NF_MATCH_MH=m +CONFIG_IP6_NF_MATCH_RPFILTER=m +CONFIG_IP6_NF_MATCH_RT=m +CONFIG_IP6_NF_TARGET_HL=m +CONFIG_IP6_NF_FILTER=y +CONFIG_IP6_NF_TARGET_REJECT=y +CONFIG_IP6_NF_MANGLE=y +CONFIG_IP6_NF_RAW=m +CONFIG_IP6_NF_SECURITY=m +CONFIG_NF_NAT_IPV6=m +CONFIG_IP6_NF_TARGET_MASQUERADE=m +CONFIG_IP6_NF_TARGET_NPT=m +CONFIG_BRIDGE_NF_EBTABLES=m +CONFIG_BRIDGE_EBT_BROUTE=m +CONFIG_BRIDGE_EBT_T_FILTER=m +CONFIG_BRIDGE_EBT_T_NAT=m +CONFIG_BRIDGE_EBT_802_3=m +CONFIG_BRIDGE_EBT_AMONG=m +CONFIG_BRIDGE_EBT_ARP=m +CONFIG_BRIDGE_EBT_IP=m +CONFIG_BRIDGE_EBT_IP6=m +CONFIG_BRIDGE_EBT_LIMIT=m +CONFIG_BRIDGE_EBT_MARK=m +CONFIG_BRIDGE_EBT_PKTTYPE=m +CONFIG_BRIDGE_EBT_STP=m +CONFIG_BRIDGE_EBT_VLAN=m +CONFIG_BRIDGE_EBT_ARPREPLY=m +CONFIG_BRIDGE_EBT_DNAT=m +CONFIG_BRIDGE_EBT_MARK_T=m +CONFIG_BRIDGE_EBT_REDIRECT=m +CONFIG_BRIDGE_EBT_SNAT=m +CONFIG_BRIDGE_EBT_LOG=m +CONFIG_BRIDGE_EBT_ULOG=m +CONFIG_BRIDGE_EBT_NFLOG=m +CONFIG_IP_DCCP=m +CONFIG_INET_DCCP_DIAG=m + +# +# DCCP CCIDs Configuration (EXPERIMENTAL) +# +# CONFIG_IP_DCCP_CCID2_DEBUG is not set +CONFIG_IP_DCCP_CCID3=y +# CONFIG_IP_DCCP_CCID3_DEBUG is not set +CONFIG_IP_DCCP_TFRC_LIB=y + +# +# DCCP Kernel Hacking +# +# CONFIG_IP_DCCP_DEBUG is not set +# CONFIG_NET_DCCPPROBE is not set +CONFIG_IP_SCTP=m +# CONFIG_NET_SCTPPROBE is not set +# CONFIG_SCTP_DBG_MSG is not set +# CONFIG_SCTP_DBG_OBJCNT is not set +CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5=y +# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1 is not set +# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set +CONFIG_SCTP_COOKIE_HMAC_MD5=y +CONFIG_SCTP_COOKIE_HMAC_SHA1=y +CONFIG_RDS=m +# CONFIG_RDS_RDMA is not set +# CONFIG_RDS_TCP is not set +# CONFIG_RDS_DEBUG is not set +CONFIG_TIPC=m +CONFIG_TIPC_PORTS=8191 +# CONFIG_ATM is not set +CONFIG_L2TP=m +# CONFIG_L2TP_DEBUGFS is not set +CONFIG_L2TP_V3=y +CONFIG_L2TP_IP=m +CONFIG_L2TP_ETH=m +CONFIG_STP=y +CONFIG_BRIDGE=y +CONFIG_BRIDGE_IGMP_SNOOPING=y +CONFIG_HAVE_NET_DSA=y +CONFIG_NET_DSA=m +CONFIG_NET_DSA_TAG_DSA=y +CONFIG_NET_DSA_TAG_EDSA=y +CONFIG_NET_DSA_TAG_TRAILER=y +CONFIG_VLAN_8021Q=y +# CONFIG_VLAN_8021Q_GVRP is not set +# CONFIG_DECNET is not set +CONFIG_LLC=y +# CONFIG_LLC2 is not set +# CONFIG_IPX is not set +# CONFIG_ATALK is not set +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +# CONFIG_WAN_ROUTER is not set +# CONFIG_PHONET is not set +# CONFIG_IEEE802154 is not set +CONFIG_NET_SCHED=y + +# +# Queueing/Scheduling +# +CONFIG_NET_SCH_CBQ=m +CONFIG_NET_SCH_HTB=m +CONFIG_NET_SCH_HFSC=m +CONFIG_NET_SCH_PRIO=m +CONFIG_NET_SCH_MULTIQ=m +CONFIG_NET_SCH_RED=m +CONFIG_NET_SCH_SFB=m +CONFIG_NET_SCH_SFQ=m +CONFIG_NET_SCH_TEQL=m +CONFIG_NET_SCH_TBF=m +CONFIG_NET_SCH_GRED=m +CONFIG_NET_SCH_DSMARK=m +CONFIG_NET_SCH_NETEM=m +CONFIG_NET_SCH_DRR=m +CONFIG_NET_SCH_MQPRIO=m +CONFIG_NET_SCH_CHOKE=m +CONFIG_NET_SCH_QFQ=m +CONFIG_NET_SCH_CODEL=m +CONFIG_NET_SCH_FQ_CODEL=m +CONFIG_NET_SCH_INGRESS=m +CONFIG_NET_SCH_PLUG=m + +# +# Classification +# +CONFIG_NET_CLS=y +CONFIG_NET_CLS_BASIC=m +CONFIG_NET_CLS_TCINDEX=m +CONFIG_NET_CLS_ROUTE4=m +CONFIG_NET_CLS_FW=m +CONFIG_NET_CLS_U32=m +CONFIG_CLS_U32_PERF=y +CONFIG_CLS_U32_MARK=y +CONFIG_NET_CLS_RSVP=m +CONFIG_NET_CLS_RSVP6=m +CONFIG_NET_CLS_FLOW=m +CONFIG_NET_CLS_CGROUP=m +CONFIG_NET_EMATCH=y +CONFIG_NET_EMATCH_STACK=32 +CONFIG_NET_EMATCH_CMP=m +CONFIG_NET_EMATCH_NBYTE=m +CONFIG_NET_EMATCH_U32=m +CONFIG_NET_EMATCH_META=m +CONFIG_NET_EMATCH_TEXT=m +CONFIG_NET_EMATCH_IPSET=m +CONFIG_NET_CLS_ACT=y +CONFIG_NET_ACT_POLICE=m +CONFIG_NET_ACT_GACT=m +CONFIG_GACT_PROB=y +CONFIG_NET_ACT_MIRRED=m +CONFIG_NET_ACT_IPT=m +CONFIG_NET_ACT_NAT=m +CONFIG_NET_ACT_PEDIT=m +CONFIG_NET_ACT_SIMP=m +CONFIG_NET_ACT_SKBEDIT=m +CONFIG_NET_ACT_CSUM=m +CONFIG_NET_CLS_IND=y +CONFIG_NET_SCH_FIFO=y +# CONFIG_DCB is not set +CONFIG_DNS_RESOLVER=y +# CONFIG_BATMAN_ADV is not set +CONFIG_OPENVSWITCH=m +CONFIG_RPS=y +CONFIG_RFS_ACCEL=y +CONFIG_XPS=y +CONFIG_NETPRIO_CGROUP=m +CONFIG_BQL=y +# CONFIG_BPF_JIT is not set + +# +# Network testing +# +CONFIG_NET_PKTGEN=m +CONFIG_NET_TCPPROBE=m +# CONFIG_NET_DROP_MONITOR is not set +# CONFIG_HAMRADIO is not set +# CONFIG_CAN is not set +# CONFIG_IRDA is not set +# CONFIG_BT is not set +# CONFIG_AF_RXRPC is not set +CONFIG_FIB_RULES=y +# CONFIG_WIRELESS is not set +# CONFIG_WIMAX is not set +# CONFIG_RFKILL is not set +# CONFIG_RFKILL_REGULATOR is not set +# CONFIG_NET_9P is not set +# CONFIG_CAIF is not set +CONFIG_CEPH_LIB=m +# CONFIG_CEPH_LIB_PRETTYDEBUG is not set +# CONFIG_CEPH_LIB_USE_DNS_RESOLVER is not set +# CONFIG_NFC is not set +CONFIG_HAVE_BPF_JIT=y + +# +# Device Drivers +# + +# +# Generic Driver Options +# +CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" +CONFIG_DEVTMPFS=y +CONFIG_DEVTMPFS_MOUNT=y +CONFIG_STANDALONE=y +CONFIG_PREVENT_FIRMWARE_BUILD=y +CONFIG_FW_LOADER=y +CONFIG_FIRMWARE_IN_KERNEL=y +CONFIG_EXTRA_FIRMWARE="radeon/R700_rlc.bin radeon/TURKS_mc.bin radeon/TURKS_me.bin radeon/TURKS_pfp.bin radeon/BTC_rlc.bin" +CONFIG_EXTRA_FIRMWARE_DIR="/lib/firmware" +# CONFIG_DEBUG_DRIVER is not set +CONFIG_DEBUG_DEVRES=y +CONFIG_SYS_HYPERVISOR=y +# CONFIG_GENERIC_CPU_DEVICES is not set +CONFIG_REGMAP=y +CONFIG_REGMAP_I2C=y +CONFIG_REGMAP_MMIO=m +CONFIG_REGMAP_IRQ=y +CONFIG_DMA_SHARED_BUFFER=y + +# +# Bus devices +# +CONFIG_CONNECTOR=y +CONFIG_PROC_EVENTS=y +# CONFIG_MTD is not set +CONFIG_PARPORT=m +CONFIG_PARPORT_PC=m +CONFIG_PARPORT_SERIAL=m +CONFIG_PARPORT_PC_FIFO=y +CONFIG_PARPORT_PC_SUPERIO=y +CONFIG_PARPORT_PC_PCMCIA=m +# CONFIG_PARPORT_GSC is not set +CONFIG_PARPORT_AX88796=m +CONFIG_PARPORT_1284=y +CONFIG_PARPORT_NOT_PC=y +CONFIG_PNP=y +CONFIG_PNP_DEBUG_MESSAGES=y + +# +# Protocols +# +CONFIG_PNPACPI=y +CONFIG_BLK_DEV=y +CONFIG_BLK_DEV_FD=m +CONFIG_PARIDE=m + +# +# Parallel IDE high-level drivers +# +CONFIG_PARIDE_PD=m +CONFIG_PARIDE_PCD=m +CONFIG_PARIDE_PF=m +CONFIG_PARIDE_PT=m +CONFIG_PARIDE_PG=m + +# +# Parallel IDE protocol modules +# +CONFIG_PARIDE_ATEN=m +CONFIG_PARIDE_BPCK=m +CONFIG_PARIDE_COMM=m +CONFIG_PARIDE_DSTR=m +CONFIG_PARIDE_FIT2=m +CONFIG_PARIDE_FIT3=m +CONFIG_PARIDE_EPAT=m +CONFIG_PARIDE_EPATC8=y +CONFIG_PARIDE_EPIA=m +CONFIG_PARIDE_FRIQ=m +CONFIG_PARIDE_FRPW=m +CONFIG_PARIDE_KBIC=m +CONFIG_PARIDE_KTTI=m +CONFIG_PARIDE_ON20=m +CONFIG_PARIDE_ON26=m +CONFIG_BLK_DEV_PCIESSD_MTIP32XX=m +CONFIG_BLK_CPQ_DA=m +CONFIG_BLK_CPQ_CISS_DA=m +CONFIG_CISS_SCSI_TAPE=y +CONFIG_BLK_DEV_DAC960=m +CONFIG_BLK_DEV_UMEM=m +# CONFIG_BLK_DEV_COW_COMMON is not set +CONFIG_BLK_DEV_LOOP=y +CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 +CONFIG_BLK_DEV_CRYPTOLOOP=m +CONFIG_BLK_DEV_DRBD=m +# CONFIG_DRBD_FAULT_INJECTION is not set +CONFIG_BLK_DEV_NBD=m +CONFIG_BLK_DEV_NVME=m +CONFIG_BLK_DEV_SX8=m +CONFIG_BLK_DEV_RAM=y +CONFIG_BLK_DEV_RAM_COUNT=16 +CONFIG_BLK_DEV_RAM_SIZE=16384 +# CONFIG_BLK_DEV_XIP is not set +CONFIG_CDROM_PKTCDVD=m +CONFIG_CDROM_PKTCDVD_BUFFERS=8 +# CONFIG_CDROM_PKTCDVD_WCACHE is not set +CONFIG_ATA_OVER_ETH=m +CONFIG_XEN_BLKDEV_FRONTEND=y +CONFIG_XEN_BLKDEV_BACKEND=m +CONFIG_VIRTIO_BLK=m +# CONFIG_BLK_DEV_HD is not set +CONFIG_BLK_DEV_RBD=m + +# +# Misc devices +# +# CONFIG_SENSORS_LIS3LV02D is not set +# CONFIG_AD525X_DPOT is not set +# CONFIG_IBM_ASM is not set +# CONFIG_PHANTOM is not set +# CONFIG_INTEL_MID_PTI is not set +# CONFIG_SGI_IOC4 is not set +CONFIG_TIFM_CORE=m +CONFIG_TIFM_7XX1=m +# CONFIG_ICS932S401 is not set +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_CS5535_MFGPT is not set +# CONFIG_HP_ILO is not set +# CONFIG_APDS9802ALS is not set +# CONFIG_ISL29003 is not set +# CONFIG_ISL29020 is not set +# CONFIG_SENSORS_TSL2550 is not set +# CONFIG_SENSORS_BH1780 is not set +# CONFIG_SENSORS_BH1770 is not set +# CONFIG_SENSORS_APDS990X is not set +# CONFIG_HMC6352 is not set +# CONFIG_DS1682 is not set +# CONFIG_VMWARE_BALLOON is not set +# CONFIG_BMP085_I2C is not set +# CONFIG_PCH_PHUB is not set +# CONFIG_USB_SWITCH_FSA9480 is not set +# CONFIG_C2PORT is not set + +# +# EEPROM support +# +CONFIG_EEPROM_AT24=m +CONFIG_EEPROM_LEGACY=m +CONFIG_EEPROM_MAX6875=m +CONFIG_EEPROM_93CX6=m +CONFIG_CB710_CORE=m +# CONFIG_CB710_DEBUG is not set +CONFIG_CB710_DEBUG_ASSUMPTIONS=y + +# +# Texas Instruments shared transport line discipline +# +# CONFIG_SENSORS_LIS3_I2C is not set + +# +# Altera FPGA firmware download module +# +CONFIG_ALTERA_STAPL=m +# CONFIG_INTEL_MEI is not set +CONFIG_HAVE_IDE=y +# CONFIG_IDE is not set + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +CONFIG_RAID_ATTRS=m +CONFIG_SCSI=y +CONFIG_SCSI_DMA=y +CONFIG_SCSI_TGT=m +CONFIG_SCSI_NETLINK=y +CONFIG_SCSI_PROC_FS=y + +# +# SCSI support type (disk, tape, CD-ROM) +# +CONFIG_BLK_DEV_SD=y +CONFIG_CHR_DEV_ST=m +CONFIG_CHR_DEV_OSST=m +CONFIG_BLK_DEV_SR=y +CONFIG_BLK_DEV_SR_VENDOR=y +CONFIG_CHR_DEV_SG=y +CONFIG_CHR_DEV_SCH=m +# CONFIG_SCSI_MULTI_LUN is not set +CONFIG_SCSI_CONSTANTS=y +CONFIG_SCSI_LOGGING=y +# CONFIG_SCSI_SCAN_ASYNC is not set + +# +# SCSI Transports +# +CONFIG_SCSI_SPI_ATTRS=y +CONFIG_SCSI_FC_ATTRS=m +# CONFIG_SCSI_FC_TGT_ATTRS is not set +CONFIG_SCSI_ISCSI_ATTRS=m +CONFIG_SCSI_SAS_ATTRS=m +CONFIG_SCSI_SAS_LIBSAS=m +CONFIG_SCSI_SAS_ATA=y +CONFIG_SCSI_SAS_HOST_SMP=y +CONFIG_SCSI_SRP_ATTRS=m +# CONFIG_SCSI_SRP_TGT_ATTRS is not set +CONFIG_SCSI_LOWLEVEL=y +CONFIG_ISCSI_TCP=m +CONFIG_ISCSI_BOOT_SYSFS=m +CONFIG_SCSI_CXGB3_ISCSI=m +CONFIG_SCSI_CXGB4_ISCSI=m +CONFIG_SCSI_BNX2_ISCSI=m +CONFIG_SCSI_BNX2X_FCOE=m +CONFIG_BE2ISCSI=m +CONFIG_BLK_DEV_3W_XXXX_RAID=m +CONFIG_SCSI_HPSA=m +CONFIG_SCSI_3W_9XXX=m +CONFIG_SCSI_3W_SAS=m +CONFIG_SCSI_ACARD=m +CONFIG_SCSI_AACRAID=m +CONFIG_SCSI_AIC7XXX=m +CONFIG_AIC7XXX_CMDS_PER_DEVICE=32 +CONFIG_AIC7XXX_RESET_DELAY_MS=5000 +CONFIG_AIC7XXX_DEBUG_ENABLE=y +CONFIG_AIC7XXX_DEBUG_MASK=0 +CONFIG_AIC7XXX_REG_PRETTY_PRINT=y +CONFIG_SCSI_AIC7XXX_OLD=m +CONFIG_SCSI_AIC79XX=m +CONFIG_AIC79XX_CMDS_PER_DEVICE=32 +CONFIG_AIC79XX_RESET_DELAY_MS=5000 +CONFIG_AIC79XX_DEBUG_ENABLE=y +CONFIG_AIC79XX_DEBUG_MASK=0 +CONFIG_AIC79XX_REG_PRETTY_PRINT=y +CONFIG_SCSI_AIC94XX=m +CONFIG_AIC94XX_DEBUG=y +CONFIG_SCSI_MVSAS=m +CONFIG_SCSI_MVSAS_DEBUG=y +CONFIG_SCSI_MVSAS_TASKLET=y +CONFIG_SCSI_MVUMI=m +CONFIG_SCSI_DPT_I2O=m +CONFIG_SCSI_ADVANSYS=m +CONFIG_SCSI_ARCMSR=m +# CONFIG_MEGARAID_NEWGEN is not set +CONFIG_MEGARAID_LEGACY=m +CONFIG_MEGARAID_SAS=m +CONFIG_SCSI_MPT2SAS=m +CONFIG_SCSI_MPT2SAS_MAX_SGE=128 +CONFIG_SCSI_MPT2SAS_LOGGING=y +CONFIG_SCSI_MPT3SAS=m +CONFIG_SCSI_MPT3SAS_MAX_SGE=128 +CONFIG_SCSI_MPT3SAS_LOGGING=y +CONFIG_SCSI_UFSHCD=m +CONFIG_SCSI_HPTIOP=m +CONFIG_SCSI_BUSLOGIC=m +CONFIG_VMWARE_PVSCSI=m +CONFIG_HYPERV_STORAGE=m +CONFIG_LIBFC=m +CONFIG_LIBFCOE=m +CONFIG_FCOE=m +CONFIG_FCOE_FNIC=m +CONFIG_SCSI_DMX3191D=m +CONFIG_SCSI_EATA=m +CONFIG_SCSI_EATA_TAGGED_QUEUE=y +CONFIG_SCSI_EATA_LINKED_COMMANDS=y +CONFIG_SCSI_EATA_MAX_TAGS=16 +CONFIG_SCSI_FUTURE_DOMAIN=m +CONFIG_SCSI_GDTH=m +CONFIG_SCSI_ISCI=m +CONFIG_SCSI_IPS=m +CONFIG_SCSI_INITIO=m +CONFIG_SCSI_INIA100=m +CONFIG_SCSI_PPA=m +CONFIG_SCSI_IMM=m +# CONFIG_SCSI_IZIP_EPP16 is not set +# CONFIG_SCSI_IZIP_SLOW_CTR is not set +CONFIG_SCSI_STEX=m +CONFIG_SCSI_SYM53C8XX_2=m +CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=1 +CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16 +CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64 +CONFIG_SCSI_SYM53C8XX_MMIO=y +CONFIG_SCSI_IPR=m +CONFIG_SCSI_IPR_TRACE=y +CONFIG_SCSI_IPR_DUMP=y +CONFIG_SCSI_QLOGIC_1280=m +CONFIG_SCSI_QLA_FC=m +CONFIG_SCSI_QLA_ISCSI=m +CONFIG_SCSI_LPFC=m +# CONFIG_SCSI_LPFC_DEBUG_FS is not set +CONFIG_SCSI_DC395x=m +CONFIG_SCSI_DC390T=m +CONFIG_SCSI_DEBUG=m +CONFIG_SCSI_PMCRAID=m +CONFIG_SCSI_PM8001=m +CONFIG_SCSI_SRP=m +CONFIG_SCSI_BFA_FC=m +# CONFIG_SCSI_VIRTIO is not set +CONFIG_SCSI_CHELSIO_FCOE=m +CONFIG_SCSI_LOWLEVEL_PCMCIA=y +CONFIG_PCMCIA_AHA152X=m +CONFIG_PCMCIA_FDOMAIN=m +CONFIG_PCMCIA_QLOGIC=m +CONFIG_PCMCIA_SYM53C500=m +CONFIG_SCSI_DH=m +CONFIG_SCSI_DH_RDAC=m +CONFIG_SCSI_DH_HP_SW=m +CONFIG_SCSI_DH_EMC=m +CONFIG_SCSI_DH_ALUA=m +# CONFIG_SCSI_OSD_INITIATOR is not set +CONFIG_ATA=y +# CONFIG_ATA_NONSTANDARD is not set +CONFIG_ATA_VERBOSE_ERROR=y +CONFIG_ATA_ACPI=y +CONFIG_SATA_PMP=y + +# +# Controllers with non-SFF native interface +# +CONFIG_SATA_AHCI=y +CONFIG_SATA_AHCI_PLATFORM=y +CONFIG_SATA_INIC162X=m +CONFIG_SATA_ACARD_AHCI=m +CONFIG_SATA_SIL24=m +CONFIG_ATA_SFF=y + +# +# SFF controllers with custom DMA interface +# +CONFIG_PDC_ADMA=m +CONFIG_SATA_QSTOR=m +CONFIG_SATA_SX4=m +CONFIG_ATA_BMDMA=y + +# +# SATA SFF controllers with BMDMA +# +CONFIG_ATA_PIIX=y +CONFIG_SATA_HIGHBANK=m +CONFIG_SATA_MV=m +CONFIG_SATA_NV=m +CONFIG_SATA_PROMISE=m +CONFIG_SATA_SIL=m +CONFIG_SATA_SIS=m +CONFIG_SATA_SVW=m +CONFIG_SATA_ULI=m +CONFIG_SATA_VIA=m +CONFIG_SATA_VITESSE=m + +# +# PATA SFF controllers with BMDMA +# +CONFIG_PATA_ALI=m +CONFIG_PATA_AMD=y +CONFIG_PATA_ARASAN_CF=m +CONFIG_PATA_ARTOP=m +CONFIG_PATA_ATIIXP=m +CONFIG_PATA_ATP867X=m +CONFIG_PATA_CMD64X=m +CONFIG_PATA_CS5520=m +CONFIG_PATA_CS5530=m +CONFIG_PATA_CS5536=m +CONFIG_PATA_CYPRESS=m +CONFIG_PATA_EFAR=m +CONFIG_PATA_HPT366=m +CONFIG_PATA_HPT37X=m +CONFIG_PATA_HPT3X2N=m +CONFIG_PATA_HPT3X3=m +CONFIG_PATA_HPT3X3_DMA=y +CONFIG_PATA_IT8213=m +CONFIG_PATA_IT821X=m +CONFIG_PATA_JMICRON=m +CONFIG_PATA_MARVELL=m +CONFIG_PATA_NETCELL=m +CONFIG_PATA_NINJA32=m +CONFIG_PATA_NS87415=m +CONFIG_PATA_OLDPIIX=y +CONFIG_PATA_OPTIDMA=m +CONFIG_PATA_PDC2027X=m +CONFIG_PATA_PDC_OLD=m +CONFIG_PATA_RADISYS=m +CONFIG_PATA_RDC=m +CONFIG_PATA_SC1200=m +CONFIG_PATA_SCH=y +CONFIG_PATA_SERVERWORKS=m +CONFIG_PATA_SIL680=m +CONFIG_PATA_SIS=m +CONFIG_PATA_TOSHIBA=m +CONFIG_PATA_TRIFLEX=m +CONFIG_PATA_VIA=m +CONFIG_PATA_WINBOND=m + +# +# PIO-only SFF controllers +# +CONFIG_PATA_CMD640_PCI=m +CONFIG_PATA_MPIIX=m +CONFIG_PATA_NS87410=m +CONFIG_PATA_OPTI=m +CONFIG_PATA_PCMCIA=m +CONFIG_PATA_RZ1000=m + +# +# Generic fallback / legacy drivers +# +CONFIG_PATA_ACPI=m +CONFIG_ATA_GENERIC=m +CONFIG_PATA_LEGACY=m +CONFIG_MD=y +CONFIG_BLK_DEV_MD=y +CONFIG_MD_AUTODETECT=y +CONFIG_MD_LINEAR=y +CONFIG_MD_RAID0=y +CONFIG_MD_RAID1=y +CONFIG_MD_RAID10=y +CONFIG_MD_RAID456=m +CONFIG_MULTICORE_RAID456=y +CONFIG_MD_MULTIPATH=m +CONFIG_MD_FAULTY=m +CONFIG_BLK_DEV_DM=y +# CONFIG_DM_DEBUG is not set +CONFIG_DM_BUFIO=m +CONFIG_DM_BIO_PRISON=m +CONFIG_DM_PERSISTENT_DATA=m +CONFIG_DM_CRYPT=m +CONFIG_DM_SNAPSHOT=m +CONFIG_DM_THIN_PROVISIONING=m +CONFIG_DM_DEBUG_BLOCK_STACK_TRACING=y +CONFIG_DM_MIRROR=y +CONFIG_DM_RAID=m +CONFIG_DM_LOG_USERSPACE=m +CONFIG_DM_ZERO=y +CONFIG_DM_MULTIPATH=m +CONFIG_DM_MULTIPATH_QL=m +CONFIG_DM_MULTIPATH_ST=m +# CONFIG_DM_DELAY is not set +# CONFIG_DM_UEVENT is not set +CONFIG_DM_FLAKEY=m +CONFIG_DM_VERITY=m +# CONFIG_TARGET_CORE is not set +# CONFIG_FUSION is not set + +# +# IEEE 1394 (FireWire) support +# +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# CONFIG_I2O is not set +CONFIG_MACINTOSH_DRIVERS=y +CONFIG_MAC_EMUMOUSEBTN=y +CONFIG_NETDEVICES=y +CONFIG_NET_CORE=y +CONFIG_BONDING=m +CONFIG_DUMMY=m +CONFIG_EQUALIZER=m +# CONFIG_NET_FC is not set +CONFIG_MII=y +CONFIG_IFB=m +CONFIG_NET_TEAM=m +CONFIG_NET_TEAM_MODE_BROADCAST=m +CONFIG_NET_TEAM_MODE_ROUNDROBIN=m +CONFIG_NET_TEAM_MODE_ACTIVEBACKUP=m +CONFIG_NET_TEAM_MODE_LOADBALANCE=m +CONFIG_MACVLAN=m +CONFIG_MACVTAP=m +CONFIG_VXLAN=m +CONFIG_NETCONSOLE=y +CONFIG_NETPOLL=y +# CONFIG_NETPOLL_TRAP is not set +CONFIG_NET_POLL_CONTROLLER=y +CONFIG_TUN=y +CONFIG_VETH=m +CONFIG_VIRTIO_NET=m +CONFIG_SUNGEM_PHY=m +CONFIG_ARCNET=m +CONFIG_ARCNET_1201=m +CONFIG_ARCNET_1051=m +CONFIG_ARCNET_RAW=m +CONFIG_ARCNET_CAP=m +CONFIG_ARCNET_COM90xx=m +CONFIG_ARCNET_COM90xxIO=m +CONFIG_ARCNET_RIM_I=m +CONFIG_ARCNET_COM20020=m +CONFIG_ARCNET_COM20020_PCI=m +CONFIG_ARCNET_COM20020_CS=m + +# +# CAIF transport drivers +# + +# +# Distributed Switch Architecture drivers +# +CONFIG_NET_DSA_MV88E6XXX=m +CONFIG_NET_DSA_MV88E6060=m +CONFIG_NET_DSA_MV88E6XXX_NEED_PPU=y +CONFIG_NET_DSA_MV88E6131=m +CONFIG_NET_DSA_MV88E6123_61_65=m +CONFIG_ETHERNET=y +CONFIG_MDIO=m +CONFIG_NET_VENDOR_3COM=y +CONFIG_PCMCIA_3C574=m +CONFIG_PCMCIA_3C589=m +CONFIG_VORTEX=m +CONFIG_TYPHOON=m +CONFIG_NET_VENDOR_ADAPTEC=y +CONFIG_ADAPTEC_STARFIRE=m +CONFIG_NET_VENDOR_ALTEON=y +CONFIG_ACENIC=m +# CONFIG_ACENIC_OMIT_TIGON_I is not set +CONFIG_NET_VENDOR_AMD=y +CONFIG_AMD8111_ETH=m +CONFIG_PCNET32=m +CONFIG_PCMCIA_NMCLAN=m +CONFIG_NET_VENDOR_ATHEROS=y +CONFIG_ATL2=m +CONFIG_ATL1=m +CONFIG_ATL1E=m +CONFIG_ATL1C=m +CONFIG_NET_CADENCE=y +CONFIG_ARM_AT91_ETHER=m +CONFIG_MACB=m +CONFIG_NET_VENDOR_BROADCOM=y +CONFIG_B44=m +CONFIG_B44_PCI_AUTOSELECT=y +CONFIG_B44_PCICORE_AUTOSELECT=y +CONFIG_B44_PCI=y +CONFIG_BNX2=m +CONFIG_CNIC=m +CONFIG_TIGON3=y +CONFIG_BNX2X=m +CONFIG_NET_VENDOR_BROCADE=y +CONFIG_BNA=m +CONFIG_NET_CALXEDA_XGMAC=m +CONFIG_NET_VENDOR_CHELSIO=y +CONFIG_CHELSIO_T1=m +CONFIG_CHELSIO_T1_1G=y +CONFIG_CHELSIO_T3=m +CONFIG_CHELSIO_T4=m +CONFIG_CHELSIO_T4VF=m +CONFIG_NET_VENDOR_CISCO=y +CONFIG_ENIC=m +CONFIG_DNET=m +CONFIG_NET_VENDOR_DEC=y +CONFIG_NET_TULIP=y +CONFIG_DE2104X=m +CONFIG_DE2104X_DSL=0 +CONFIG_TULIP=m +CONFIG_TULIP_MWI=y +CONFIG_TULIP_MMIO=y +# CONFIG_TULIP_NAPI is not set +CONFIG_DE4X5=m +CONFIG_WINBOND_840=m +CONFIG_DM9102=m +CONFIG_ULI526X=m +CONFIG_PCMCIA_XIRCOM=m +CONFIG_NET_VENDOR_DLINK=y +CONFIG_DE600=m +CONFIG_DE620=m +CONFIG_DL2K=m +CONFIG_SUNDANCE=m +# CONFIG_SUNDANCE_MMIO is not set +CONFIG_NET_VENDOR_EMULEX=y +CONFIG_BE2NET=m +CONFIG_NET_VENDOR_EXAR=y +CONFIG_S2IO=m +CONFIG_VXGE=m +# CONFIG_VXGE_DEBUG_TRACE_ALL is not set +CONFIG_NET_VENDOR_FUJITSU=y +CONFIG_PCMCIA_FMVJ18X=m +CONFIG_NET_VENDOR_HP=y +CONFIG_HP100=m +CONFIG_NET_VENDOR_INTEL=y +CONFIG_E100=y +CONFIG_E1000=y +CONFIG_E1000E=m +CONFIG_IGB=m +CONFIG_IGBVF=m +CONFIG_IXGB=m +CONFIG_IXGBE=m +CONFIG_IXGBE_HWMON=y +CONFIG_IXGBEVF=m +CONFIG_NET_VENDOR_I825XX=y +CONFIG_ZNET=m +CONFIG_IP1000=m +CONFIG_JME=m +CONFIG_NET_VENDOR_MARVELL=y +CONFIG_MVMDIO=m +CONFIG_SKGE=m +# CONFIG_SKGE_DEBUG is not set +# CONFIG_SKGE_GENESIS is not set +CONFIG_SKY2=y +# CONFIG_SKY2_DEBUG is not set +CONFIG_NET_VENDOR_MELLANOX=y +CONFIG_MLX4_EN=m +CONFIG_MLX4_CORE=m +CONFIG_MLX4_DEBUG=y +CONFIG_NET_VENDOR_MICREL=y +# CONFIG_KS8842 is not set +CONFIG_KS8851_MLL=m +CONFIG_KSZ884X_PCI=m +CONFIG_NET_VENDOR_MYRI=y +CONFIG_MYRI10GE=m +CONFIG_FEALNX=m +CONFIG_NET_VENDOR_NATSEMI=y +CONFIG_NATSEMI=m +CONFIG_NS83820=m +CONFIG_NET_VENDOR_8390=y +CONFIG_PCMCIA_AXNET=m +CONFIG_NE2K_PCI=m +CONFIG_PCMCIA_PCNET=m +CONFIG_NET_VENDOR_NVIDIA=y +CONFIG_FORCEDETH=y +CONFIG_NET_VENDOR_OKI=y +CONFIG_PCH_GBE=m +CONFIG_ETHOC=m +CONFIG_NET_PACKET_ENGINE=y +CONFIG_HAMACHI=m +CONFIG_YELLOWFIN=m +CONFIG_NET_VENDOR_QLOGIC=y +CONFIG_QLA3XXX=m +CONFIG_QLCNIC=m +CONFIG_QLGE=m +CONFIG_NETXEN_NIC=m +CONFIG_NET_VENDOR_REALTEK=y +CONFIG_ATP=m +CONFIG_8139CP=m +CONFIG_8139TOO=y +CONFIG_8139TOO_PIO=y +CONFIG_8139TOO_TUNE_TWISTER=y +# CONFIG_8139TOO_8129 is not set +# CONFIG_8139_OLD_RX_RESET is not set +CONFIG_R8169=y +CONFIG_NET_VENDOR_RDC=y +CONFIG_R6040=m +CONFIG_NET_VENDOR_SEEQ=y +CONFIG_SEEQ8005=m +CONFIG_NET_VENDOR_SILAN=y +CONFIG_SC92031=m +CONFIG_NET_VENDOR_SIS=y +CONFIG_SIS900=m +CONFIG_SIS190=m +CONFIG_SFC=m +CONFIG_SFC_MCDI_MON=y +CONFIG_SFC_SRIOV=y +CONFIG_NET_VENDOR_SMSC=y +CONFIG_PCMCIA_SMC91C92=m +CONFIG_EPIC100=m +CONFIG_SMSC9420=m +CONFIG_NET_VENDOR_STMICRO=y +CONFIG_STMMAC_ETH=m +CONFIG_STMMAC_PLATFORM=y +CONFIG_STMMAC_PCI=y +CONFIG_STMMAC_DEBUG_FS=y +# CONFIG_STMMAC_DA is not set +CONFIG_STMMAC_RING=y +# CONFIG_STMMAC_CHAINED is not set +CONFIG_NET_VENDOR_SUN=y +CONFIG_HAPPYMEAL=m +CONFIG_SUNGEM=m +# CONFIG_CASSINI is not set +CONFIG_NIU=m +CONFIG_NET_VENDOR_TEHUTI=y +CONFIG_TEHUTI=m +CONFIG_NET_VENDOR_TI=y +CONFIG_TLAN=m +CONFIG_NET_VENDOR_VIA=y +CONFIG_VIA_RHINE=m +# CONFIG_VIA_RHINE_MMIO is not set +CONFIG_VIA_VELOCITY=m +CONFIG_NET_VENDOR_WIZNET=y +CONFIG_WIZNET_W5100=m +CONFIG_WIZNET_W5300=m +# CONFIG_WIZNET_BUS_DIRECT is not set +# CONFIG_WIZNET_BUS_INDIRECT is not set +CONFIG_WIZNET_BUS_ANY=y +CONFIG_NET_VENDOR_XIRCOM=y +CONFIG_PCMCIA_XIRC2PS=m +CONFIG_FDDI=y +# CONFIG_DEFXX is not set +# CONFIG_SKFP is not set +# CONFIG_HIPPI is not set +# CONFIG_NET_SB1000 is not set +CONFIG_PHYLIB=y + +# +# MII PHY device drivers +# +CONFIG_AT803X_PHY=m +CONFIG_AMD_PHY=m +CONFIG_MARVELL_PHY=m +CONFIG_DAVICOM_PHY=m +CONFIG_QSEMI_PHY=m +CONFIG_LXT_PHY=m +CONFIG_CICADA_PHY=m +CONFIG_VITESSE_PHY=m +CONFIG_SMSC_PHY=m +CONFIG_BROADCOM_PHY=m +CONFIG_BCM87XX_PHY=m +CONFIG_ICPLUS_PHY=m +CONFIG_REALTEK_PHY=m +CONFIG_NATIONAL_PHY=m +CONFIG_STE10XP=m +CONFIG_LSI_ET1011C_PHY=m +CONFIG_MICREL_PHY=m +# CONFIG_FIXED_PHY is not set +CONFIG_MDIO_BITBANG=m +# CONFIG_PLIP is not set +CONFIG_PPP=m +CONFIG_PPP_BSDCOMP=m +CONFIG_PPP_DEFLATE=m +CONFIG_PPP_FILTER=y +CONFIG_PPP_MPPE=m +CONFIG_PPP_MULTILINK=y +CONFIG_PPPOE=m +CONFIG_PPTP=m +CONFIG_PPPOL2TP=m +CONFIG_PPP_ASYNC=m +CONFIG_PPP_SYNC_TTY=m +CONFIG_SLIP=m +CONFIG_SLHC=m +CONFIG_SLIP_COMPRESSED=y +# CONFIG_SLIP_SMART is not set +# CONFIG_SLIP_MODE_SLIP6 is not set + +# +# USB Network Adapters +# +CONFIG_USB_CATC=m +CONFIG_USB_KAWETH=m +CONFIG_USB_PEGASUS=m +CONFIG_USB_RTL8150=m +CONFIG_USB_USBNET=m +CONFIG_USB_NET_AX8817X=m +CONFIG_USB_NET_CDCETHER=m +CONFIG_USB_NET_CDC_EEM=m +CONFIG_USB_NET_CDC_NCM=m +CONFIG_USB_NET_CDC_MBIM=m +CONFIG_USB_NET_DM9601=m +CONFIG_USB_NET_SMSC75XX=m +CONFIG_USB_NET_SMSC95XX=m +CONFIG_USB_NET_GL620A=m +CONFIG_USB_NET_NET1080=m +CONFIG_USB_NET_PLUSB=m +CONFIG_USB_NET_MCS7830=m +CONFIG_USB_NET_RNDIS_HOST=m +CONFIG_USB_NET_CDC_SUBSET=m +CONFIG_USB_ALI_M5632=y +CONFIG_USB_AN2720=y +CONFIG_USB_BELKIN=y +CONFIG_USB_ARMLINUX=y +CONFIG_USB_EPSON2888=y +CONFIG_USB_KC2190=y +CONFIG_USB_NET_ZAURUS=m +CONFIG_USB_NET_CX82310_ETH=m +CONFIG_USB_NET_KALMIA=m +CONFIG_USB_NET_QMI_WWAN=m +CONFIG_USB_NET_INT51X1=m +CONFIG_USB_IPHETH=m +CONFIG_USB_SIERRA_NET=m +CONFIG_USB_VL600=m +# CONFIG_WLAN is not set + +# +# Enable WiMAX (Networking options) to see the WiMAX drivers +# +# CONFIG_WAN is not set +CONFIG_XEN_NETDEV_FRONTEND=y +# CONFIG_XEN_NETDEV_BACKEND is not set +# CONFIG_VMXNET3 is not set +# CONFIG_HYPERV_NET is not set +# CONFIG_ISDN is not set + +# +# Input device support +# +CONFIG_INPUT=y +CONFIG_INPUT_FF_MEMLESS=y +CONFIG_INPUT_POLLDEV=y +CONFIG_INPUT_SPARSEKMAP=y +CONFIG_INPUT_MATRIXKMAP=m + +# +# Userland interfaces +# +CONFIG_INPUT_MOUSEDEV=y +# CONFIG_INPUT_MOUSEDEV_PSAUX is not set +CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 +CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 +# CONFIG_INPUT_JOYDEV is not set +CONFIG_INPUT_EVDEV=y +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +CONFIG_INPUT_KEYBOARD=y +CONFIG_KEYBOARD_ADP5520=m +CONFIG_KEYBOARD_ADP5588=m +CONFIG_KEYBOARD_ADP5589=m +CONFIG_KEYBOARD_ATKBD=y +CONFIG_KEYBOARD_QT1070=m +CONFIG_KEYBOARD_QT2160=m +CONFIG_KEYBOARD_LKKBD=m +CONFIG_KEYBOARD_TCA6416=m +CONFIG_KEYBOARD_TCA8418=m +CONFIG_KEYBOARD_LM8323=m +CONFIG_KEYBOARD_LM8333=m +CONFIG_KEYBOARD_MAX7359=m +CONFIG_KEYBOARD_MCS=m +CONFIG_KEYBOARD_MPR121=m +CONFIG_KEYBOARD_NEWTON=m +CONFIG_KEYBOARD_OPENCORES=m +CONFIG_KEYBOARD_STOWAWAY=m +CONFIG_KEYBOARD_SUNKBD=m +CONFIG_KEYBOARD_STMPE=m +CONFIG_KEYBOARD_TC3589X=m +CONFIG_KEYBOARD_TWL4030=m +CONFIG_KEYBOARD_XTKBD=m +CONFIG_INPUT_MOUSE=y +CONFIG_MOUSE_PS2=y +CONFIG_MOUSE_PS2_ALPS=y +CONFIG_MOUSE_PS2_LOGIPS2PP=y +CONFIG_MOUSE_PS2_SYNAPTICS=y +CONFIG_MOUSE_PS2_LIFEBOOK=y +CONFIG_MOUSE_PS2_TRACKPOINT=y +# CONFIG_MOUSE_PS2_ELANTECH is not set +# CONFIG_MOUSE_PS2_SENTELIC is not set +# CONFIG_MOUSE_PS2_TOUCHKIT is not set +CONFIG_MOUSE_SERIAL=m +CONFIG_MOUSE_APPLETOUCH=m +CONFIG_MOUSE_BCM5974=m +CONFIG_MOUSE_VSXXXAA=m +CONFIG_MOUSE_SYNAPTICS_I2C=m +CONFIG_MOUSE_SYNAPTICS_USB=m +CONFIG_INPUT_JOYSTICK=y +CONFIG_JOYSTICK_ANALOG=m +CONFIG_JOYSTICK_A3D=m +CONFIG_JOYSTICK_ADI=m +CONFIG_JOYSTICK_COBRA=m +CONFIG_JOYSTICK_GF2K=m +CONFIG_JOYSTICK_GRIP=m +CONFIG_JOYSTICK_GRIP_MP=m +CONFIG_JOYSTICK_GUILLEMOT=m +CONFIG_JOYSTICK_INTERACT=m +CONFIG_JOYSTICK_SIDEWINDER=m +CONFIG_JOYSTICK_TMDC=m +CONFIG_JOYSTICK_IFORCE=m +CONFIG_JOYSTICK_IFORCE_USB=y +CONFIG_JOYSTICK_IFORCE_232=y +CONFIG_JOYSTICK_WARRIOR=m +CONFIG_JOYSTICK_MAGELLAN=m +CONFIG_JOYSTICK_SPACEORB=m +CONFIG_JOYSTICK_SPACEBALL=m +CONFIG_JOYSTICK_STINGER=m +CONFIG_JOYSTICK_TWIDJOY=m +CONFIG_JOYSTICK_ZHENHUA=m +CONFIG_JOYSTICK_DB9=m +CONFIG_JOYSTICK_GAMECON=m +CONFIG_JOYSTICK_TURBOGRAFX=m +CONFIG_JOYSTICK_AS5011=m +CONFIG_JOYSTICK_JOYDUMP=m +CONFIG_JOYSTICK_XPAD=m +CONFIG_JOYSTICK_XPAD_FF=y +CONFIG_JOYSTICK_XPAD_LEDS=y +CONFIG_JOYSTICK_WALKERA0701=m +CONFIG_INPUT_TABLET=y +CONFIG_TABLET_USB_ACECAD=m +CONFIG_TABLET_USB_AIPTEK=m +CONFIG_TABLET_USB_GTCO=m +CONFIG_TABLET_USB_HANWANG=m +CONFIG_TABLET_USB_KBTAB=m +CONFIG_TABLET_USB_WACOM=m +CONFIG_INPUT_TOUCHSCREEN=y +CONFIG_TOUCHSCREEN_88PM860X=m +CONFIG_TOUCHSCREEN_AD7879=m +CONFIG_TOUCHSCREEN_AD7879_I2C=m +CONFIG_TOUCHSCREEN_ATMEL_MXT=m +CONFIG_TOUCHSCREEN_BU21013=m +CONFIG_TOUCHSCREEN_CYTTSP_CORE=m +CONFIG_TOUCHSCREEN_CYTTSP_I2C=m +CONFIG_TOUCHSCREEN_DA9034=y +CONFIG_TOUCHSCREEN_DA9052=m +CONFIG_TOUCHSCREEN_DYNAPRO=m +CONFIG_TOUCHSCREEN_HAMPSHIRE=m +CONFIG_TOUCHSCREEN_EETI=m +CONFIG_TOUCHSCREEN_FUJITSU=m +CONFIG_TOUCHSCREEN_ILI210X=m +CONFIG_TOUCHSCREEN_GUNZE=m +CONFIG_TOUCHSCREEN_ELO=m +CONFIG_TOUCHSCREEN_WACOM_W8001=m +CONFIG_TOUCHSCREEN_WACOM_I2C=m +CONFIG_TOUCHSCREEN_MAX11801=m +CONFIG_TOUCHSCREEN_MCS5000=m +CONFIG_TOUCHSCREEN_MMS114=m +CONFIG_TOUCHSCREEN_MTOUCH=m +CONFIG_TOUCHSCREEN_INEXIO=m +CONFIG_TOUCHSCREEN_MK712=m +CONFIG_TOUCHSCREEN_PENMOUNT=m +CONFIG_TOUCHSCREEN_EDT_FT5X06=m +CONFIG_TOUCHSCREEN_TOUCHRIGHT=m +CONFIG_TOUCHSCREEN_TOUCHWIN=m +CONFIG_TOUCHSCREEN_TI_AM335X_TSC=m +CONFIG_TOUCHSCREEN_PIXCIR=m +CONFIG_TOUCHSCREEN_WM831X=m +CONFIG_TOUCHSCREEN_WM97XX=m +CONFIG_TOUCHSCREEN_WM9705=y +CONFIG_TOUCHSCREEN_WM9712=y +CONFIG_TOUCHSCREEN_WM9713=y +CONFIG_TOUCHSCREEN_USB_COMPOSITE=m +CONFIG_TOUCHSCREEN_MC13783=m +CONFIG_TOUCHSCREEN_USB_EGALAX=y +CONFIG_TOUCHSCREEN_USB_PANJIT=y +CONFIG_TOUCHSCREEN_USB_3M=y +CONFIG_TOUCHSCREEN_USB_ITM=y +CONFIG_TOUCHSCREEN_USB_ETURBO=y +CONFIG_TOUCHSCREEN_USB_GUNZE=y +CONFIG_TOUCHSCREEN_USB_DMC_TSC10=y +CONFIG_TOUCHSCREEN_USB_IRTOUCH=y +CONFIG_TOUCHSCREEN_USB_IDEALTEK=y +CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH=y +CONFIG_TOUCHSCREEN_USB_GOTOP=y +CONFIG_TOUCHSCREEN_USB_JASTEC=y +CONFIG_TOUCHSCREEN_USB_ELO=y +CONFIG_TOUCHSCREEN_USB_E2I=y +CONFIG_TOUCHSCREEN_USB_ZYTRONIC=y +CONFIG_TOUCHSCREEN_USB_ETT_TC45USB=y +CONFIG_TOUCHSCREEN_USB_NEXIO=y +CONFIG_TOUCHSCREEN_USB_EASYTOUCH=y +CONFIG_TOUCHSCREEN_TOUCHIT213=m +CONFIG_TOUCHSCREEN_TSC_SERIO=m +CONFIG_TOUCHSCREEN_TSC2007=m +CONFIG_TOUCHSCREEN_ST1232=m +CONFIG_TOUCHSCREEN_STMPE=m +CONFIG_TOUCHSCREEN_TPS6507X=m +CONFIG_INPUT_MISC=y +CONFIG_INPUT_88PM860X_ONKEY=m +CONFIG_INPUT_88PM80X_ONKEY=m +CONFIG_INPUT_AD714X=m +CONFIG_INPUT_AD714X_I2C=m +CONFIG_INPUT_BMA150=m +CONFIG_INPUT_PCSPKR=m +# CONFIG_INPUT_MAX8925_ONKEY is not set +CONFIG_INPUT_MC13783_PWRBUTTON=m +CONFIG_INPUT_MMA8450=m +CONFIG_INPUT_MPU3050=m +CONFIG_INPUT_APANEL=m +CONFIG_INPUT_ATLAS_BTNS=m +CONFIG_INPUT_ATI_REMOTE2=m +CONFIG_INPUT_KEYSPAN_REMOTE=m +CONFIG_INPUT_KXTJ9=m +# CONFIG_INPUT_KXTJ9_POLLED_MODE is not set +CONFIG_INPUT_POWERMATE=m +CONFIG_INPUT_YEALINK=m +CONFIG_INPUT_CM109=m +CONFIG_INPUT_RETU_PWRBUTTON=m +CONFIG_INPUT_TWL4030_PWRBUTTON=m +CONFIG_INPUT_TWL4030_VIBRA=m +# CONFIG_INPUT_TWL6040_VIBRA is not set +CONFIG_INPUT_UINPUT=m +CONFIG_INPUT_PCF50633_PMU=m +CONFIG_INPUT_PCF8574=m +CONFIG_INPUT_PWM_BEEPER=m +CONFIG_INPUT_DA9052_ONKEY=m +CONFIG_INPUT_WM831X_ON=m +CONFIG_INPUT_ADXL34X=m +CONFIG_INPUT_ADXL34X_I2C=m +CONFIG_INPUT_CMA3000=m +CONFIG_INPUT_CMA3000_I2C=m +CONFIG_INPUT_XEN_KBDDEV_FRONTEND=y + +# +# Hardware I/O ports +# +CONFIG_SERIO=y +CONFIG_SERIO_I8042=y +CONFIG_SERIO_SERPORT=y +CONFIG_SERIO_CT82C710=m +CONFIG_SERIO_PARKBD=m +CONFIG_SERIO_PCIPS2=m +CONFIG_SERIO_LIBPS2=y +CONFIG_SERIO_RAW=m +CONFIG_SERIO_ALTERA_PS2=m +CONFIG_SERIO_PS2MULT=m +CONFIG_SERIO_ARC_PS2=m +CONFIG_GAMEPORT=y +CONFIG_GAMEPORT_NS558=m +CONFIG_GAMEPORT_L4=m +CONFIG_GAMEPORT_EMU10K1=m +CONFIG_GAMEPORT_FM801=m + +# +# Character devices +# +CONFIG_VT=y +CONFIG_CONSOLE_TRANSLATIONS=y +CONFIG_VT_CONSOLE=y +CONFIG_VT_CONSOLE_SLEEP=y +CONFIG_HW_CONSOLE=y +CONFIG_VT_HW_CONSOLE_BINDING=y +CONFIG_UNIX98_PTYS=y +# CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set +# CONFIG_LEGACY_PTYS is not set +CONFIG_SERIAL_NONSTANDARD=y +CONFIG_ROCKETPORT=m +CONFIG_CYCLADES=m +# CONFIG_CYZ_INTR is not set +CONFIG_MOXA_INTELLIO=m +CONFIG_MOXA_SMARTIO=m +CONFIG_SYNCLINK=m +CONFIG_SYNCLINKMP=m +CONFIG_SYNCLINK_GT=m +CONFIG_NOZOMI=m +CONFIG_ISI=m +CONFIG_N_HDLC=m +CONFIG_N_GSM=m +# CONFIG_TRACE_ROUTER is not set +CONFIG_TRACE_SINK=m + +# +# KCopy +# +CONFIG_KCOPY=m +CONFIG_DEVKMEM=y +# CONFIG_STALDRV is not set + +# +# Serial drivers +# +CONFIG_SERIAL_8250=y +CONFIG_SERIAL_8250_PNP=y +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_8250_CS=m +CONFIG_SERIAL_8250_NR_UARTS=32 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4 +CONFIG_SERIAL_8250_EXTENDED=y +CONFIG_SERIAL_8250_MANY_PORTS=y +CONFIG_SERIAL_8250_SHARE_IRQ=y +CONFIG_SERIAL_8250_DETECT_IRQ=y +CONFIG_SERIAL_8250_RSA=y + +# +# Non-8250 serial port support +# +CONFIG_SERIAL_MFD_HSU=m +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +CONFIG_SERIAL_JSM=m +CONFIG_SERIAL_SCCNXP=m +CONFIG_SERIAL_TIMBERDALE=m +CONFIG_SERIAL_ALTERA_JTAGUART=m +CONFIG_SERIAL_ALTERA_UART=m +CONFIG_SERIAL_ALTERA_UART_MAXPORTS=4 +CONFIG_SERIAL_ALTERA_UART_BAUDRATE=115200 +CONFIG_SERIAL_PCH_UART=m +CONFIG_SERIAL_ARC=m +CONFIG_SERIAL_ARC_NR_PORTS=1 +CONFIG_PRINTER=m +# CONFIG_LP_CONSOLE is not set +CONFIG_PPDEV=m +CONFIG_HVC_DRIVER=y +CONFIG_HVC_IRQ=y +CONFIG_HVC_XEN=y +CONFIG_HVC_XEN_FRONTEND=y +CONFIG_VIRTIO_CONSOLE=m +CONFIG_IPMI_HANDLER=m +# CONFIG_IPMI_PANIC_EVENT is not set +CONFIG_IPMI_DEVICE_INTERFACE=m +CONFIG_IPMI_SI=m +CONFIG_IPMI_WATCHDOG=m +CONFIG_IPMI_POWEROFF=m +CONFIG_HW_RANDOM=y +CONFIG_HW_RANDOM_TIMERIOMEM=m +CONFIG_HW_RANDOM_INTEL=m +CONFIG_HW_RANDOM_AMD=m +CONFIG_HW_RANDOM_VIA=y +CONFIG_HW_RANDOM_VIRTIO=m +CONFIG_HW_RANDOM_TPM=m +CONFIG_NVRAM=y +CONFIG_R3964=m +CONFIG_APPLICOM=m + +# +# PCMCIA character devices +# +CONFIG_SYNCLINK_CS=m +CONFIG_CARDMAN_4000=m +CONFIG_CARDMAN_4040=m +CONFIG_IPWIRELESS=m +# CONFIG_MWAVE is not set +CONFIG_RAW_DRIVER=m +CONFIG_MAX_RAW_DEVS=256 +CONFIG_HPET=y +# CONFIG_HPET_MMAP is not set +CONFIG_HANGCHECK_TIMER=m +CONFIG_TCG_TPM=m +CONFIG_TCG_TIS=m +CONFIG_TCG_TIS_I2C_INFINEON=m +CONFIG_TCG_NSC=m +CONFIG_TCG_ATMEL=m +CONFIG_TCG_INFINEON=m +# CONFIG_TELCLOCK is not set +CONFIG_DEVPORT=y +CONFIG_I2C=y +CONFIG_I2C_BOARDINFO=y +CONFIG_I2C_COMPAT=y +CONFIG_I2C_CHARDEV=m +CONFIG_I2C_MUX=m + +# +# Multiplexer I2C Chip support +# +CONFIG_I2C_MUX_PCA9541=m +CONFIG_I2C_MUX_PCA954x=m +CONFIG_I2C_HELPER_AUTO=y +CONFIG_I2C_SMBUS=m +CONFIG_I2C_ALGOBIT=y +CONFIG_I2C_ALGOPCA=m + +# +# I2C Hardware Bus support +# + +# +# PC SMBus host controller drivers +# +CONFIG_I2C_ALI1535=m +CONFIG_I2C_ALI1563=m +CONFIG_I2C_ALI15X3=m +CONFIG_I2C_AMD756=m +CONFIG_I2C_AMD756_S4882=m +CONFIG_I2C_AMD8111=m +CONFIG_I2C_I801=y +CONFIG_I2C_ISCH=m +CONFIG_I2C_PIIX4=m +CONFIG_I2C_NFORCE2=m +CONFIG_I2C_NFORCE2_S4985=m +CONFIG_I2C_SIS5595=m +CONFIG_I2C_SIS630=m +CONFIG_I2C_SIS96X=m +CONFIG_I2C_VIA=m +CONFIG_I2C_VIAPRO=m + +# +# ACPI drivers +# +CONFIG_I2C_SCMI=m + +# +# I2C system bus drivers (mostly embedded / system-on-chip) +# +CONFIG_I2C_DESIGNWARE_CORE=m +CONFIG_I2C_DESIGNWARE_PCI=m +CONFIG_I2C_EG20T=m +CONFIG_I2C_INTEL_MID=m +CONFIG_I2C_OCORES=m +CONFIG_I2C_PCA_PLATFORM=m +# CONFIG_I2C_PXA_PCI is not set +CONFIG_I2C_SIMTEC=m +CONFIG_I2C_XILINX=m + +# +# External I2C/SMBus adapter drivers +# +CONFIG_I2C_DIOLAN_U2C=m +CONFIG_I2C_PARPORT=m +CONFIG_I2C_PARPORT_LIGHT=m +CONFIG_I2C_TAOS_EVM=m +CONFIG_I2C_TINY_USB=m +CONFIG_I2C_VIPERBOARD=m + +# +# Other I2C/SMBus bus drivers +# +CONFIG_I2C_STUB=m +# CONFIG_I2C_DEBUG_CORE is not set +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# CONFIG_SPI is not set +# CONFIG_HSI is not set + +# +# PPS support +# +CONFIG_PPS=y +# CONFIG_PPS_DEBUG is not set + +# +# PPS clients support +# +CONFIG_PPS_CLIENT_KTIMER=m +CONFIG_PPS_CLIENT_LDISC=m +CONFIG_PPS_CLIENT_PARPORT=m +CONFIG_PPS_CLIENT_GPIO=m + +# +# PPS generators support +# + +# +# PTP clock support +# +CONFIG_PTP_1588_CLOCK=y + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +CONFIG_PTP_1588_CLOCK_PCH=m +CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y +# CONFIG_GPIOLIB is not set +CONFIG_W1=m +CONFIG_W1_CON=y + +# +# 1-wire Bus Masters +# +# CONFIG_W1_MASTER_MATROX is not set +# CONFIG_W1_MASTER_DS2490 is not set +# CONFIG_W1_MASTER_DS2482 is not set +# CONFIG_W1_MASTER_DS1WM is not set + +# +# 1-wire Slaves +# +# CONFIG_W1_SLAVE_THERM is not set +# CONFIG_W1_SLAVE_SMEM is not set +# CONFIG_W1_SLAVE_DS2408 is not set +# CONFIG_W1_SLAVE_DS2423 is not set +# CONFIG_W1_SLAVE_DS2431 is not set +# CONFIG_W1_SLAVE_DS2433 is not set +# CONFIG_W1_SLAVE_DS2760 is not set +CONFIG_W1_SLAVE_DS2780=m +CONFIG_W1_SLAVE_DS2781=m +CONFIG_W1_SLAVE_DS28E04=m +# CONFIG_W1_SLAVE_BQ27000 is not set +CONFIG_POWER_SUPPLY=y +# CONFIG_POWER_SUPPLY_DEBUG is not set +CONFIG_PDA_POWER=m +# CONFIG_GENERIC_ADC_BATTERY is not set +# CONFIG_MAX8925_POWER is not set +# CONFIG_WM831X_BACKUP is not set +# CONFIG_WM831X_POWER is not set +# CONFIG_WM8350_POWER is not set +CONFIG_TEST_POWER=m +# CONFIG_BATTERY_88PM860X is not set +CONFIG_BATTERY_DS2780=m +CONFIG_BATTERY_DS2781=m +CONFIG_BATTERY_DS2782=m +CONFIG_BATTERY_SBS=m +CONFIG_BATTERY_BQ27x00=m +CONFIG_BATTERY_BQ27X00_I2C=y +CONFIG_BATTERY_BQ27X00_PLATFORM=y +# CONFIG_BATTERY_DA9030 is not set +# CONFIG_BATTERY_DA9052 is not set +CONFIG_BATTERY_MAX17040=m +CONFIG_BATTERY_MAX17042=m +# CONFIG_CHARGER_PCF50633 is not set +CONFIG_BATTERY_RX51=m +CONFIG_CHARGER_ISP1704=m +CONFIG_CHARGER_MAX8903=m +# CONFIG_CHARGER_TWL4030 is not set +CONFIG_CHARGER_LP8727=m +CONFIG_CHARGER_MANAGER=y +# CONFIG_CHARGER_MAX8997 is not set +# CONFIG_CHARGER_MAX8998 is not set +CONFIG_CHARGER_BQ2415X=m +# CONFIG_CHARGER_SMB347 is not set +CONFIG_POWER_RESET=y +CONFIG_POWER_AVS=y +CONFIG_HWMON=y +CONFIG_HWMON_VID=m +# CONFIG_HWMON_DEBUG_CHIP is not set + +# +# Native drivers +# +CONFIG_SENSORS_ABITUGURU=m +CONFIG_SENSORS_ABITUGURU3=m +CONFIG_SENSORS_AD7414=m +CONFIG_SENSORS_AD7418=m +CONFIG_SENSORS_ADM1021=m +CONFIG_SENSORS_ADM1025=m +CONFIG_SENSORS_ADM1026=m +CONFIG_SENSORS_ADM1029=m +CONFIG_SENSORS_ADM1031=m +CONFIG_SENSORS_ADM9240=m +CONFIG_SENSORS_ADT7410=m +CONFIG_SENSORS_ADT7411=m +CONFIG_SENSORS_ADT7462=m +CONFIG_SENSORS_ADT7470=m +CONFIG_SENSORS_ADT7475=m +CONFIG_SENSORS_ASC7621=m +CONFIG_SENSORS_K8TEMP=m +CONFIG_SENSORS_K10TEMP=m +CONFIG_SENSORS_FAM15H_POWER=m +CONFIG_SENSORS_ASB100=m +CONFIG_SENSORS_ATXP1=m +CONFIG_SENSORS_DS620=m +CONFIG_SENSORS_DS1621=m +CONFIG_SENSORS_DA9052_ADC=m +CONFIG_SENSORS_I5K_AMB=m +CONFIG_SENSORS_F71805F=m +CONFIG_SENSORS_F71882FG=m +CONFIG_SENSORS_F75375S=m +CONFIG_SENSORS_FSCHMD=m +CONFIG_SENSORS_G760A=m +CONFIG_SENSORS_GL518SM=m +CONFIG_SENSORS_GL520SM=m +CONFIG_SENSORS_HIH6130=m +CONFIG_SENSORS_CORETEMP=m +CONFIG_SENSORS_IBMAEM=m +CONFIG_SENSORS_IBMPEX=m +CONFIG_SENSORS_IT87=m +CONFIG_SENSORS_JC42=m +CONFIG_SENSORS_LINEAGE=m +CONFIG_SENSORS_LM63=m +CONFIG_SENSORS_LM73=m +CONFIG_SENSORS_LM75=m +CONFIG_SENSORS_LM77=m +CONFIG_SENSORS_LM78=m +CONFIG_SENSORS_LM80=m +CONFIG_SENSORS_LM83=m +CONFIG_SENSORS_LM85=m +CONFIG_SENSORS_LM87=m +CONFIG_SENSORS_LM90=m +CONFIG_SENSORS_LM92=m +CONFIG_SENSORS_LM93=m +CONFIG_SENSORS_LTC4151=m +CONFIG_SENSORS_LTC4215=m +CONFIG_SENSORS_LTC4245=m +CONFIG_SENSORS_LTC4261=m +CONFIG_SENSORS_LM95241=m +CONFIG_SENSORS_LM95245=m +CONFIG_SENSORS_MAX16065=m +CONFIG_SENSORS_MAX1619=m +CONFIG_SENSORS_MAX1668=m +CONFIG_SENSORS_MAX197=m +CONFIG_SENSORS_MAX6639=m +CONFIG_SENSORS_MAX6642=m +CONFIG_SENSORS_MAX6650=m +CONFIG_SENSORS_MCP3021=m +CONFIG_SENSORS_NTC_THERMISTOR=m +CONFIG_SENSORS_PC87360=m +CONFIG_SENSORS_PC87427=m +CONFIG_SENSORS_PCF8591=m +CONFIG_PMBUS=m +CONFIG_SENSORS_PMBUS=m +CONFIG_SENSORS_ADM1275=m +CONFIG_SENSORS_LM25066=m +CONFIG_SENSORS_LTC2978=m +CONFIG_SENSORS_MAX16064=m +CONFIG_SENSORS_MAX34440=m +CONFIG_SENSORS_MAX8688=m +CONFIG_SENSORS_UCD9000=m +CONFIG_SENSORS_UCD9200=m +CONFIG_SENSORS_ZL6100=m +CONFIG_SENSORS_SHT21=m +CONFIG_SENSORS_SIS5595=m +CONFIG_SENSORS_SMM665=m +CONFIG_SENSORS_DME1737=m +CONFIG_SENSORS_EMC1403=m +CONFIG_SENSORS_EMC2103=m +CONFIG_SENSORS_EMC6W201=m +CONFIG_SENSORS_SMSC47M1=m +CONFIG_SENSORS_SMSC47M192=m +CONFIG_SENSORS_SMSC47B397=m +CONFIG_SENSORS_SCH56XX_COMMON=m +CONFIG_SENSORS_SCH5627=m +CONFIG_SENSORS_SCH5636=m +CONFIG_SENSORS_ADS1015=m +CONFIG_SENSORS_ADS7828=m +CONFIG_SENSORS_AMC6821=m +CONFIG_SENSORS_INA2XX=m +CONFIG_SENSORS_THMC50=m +CONFIG_SENSORS_TMP102=m +CONFIG_SENSORS_TMP401=m +CONFIG_SENSORS_TMP421=m +# CONFIG_SENSORS_TWL4030_MADC is not set +CONFIG_SENSORS_VIA_CPUTEMP=m +CONFIG_SENSORS_VIA686A=m +CONFIG_SENSORS_VT1211=m +CONFIG_SENSORS_VT8231=m +CONFIG_SENSORS_W83781D=m +CONFIG_SENSORS_W83791D=m +CONFIG_SENSORS_W83792D=m +CONFIG_SENSORS_W83793=m +CONFIG_SENSORS_W83795=m +# CONFIG_SENSORS_W83795_FANCTRL is not set +CONFIG_SENSORS_W83L785TS=m +CONFIG_SENSORS_W83L786NG=m +CONFIG_SENSORS_W83627HF=m +CONFIG_SENSORS_W83627EHF=m +# CONFIG_SENSORS_WM831X is not set +# CONFIG_SENSORS_WM8350 is not set +CONFIG_SENSORS_APPLESMC=m +CONFIG_SENSORS_MC13783_ADC=m + +# +# ACPI drivers +# +CONFIG_SENSORS_ACPI_POWER=m +CONFIG_SENSORS_ATK0110=m +CONFIG_THERMAL=y +CONFIG_THERMAL_HWMON=y +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y +# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set +# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set +CONFIG_FAIR_SHARE=y +CONFIG_STEP_WISE=y +CONFIG_USER_SPACE=y +CONFIG_CPU_THERMAL=y +CONFIG_WATCHDOG=y +CONFIG_WATCHDOG_CORE=y +# CONFIG_WATCHDOG_NOWAYOUT is not set + +# +# Watchdog Device Drivers +# +CONFIG_SOFT_WATCHDOG=m +CONFIG_DA9052_WATCHDOG=m +# CONFIG_WM831X_WATCHDOG is not set +# CONFIG_WM8350_WATCHDOG is not set +# CONFIG_TWL4030_WATCHDOG is not set +CONFIG_ACQUIRE_WDT=m +CONFIG_ADVANTECH_WDT=m +CONFIG_ALIM1535_WDT=m +CONFIG_ALIM7101_WDT=m +CONFIG_F71808E_WDT=m +CONFIG_SP5100_TCO=m +CONFIG_SC520_WDT=m +CONFIG_SBC_FITPC2_WATCHDOG=m +CONFIG_EUROTECH_WDT=m +CONFIG_IB700_WDT=m +CONFIG_IBMASR=m +CONFIG_WAFER_WDT=m +CONFIG_I6300ESB_WDT=m +CONFIG_IE6XX_WDT=m +CONFIG_ITCO_WDT=m +CONFIG_ITCO_VENDOR_SUPPORT=y +CONFIG_IT8712F_WDT=m +CONFIG_IT87_WDT=m +CONFIG_HP_WATCHDOG=m +CONFIG_HPWDT_NMI_DECODING=y +CONFIG_SC1200_WDT=m +CONFIG_PC87413_WDT=m +CONFIG_NV_TCO=m +CONFIG_60XX_WDT=m +CONFIG_SBC8360_WDT=m +CONFIG_CPU5_WDT=m +CONFIG_SMSC_SCH311X_WDT=m +CONFIG_SMSC37B787_WDT=m +CONFIG_VIA_WDT=m +CONFIG_W83627HF_WDT=m +CONFIG_W83697HF_WDT=m +CONFIG_W83697UG_WDT=m +CONFIG_W83877F_WDT=m +CONFIG_W83977F_WDT=m +CONFIG_MACHZ_WDT=m +CONFIG_SBC_EPX_C3_WATCHDOG=m +CONFIG_XEN_WDT=m + +# +# PCI-based Watchdog Cards +# +CONFIG_PCIPCWATCHDOG=m +CONFIG_WDTPCI=m + +# +# USB-based Watchdog Cards +# +CONFIG_USBPCWATCHDOG=m +CONFIG_SSB_POSSIBLE=y + +# +# Sonics Silicon Backplane +# +CONFIG_SSB=m +CONFIG_SSB_SPROM=y +CONFIG_SSB_PCIHOST_POSSIBLE=y +CONFIG_SSB_PCIHOST=y +# CONFIG_SSB_B43_PCI_BRIDGE is not set +CONFIG_SSB_PCMCIAHOST_POSSIBLE=y +CONFIG_SSB_PCMCIAHOST=y +CONFIG_SSB_SDIOHOST_POSSIBLE=y +CONFIG_SSB_SDIOHOST=y +CONFIG_SSB_DEBUG=y +CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y +CONFIG_SSB_DRIVER_PCICORE=y +CONFIG_BCMA_POSSIBLE=y + +# +# Broadcom specific AMBA +# +# CONFIG_BCMA is not set + +# +# Multifunction device drivers +# +CONFIG_MFD_CORE=y +CONFIG_MFD_88PM860X=y +CONFIG_MFD_88PM800=m +CONFIG_MFD_88PM805=m +CONFIG_MFD_SM501=m +CONFIG_MFD_RTSX_PCI=m +CONFIG_MFD_TI_AM335X_TSCADC=m +CONFIG_HTC_PASIC3=m +CONFIG_MFD_LM3533=m +CONFIG_TPS6105X=m +CONFIG_TPS6507X=m +CONFIG_MFD_TPS65217=m +CONFIG_MFD_TPS6586X=y +CONFIG_MFD_TPS80031=y +CONFIG_TWL4030_CORE=y +CONFIG_TWL4030_MADC=m +CONFIG_MFD_TWL4030_AUDIO=y +CONFIG_TWL6040_CORE=y +CONFIG_MFD_STMPE=y + +# +# STMPE Interface Drivers +# +CONFIG_STMPE_I2C=y +CONFIG_MFD_TC3589X=y +# CONFIG_MFD_TMIO is not set +# CONFIG_MFD_SMSC is not set +CONFIG_PMIC_DA903X=y +CONFIG_PMIC_DA9052=y +CONFIG_MFD_DA9052_I2C=y +# CONFIG_MFD_DA9055 is not set +CONFIG_PMIC_ADP5520=y +# CONFIG_MFD_LP8788 is not set +CONFIG_MFD_MAX77686=y +# CONFIG_MFD_MAX77693 is not set +# CONFIG_MFD_MAX8907 is not set +CONFIG_MFD_MAX8925=y +CONFIG_MFD_MAX8997=y +CONFIG_MFD_MAX8998=y +CONFIG_MFD_SEC_CORE=y +CONFIG_MFD_ARIZONA=y +CONFIG_MFD_ARIZONA_I2C=m +CONFIG_MFD_WM5102=y +CONFIG_MFD_WM5110=y +CONFIG_MFD_WM8400=y +CONFIG_MFD_WM831X=y +CONFIG_MFD_WM831X_I2C=y +CONFIG_MFD_WM8350=y +CONFIG_MFD_WM8350_I2C=y +CONFIG_MFD_WM8994=y +CONFIG_MFD_PCF50633=m +CONFIG_PCF50633_ADC=m +CONFIG_PCF50633_GPIO=m +CONFIG_MFD_MC13783=m +CONFIG_MFD_MC13XXX=m +CONFIG_MFD_MC13XXX_I2C=m +CONFIG_ABX500_CORE=y +CONFIG_AB3100_CORE=y +CONFIG_AB3100_OTP=m +CONFIG_MFD_CS5535=m +CONFIG_LPC_SCH=m +CONFIG_LPC_ICH=m +CONFIG_MFD_RDC321X=m +CONFIG_MFD_JANZ_CMODIO=m +CONFIG_MFD_VX855=m +CONFIG_MFD_WL1273_CORE=m +CONFIG_MFD_TPS65090=y +CONFIG_MFD_RC5T583=y +CONFIG_MFD_PALMAS=y +CONFIG_MFD_VIPERBOARD=m +CONFIG_MFD_RETU=m +CONFIG_MFD_AS3711=y +CONFIG_REGULATOR=y +# CONFIG_REGULATOR_DEBUG is not set +# CONFIG_REGULATOR_DUMMY is not set +CONFIG_REGULATOR_FIXED_VOLTAGE=m +CONFIG_REGULATOR_VIRTUAL_CONSUMER=m +CONFIG_REGULATOR_USERSPACE_CONSUMER=m +CONFIG_REGULATOR_AD5398=m +CONFIG_REGULATOR_ARIZONA=m +CONFIG_REGULATOR_DA903X=m +CONFIG_REGULATOR_DA9052=m +CONFIG_REGULATOR_FAN53555=m +CONFIG_REGULATOR_MC13XXX_CORE=m +CONFIG_REGULATOR_MC13783=m +CONFIG_REGULATOR_MC13892=m +CONFIG_REGULATOR_ISL6271A=m +CONFIG_REGULATOR_88PM8607=y +CONFIG_REGULATOR_MAX1586=m +CONFIG_REGULATOR_MAX8649=m +CONFIG_REGULATOR_MAX8660=m +CONFIG_REGULATOR_MAX8925=m +CONFIG_REGULATOR_MAX8952=m +CONFIG_REGULATOR_MAX8973=m +CONFIG_REGULATOR_MAX8997=m +CONFIG_REGULATOR_MAX8998=m +CONFIG_REGULATOR_MAX77686=m +CONFIG_REGULATOR_LP3971=m +CONFIG_REGULATOR_LP3972=m +CONFIG_REGULATOR_LP872X=y +CONFIG_REGULATOR_PCF50633=m +CONFIG_REGULATOR_RC5T583=m +CONFIG_REGULATOR_S2MPS11=m +CONFIG_REGULATOR_S5M8767=m +CONFIG_REGULATOR_AB3100=y +CONFIG_REGULATOR_PALMAS=m +CONFIG_REGULATOR_TPS51632=m +CONFIG_REGULATOR_TPS6105X=m +CONFIG_REGULATOR_TPS62360=m +CONFIG_REGULATOR_TPS65023=m +CONFIG_REGULATOR_TPS6507X=m +CONFIG_REGULATOR_TPS65090=m +CONFIG_REGULATOR_TPS65217=m +CONFIG_REGULATOR_TPS6586X=m +CONFIG_REGULATOR_TPS80031=m +CONFIG_REGULATOR_TWL4030=y +CONFIG_REGULATOR_WM831X=m +CONFIG_REGULATOR_WM8350=m +CONFIG_REGULATOR_WM8400=m +CONFIG_REGULATOR_WM8994=m +CONFIG_REGULATOR_AS3711=m +CONFIG_MEDIA_SUPPORT=y + +# +# Multimedia core support +# +CONFIG_MEDIA_CAMERA_SUPPORT=y +CONFIG_MEDIA_ANALOG_TV_SUPPORT=y +CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y +CONFIG_MEDIA_RADIO_SUPPORT=y +CONFIG_MEDIA_RC_SUPPORT=y +# CONFIG_MEDIA_CONTROLLER is not set +CONFIG_VIDEO_DEV=y +CONFIG_VIDEO_V4L2=y +# CONFIG_VIDEO_ADV_DEBUG is not set +# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set +CONFIG_VIDEO_TUNER=m +CONFIG_V4L2_MEM2MEM_DEV=m +CONFIG_VIDEOBUF_GEN=m +CONFIG_VIDEOBUF_DMA_SG=m +CONFIG_VIDEOBUF_VMALLOC=m +CONFIG_VIDEOBUF_DMA_CONTIG=m +CONFIG_VIDEOBUF_DVB=m +CONFIG_VIDEOBUF2_CORE=m +CONFIG_VIDEOBUF2_MEMOPS=m +CONFIG_VIDEOBUF2_DMA_CONTIG=m +CONFIG_VIDEOBUF2_VMALLOC=m +CONFIG_DVB_CORE=y +CONFIG_DVB_NET=y +CONFIG_DVB_MAX_ADAPTERS=8 +# CONFIG_DVB_DYNAMIC_MINORS is not set + +# +# Media drivers +# +CONFIG_RC_CORE=y +CONFIG_RC_MAP=y +CONFIG_RC_DECODERS=y +CONFIG_LIRC=y +CONFIG_IR_LIRC_CODEC=y +CONFIG_IR_NEC_DECODER=y +CONFIG_IR_RC5_DECODER=y +CONFIG_IR_RC6_DECODER=y +CONFIG_IR_JVC_DECODER=y +CONFIG_IR_SONY_DECODER=y +CONFIG_IR_RC5_SZ_DECODER=y +CONFIG_IR_SANYO_DECODER=y +CONFIG_IR_MCE_KBD_DECODER=y +CONFIG_RC_DEVICES=y +CONFIG_RC_ATI_REMOTE=m +CONFIG_IR_ENE=m +CONFIG_IR_IMON=m +CONFIG_IR_MCEUSB=m +CONFIG_IR_ITE_CIR=m +CONFIG_IR_FINTEK=m +CONFIG_IR_NUVOTON=m +CONFIG_IR_REDRAT3=m +CONFIG_IR_STREAMZAP=m +CONFIG_IR_WINBOND_CIR=m +CONFIG_IR_IGUANA=m +CONFIG_IR_TTUSBIR=m +CONFIG_RC_LOOPBACK=m +CONFIG_IR_GPIO_CIR=m +CONFIG_MEDIA_USB_SUPPORT=y + +# +# Webcam devices +# +CONFIG_USB_VIDEO_CLASS=m +CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y +CONFIG_USB_GSPCA=m +CONFIG_USB_M5602=m +CONFIG_USB_STV06XX=m +CONFIG_USB_GL860=m +CONFIG_USB_GSPCA_BENQ=m +CONFIG_USB_GSPCA_CONEX=m +CONFIG_USB_GSPCA_CPIA1=m +CONFIG_USB_GSPCA_ETOMS=m +CONFIG_USB_GSPCA_FINEPIX=m +CONFIG_USB_GSPCA_JEILINJ=m +CONFIG_USB_GSPCA_JL2005BCD=m +CONFIG_USB_GSPCA_KINECT=m +CONFIG_USB_GSPCA_KONICA=m +CONFIG_USB_GSPCA_MARS=m +CONFIG_USB_GSPCA_MR97310A=m +CONFIG_USB_GSPCA_NW80X=m +CONFIG_USB_GSPCA_OV519=m +CONFIG_USB_GSPCA_OV534=m +CONFIG_USB_GSPCA_OV534_9=m +CONFIG_USB_GSPCA_PAC207=m +CONFIG_USB_GSPCA_PAC7302=m +CONFIG_USB_GSPCA_PAC7311=m +CONFIG_USB_GSPCA_SE401=m +CONFIG_USB_GSPCA_SN9C2028=m +CONFIG_USB_GSPCA_SN9C20X=m +CONFIG_USB_GSPCA_SONIXB=m +CONFIG_USB_GSPCA_SONIXJ=m +CONFIG_USB_GSPCA_SPCA500=m +CONFIG_USB_GSPCA_SPCA501=m +CONFIG_USB_GSPCA_SPCA505=m +CONFIG_USB_GSPCA_SPCA506=m +CONFIG_USB_GSPCA_SPCA508=m +CONFIG_USB_GSPCA_SPCA561=m +CONFIG_USB_GSPCA_SPCA1528=m +CONFIG_USB_GSPCA_SQ905=m +CONFIG_USB_GSPCA_SQ905C=m +CONFIG_USB_GSPCA_SQ930X=m +CONFIG_USB_GSPCA_STK014=m +CONFIG_USB_GSPCA_STV0680=m +CONFIG_USB_GSPCA_SUNPLUS=m +CONFIG_USB_GSPCA_T613=m +CONFIG_USB_GSPCA_TOPRO=m +CONFIG_USB_GSPCA_TV8532=m +CONFIG_USB_GSPCA_VC032X=m +CONFIG_USB_GSPCA_VICAM=m +CONFIG_USB_GSPCA_XIRLINK_CIT=m +CONFIG_USB_GSPCA_ZC3XX=m +CONFIG_USB_PWC=m +# CONFIG_USB_PWC_DEBUG is not set +CONFIG_USB_PWC_INPUT_EVDEV=y +CONFIG_VIDEO_CPIA2=m +CONFIG_USB_ZR364XX=m +CONFIG_USB_STKWEBCAM=m +CONFIG_USB_S2255=m +CONFIG_USB_SN9C102=m + +# +# Analog TV USB devices +# +CONFIG_VIDEO_AU0828=m +CONFIG_VIDEO_PVRUSB2=m +CONFIG_VIDEO_PVRUSB2_SYSFS=y +CONFIG_VIDEO_PVRUSB2_DVB=y +# CONFIG_VIDEO_PVRUSB2_DEBUGIFC is not set +CONFIG_VIDEO_HDPVR=m +CONFIG_VIDEO_TLG2300=m +CONFIG_VIDEO_USBVISION=m +CONFIG_VIDEO_STK1160=m +CONFIG_VIDEO_STK1160_AC97=y + +# +# Analog/digital TV USB devices +# +CONFIG_VIDEO_CX231XX=m +CONFIG_VIDEO_CX231XX_RC=y +CONFIG_VIDEO_CX231XX_ALSA=m +CONFIG_VIDEO_CX231XX_DVB=m +CONFIG_VIDEO_TM6000=m +CONFIG_VIDEO_TM6000_ALSA=m +CONFIG_VIDEO_TM6000_DVB=m + +# +# Digital TV USB devices +# +CONFIG_DVB_USB=m +# CONFIG_DVB_USB_DEBUG is not set +# CONFIG_DVB_USB_A800 is not set +CONFIG_DVB_USB_DIBUSB_MB=m +CONFIG_DVB_USB_DIBUSB_MB_FAULTY=y +CONFIG_DVB_USB_DIBUSB_MC=m +CONFIG_DVB_USB_DIB0700=m +CONFIG_DVB_USB_UMT_010=m +CONFIG_DVB_USB_CXUSB=m +CONFIG_DVB_USB_M920X=m +CONFIG_DVB_USB_DIGITV=m +CONFIG_DVB_USB_VP7045=m +CONFIG_DVB_USB_VP702X=m +CONFIG_DVB_USB_GP8PSK=m +CONFIG_DVB_USB_NOVA_T_USB2=m +CONFIG_DVB_USB_TTUSB2=m +CONFIG_DVB_USB_DTT200U=m +CONFIG_DVB_USB_OPERA1=m +CONFIG_DVB_USB_AF9005=m +CONFIG_DVB_USB_AF9005_REMOTE=m +CONFIG_DVB_USB_PCTV452E=m +CONFIG_DVB_USB_DW2102=m +CONFIG_DVB_USB_CINERGY_T2=m +CONFIG_DVB_USB_DTV5100=m +CONFIG_DVB_USB_FRIIO=m +CONFIG_DVB_USB_AZ6027=m +CONFIG_DVB_USB_TECHNISAT_USB2=m +CONFIG_DVB_USB_V2=m +CONFIG_DVB_USB_CYPRESS_FIRMWARE=m +CONFIG_DVB_USB_AF9015=m +CONFIG_DVB_USB_AF9035=m +CONFIG_DVB_USB_ANYSEE=m +CONFIG_DVB_USB_AU6610=m +CONFIG_DVB_USB_AZ6007=m +CONFIG_DVB_USB_CE6230=m +CONFIG_DVB_USB_EC168=m +CONFIG_DVB_USB_GL861=m +CONFIG_DVB_USB_IT913X=m +CONFIG_DVB_USB_LME2510=m +CONFIG_DVB_USB_MXL111SF=m +CONFIG_DVB_USB_RTL28XXU=m +CONFIG_DVB_TTUSB_BUDGET=m +CONFIG_DVB_TTUSB_DEC=m +CONFIG_SMS_USB_DRV=m +CONFIG_DVB_B2C2_FLEXCOP_USB=m +# CONFIG_DVB_B2C2_FLEXCOP_USB_DEBUG is not set + +# +# Webcam, TV (analog/digital) USB devices +# +CONFIG_VIDEO_EM28XX=m +CONFIG_VIDEO_EM28XX_ALSA=m +CONFIG_VIDEO_EM28XX_DVB=m +CONFIG_VIDEO_EM28XX_RC=m +CONFIG_MEDIA_PCI_SUPPORT=y + +# +# Media capture support +# + +# +# Media capture/analog TV support +# +CONFIG_VIDEO_IVTV=m +CONFIG_VIDEO_IVTV_ALSA=m +CONFIG_VIDEO_FB_IVTV=m +CONFIG_VIDEO_ZORAN=m +CONFIG_VIDEO_ZORAN_DC30=m +CONFIG_VIDEO_ZORAN_ZR36060=m +CONFIG_VIDEO_ZORAN_BUZ=m +CONFIG_VIDEO_ZORAN_DC10=m +CONFIG_VIDEO_ZORAN_LML33=m +CONFIG_VIDEO_ZORAN_LML33R10=m +CONFIG_VIDEO_ZORAN_AVS6EYES=m +CONFIG_VIDEO_HEXIUM_GEMINI=m +CONFIG_VIDEO_HEXIUM_ORION=m +CONFIG_VIDEO_MXB=m + +# +# Media capture/analog/hybrid TV support +# +CONFIG_VIDEO_CX18=m +CONFIG_VIDEO_CX18_ALSA=m +CONFIG_VIDEO_CX23885=m +CONFIG_MEDIA_ALTERA_CI=m +CONFIG_VIDEO_CX25821=m +CONFIG_VIDEO_CX25821_ALSA=m +CONFIG_VIDEO_CX88=m +CONFIG_VIDEO_CX88_ALSA=m +CONFIG_VIDEO_CX88_BLACKBIRD=m +CONFIG_VIDEO_CX88_DVB=m +CONFIG_VIDEO_CX88_VP3054=m +CONFIG_VIDEO_CX88_MPEG=m +CONFIG_VIDEO_BT848=m +CONFIG_DVB_BT8XX=m +CONFIG_VIDEO_SAA7134=m +CONFIG_VIDEO_SAA7134_ALSA=m +CONFIG_VIDEO_SAA7134_RC=y +CONFIG_VIDEO_SAA7134_DVB=m +CONFIG_VIDEO_SAA7164=m + +# +# Media digital TV PCI Adapters +# +CONFIG_TTPCI_EEPROM=m +CONFIG_DVB_AV7110=m +CONFIG_DVB_AV7110_OSD=y +CONFIG_DVB_BUDGET_CORE=m +CONFIG_DVB_BUDGET=m +CONFIG_DVB_BUDGET_CI=m +CONFIG_DVB_BUDGET_AV=m +CONFIG_DVB_BUDGET_PATCH=m +CONFIG_DVB_B2C2_FLEXCOP_PCI=m +# CONFIG_DVB_B2C2_FLEXCOP_PCI_DEBUG is not set +CONFIG_DVB_PLUTO2=m +CONFIG_DVB_DM1105=m +CONFIG_DVB_PT1=m +CONFIG_MANTIS_CORE=m +CONFIG_DVB_MANTIS=m +CONFIG_DVB_HOPPER=m +CONFIG_DVB_NGENE=m +CONFIG_DVB_DDBRIDGE=m +CONFIG_V4L_PLATFORM_DRIVERS=y +CONFIG_VIDEO_CAFE_CCIC=m +CONFIG_VIDEO_TIMBERDALE=m +CONFIG_SOC_CAMERA=m +CONFIG_SOC_CAMERA_PLATFORM=m +# CONFIG_V4L_MEM2MEM_DRIVERS is not set +CONFIG_V4L_TEST_DRIVERS=y +CONFIG_VIDEO_VIVI=m +CONFIG_VIDEO_MEM2MEM_TESTDEV=m + +# +# Supported MMC/SDIO adapters +# +CONFIG_SMS_SDIO_DRV=m +CONFIG_MEDIA_PARPORT_SUPPORT=y +CONFIG_VIDEO_BWQCAM=m +CONFIG_VIDEO_CQCAM=m +CONFIG_VIDEO_W9966=m +CONFIG_RADIO_ADAPTERS=y +CONFIG_RADIO_SI470X=y +CONFIG_USB_SI470X=m +CONFIG_I2C_SI470X=m +CONFIG_USB_MR800=m +CONFIG_USB_DSBR=m +CONFIG_RADIO_MAXIRADIO=m +CONFIG_RADIO_SHARK=m +CONFIG_RADIO_SHARK2=m +CONFIG_I2C_SI4713=m +CONFIG_RADIO_SI4713=m +CONFIG_USB_KEENE=m +CONFIG_RADIO_TEA5764=m +CONFIG_RADIO_SAA7706H=m +CONFIG_RADIO_TEF6862=m +CONFIG_RADIO_WL1273=m + +# +# Texas Instruments WL128x FM driver (ST based) +# +CONFIG_MEDIA_COMMON_OPTIONS=y + +# +# common driver options +# +CONFIG_DVB_B2C2_FLEXCOP=m +CONFIG_VIDEO_SAA7146=m +CONFIG_VIDEO_SAA7146_VV=m +CONFIG_SMS_SIANO_MDTV=m +CONFIG_SMS_SIANO_RC=y +CONFIG_MEDIA_SUBDRV_AUTOSELECT=y + +# +# Media ancillary drivers (tuners, sensors, i2c, frontends) +# +CONFIG_VIDEO_BTCX=m +CONFIG_VIDEO_TVEEPROM=m +CONFIG_VIDEO_IR_I2C=y + +# +# Audio decoders, processors and mixers +# +CONFIG_VIDEO_TVAUDIO=m +CONFIG_VIDEO_TDA7432=m +CONFIG_VIDEO_TDA9840=m +CONFIG_VIDEO_TEA6415C=m +CONFIG_VIDEO_TEA6420=m +CONFIG_VIDEO_MSP3400=m +CONFIG_VIDEO_CS5345=m +CONFIG_VIDEO_CS53L32A=m +CONFIG_VIDEO_WM8775=m +CONFIG_VIDEO_WM8739=m +CONFIG_VIDEO_VP27SMPX=m + +# +# RDS decoders +# +CONFIG_VIDEO_SAA6588=m + +# +# Video decoders +# +CONFIG_VIDEO_ADV7180=m +CONFIG_VIDEO_BT819=m +CONFIG_VIDEO_BT856=m +CONFIG_VIDEO_BT866=m +CONFIG_VIDEO_KS0127=m +CONFIG_VIDEO_SAA7110=m +CONFIG_VIDEO_SAA711X=m +CONFIG_VIDEO_TVP5150=m +CONFIG_VIDEO_VPX3220=m + +# +# Video and audio decoders +# +CONFIG_VIDEO_SAA717X=m +CONFIG_VIDEO_CX25840=m + +# +# MPEG video encoders +# +CONFIG_VIDEO_CX2341X=m + +# +# Video encoders +# +CONFIG_VIDEO_SAA7127=m +CONFIG_VIDEO_SAA7185=m +CONFIG_VIDEO_ADV7170=m +CONFIG_VIDEO_ADV7175=m + +# +# Camera sensor devices +# +CONFIG_VIDEO_OV7670=m +CONFIG_VIDEO_MT9V011=m + +# +# Flash devices +# + +# +# Video improvement chips +# +CONFIG_VIDEO_UPD64031A=m +CONFIG_VIDEO_UPD64083=m + +# +# Miscelaneous helper chips +# +CONFIG_VIDEO_M52790=m + +# +# Sensors used on soc_camera driver +# + +# +# soc_camera sensor drivers +# +CONFIG_SOC_CAMERA_IMX074=m +CONFIG_SOC_CAMERA_MT9M001=m +CONFIG_SOC_CAMERA_MT9M111=m +CONFIG_SOC_CAMERA_MT9T031=m +CONFIG_SOC_CAMERA_MT9T112=m +CONFIG_SOC_CAMERA_MT9V022=m +CONFIG_SOC_CAMERA_OV2640=m +CONFIG_SOC_CAMERA_OV5642=m +CONFIG_SOC_CAMERA_OV6650=m +CONFIG_SOC_CAMERA_OV772X=m +CONFIG_SOC_CAMERA_OV9640=m +CONFIG_SOC_CAMERA_OV9740=m +CONFIG_SOC_CAMERA_RJ54N1=m +CONFIG_SOC_CAMERA_TW9910=m +# CONFIG_MEDIA_ATTACH is not set +CONFIG_MEDIA_TUNER=y +CONFIG_MEDIA_TUNER_SIMPLE=y +CONFIG_MEDIA_TUNER_TDA8290=y +CONFIG_MEDIA_TUNER_TDA827X=y +CONFIG_MEDIA_TUNER_TDA18271=y +CONFIG_MEDIA_TUNER_TDA9887=y +CONFIG_MEDIA_TUNER_TEA5761=y +CONFIG_MEDIA_TUNER_TEA5767=y +CONFIG_MEDIA_TUNER_MT20XX=y +CONFIG_MEDIA_TUNER_MT2060=m +CONFIG_MEDIA_TUNER_MT2063=m +CONFIG_MEDIA_TUNER_MT2266=m +CONFIG_MEDIA_TUNER_MT2131=m +CONFIG_MEDIA_TUNER_QT1010=m +CONFIG_MEDIA_TUNER_XC2028=y +CONFIG_MEDIA_TUNER_XC5000=y +CONFIG_MEDIA_TUNER_XC4000=y +CONFIG_MEDIA_TUNER_MXL5005S=m +CONFIG_MEDIA_TUNER_MXL5007T=m +CONFIG_MEDIA_TUNER_MC44S803=y +CONFIG_MEDIA_TUNER_MAX2165=m +CONFIG_MEDIA_TUNER_TDA18218=m +CONFIG_MEDIA_TUNER_FC0011=m +CONFIG_MEDIA_TUNER_FC0012=m +CONFIG_MEDIA_TUNER_FC0013=m +CONFIG_MEDIA_TUNER_TDA18212=m +CONFIG_MEDIA_TUNER_E4000=m +CONFIG_MEDIA_TUNER_FC2580=m +CONFIG_MEDIA_TUNER_TUA9001=m + +# +# Multistandard (satellite) frontends +# +CONFIG_DVB_STB0899=m +CONFIG_DVB_STB6100=m +CONFIG_DVB_STV090x=m +CONFIG_DVB_STV6110x=m + +# +# Multistandard (cable + terrestrial) frontends +# +CONFIG_DVB_DRXK=m +CONFIG_DVB_TDA18271C2DD=m + +# +# DVB-S (satellite) frontends +# +CONFIG_DVB_CX24110=m +CONFIG_DVB_CX24123=m +CONFIG_DVB_MT312=m +CONFIG_DVB_ZL10036=m +CONFIG_DVB_ZL10039=m +CONFIG_DVB_S5H1420=m +CONFIG_DVB_STV0288=m +CONFIG_DVB_STB6000=m +CONFIG_DVB_STV0299=m +CONFIG_DVB_STV6110=m +CONFIG_DVB_STV0900=m +CONFIG_DVB_TDA8083=m +CONFIG_DVB_TDA10086=m +CONFIG_DVB_TDA8261=m +CONFIG_DVB_VES1X93=m +CONFIG_DVB_TUNER_ITD1000=m +CONFIG_DVB_TUNER_CX24113=m +CONFIG_DVB_TDA826X=m +CONFIG_DVB_TUA6100=m +CONFIG_DVB_CX24116=m +CONFIG_DVB_SI21XX=m +CONFIG_DVB_DS3000=m +CONFIG_DVB_MB86A16=m +CONFIG_DVB_TDA10071=m + +# +# DVB-T (terrestrial) frontends +# +CONFIG_DVB_SP8870=m +CONFIG_DVB_SP887X=m +CONFIG_DVB_CX22700=m +CONFIG_DVB_CX22702=m +CONFIG_DVB_DRXD=m +CONFIG_DVB_L64781=m +CONFIG_DVB_TDA1004X=m +CONFIG_DVB_NXT6000=m +CONFIG_DVB_MT352=m +CONFIG_DVB_ZL10353=m +CONFIG_DVB_DIB3000MB=m +CONFIG_DVB_DIB3000MC=m +CONFIG_DVB_DIB7000M=m +CONFIG_DVB_DIB7000P=m +CONFIG_DVB_TDA10048=m +CONFIG_DVB_AF9013=m +CONFIG_DVB_EC100=m +CONFIG_DVB_STV0367=m +CONFIG_DVB_CXD2820R=m +CONFIG_DVB_RTL2830=m +CONFIG_DVB_RTL2832=m + +# +# DVB-C (cable) frontends +# +CONFIG_DVB_VES1820=m +CONFIG_DVB_TDA10021=m +CONFIG_DVB_TDA10023=m +CONFIG_DVB_STV0297=m + +# +# ATSC (North American/Korean Terrestrial/Cable DTV) frontends +# +CONFIG_DVB_NXT200X=m +CONFIG_DVB_OR51211=m +CONFIG_DVB_OR51132=m +CONFIG_DVB_BCM3510=m +CONFIG_DVB_LGDT330X=m +CONFIG_DVB_LGDT3305=m +CONFIG_DVB_LG2160=m +CONFIG_DVB_S5H1409=m +CONFIG_DVB_AU8522=m +CONFIG_DVB_AU8522_DTV=m +CONFIG_DVB_AU8522_V4L=m +CONFIG_DVB_S5H1411=m + +# +# ISDB-T (terrestrial) frontends +# +CONFIG_DVB_S921=m +CONFIG_DVB_DIB8000=m +CONFIG_DVB_MB86A20S=m + +# +# Digital terrestrial only tuners/PLL +# +CONFIG_DVB_PLL=m +CONFIG_DVB_TUNER_DIB0070=m +CONFIG_DVB_TUNER_DIB0090=m + +# +# SEC control devices for DVB-S +# +CONFIG_DVB_LNBP21=m +CONFIG_DVB_LNBP22=m +CONFIG_DVB_ISL6405=m +CONFIG_DVB_ISL6421=m +CONFIG_DVB_ISL6423=m +CONFIG_DVB_A8293=m +CONFIG_DVB_LGS8GXX=m +CONFIG_DVB_ATBM8830=m +CONFIG_DVB_TDA665x=m +CONFIG_DVB_IX2505V=m +CONFIG_DVB_IT913X_FE=m +CONFIG_DVB_M88RS2000=m +CONFIG_DVB_AF9033=m + +# +# Tools to develop new frontends +# +# CONFIG_DVB_DUMMY_FE is not set + +# +# Graphics support +# +CONFIG_AGP=y +CONFIG_AGP_AMD64=y +CONFIG_AGP_INTEL=m +# CONFIG_AGP_SIS is not set +# CONFIG_AGP_VIA is not set +CONFIG_VGA_ARB=y +CONFIG_VGA_ARB_MAX_GPUS=16 +# CONFIG_VGA_SWITCHEROO is not set +CONFIG_DRM=y +CONFIG_DRM_USB=m +CONFIG_DRM_KMS_HELPER=y +# CONFIG_DRM_LOAD_EDID_FIRMWARE is not set +CONFIG_DRM_TTM=y +# CONFIG_DRM_TDFX is not set +# CONFIG_DRM_R128 is not set +CONFIG_DRM_RADEON=y +CONFIG_DRM_RADEON_KMS=y +# CONFIG_DRM_NOUVEAU is not set + +# +# I2C encoder or helper chips +# +# CONFIG_DRM_I2C_CH7006 is not set +# CONFIG_DRM_I2C_SIL164 is not set +# CONFIG_DRM_I810 is not set +CONFIG_DRM_I915=m +CONFIG_DRM_I915_KMS=y +# CONFIG_DRM_MGA is not set +# CONFIG_DRM_SIS is not set +# CONFIG_DRM_VIA is not set +# CONFIG_DRM_SAVAGE is not set +# CONFIG_DRM_VMWGFX is not set +# CONFIG_DRM_GMA500 is not set +CONFIG_DRM_UDL=m +CONFIG_DRM_AST=m +CONFIG_DRM_MGAG200=m +CONFIG_DRM_CIRRUS_QEMU=m +# CONFIG_STUB_POULSBO is not set +# CONFIG_VGASTATE is not set +CONFIG_VIDEO_OUTPUT_CONTROL=m +CONFIG_FB=y +# CONFIG_FIRMWARE_EDID is not set +# CONFIG_FB_DDC is not set +# CONFIG_FB_BOOT_VESA_SUPPORT is not set +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_IMAGEBLIT=y +# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set +CONFIG_FB_SYS_FILLRECT=y +CONFIG_FB_SYS_COPYAREA=y +CONFIG_FB_SYS_IMAGEBLIT=y +# CONFIG_FB_FOREIGN_ENDIAN is not set +CONFIG_FB_SYS_FOPS=y +# CONFIG_FB_WMT_GE_ROPS is not set +CONFIG_FB_DEFERRED_IO=y +# CONFIG_FB_SVGALIB is not set +# CONFIG_FB_MACMODES is not set +# CONFIG_FB_BACKLIGHT is not set +CONFIG_FB_MODE_HELPERS=y +CONFIG_FB_TILEBLITTING=y + +# +# Frame buffer hardware drivers +# +# CONFIG_FB_CIRRUS is not set +# CONFIG_FB_PM2 is not set +# CONFIG_FB_CYBER2000 is not set +# CONFIG_FB_ARC is not set +# CONFIG_FB_ASILIANT is not set +# CONFIG_FB_IMSTT is not set +# CONFIG_FB_VGA16 is not set +# CONFIG_FB_UVESA is not set +# CONFIG_FB_VESA is not set +# CONFIG_FB_EFI is not set +# CONFIG_FB_N411 is not set +# CONFIG_FB_HGA is not set +# CONFIG_FB_S1D13XXX is not set +# CONFIG_FB_NVIDIA is not set +# CONFIG_FB_RIVA is not set +# CONFIG_FB_I740 is not set +# CONFIG_FB_LE80578 is not set +# CONFIG_FB_MATROX is not set +# CONFIG_FB_RADEON is not set +# CONFIG_FB_ATY128 is not set +# CONFIG_FB_ATY is not set +# CONFIG_FB_S3 is not set +# CONFIG_FB_SAVAGE is not set +# CONFIG_FB_SIS is not set +# CONFIG_FB_VIA is not set +# CONFIG_FB_NEOMAGIC is not set +# CONFIG_FB_KYRO is not set +# CONFIG_FB_3DFX is not set +# CONFIG_FB_VOODOO1 is not set +# CONFIG_FB_VT8623 is not set +# CONFIG_FB_TRIDENT is not set +# CONFIG_FB_ARK is not set +# CONFIG_FB_PM3 is not set +# CONFIG_FB_CARMINE is not set +# CONFIG_FB_GEODE is not set +# CONFIG_FB_TMIO is not set +# CONFIG_FB_SM501 is not set +# CONFIG_FB_SMSCUFX is not set +# CONFIG_FB_UDL is not set +# CONFIG_FB_VIRTUAL is not set +CONFIG_XEN_FBDEV_FRONTEND=y +# CONFIG_FB_METRONOME is not set +# CONFIG_FB_MB862XX is not set +# CONFIG_FB_BROADSHEET is not set +CONFIG_FB_AUO_K190X=m +CONFIG_FB_AUO_K1900=m +CONFIG_FB_AUO_K1901=m +# CONFIG_EXYNOS_VIDEO is not set +CONFIG_BACKLIGHT_LCD_SUPPORT=y +# CONFIG_LCD_CLASS_DEVICE is not set +CONFIG_BACKLIGHT_CLASS_DEVICE=y +CONFIG_BACKLIGHT_GENERIC=y +CONFIG_BACKLIGHT_LM3533=m +CONFIG_BACKLIGHT_PWM=m +# CONFIG_BACKLIGHT_DA903X is not set +CONFIG_BACKLIGHT_DA9052=m +# CONFIG_BACKLIGHT_MAX8925 is not set +# CONFIG_BACKLIGHT_APPLE is not set +# CONFIG_BACKLIGHT_SAHARA is not set +# CONFIG_BACKLIGHT_WM831X is not set +# CONFIG_BACKLIGHT_ADP5520 is not set +# CONFIG_BACKLIGHT_ADP8860 is not set +# CONFIG_BACKLIGHT_ADP8870 is not set +# CONFIG_BACKLIGHT_88PM860X is not set +# CONFIG_BACKLIGHT_PCF50633 is not set +CONFIG_BACKLIGHT_LM3630=m +CONFIG_BACKLIGHT_LM3639=m +CONFIG_BACKLIGHT_LP855X=m +CONFIG_BACKLIGHT_PANDORA=m +CONFIG_BACKLIGHT_TPS65217=m + +# +# Console display driver support +# +CONFIG_VGA_CONSOLE=y +CONFIG_VGACON_SOFT_SCROLLBACK=y +CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64 +CONFIG_DUMMY_CONSOLE=y +CONFIG_FRAMEBUFFER_CONSOLE=y +CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y +# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set +# CONFIG_FONTS is not set +CONFIG_FONT_8x8=y +CONFIG_FONT_8x16=y +CONFIG_LOGO=y +# CONFIG_LOGO_LINUX_MONO is not set +# CONFIG_LOGO_LINUX_VGA16 is not set +CONFIG_LOGO_LINUX_CLUT224=y +CONFIG_SOUND=y +CONFIG_SOUND_OSS_CORE=y +CONFIG_SOUND_OSS_CORE_PRECLAIM=y +CONFIG_SND=y +CONFIG_SND_TIMER=y +CONFIG_SND_PCM=y +CONFIG_SND_HWDEP=y +CONFIG_SND_RAWMIDI=m +CONFIG_SND_JACK=y +CONFIG_SND_SEQUENCER=y +CONFIG_SND_SEQ_DUMMY=y +CONFIG_SND_OSSEMUL=y +CONFIG_SND_MIXER_OSS=y +CONFIG_SND_PCM_OSS=y +CONFIG_SND_PCM_OSS_PLUGINS=y +CONFIG_SND_SEQUENCER_OSS=y +CONFIG_SND_HRTIMER=y +CONFIG_SND_SEQ_HRTIMER_DEFAULT=y +CONFIG_SND_DYNAMIC_MINORS=y +CONFIG_SND_SUPPORT_OLD_API=y +CONFIG_SND_VERBOSE_PROCFS=y +# CONFIG_SND_VERBOSE_PRINTK is not set +# CONFIG_SND_DEBUG is not set +CONFIG_SND_VMASTER=y +CONFIG_SND_KCTL_JACK=y +CONFIG_SND_DMA_SGBUF=y +CONFIG_SND_RAWMIDI_SEQ=m +CONFIG_SND_OPL3_LIB_SEQ=m +# CONFIG_SND_OPL4_LIB_SEQ is not set +# CONFIG_SND_SBAWE_SEQ is not set +CONFIG_SND_EMU10K1_SEQ=m +CONFIG_SND_MPU401_UART=m +CONFIG_SND_OPL3_LIB=m +CONFIG_SND_VX_LIB=m +CONFIG_SND_AC97_CODEC=y +CONFIG_SND_DRIVERS=y +CONFIG_SND_PCSP=m +CONFIG_SND_DUMMY=m +CONFIG_SND_ALOOP=m +CONFIG_SND_VIRMIDI=m +CONFIG_SND_MTPAV=m +CONFIG_SND_MTS64=m +CONFIG_SND_SERIAL_U16550=m +CONFIG_SND_MPU401=m +CONFIG_SND_PORTMAN2X4=m +# CONFIG_SND_AC97_POWER_SAVE is not set +CONFIG_SND_SB_COMMON=m +CONFIG_SND_SB16_DSP=m +CONFIG_SND_TEA575X=m +CONFIG_SND_PCI=y +CONFIG_SND_AD1889=m +CONFIG_SND_ALS300=m +CONFIG_SND_ALS4000=m +CONFIG_SND_ALI5451=m +CONFIG_SND_ASIHPI=m +CONFIG_SND_ATIIXP=y +CONFIG_SND_ATIIXP_MODEM=y +CONFIG_SND_AU8810=m +CONFIG_SND_AU8820=m +CONFIG_SND_AU8830=m +CONFIG_SND_AW2=m +CONFIG_SND_AZT3328=m +CONFIG_SND_BT87X=m +# CONFIG_SND_BT87X_OVERCLOCK is not set +CONFIG_SND_CA0106=m +CONFIG_SND_CMIPCI=m +CONFIG_SND_OXYGEN_LIB=m +CONFIG_SND_OXYGEN=m +CONFIG_SND_CS4281=m +CONFIG_SND_CS46XX=m +CONFIG_SND_CS46XX_NEW_DSP=y +CONFIG_SND_CS5530=m +CONFIG_SND_CS5535AUDIO=m +CONFIG_SND_CTXFI=m +CONFIG_SND_DARLA20=m +CONFIG_SND_GINA20=m +CONFIG_SND_LAYLA20=m +CONFIG_SND_DARLA24=m +CONFIG_SND_GINA24=m +CONFIG_SND_LAYLA24=m +CONFIG_SND_MONA=m +CONFIG_SND_MIA=m +CONFIG_SND_ECHO3G=m +CONFIG_SND_INDIGO=m +CONFIG_SND_INDIGOIO=m +CONFIG_SND_INDIGODJ=m +CONFIG_SND_INDIGOIOX=m +CONFIG_SND_INDIGODJX=m +CONFIG_SND_EMU10K1=m +CONFIG_SND_EMU10K1X=m +CONFIG_SND_ENS1370=m +CONFIG_SND_ENS1371=m +CONFIG_SND_ES1938=m +CONFIG_SND_ES1968=m +# CONFIG_SND_ES1968_INPUT is not set +# CONFIG_SND_ES1968_RADIO is not set +CONFIG_SND_FM801=m +CONFIG_SND_FM801_TEA575X_BOOL=y +CONFIG_SND_HDA_INTEL=y +CONFIG_SND_HDA_PREALLOC_SIZE=64 +CONFIG_SND_HDA_HWDEP=y +# CONFIG_SND_HDA_RECONFIG is not set +# CONFIG_SND_HDA_INPUT_BEEP is not set +# CONFIG_SND_HDA_INPUT_JACK is not set +# CONFIG_SND_HDA_PATCH_LOADER is not set +CONFIG_SND_HDA_CODEC_REALTEK=y +CONFIG_SND_HDA_CODEC_ANALOG=y +CONFIG_SND_HDA_CODEC_SIGMATEL=y +CONFIG_SND_HDA_CODEC_VIA=y +CONFIG_SND_HDA_CODEC_HDMI=y +CONFIG_SND_HDA_CODEC_CIRRUS=y +CONFIG_SND_HDA_CODEC_CONEXANT=y +CONFIG_SND_HDA_CODEC_CA0110=y +CONFIG_SND_HDA_CODEC_CA0132=y +CONFIG_SND_HDA_CODEC_CMEDIA=y +CONFIG_SND_HDA_CODEC_SI3054=y +CONFIG_SND_HDA_GENERIC=y +CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0 +CONFIG_SND_HDSP=m +CONFIG_SND_HDSPM=m +CONFIG_SND_ICE1712=m +CONFIG_SND_ICE1724=m +CONFIG_SND_INTEL8X0=m +CONFIG_SND_INTEL8X0M=m +CONFIG_SND_KORG1212=m +CONFIG_SND_LOLA=m +CONFIG_SND_LX6464ES=m +CONFIG_SND_MAESTRO3=m +# CONFIG_SND_MAESTRO3_INPUT is not set +CONFIG_SND_MIXART=m +CONFIG_SND_NM256=m +CONFIG_SND_PCXHR=m +CONFIG_SND_RIPTIDE=m +CONFIG_SND_RME32=m +CONFIG_SND_RME96=m +CONFIG_SND_RME9652=m +CONFIG_SND_SONICVIBES=m +CONFIG_SND_TRIDENT=m +CONFIG_SND_VIA82XX=m +CONFIG_SND_VIA82XX_MODEM=m +CONFIG_SND_VIRTUOSO=m +CONFIG_SND_VX222=m +CONFIG_SND_YMFPCI=m +CONFIG_SND_USB=y +CONFIG_SND_USB_AUDIO=m +CONFIG_SND_USB_UA101=m +CONFIG_SND_USB_USX2Y=m +CONFIG_SND_USB_CAIAQ=m +# CONFIG_SND_USB_CAIAQ_INPUT is not set +CONFIG_SND_USB_US122L=m +CONFIG_SND_USB_6FIRE=m +# CONFIG_SND_PCMCIA is not set +# CONFIG_SND_SOC is not set +# CONFIG_SOUND_PRIME is not set +CONFIG_AC97_BUS=y + +# +# HID support +# +CONFIG_HID=y +CONFIG_HID_BATTERY_STRENGTH=y +CONFIG_HIDRAW=y +CONFIG_UHID=m +CONFIG_HID_GENERIC=y + +# +# Special HID drivers +# +CONFIG_HID_A4TECH=y +CONFIG_HID_ACRUX=m +CONFIG_HID_ACRUX_FF=y +CONFIG_HID_APPLE=y +CONFIG_HID_AUREAL=m +CONFIG_HID_BELKIN=y +CONFIG_HID_CHERRY=y +CONFIG_HID_CHICONY=y +CONFIG_HID_PRODIKEYS=m +CONFIG_HID_CYPRESS=y +CONFIG_HID_DRAGONRISE=m +CONFIG_DRAGONRISE_FF=y +CONFIG_HID_EMS_FF=m +CONFIG_HID_EZKEY=y +CONFIG_HID_HOLTEK=m +CONFIG_HOLTEK_FF=y +CONFIG_HID_KEYTOUCH=m +CONFIG_HID_KYE=y +CONFIG_HID_UCLOGIC=m +CONFIG_HID_WALTOP=m +CONFIG_HID_GYRATION=y +CONFIG_HID_TWINHAN=m +CONFIG_HID_KENSINGTON=y +CONFIG_HID_LCPOWER=m +CONFIG_HID_LENOVO_TPKBD=m +CONFIG_HID_LOGITECH=y +CONFIG_HID_LOGITECH_DJ=m +CONFIG_LOGITECH_FF=y +CONFIG_LOGIRUMBLEPAD2_FF=y +CONFIG_LOGIG940_FF=y +CONFIG_LOGIWHEELS_FF=y +CONFIG_HID_MICROSOFT=y +CONFIG_HID_MONTEREY=y +CONFIG_HID_MULTITOUCH=m +CONFIG_HID_NTRIG=y +CONFIG_HID_ORTEK=m +CONFIG_HID_PANTHERLORD=y +CONFIG_PANTHERLORD_FF=y +CONFIG_HID_PETALYNX=y +CONFIG_HID_PICOLCD=m +CONFIG_HID_PICOLCD_FB=y +CONFIG_HID_PICOLCD_BACKLIGHT=y +CONFIG_HID_PICOLCD_LEDS=y +CONFIG_HID_PICOLCD_CIR=y +CONFIG_HID_PRIMAX=m +CONFIG_HID_ROCCAT=m +CONFIG_HID_SAITEK=m +CONFIG_HID_SAMSUNG=y +CONFIG_HID_SONY=y +CONFIG_HID_SPEEDLINK=m +CONFIG_HID_SUNPLUS=y +CONFIG_HID_GREENASIA=m +CONFIG_GREENASIA_FF=y +# CONFIG_HID_HYPERV_MOUSE is not set +CONFIG_HID_SMARTJOYPLUS=m +# CONFIG_SMARTJOYPLUS_FF is not set +CONFIG_HID_TIVO=m +CONFIG_HID_TOPSEED=y +CONFIG_HID_THRUSTMASTER=m +CONFIG_THRUSTMASTER_FF=y +CONFIG_HID_ZEROPLUS=m +CONFIG_ZEROPLUS_FF=y +CONFIG_HID_ZYDACRON=m +CONFIG_HID_SENSOR_HUB=m + +# +# USB HID support +# +CONFIG_USB_HID=y +CONFIG_HID_PID=y +CONFIG_USB_HIDDEV=y + +# +# I2C HID support +# +CONFIG_I2C_HID=m +CONFIG_USB_ARCH_HAS_OHCI=y +CONFIG_USB_ARCH_HAS_EHCI=y +CONFIG_USB_ARCH_HAS_XHCI=y +CONFIG_USB_SUPPORT=y +CONFIG_USB_COMMON=y +CONFIG_USB_ARCH_HAS_HCD=y +CONFIG_USB=y +# CONFIG_USB_DEBUG is not set +CONFIG_USB_ANNOUNCE_NEW_DEVICES=y + +# +# Miscellaneous USB options +# +# CONFIG_USB_DYNAMIC_MINORS is not set +CONFIG_USB_DWC3=m +# CONFIG_USB_DWC3_DEBUG is not set +CONFIG_USB_MON=y +CONFIG_USB_WUSB=m +CONFIG_USB_WUSB_CBAF=m +# CONFIG_USB_WUSB_CBAF_DEBUG is not set + +# +# USB Host Controller Drivers +# +CONFIG_USB_C67X00_HCD=m +CONFIG_USB_XHCI_HCD=y +CONFIG_USB_XHCI_PLATFORM=m +# CONFIG_USB_XHCI_HCD_DEBUGGING is not set +CONFIG_USB_EHCI_HCD=y +CONFIG_USB_EHCI_ROOT_HUB_TT=y +CONFIG_USB_EHCI_TT_NEWSCHED=y +CONFIG_USB_EHCI_PCI=y +CONFIG_USB_OXU210HP_HCD=m +CONFIG_USB_ISP116X_HCD=m +CONFIG_USB_ISP1760_HCD=m +CONFIG_USB_ISP1362_HCD=m +CONFIG_USB_OHCI_HCD=y +CONFIG_USB_OHCI_HCD_PLATFORM=y +CONFIG_USB_EHCI_HCD_PLATFORM=y +# CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set +# CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +CONFIG_USB_UHCI_HCD=y +CONFIG_USB_U132_HCD=m +CONFIG_USB_SL811_HCD=m +# CONFIG_USB_SL811_HCD_ISO is not set +CONFIG_USB_SL811_CS=m +CONFIG_USB_R8A66597_HCD=m +CONFIG_USB_RENESAS_USBHS_HCD=m +CONFIG_USB_WHCI_HCD=m +CONFIG_USB_HWA_HCD=m +CONFIG_USB_HCD_SSB=m +CONFIG_USB_MUSB_HDRC=m +CONFIG_USB_MUSB_TUSB6010=m +CONFIG_MUSB_PIO_ONLY=y +CONFIG_USB_CHIPIDEA=m +CONFIG_USB_CHIPIDEA_UDC=y +CONFIG_USB_CHIPIDEA_HOST=y +# CONFIG_USB_CHIPIDEA_DEBUG is not set +CONFIG_USB_RENESAS_USBHS=m + +# +# USB Device Class drivers +# +CONFIG_USB_ACM=m +CONFIG_USB_PRINTER=y +CONFIG_USB_WDM=m +CONFIG_USB_TMC=m + +# +# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may +# + +# +# also be needed; see USB_STORAGE Help for more info +# +CONFIG_USB_STORAGE=y +# CONFIG_USB_STORAGE_DEBUG is not set +CONFIG_USB_STORAGE_REALTEK=m +CONFIG_USB_STORAGE_DATAFAB=m +CONFIG_USB_STORAGE_FREECOM=m +CONFIG_USB_STORAGE_ISD200=m +CONFIG_USB_STORAGE_USBAT=m +CONFIG_USB_STORAGE_SDDR09=m +CONFIG_USB_STORAGE_SDDR55=m +CONFIG_USB_STORAGE_JUMPSHOT=m +CONFIG_USB_STORAGE_ALAUDA=m +CONFIG_USB_STORAGE_ONETOUCH=m +CONFIG_USB_STORAGE_KARMA=m +CONFIG_USB_STORAGE_CYPRESS_ATACB=m +CONFIG_USB_STORAGE_ENE_UB6250=m + +# +# USB Imaging devices +# +CONFIG_USB_MDC800=m +CONFIG_USB_MICROTEK=m + +# +# USB port drivers +# +CONFIG_USB_USS720=m +CONFIG_USB_SERIAL=m +CONFIG_USB_SERIAL_GENERIC=y +CONFIG_USB_SERIAL_AIRCABLE=m +CONFIG_USB_SERIAL_ARK3116=m +CONFIG_USB_SERIAL_BELKIN=m +CONFIG_USB_SERIAL_CH341=m +CONFIG_USB_SERIAL_WHITEHEAT=m +CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m +CONFIG_USB_SERIAL_CP210X=m +CONFIG_USB_SERIAL_CYPRESS_M8=m +CONFIG_USB_SERIAL_EMPEG=m +CONFIG_USB_SERIAL_FTDI_SIO=m +CONFIG_USB_SERIAL_FUNSOFT=m +CONFIG_USB_SERIAL_VISOR=m +CONFIG_USB_SERIAL_IPAQ=m +CONFIG_USB_SERIAL_IR=m +CONFIG_USB_SERIAL_EDGEPORT=m +CONFIG_USB_SERIAL_EDGEPORT_TI=m +CONFIG_USB_SERIAL_F81232=m +CONFIG_USB_SERIAL_GARMIN=m +CONFIG_USB_SERIAL_IPW=m +CONFIG_USB_SERIAL_IUU=m +CONFIG_USB_SERIAL_KEYSPAN_PDA=m +CONFIG_USB_SERIAL_KEYSPAN=m +CONFIG_USB_SERIAL_KEYSPAN_MPR=y +CONFIG_USB_SERIAL_KEYSPAN_USA28=y +CONFIG_USB_SERIAL_KEYSPAN_USA28X=y +CONFIG_USB_SERIAL_KEYSPAN_USA28XA=y +CONFIG_USB_SERIAL_KEYSPAN_USA28XB=y +CONFIG_USB_SERIAL_KEYSPAN_USA19=y +CONFIG_USB_SERIAL_KEYSPAN_USA18X=y +CONFIG_USB_SERIAL_KEYSPAN_USA19W=y +CONFIG_USB_SERIAL_KEYSPAN_USA19QW=y +CONFIG_USB_SERIAL_KEYSPAN_USA19QI=y +CONFIG_USB_SERIAL_KEYSPAN_USA49W=y +CONFIG_USB_SERIAL_KEYSPAN_USA49WLC=y +CONFIG_USB_SERIAL_KLSI=m +CONFIG_USB_SERIAL_KOBIL_SCT=m +CONFIG_USB_SERIAL_MCT_U232=m +CONFIG_USB_SERIAL_METRO=m +CONFIG_USB_SERIAL_MOS7720=m +# CONFIG_USB_SERIAL_MOS7715_PARPORT is not set +CONFIG_USB_SERIAL_MOS7840=m +CONFIG_USB_SERIAL_MOTOROLA=m +CONFIG_USB_SERIAL_NAVMAN=m +CONFIG_USB_SERIAL_PL2303=m +CONFIG_USB_SERIAL_OTI6858=m +CONFIG_USB_SERIAL_QCAUX=m +CONFIG_USB_SERIAL_QUALCOMM=m +CONFIG_USB_SERIAL_SPCP8X5=m +CONFIG_USB_SERIAL_HP4X=m +CONFIG_USB_SERIAL_SAFE=m +# CONFIG_USB_SERIAL_SAFE_PADDED is not set +CONFIG_USB_SERIAL_SIEMENS_MPI=m +CONFIG_USB_SERIAL_SIERRAWIRELESS=m +CONFIG_USB_SERIAL_SYMBOL=m +CONFIG_USB_SERIAL_TI=m +CONFIG_USB_SERIAL_CYBERJACK=m +CONFIG_USB_SERIAL_XIRCOM=m +CONFIG_USB_SERIAL_WWAN=m +CONFIG_USB_SERIAL_OPTION=m +CONFIG_USB_SERIAL_OMNINET=m +CONFIG_USB_SERIAL_OPTICON=m +CONFIG_USB_SERIAL_VIVOPAY_SERIAL=m +CONFIG_USB_SERIAL_ZIO=m +CONFIG_USB_SERIAL_ZTE=m +CONFIG_USB_SERIAL_SSU100=m +CONFIG_USB_SERIAL_QT2=m +CONFIG_USB_SERIAL_DEBUG=m + +# +# USB Miscellaneous drivers +# +CONFIG_USB_EMI62=m +CONFIG_USB_EMI26=m +CONFIG_USB_ADUTUX=m +CONFIG_USB_SEVSEG=m +CONFIG_USB_RIO500=m +CONFIG_USB_LEGOTOWER=m +CONFIG_USB_LCD=m +CONFIG_USB_LED=m +CONFIG_USB_CYPRESS_CY7C63=m +CONFIG_USB_CYTHERM=m +CONFIG_USB_IDMOUSE=m +CONFIG_USB_FTDI_ELAN=m +CONFIG_USB_APPLEDISPLAY=m +CONFIG_USB_SISUSBVGA=m +# CONFIG_USB_SISUSBVGA_CON is not set +CONFIG_USB_LD=m +CONFIG_USB_TRANCEVIBRATOR=m +CONFIG_USB_IOWARRIOR=m +CONFIG_USB_TEST=m +CONFIG_USB_ISIGHTFW=m +CONFIG_USB_YUREX=m +CONFIG_USB_EZUSB_FX2=m + +# +# USB Physical Layer drivers +# +CONFIG_USB_ISP1301=m +CONFIG_USB_RCAR_PHY=m +CONFIG_USB_GADGET=m +# CONFIG_USB_GADGET_DEBUG is not set +# CONFIG_USB_GADGET_DEBUG_FILES is not set +# CONFIG_USB_GADGET_DEBUG_FS is not set +CONFIG_USB_GADGET_VBUS_DRAW=2 +CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=2 + +# +# USB Peripheral Controller +# +CONFIG_USB_R8A66597=m +CONFIG_USB_RENESAS_USBHS_UDC=m +CONFIG_USB_MV_UDC=m +CONFIG_USB_GADGET_MUSB_HDRC=m +CONFIG_USB_M66592=m +CONFIG_USB_AMD5536UDC=m +CONFIG_USB_NET2272=m +CONFIG_USB_NET2272_DMA=y +CONFIG_USB_NET2280=m +CONFIG_USB_GOKU=m +CONFIG_USB_EG20T=m +CONFIG_USB_DUMMY_HCD=m +CONFIG_USB_LIBCOMPOSITE=m +CONFIG_USB_ZERO=m +CONFIG_USB_AUDIO=m +# CONFIG_GADGET_UAC1 is not set +CONFIG_USB_ETH=m +CONFIG_USB_ETH_RNDIS=y +# CONFIG_USB_ETH_EEM is not set +CONFIG_USB_G_NCM=m +CONFIG_USB_GADGETFS=m +CONFIG_USB_FUNCTIONFS=m +# CONFIG_USB_FUNCTIONFS_ETH is not set +# CONFIG_USB_FUNCTIONFS_RNDIS is not set +CONFIG_USB_FUNCTIONFS_GENERIC=y +CONFIG_USB_MASS_STORAGE=m +CONFIG_USB_G_SERIAL=m +CONFIG_USB_MIDI_GADGET=m +CONFIG_USB_G_PRINTER=m +CONFIG_USB_CDC_COMPOSITE=m +CONFIG_USB_G_ACM_MS=m +CONFIG_USB_G_MULTI=m +CONFIG_USB_G_MULTI_RNDIS=y +# CONFIG_USB_G_MULTI_CDC is not set +CONFIG_USB_G_HID=m +CONFIG_USB_G_DBGP=m +# CONFIG_USB_G_DBGP_PRINTK is not set +CONFIG_USB_G_DBGP_SERIAL=y +CONFIG_USB_G_WEBCAM=m + +# +# OTG and related infrastructure +# +CONFIG_USB_OTG_UTILS=y +CONFIG_NOP_USB_XCEIV=m +CONFIG_UWB=m +CONFIG_UWB_HWA=m +CONFIG_UWB_WHCI=m +# CONFIG_UWB_I1480U is not set +CONFIG_MMC=y +# CONFIG_MMC_DEBUG is not set +# CONFIG_MMC_UNSAFE_RESUME is not set +# CONFIG_MMC_CLKGATE is not set + +# +# MMC/SD/SDIO Card Drivers +# +CONFIG_MMC_BLOCK=y +CONFIG_MMC_BLOCK_MINORS=8 +CONFIG_MMC_BLOCK_BOUNCE=y +CONFIG_SDIO_UART=m +CONFIG_MMC_TEST=m + +# +# MMC/SD/SDIO Host Controller Drivers +# +CONFIG_MMC_SDHCI=m +CONFIG_MMC_SDHCI_PCI=m +# CONFIG_MMC_RICOH_MMC is not set +CONFIG_MMC_SDHCI_ACPI=m +CONFIG_MMC_SDHCI_PLTFM=m +CONFIG_MMC_WBSD=m +CONFIG_MMC_TIFM_SD=m +CONFIG_MMC_SDRICOH_CS=m +CONFIG_MMC_CB710=m +CONFIG_MMC_VIA_SDMMC=m +CONFIG_MMC_VUB300=m +CONFIG_MMC_USHC=m +CONFIG_MMC_REALTEK_PCI=m +CONFIG_MEMSTICK=m +# CONFIG_MEMSTICK_DEBUG is not set + +# +# MemoryStick drivers +# +# CONFIG_MEMSTICK_UNSAFE_RESUME is not set +CONFIG_MSPRO_BLOCK=m + +# +# MemoryStick Host Controller Drivers +# +CONFIG_MEMSTICK_TIFM_MS=m +CONFIG_MEMSTICK_JMICRON_38X=m +CONFIG_MEMSTICK_R592=m +CONFIG_MEMSTICK_REALTEK_PCI=m +CONFIG_NEW_LEDS=y +CONFIG_LEDS_CLASS=y + +# +# LED drivers +# +# CONFIG_LEDS_88PM860X is not set +CONFIG_LEDS_LM3530=m +CONFIG_LEDS_LM3533=m +CONFIG_LEDS_LM3642=m +CONFIG_LEDS_PCA9532=m +CONFIG_LEDS_LP3944=m +CONFIG_LEDS_LP5521=m +CONFIG_LEDS_LP5523=m +CONFIG_LEDS_CLEVO_MAIL=m +CONFIG_LEDS_PCA955X=m +CONFIG_LEDS_PCA9633=m +CONFIG_LEDS_WM831X_STATUS=m +CONFIG_LEDS_WM8350=m +CONFIG_LEDS_DA903X=m +CONFIG_LEDS_DA9052=m +CONFIG_LEDS_REGULATOR=m +CONFIG_LEDS_BD2802=m +CONFIG_LEDS_INTEL_SS4200=m +CONFIG_LEDS_ADP5520=m +CONFIG_LEDS_DELL_NETBOOKS=m +CONFIG_LEDS_MC13783=m +CONFIG_LEDS_TCA6507=m +CONFIG_LEDS_MAX8997=m +CONFIG_LEDS_LM355x=m +CONFIG_LEDS_OT200=m +CONFIG_LEDS_BLINKM=m +CONFIG_LEDS_TRIGGERS=y + +# +# LED Triggers +# +CONFIG_LEDS_TRIGGER_TIMER=m +CONFIG_LEDS_TRIGGER_ONESHOT=m +CONFIG_LEDS_TRIGGER_HEARTBEAT=m +CONFIG_LEDS_TRIGGER_BACKLIGHT=m +CONFIG_LEDS_TRIGGER_CPU=y +CONFIG_LEDS_TRIGGER_DEFAULT_ON=m + +# +# iptables trigger is under Netfilter config (LED target) +# +CONFIG_LEDS_TRIGGER_TRANSIENT=m +# CONFIG_ACCESSIBILITY is not set +CONFIG_INFINIBAND=m +CONFIG_INFINIBAND_USER_MAD=m +CONFIG_INFINIBAND_USER_ACCESS=m +CONFIG_INFINIBAND_USER_MEM=y +CONFIG_INFINIBAND_ADDR_TRANS=y +CONFIG_INFINIBAND_MTHCA=m +CONFIG_INFINIBAND_MTHCA_DEBUG=y +CONFIG_INFINIBAND_IPATH=m +CONFIG_INFINIBAND_QIB=m +CONFIG_INFINIBAND_AMSO1100=m +# CONFIG_INFINIBAND_AMSO1100_DEBUG is not set +CONFIG_INFINIBAND_CXGB3=m +# CONFIG_INFINIBAND_CXGB3_DEBUG is not set +CONFIG_INFINIBAND_CXGB4=m +CONFIG_MLX4_INFINIBAND=m +CONFIG_INFINIBAND_NES=m +# CONFIG_INFINIBAND_NES_DEBUG is not set +CONFIG_INFINIBAND_OCRDMA=m +CONFIG_INFINIBAND_IPOIB=m +CONFIG_INFINIBAND_IPOIB_CM=y +CONFIG_INFINIBAND_IPOIB_DEBUG=y +CONFIG_INFINIBAND_IPOIB_DEBUG_DATA=y +CONFIG_INFINIBAND_SRP=m +CONFIG_INFINIBAND_ISER=m +CONFIG_EDAC=y +CONFIG_EDAC_LEGACY_SYSFS=y +# CONFIG_EDAC_DEBUG is not set +CONFIG_EDAC_DECODE_MCE=y +# CONFIG_EDAC_MCE_INJ is not set +# CONFIG_EDAC_MM_EDAC is not set +CONFIG_RTC_LIB=y +CONFIG_RTC_CLASS=y +# CONFIG_RTC_HCTOSYS is not set +# CONFIG_RTC_DEBUG is not set + +# +# RTC interfaces +# +CONFIG_RTC_INTF_SYSFS=y +CONFIG_RTC_INTF_PROC=y +CONFIG_RTC_INTF_DEV=y +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set +CONFIG_RTC_DRV_TEST=m + +# +# I2C RTC drivers +# +CONFIG_RTC_DRV_88PM860X=m +CONFIG_RTC_DRV_88PM80X=m +CONFIG_RTC_DRV_DS1307=m +CONFIG_RTC_DRV_DS1374=m +CONFIG_RTC_DRV_DS1672=m +CONFIG_RTC_DRV_DS3232=m +CONFIG_RTC_DRV_MAX6900=m +CONFIG_RTC_DRV_MAX8925=m +CONFIG_RTC_DRV_MAX8998=m +CONFIG_RTC_DRV_RS5C372=m +CONFIG_RTC_DRV_ISL1208=m +CONFIG_RTC_DRV_ISL12022=m +CONFIG_RTC_DRV_X1205=m +CONFIG_RTC_DRV_PCF8523=m +CONFIG_RTC_DRV_PCF8563=m +CONFIG_RTC_DRV_PCF8583=m +CONFIG_RTC_DRV_M41T80=m +# CONFIG_RTC_DRV_M41T80_WDT is not set +CONFIG_RTC_DRV_BQ32K=m +CONFIG_RTC_DRV_TWL4030=m +CONFIG_RTC_DRV_TPS6586X=m +CONFIG_RTC_DRV_RC5T583=m +CONFIG_RTC_DRV_S35390A=m +CONFIG_RTC_DRV_FM3130=m +CONFIG_RTC_DRV_RX8581=m +CONFIG_RTC_DRV_RX8025=m +CONFIG_RTC_DRV_EM3027=m +CONFIG_RTC_DRV_RV3029C2=m + +# +# SPI RTC drivers +# + +# +# Platform RTC drivers +# +CONFIG_RTC_DRV_CMOS=y +CONFIG_RTC_DRV_DS1286=m +CONFIG_RTC_DRV_DS1511=m +CONFIG_RTC_DRV_DS1553=m +CONFIG_RTC_DRV_DS1742=m +CONFIG_RTC_DRV_DA9052=m +CONFIG_RTC_DRV_STK17TA8=m +CONFIG_RTC_DRV_M48T86=m +CONFIG_RTC_DRV_M48T35=m +CONFIG_RTC_DRV_M48T59=m +CONFIG_RTC_DRV_MSM6242=m +CONFIG_RTC_DRV_BQ4802=m +CONFIG_RTC_DRV_RP5C01=m +CONFIG_RTC_DRV_V3020=m +CONFIG_RTC_DRV_DS2404=m +CONFIG_RTC_DRV_WM831X=m +CONFIG_RTC_DRV_WM8350=m +# CONFIG_RTC_DRV_PCF50633 is not set +CONFIG_RTC_DRV_AB3100=y + +# +# on-CPU RTC drivers +# +CONFIG_RTC_DRV_MC13XXX=m +CONFIG_DMADEVICES=y +# CONFIG_DMADEVICES_DEBUG is not set + +# +# DMA Devices +# +# CONFIG_INTEL_MID_DMAC is not set +# CONFIG_INTEL_IOATDMA is not set +CONFIG_TIMB_DMA=m +# CONFIG_PCH_DMA is not set +CONFIG_DMA_ENGINE=y + +# +# DMA Clients +# +# CONFIG_NET_DMA is not set +# CONFIG_ASYNC_TX_DMA is not set +# CONFIG_DMATEST is not set +# CONFIG_AUXDISPLAY is not set +CONFIG_UIO=m +# CONFIG_UIO_CIF is not set +# CONFIG_UIO_PDRV is not set +# CONFIG_UIO_PDRV_GENIRQ is not set +CONFIG_UIO_DMEM_GENIRQ=m +# CONFIG_UIO_AEC is not set +# CONFIG_UIO_SERCOS3 is not set +# CONFIG_UIO_PCI_GENERIC is not set +# CONFIG_UIO_NETX is not set +CONFIG_VFIO_IOMMU_TYPE1=m +CONFIG_VFIO=m +CONFIG_VFIO_PCI=m +CONFIG_VIRTIO=m + +# +# Virtio drivers +# +CONFIG_VIRTIO_PCI=m +CONFIG_VIRTIO_BALLOON=m +CONFIG_VIRTIO_MMIO=m +# CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES is not set + +# +# Microsoft Hyper-V guest support +# +CONFIG_HYPERV=m +CONFIG_HYPERV_UTILS=m +CONFIG_HYPERV_BALLOON=m + +# +# Xen driver support +# +CONFIG_XEN_BALLOON=y +CONFIG_XEN_SCRUB_PAGES=y +CONFIG_XEN_DEV_EVTCHN=y +CONFIG_XEN_BACKEND=y +CONFIG_XENFS=y +CONFIG_XEN_COMPAT_XENFS=y +CONFIG_XEN_SYS_HYPERVISOR=y +CONFIG_XEN_XENBUS_FRONTEND=y +CONFIG_XEN_GNTDEV=m +CONFIG_XEN_GRANT_DEV_ALLOC=m +CONFIG_SWIOTLB_XEN=y +CONFIG_XEN_TMEM=y +CONFIG_XEN_PCIDEV_BACKEND=m +CONFIG_XEN_PRIVCMD=y +CONFIG_XEN_ACPI_PROCESSOR=m +CONFIG_XEN_MCE_LOG=y +CONFIG_XEN_HAVE_PVMMU=y +CONFIG_STAGING=y +# CONFIG_ET131X is not set +# CONFIG_SLICOSS is not set +# CONFIG_USBIP_CORE is not set +# CONFIG_ECHO is not set +# CONFIG_COMEDI is not set +# CONFIG_ASUS_OLED is not set +# CONFIG_PANEL is not set +CONFIG_RTS5139=m +# CONFIG_RTS5139_DEBUG is not set +# CONFIG_TRANZPORT is not set +# CONFIG_IDE_PHISON is not set +# CONFIG_LINE6_USB is not set +# CONFIG_USB_SERIAL_QUATECH2 is not set +# CONFIG_DX_SEP is not set + +# +# IIO staging drivers +# +# CONFIG_IIO_ST_HWMON is not set +CONFIG_IIO_SW_RING=m + +# +# Accelerometers +# + +# +# Analog to digital converters +# +# CONFIG_AD7291 is not set +# CONFIG_AD799X is not set +# CONFIG_ADT7410 is not set + +# +# Analog digital bi-direction converters +# + +# +# Capacitance to digital converters +# +# CONFIG_AD7150 is not set +# CONFIG_AD7152 is not set +# CONFIG_AD7746 is not set + +# +# Direct Digital Synthesis +# + +# +# Digital gyroscope sensors +# + +# +# Network Analyzer, Impedance Converters +# +# CONFIG_AD5933 is not set + +# +# Inertial measurement units +# + +# +# Light sensors +# +# CONFIG_SENSORS_ISL29018 is not set +# CONFIG_SENSORS_ISL29028 is not set +# CONFIG_SENSORS_TSL2563 is not set +# CONFIG_TSL2583 is not set +# CONFIG_TSL2x7x is not set + +# +# Magnetometer sensors +# +# CONFIG_SENSORS_HMC5843 is not set + +# +# Active energy metering IC +# +# CONFIG_ADE7854 is not set + +# +# Resolver to digital converters +# + +# +# Triggers - standalone +# +CONFIG_IIO_PERIODIC_RTC_TRIGGER=m +CONFIG_IIO_SYSFS_TRIGGER=m +# CONFIG_IIO_SIMPLE_DUMMY is not set +# CONFIG_ZSMALLOC is not set +# CONFIG_FB_SM7XX is not set +# CONFIG_CRYSTALHD is not set +# CONFIG_FB_XGI is not set +# CONFIG_ACPI_QUICKSTART is not set +# CONFIG_USB_ENESTORAGE is not set +# CONFIG_BCM_WIMAX is not set +# CONFIG_FT1000 is not set + +# +# Speakup console speech +# +# CONFIG_SPEAKUP is not set +# CONFIG_TOUCHSCREEN_SYNAPTICS_I2C_RMI4 is not set +CONFIG_STAGING_MEDIA=y +CONFIG_DVB_AS102=m +# CONFIG_DVB_CXD2099 is not set +# CONFIG_VIDEO_DT3155 is not set +# CONFIG_VIDEO_GO7007 is not set +# CONFIG_SOLO6X10 is not set +# CONFIG_LIRC_STAGING is not set + +# +# Android +# +# CONFIG_ANDROID is not set +# CONFIG_USB_WPAN_HCD is not set +CONFIG_WIMAX_GDM72XX=m +CONFIG_WIMAX_GDM72XX_QOS=y +CONFIG_WIMAX_GDM72XX_K_MODE=y +CONFIG_WIMAX_GDM72XX_WIMAX2=y +CONFIG_WIMAX_GDM72XX_USB=y +# CONFIG_WIMAX_GDM72XX_SDIO is not set +CONFIG_NET_VENDOR_SILICOM=y +CONFIG_SBYPASS=m +CONFIG_BPCTL=m +CONFIG_CED1401=m +CONFIG_DGRP=m +CONFIG_SB105X=m +CONFIG_X86_PLATFORM_DEVICES=y +# CONFIG_ACER_WMI is not set +CONFIG_ACERHDF=m +CONFIG_ASUS_LAPTOP=y +CONFIG_DELL_WMI=m +CONFIG_DELL_WMI_AIO=m +CONFIG_FUJITSU_LAPTOP=y +# CONFIG_FUJITSU_LAPTOP_DEBUG is not set +# CONFIG_FUJITSU_TABLET is not set +# CONFIG_HP_ACCEL is not set +CONFIG_HP_WMI=m +# CONFIG_PANASONIC_LAPTOP is not set +# CONFIG_THINKPAD_ACPI is not set +# CONFIG_SENSORS_HDAPS is not set +CONFIG_INTEL_MENLOW=m +# CONFIG_EEEPC_LAPTOP is not set +CONFIG_ASUS_WMI=m +# CONFIG_ASUS_NB_WMI is not set +# CONFIG_EEEPC_WMI is not set +CONFIG_ACPI_WMI=m +CONFIG_MSI_WMI=m +# CONFIG_TOPSTAR_LAPTOP is not set +# CONFIG_ACPI_TOSHIBA is not set +CONFIG_TOSHIBA_BT_RFKILL=m +# CONFIG_ACPI_CMPC is not set +CONFIG_INTEL_IPS=m +CONFIG_IBM_RTL=m +# CONFIG_XO15_EBOOK is not set +# CONFIG_SAMSUNG_LAPTOP is not set +# CONFIG_MXM_WMI is not set +CONFIG_SAMSUNG_Q10=m +# CONFIG_APPLE_GMUX is not set + +# +# Hardware Spinlock drivers +# +CONFIG_CLKEVT_I8253=y +CONFIG_I8253_LOCK=y +CONFIG_CLKBLD_I8253=y +CONFIG_IOMMU_API=y +CONFIG_IOMMU_SUPPORT=y +CONFIG_AMD_IOMMU=y +CONFIG_AMD_IOMMU_STATS=y +CONFIG_AMD_IOMMU_V2=y +CONFIG_DMAR_TABLE=y +CONFIG_INTEL_IOMMU=y +CONFIG_INTEL_IOMMU_DEFAULT_ON=y +CONFIG_INTEL_IOMMU_FLOPPY_WA=y +CONFIG_IRQ_REMAP=y + +# +# Remoteproc drivers (EXPERIMENTAL) +# +CONFIG_REMOTEPROC=m +CONFIG_STE_MODEM_RPROC=m + +# +# Rpmsg drivers (EXPERIMENTAL) +# +CONFIG_VIRT_DRIVERS=y +# CONFIG_PM_DEVFREQ is not set +CONFIG_EXTCON=y + +# +# Extcon Device Drivers +# +CONFIG_EXTCON_ADC_JACK=m +CONFIG_EXTCON_MAX8997=m +CONFIG_EXTCON_ARIZONA=m +CONFIG_MEMORY=y +CONFIG_IIO=m +CONFIG_IIO_BUFFER=y +# CONFIG_IIO_BUFFER_CB is not set +CONFIG_IIO_KFIFO_BUF=m +CONFIG_IIO_TRIGGERED_BUFFER=m +CONFIG_IIO_TRIGGER=y +CONFIG_IIO_CONSUMERS_PER_TRIGGER=2 + +# +# Accelerometers +# +CONFIG_HID_SENSOR_ACCEL_3D=m + +# +# Analog to digital converters +# +# CONFIG_MAX1363 is not set +CONFIG_TI_ADC081C=m +CONFIG_TI_AM335X_ADC=m +CONFIG_VIPERBOARD_ADC=m + +# +# Amplifiers +# + +# +# Hid Sensor IIO Common +# +CONFIG_HID_SENSOR_IIO_COMMON=m +CONFIG_HID_SENSOR_IIO_TRIGGER=m +# CONFIG_HID_SENSOR_ENUM_BASE_QUIRKS is not set + +# +# Digital to analog converters +# +CONFIG_AD5064=m +# CONFIG_AD5380 is not set +# CONFIG_AD5446 is not set +# CONFIG_MAX517 is not set +CONFIG_MCP4725=m + +# +# Frequency Synthesizers DDS/PLL +# + +# +# Clock Generator/Distribution +# + +# +# Phase-Locked Loop (PLL) frequency synthesizers +# + +# +# Digital gyroscope sensors +# +CONFIG_HID_SENSOR_GYRO_3D=m + +# +# Inertial measurement units +# + +# +# Light sensors +# +CONFIG_ADJD_S311=m +CONFIG_SENSORS_LM3533=m +CONFIG_VCNL4000=m +CONFIG_HID_SENSOR_ALS=m + +# +# Magnetometer sensors +# +CONFIG_HID_SENSOR_MAGNETOMETER_3D=m +CONFIG_VME_BUS=m + +# +# VME Bridge Drivers +# +CONFIG_VME_CA91CX42=m +CONFIG_VME_TSI148=m + +# +# VME Board Drivers +# +CONFIG_VMIVME_7805=m + +# +# VME Device Drivers +# +CONFIG_VME_USER=m +CONFIG_PWM=y +CONFIG_PWM_TWL=m +CONFIG_PWM_TWL_LED=m +CONFIG_IPACK_BUS=m +CONFIG_BOARD_TPCI200=m +CONFIG_SERIAL_IPOCTAL=m + +# +# Firmware Drivers +# +# CONFIG_EDD is not set +CONFIG_FIRMWARE_MEMMAP=y +CONFIG_EFI_VARS=y +# CONFIG_DELL_RBU is not set +# CONFIG_DCDBAS is not set +CONFIG_DMIID=y +# CONFIG_DMI_SYSFS is not set +# CONFIG_ISCSI_IBFT_FIND is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +CONFIG_EXT2_FS=m +CONFIG_EXT2_FS_XATTR=y +CONFIG_EXT2_FS_POSIX_ACL=y +CONFIG_EXT2_FS_SECURITY=y +# CONFIG_EXT2_FS_XIP is not set +CONFIG_EXT3_FS=y +# CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set +CONFIG_EXT3_FS_XATTR=y +CONFIG_EXT3_FS_POSIX_ACL=y +CONFIG_EXT3_FS_SECURITY=y +CONFIG_EXT4_FS=y +CONFIG_EXT4_FS_POSIX_ACL=y +CONFIG_EXT4_FS_SECURITY=y +# CONFIG_EXT4_DEBUG is not set +CONFIG_JBD=y +# CONFIG_JBD_DEBUG is not set +CONFIG_JBD2=y +# CONFIG_JBD2_DEBUG is not set +CONFIG_FS_MBCACHE=y +CONFIG_REISERFS_FS=m +# CONFIG_REISERFS_CHECK is not set +CONFIG_REISERFS_PROC_INFO=y +CONFIG_REISERFS_FS_XATTR=y +CONFIG_REISERFS_FS_POSIX_ACL=y +CONFIG_REISERFS_FS_SECURITY=y +CONFIG_JFS_FS=m +CONFIG_JFS_POSIX_ACL=y +CONFIG_JFS_SECURITY=y +# CONFIG_JFS_DEBUG is not set +CONFIG_JFS_STATISTICS=y +CONFIG_XFS_FS=m +CONFIG_XFS_QUOTA=y +CONFIG_XFS_POSIX_ACL=y +CONFIG_XFS_RT=y +# CONFIG_XFS_DEBUG is not set +CONFIG_GFS2_FS=m +# CONFIG_GFS2_FS_LOCKING_DLM is not set +CONFIG_OCFS2_FS=m +CONFIG_OCFS2_FS_O2CB=m +CONFIG_OCFS2_FS_USERSPACE_CLUSTER=m +CONFIG_OCFS2_FS_STATS=y +CONFIG_OCFS2_DEBUG_MASKLOG=y +# CONFIG_OCFS2_DEBUG_FS is not set +CONFIG_BTRFS_FS=m +CONFIG_BTRFS_FS_POSIX_ACL=y +# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set +CONFIG_NILFS2_FS=m +CONFIG_FS_POSIX_ACL=y +CONFIG_EXPORTFS=m +CONFIG_FILE_LOCKING=y +CONFIG_FSNOTIFY=y +CONFIG_DNOTIFY=y +CONFIG_INOTIFY_USER=y +CONFIG_FANOTIFY=y +CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y +CONFIG_QUOTA=y +CONFIG_QUOTA_NETLINK_INTERFACE=y +# CONFIG_PRINT_QUOTA_WARNING is not set +# CONFIG_QUOTA_DEBUG is not set +CONFIG_QUOTA_TREE=y +# CONFIG_QFMT_V1 is not set +CONFIG_QFMT_V2=y +CONFIG_QUOTACTL=y +CONFIG_QUOTACTL_COMPAT=y +CONFIG_AUTOFS4_FS=y +CONFIG_FUSE_FS=m +CONFIG_CUSE=m +CONFIG_GENERIC_ACL=y + +# +# Caches +# +CONFIG_FSCACHE=m +CONFIG_FSCACHE_STATS=y +CONFIG_FSCACHE_HISTOGRAM=y +# CONFIG_FSCACHE_DEBUG is not set +# CONFIG_FSCACHE_OBJECT_LIST is not set +CONFIG_CACHEFILES=m +# CONFIG_CACHEFILES_DEBUG is not set +CONFIG_CACHEFILES_HISTOGRAM=y + +# +# CD-ROM/DVD Filesystems +# +CONFIG_ISO9660_FS=y +CONFIG_JOLIET=y +CONFIG_ZISOFS=y +CONFIG_UDF_FS=y +CONFIG_UDF_NLS=y + +# +# DOS/FAT/NT Filesystems +# +CONFIG_FAT_FS=y +CONFIG_MSDOS_FS=y +CONFIG_VFAT_FS=y +CONFIG_FAT_DEFAULT_CODEPAGE=437 +CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" +CONFIG_NTFS_FS=y +# CONFIG_NTFS_DEBUG is not set +CONFIG_NTFS_RW=y + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +CONFIG_PROC_KCORE=y +CONFIG_PROC_VMCORE=y +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +CONFIG_SYSFS=y +CONFIG_TMPFS=y +CONFIG_TMPFS_POSIX_ACL=y +CONFIG_TMPFS_XATTR=y +CONFIG_HUGETLBFS=y +CONFIG_HUGETLB_PAGE=y +CONFIG_CONFIGFS_FS=m +CONFIG_MISC_FILESYSTEMS=y +CONFIG_ADFS_FS=m +# CONFIG_ADFS_FS_RW is not set +CONFIG_AFFS_FS=m +CONFIG_ECRYPT_FS=m +CONFIG_HFS_FS=m +CONFIG_HFSPLUS_FS=m +CONFIG_BEFS_FS=m +# CONFIG_BEFS_DEBUG is not set +CONFIG_BFS_FS=m +CONFIG_EFS_FS=m +CONFIG_LOGFS=m +CONFIG_CRAMFS=m +CONFIG_SQUASHFS=m +CONFIG_SQUASHFS_XATTR=y +CONFIG_SQUASHFS_ZLIB=y +CONFIG_SQUASHFS_LZO=y +CONFIG_SQUASHFS_XZ=y +CONFIG_SQUASHFS_4K_DEVBLK_SIZE=y +CONFIG_SQUASHFS_EMBEDDED=y +CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 +CONFIG_VXFS_FS=m +CONFIG_MINIX_FS=m +CONFIG_OMFS_FS=m +CONFIG_HPFS_FS=m +CONFIG_QNX4FS_FS=m +CONFIG_QNX6FS_FS=m +# CONFIG_QNX6FS_DEBUG is not set +CONFIG_ROMFS_FS=m +CONFIG_ROMFS_BACKED_BY_BLOCK=y +CONFIG_ROMFS_ON_BLOCK=y +# CONFIG_PSTORE is not set +CONFIG_SYSV_FS=m +CONFIG_UFS_FS=m +# CONFIG_UFS_FS_WRITE is not set +# CONFIG_UFS_DEBUG is not set +CONFIG_F2FS_FS=m +CONFIG_F2FS_STAT_FS=y +CONFIG_F2FS_FS_XATTR=y +CONFIG_F2FS_FS_POSIX_ACL=y +CONFIG_NETWORK_FILESYSTEMS=y +CONFIG_NFS_FS=y +CONFIG_NFS_V2=y +CONFIG_NFS_V3=y +CONFIG_NFS_V3_ACL=y +CONFIG_NFS_V4=y +# CONFIG_NFS_SWAP is not set +CONFIG_NFS_V4_1=y +CONFIG_PNFS_FILE_LAYOUT=m +CONFIG_PNFS_BLOCK=m +CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org" +CONFIG_ROOT_NFS=y +# CONFIG_NFS_USE_LEGACY_DNS is not set +CONFIG_NFS_USE_KERNEL_DNS=y +CONFIG_NFSD=m +CONFIG_NFSD_V2_ACL=y +CONFIG_NFSD_V3=y +CONFIG_NFSD_V3_ACL=y +# CONFIG_NFSD_V4 is not set +CONFIG_LOCKD=y +CONFIG_LOCKD_V4=y +CONFIG_NFS_ACL_SUPPORT=y +CONFIG_NFS_COMMON=y +CONFIG_SUNRPC=y +CONFIG_SUNRPC_GSS=y +CONFIG_SUNRPC_BACKCHANNEL=y +CONFIG_SUNRPC_XPRT_RDMA=m +CONFIG_RPCSEC_GSS_KRB5=m +# CONFIG_SUNRPC_DEBUG is not set +# CONFIG_CEPH_FS is not set +CONFIG_CIFS=m +CONFIG_CIFS_STATS=y +CONFIG_CIFS_STATS2=y +CONFIG_CIFS_WEAK_PW_HASH=y +# CONFIG_CIFS_UPCALL is not set +CONFIG_CIFS_XATTR=y +CONFIG_CIFS_POSIX=y +CONFIG_CIFS_ACL=y +CONFIG_CIFS_DEBUG=y +# CONFIG_CIFS_DEBUG2 is not set +# CONFIG_CIFS_DFS_UPCALL is not set +CONFIG_CIFS_SMB2=y +# CONFIG_CIFS_FSCACHE is not set +# CONFIG_NCP_FS is not set +# CONFIG_CODA_FS is not set +# CONFIG_AFS_FS is not set +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="utf8" +CONFIG_NLS_CODEPAGE_437=y +CONFIG_NLS_CODEPAGE_737=m +CONFIG_NLS_CODEPAGE_775=m +CONFIG_NLS_CODEPAGE_850=y +CONFIG_NLS_CODEPAGE_852=m +CONFIG_NLS_CODEPAGE_855=m +CONFIG_NLS_CODEPAGE_857=m +CONFIG_NLS_CODEPAGE_860=m +CONFIG_NLS_CODEPAGE_861=m +CONFIG_NLS_CODEPAGE_862=m +CONFIG_NLS_CODEPAGE_863=m +CONFIG_NLS_CODEPAGE_864=m +CONFIG_NLS_CODEPAGE_865=m +CONFIG_NLS_CODEPAGE_866=m +CONFIG_NLS_CODEPAGE_869=m +CONFIG_NLS_CODEPAGE_936=m +CONFIG_NLS_CODEPAGE_950=m +CONFIG_NLS_CODEPAGE_932=m +CONFIG_NLS_CODEPAGE_949=m +CONFIG_NLS_CODEPAGE_874=m +CONFIG_NLS_ISO8859_8=m +CONFIG_NLS_CODEPAGE_1250=m +CONFIG_NLS_CODEPAGE_1251=m +CONFIG_NLS_ASCII=y +CONFIG_NLS_ISO8859_1=y +CONFIG_NLS_ISO8859_2=m +CONFIG_NLS_ISO8859_3=m +CONFIG_NLS_ISO8859_4=m +CONFIG_NLS_ISO8859_5=m +CONFIG_NLS_ISO8859_6=m +CONFIG_NLS_ISO8859_7=m +CONFIG_NLS_ISO8859_9=m +CONFIG_NLS_ISO8859_13=m +CONFIG_NLS_ISO8859_14=m +CONFIG_NLS_ISO8859_15=y +CONFIG_NLS_KOI8_R=m +CONFIG_NLS_KOI8_U=m +CONFIG_NLS_MAC_ROMAN=m +CONFIG_NLS_MAC_CELTIC=m +CONFIG_NLS_MAC_CENTEURO=m +CONFIG_NLS_MAC_CROATIAN=m +CONFIG_NLS_MAC_CYRILLIC=m +CONFIG_NLS_MAC_GAELIC=m +CONFIG_NLS_MAC_GREEK=m +CONFIG_NLS_MAC_ICELAND=m +CONFIG_NLS_MAC_INUIT=m +CONFIG_NLS_MAC_ROMANIAN=m +CONFIG_NLS_MAC_TURKISH=m +CONFIG_NLS_UTF8=y +CONFIG_DLM=m +# CONFIG_DLM_DEBUG is not set + +# +# Kernel hacking +# +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +CONFIG_PRINTK_TIME=y +CONFIG_DEFAULT_MESSAGE_LOGLEVEL=4 +# CONFIG_ENABLE_WARN_DEPRECATED is not set +CONFIG_ENABLE_MUST_CHECK=y +CONFIG_FRAME_WARN=2048 +CONFIG_MAGIC_SYSRQ=y +# CONFIG_STRIP_ASM_SYMS is not set +# CONFIG_READABLE_ASM is not set +# CONFIG_UNUSED_SYMBOLS is not set +CONFIG_DEBUG_FS=y +# CONFIG_HEADERS_CHECK is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +CONFIG_DEBUG_KERNEL=y +# CONFIG_DEBUG_SHIRQ is not set +# CONFIG_LOCKUP_DETECTOR is not set +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +# CONFIG_DETECT_HUNG_TASK is not set +# CONFIG_SCHED_DEBUG is not set +CONFIG_SCHEDSTATS=y +CONFIG_TIMER_STATS=y +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_SLUB_DEBUG_ON is not set +# CONFIG_SLUB_STATS is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_RT_MUTEX_TESTER is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_PROVE_LOCKING is not set +# CONFIG_SPARSE_RCU_POINTER is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +CONFIG_STACKTRACE=y +CONFIG_DEBUG_STACK_USAGE=y +# CONFIG_DEBUG_KOBJECT is not set +CONFIG_DEBUG_BUGVERBOSE=y +# CONFIG_DEBUG_INFO is not set +# CONFIG_DEBUG_VM is not set +# CONFIG_DEBUG_VIRTUAL is not set +# CONFIG_DEBUG_WRITECOUNT is not set +CONFIG_DEBUG_MEMORY_INIT=y +# CONFIG_DEBUG_LIST is not set +# CONFIG_TEST_LIST_SORT is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_DEBUG_CREDENTIALS is not set +CONFIG_ARCH_WANT_FRAME_POINTERS=y +CONFIG_FRAME_POINTER=y +# CONFIG_BOOT_PRINTK_DELAY is not set +# CONFIG_RCU_TORTURE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=60 +# CONFIG_RCU_CPU_STALL_INFO is not set +# CONFIG_RCU_TRACE is not set +# CONFIG_KPROBES_SANITY_TEST is not set +# CONFIG_BACKTRACE_SELF_TEST is not set +# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +# CONFIG_DEBUG_PER_CPU_MAPS is not set +# CONFIG_LKDTM is not set +CONFIG_NOTIFIER_ERROR_INJECTION=m +# CONFIG_CPU_NOTIFIER_ERROR_INJECT is not set +CONFIG_PM_NOTIFIER_ERROR_INJECT=m +# CONFIG_FAULT_INJECTION is not set +# CONFIG_LATENCYTOP is not set +# CONFIG_DEBUG_PAGEALLOC is not set +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_NOP_TRACER=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_FP_TEST=y +CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACE_CLOCK=y +CONFIG_RING_BUFFER=y +CONFIG_EVENT_TRACING=y +CONFIG_EVENT_POWER_TRACING_DEPRECATED=y +CONFIG_CONTEXT_SWITCH_TRACER=y +CONFIG_TRACING=y +CONFIG_GENERIC_TRACER=y +CONFIG_TRACING_SUPPORT=y +CONFIG_FTRACE=y +# CONFIG_FUNCTION_TRACER is not set +# CONFIG_IRQSOFF_TRACER is not set +# CONFIG_SCHED_TRACER is not set +# CONFIG_FTRACE_SYSCALLS is not set +CONFIG_BRANCH_PROFILE_NONE=y +# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set +# CONFIG_PROFILE_ALL_BRANCHES is not set +# CONFIG_STACK_TRACER is not set +CONFIG_BLK_DEV_IO_TRACE=y +CONFIG_KPROBE_EVENT=y +CONFIG_UPROBE_EVENT=y +CONFIG_PROBE_EVENTS=y +# CONFIG_FTRACE_STARTUP_TEST is not set +# CONFIG_MMIOTRACE is not set +# CONFIG_RING_BUFFER_BENCHMARK is not set +# CONFIG_RBTREE_TEST is not set +# CONFIG_INTERVAL_TREE_TEST is not set +CONFIG_PROVIDE_OHCI1394_DMA_INIT=y +# CONFIG_DYNAMIC_DEBUG is not set +# CONFIG_DMA_API_DEBUG is not set +# CONFIG_ATOMIC64_SELFTEST is not set +# CONFIG_ASYNC_RAID6_TEST is not set +# CONFIG_SAMPLES is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +CONFIG_HAVE_ARCH_KMEMCHECK=y +# CONFIG_KMEMCHECK is not set +# CONFIG_TEST_KSTRTOX is not set +# CONFIG_STRICT_DEVMEM is not set +CONFIG_X86_VERBOSE_BOOTUP=y +CONFIG_EARLY_PRINTK=y +CONFIG_EARLY_PRINTK_DBGP=y +CONFIG_DEBUG_STACKOVERFLOW=y +# CONFIG_X86_PTDUMP is not set +CONFIG_DEBUG_RODATA=y +# CONFIG_DEBUG_RODATA_TEST is not set +# CONFIG_DEBUG_SET_MODULE_RONX is not set +CONFIG_DEBUG_NX_TEST=m +# CONFIG_DEBUG_TLBFLUSH is not set +# CONFIG_IOMMU_DEBUG is not set +# CONFIG_IOMMU_STRESS is not set +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +# CONFIG_X86_DECODER_SELFTEST is not set +CONFIG_IO_DELAY_TYPE_0X80=0 +CONFIG_IO_DELAY_TYPE_0XED=1 +CONFIG_IO_DELAY_TYPE_UDELAY=2 +CONFIG_IO_DELAY_TYPE_NONE=3 +CONFIG_IO_DELAY_0X80=y +# CONFIG_IO_DELAY_0XED is not set +# CONFIG_IO_DELAY_UDELAY is not set +# CONFIG_IO_DELAY_NONE is not set +CONFIG_DEFAULT_IO_DELAY_TYPE=0 +CONFIG_DEBUG_BOOT_PARAMS=y +# CONFIG_CPA_DEBUG is not set +CONFIG_OPTIMIZE_INLINING=y +# CONFIG_DEBUG_STRICT_USER_COPY_CHECKS is not set +CONFIG_DEBUG_NMI_SELFTEST=y + +# +# Security options +# +CONFIG_KEYS=y +# CONFIG_TRUSTED_KEYS is not set +CONFIG_ENCRYPTED_KEYS=y +CONFIG_KEYS_DEBUG_PROC_KEYS=y +# CONFIG_SECURITY_DMESG_RESTRICT is not set +CONFIG_SECURITY=y +CONFIG_SECURITYFS=y +CONFIG_SECURITY_NETWORK=y +# CONFIG_SECURITY_NETWORK_XFRM is not set +CONFIG_SECURITY_PATH=y +# CONFIG_INTEL_TXT is not set +CONFIG_LSM_MMAP_MIN_ADDR=65536 +CONFIG_SECURITY_SELINUX=y +CONFIG_SECURITY_SELINUX_BOOTPARAM=y +CONFIG_SECURITY_SELINUX_BOOTPARAM_VALUE=1 +CONFIG_SECURITY_SELINUX_DISABLE=y +CONFIG_SECURITY_SELINUX_DEVELOP=y +CONFIG_SECURITY_SELINUX_AVC_STATS=y +CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1 +# CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX is not set +# CONFIG_SECURITY_SMACK is not set +# CONFIG_SECURITY_TOMOYO is not set +# CONFIG_SECURITY_APPARMOR is not set +CONFIG_SECURITY_YAMA=y +# CONFIG_SECURITY_YAMA_STACKED is not set +CONFIG_INTEGRITY=y +# CONFIG_INTEGRITY_SIGNATURE is not set +# CONFIG_IMA is not set +CONFIG_EVM=y +CONFIG_DEFAULT_SECURITY_SELINUX=y +# CONFIG_DEFAULT_SECURITY_YAMA is not set +# CONFIG_DEFAULT_SECURITY_DAC is not set +CONFIG_DEFAULT_SECURITY="selinux" +CONFIG_XOR_BLOCKS=m +CONFIG_ASYNC_CORE=m +CONFIG_ASYNC_MEMCPY=m +CONFIG_ASYNC_XOR=m +CONFIG_ASYNC_PQ=m +CONFIG_ASYNC_RAID6_RECOV=m +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_BLKCIPHER=y +CONFIG_CRYPTO_BLKCIPHER2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_RNG=y +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_PCOMP=m +CONFIG_CRYPTO_PCOMP2=y +CONFIG_CRYPTO_MANAGER=y +CONFIG_CRYPTO_MANAGER2=y +CONFIG_CRYPTO_USER=m +CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y +CONFIG_CRYPTO_GF128MUL=m +CONFIG_CRYPTO_NULL=m +CONFIG_CRYPTO_PCRYPT=m +CONFIG_CRYPTO_WORKQUEUE=y +CONFIG_CRYPTO_CRYPTD=m +CONFIG_CRYPTO_AUTHENC=y +CONFIG_CRYPTO_TEST=m +CONFIG_CRYPTO_ABLK_HELPER_X86=m +CONFIG_CRYPTO_GLUE_HELPER_X86=m + +# +# Authenticated Encryption with Associated Data +# +CONFIG_CRYPTO_CCM=m +CONFIG_CRYPTO_GCM=m +CONFIG_CRYPTO_SEQIV=m + +# +# Block modes +# +CONFIG_CRYPTO_CBC=y +CONFIG_CRYPTO_CTR=m +CONFIG_CRYPTO_CTS=m +CONFIG_CRYPTO_ECB=m +CONFIG_CRYPTO_LRW=m +CONFIG_CRYPTO_PCBC=m +CONFIG_CRYPTO_XTS=m + +# +# Hash modes +# +CONFIG_CRYPTO_HMAC=y +CONFIG_CRYPTO_XCBC=m +CONFIG_CRYPTO_VMAC=m + +# +# Digest +# +CONFIG_CRYPTO_CRC32C=y +CONFIG_CRYPTO_CRC32C_X86_64=y +CONFIG_CRYPTO_CRC32C_INTEL=m +CONFIG_CRYPTO_GHASH=m +CONFIG_CRYPTO_MD4=m +CONFIG_CRYPTO_MD5=y +CONFIG_CRYPTO_MICHAEL_MIC=m +CONFIG_CRYPTO_RMD128=m +CONFIG_CRYPTO_RMD160=m +CONFIG_CRYPTO_RMD256=m +CONFIG_CRYPTO_RMD320=m +CONFIG_CRYPTO_SHA1=y +CONFIG_CRYPTO_SHA1_SSSE3=m +CONFIG_CRYPTO_SHA256=y +CONFIG_CRYPTO_SHA512=m +CONFIG_CRYPTO_TGR192=m +CONFIG_CRYPTO_WP512=m +CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL=m + +# +# Ciphers +# +CONFIG_CRYPTO_AES=y +CONFIG_CRYPTO_AES_X86_64=m +CONFIG_CRYPTO_AES_NI_INTEL=m +CONFIG_CRYPTO_ANUBIS=m +CONFIG_CRYPTO_ARC4=y +CONFIG_CRYPTO_BLOWFISH=m +CONFIG_CRYPTO_BLOWFISH_COMMON=m +CONFIG_CRYPTO_BLOWFISH_X86_64=m +CONFIG_CRYPTO_CAMELLIA=m +CONFIG_CRYPTO_CAMELLIA_X86_64=m +CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64=m +CONFIG_CRYPTO_CAST_COMMON=m +CONFIG_CRYPTO_CAST5=m +CONFIG_CRYPTO_CAST5_AVX_X86_64=m +CONFIG_CRYPTO_CAST6=m +CONFIG_CRYPTO_CAST6_AVX_X86_64=m +CONFIG_CRYPTO_DES=y +CONFIG_CRYPTO_FCRYPT=m +CONFIG_CRYPTO_KHAZAD=m +CONFIG_CRYPTO_SALSA20=m +CONFIG_CRYPTO_SALSA20_X86_64=m +CONFIG_CRYPTO_SEED=m +CONFIG_CRYPTO_SERPENT=m +CONFIG_CRYPTO_SERPENT_SSE2_X86_64=m +CONFIG_CRYPTO_SERPENT_AVX_X86_64=m +CONFIG_CRYPTO_TEA=m +CONFIG_CRYPTO_TWOFISH=m +CONFIG_CRYPTO_TWOFISH_COMMON=m +CONFIG_CRYPTO_TWOFISH_X86_64=m +CONFIG_CRYPTO_TWOFISH_X86_64_3WAY=m +CONFIG_CRYPTO_TWOFISH_AVX_X86_64=m + +# +# Compression +# +CONFIG_CRYPTO_DEFLATE=m +CONFIG_CRYPTO_ZLIB=m +CONFIG_CRYPTO_LZO=m + +# +# Random Number Generation +# +CONFIG_CRYPTO_ANSI_CPRNG=m +CONFIG_CRYPTO_USER_API=m +CONFIG_CRYPTO_USER_API_HASH=m +CONFIG_CRYPTO_USER_API_SKCIPHER=m +CONFIG_CRYPTO_HW=y +CONFIG_CRYPTO_DEV_PADLOCK=m +CONFIG_CRYPTO_DEV_PADLOCK_AES=m +CONFIG_CRYPTO_DEV_PADLOCK_SHA=m +CONFIG_ASYMMETRIC_KEY_TYPE=m +CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=m +CONFIG_PUBLIC_KEY_ALGO_RSA=m +CONFIG_X509_CERTIFICATE_PARSER=m +CONFIG_HAVE_KVM=y +CONFIG_HAVE_KVM_IRQCHIP=y +CONFIG_HAVE_KVM_EVENTFD=y +CONFIG_KVM_APIC_ARCHITECTURE=y +CONFIG_KVM_MMIO=y +CONFIG_KVM_ASYNC_PF=y +CONFIG_HAVE_KVM_MSI=y +CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT=y +CONFIG_VIRTUALIZATION=y +CONFIG_KVM=m +CONFIG_KVM_INTEL=m +CONFIG_KVM_AMD=m +# CONFIG_KVM_MMU_AUDIT is not set +CONFIG_VHOST_NET=m +CONFIG_BINARY_PRINTF=y + +# +# Library routines +# +CONFIG_RAID6_PQ=m +CONFIG_BITREVERSE=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_IOMAP=y +CONFIG_GENERIC_IO=y +CONFIG_PERCPU_RWSEM=y +CONFIG_CRC_CCITT=m +CONFIG_CRC16=y +CONFIG_CRC_T10DIF=y +CONFIG_CRC_ITU_T=y +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +CONFIG_CRC7=m +CONFIG_LIBCRC32C=m +CONFIG_CRC8=m +CONFIG_ZLIB_INFLATE=y +CONFIG_ZLIB_DEFLATE=m +CONFIG_LZO_COMPRESS=y +CONFIG_LZO_DECOMPRESS=y +CONFIG_XZ_DEC=y +CONFIG_XZ_DEC_X86=y +CONFIG_XZ_DEC_POWERPC=y +CONFIG_XZ_DEC_IA64=y +CONFIG_XZ_DEC_ARM=y +CONFIG_XZ_DEC_ARMTHUMB=y +CONFIG_XZ_DEC_SPARC=y +CONFIG_XZ_DEC_BCJ=y +CONFIG_XZ_DEC_TEST=m +CONFIG_DECOMPRESS_GZIP=y +CONFIG_DECOMPRESS_BZIP2=y +CONFIG_DECOMPRESS_LZMA=y +CONFIG_DECOMPRESS_XZ=y +CONFIG_DECOMPRESS_LZO=y +CONFIG_GENERIC_ALLOCATOR=y +CONFIG_TEXTSEARCH=y +CONFIG_TEXTSEARCH_KMP=m +CONFIG_TEXTSEARCH_BM=m +CONFIG_TEXTSEARCH_FSM=m +CONFIG_BTREE=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT=y +CONFIG_HAS_DMA=y +CONFIG_CHECK_SIGNATURE=y +CONFIG_CPU_RMAP=y +CONFIG_DQL=y +CONFIG_NLATTR=y +CONFIG_ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE=y +CONFIG_LRU_CACHE=m +CONFIG_AVERAGE=y +CONFIG_CLZ_TAB=y +CONFIG_CORDIC=m +CONFIG_DDR=y +CONFIG_MPILIB=m +CONFIG_OID_REGISTRY=m diff --git a/ld.so.conf.d/05gcc-x86_64-pc-linux-gnu.conf b/ld.so.conf.d/05gcc-x86_64-pc-linux-gnu.conf index 62d62a0..e15a5ba 100644 --- a/ld.so.conf.d/05gcc-x86_64-pc-linux-gnu.conf +++ b/ld.so.conf.d/05gcc-x86_64-pc-linux-gnu.conf @@ -1,2 +1,2 @@ -/usr/lib/gcc/x86_64-pc-linux-gnu/4.6.3/32 -/usr/lib/gcc/x86_64-pc-linux-gnu/4.6.3 +/usr/lib/gcc/x86_64-pc-linux-gnu/4.8.2/32 +/usr/lib/gcc/x86_64-pc-linux-gnu/4.8.2 diff --git a/libvirt/qemu.conf b/libvirt/qemu.conf index cdf1ec4..5fd6263 100644 --- a/libvirt/qemu.conf +++ b/libvirt/qemu.conf @@ -140,6 +140,15 @@ #spice_password = "XYZ12345" +# By default, if no graphical front end is configured, libvirt will disable +# QEMU audio output since directly talking to alsa/pulseaudio may not work +# with various security settings. If you know what you're doing, enable +# the setting below and libvirt will passthrough the QEMU_AUDIO_DRV +# environment variable when using nographics. +# +#nographics_allow_host_audio = 1 + + # Override the port for creating both VNC and SPICE sessions (min). # This defaults to 5900 and increases for consecutive sessions # or when ports are occupied, until it hits the maximum. diff --git a/local.d/README b/local.d/README index d3c1156..352847b 100644 --- a/local.d/README +++ b/local.d/README @@ -7,3 +7,8 @@ executable and it has a .stop extension, it will be run when the local service is stopped. All files are processed in lexical order. + +Keep in mind that files in this directory are processed sequencially, +and the local service is not considered started or stopped until +everything is processed, so if you have a process which takes a long +time to run, it can delay your boot or shutdown processing. diff --git a/locale.conf b/locale.conf new file mode 100644 index 0000000..02f043e --- /dev/null +++ b/locale.conf @@ -0,0 +1,13 @@ +LANG="de_DE.UTF-8" +LC_CTYPE="de_DE.utf8" +LC_NUMERIC="de_DE.utf8" +LC_TIME="de_DE.utf8" +LC_COLLATE="de_DE.utf8" +LC_MONETARY="de_DE.utf8" +LC_MESSAGES="de_DE.utf8" +LC_PAPER="de_DE.utf8" +LC_NAME="de_DE.utf8" +LC_ADDRESS="de_DE.utf8" +LC_TELEPHONE="de_DE.utf8" +LC_MEASUREMENT="de_DE.utf8" +LC_IDENTIFICATION="de_DE.utf8" diff --git a/localtime b/localtime deleted file mode 100644 index 96059c7..0000000 Binary files a/localtime and /dev/null differ diff --git a/localtime b/localtime new file mode 120000 index 0000000..285b912 --- /dev/null +++ b/localtime @@ -0,0 +1 @@ +../usr/share/zoneinfo/Europe/Berlin \ No newline at end of file diff --git a/lvm/lvm.conf b/lvm/lvm.conf index de3077e..4ee0b45 100644 --- a/lvm/lvm.conf +++ b/lvm/lvm.conf @@ -10,6 +10,23 @@ # N.B. Take care that each setting only appears once if uncommenting # example settings in this file. +# This section allows you to set the way the configuration settings are handled. +config { + + # If enabled, any LVM2 configuration mismatch is reported. + # This implies checking that the configuration key is understood + # by LVM2 and that the value of the key is of a proper type. + # If disabled, any configuration mismatch is ignored and default + # value is used instead without any warning (a message about the + # configuration key not being found is issued in verbose mode only). + checks = 1 + + # If enabled, any configuration mismatch aborts the LVM2 process. + abort_on_errors = 0 + + # Directory where LVM looks for configuration profiles. + profile_dir = "/etc/lvm/profile" +} # This section allows you to configure which block devices should # be used by the LVM system. @@ -63,6 +80,8 @@ devices { # the cache file gets regenerated (see below). # If it doesn't do what you expect, check the output of 'vgscan -vvvv'. + # If lvmetad is used, then see "A note about device filtering while + # lvmetad is used" comment that is attached to global/use_lvmetad setting. # By default we accept every block device: # Gentoo: we exclude /dev/nbd by default, because it makes a lot of kernel @@ -81,6 +100,14 @@ devices { # Use anchors if you want to be really specific # filter = [ "a|^/dev/hda8$|", "r/.*/" ] + # Since "filter" is often overridden from command line, it is not suitable + # for system-wide device filtering (udev rules, lvmetad). To hide devices + # from LVM-specific udev processing and/or from lvmetad, you need to set + # global_filter. The syntax is the same as for normal "filter" + # above. Devices that fail the global_filter are not even opened by LVM. + + # global_filter = [] + # The results of the filtering are cached on disk to avoid # rescanning dud devices (which can take a very long time). # By default this cache is stored in the /etc/lvm/cache directory @@ -226,6 +253,38 @@ allocation { # Set to 1 to guarantee that thin pool metadata will always # be placed on different PVs from the pool data. thin_pool_metadata_require_separate_pvs = 0 + + # Specify chunk size calculation policy for thin pool volumes. + # Possible options are: + # "generic" - if thin_pool_chunk_size is defined, use it. + # Otherwise, calculate the chunk size based on + # estimation and device hints exposed in sysfs: + # the minimum_io_size. The chunk size is always + # at least 64KiB. + # + # "performance" - if thin_pool_chunk_size is defined, use it. + # Otherwise, calculate the chunk size for + # performance based on device hints exposed in + # sysfs: the optimal_io_size. The chunk size is + # always at least 512KiB. + # thin_pool_chunk_size_policy = "generic" + + # Specify the minimal chunk size (in KB) for thin pool volumes. + # Use of the larger chunk size may improve perfomance for plain + # thin volumes, however using them for snapshot volumes is less efficient, + # as it consumes more space and takes extra time for copying. + # When unset, lvm tries to estimate chunk size starting from 64KB + # Supported values are in range from 64 to 1048576. + # thin_pool_chunk_size = 64 + + # Specify discards behavior of the thin pool volume. + # Select one of "ignore", "nopassdown", "passdown" + # thin_pool_discards = "passdown" + + # Set to 0, to disable zeroing of thin pool data chunks before their + # first use. + # N.B. zeroing larger thin pool chunk size degrades performance. + # thin_pool_zero = 1 } # This section that allows you to configure the nature of the @@ -236,6 +295,17 @@ log { # There are three levels of verbosity, 3 being the most verbose. verbose = 0 + # Set to 1 to suppress all non-essential messages from stdout. + # This has the same effect as -qq. + # When this is set, the following commands still produce output: + # dumpconfig, lvdisplay, lvmdiskscan, lvs, pvck, pvdisplay, + # pvs, version, vgcfgrestore -l, vgdisplay, vgs. + # Non-essential messages are shifted from log level 4 to log level 5 + # for syslog and lvm2_log_fn purposes. + # Any 'yes' or 'no' questions not overridden by other arguments + # are suppressed and default to 'no'. + silent = 0 + # Should we send log messages through syslog? # 1 is yes; 0 is no. syslog = 1 @@ -273,6 +343,15 @@ log { # Set this if you want log messages during activation. # Don't use this in low memory situations (can deadlock). # activation = 0 + + # Some debugging messages are assigned to a class and only appear + # in debug output if the class is listed here. + # Classes currently available: + # memory, devices, activation, allocation, lvmetad, metadata, cache, + # locking + # Use "all" to see everything. + debug_classes = [ "memory", "devices", "activation", "allocation", + "lvmetad", "metadata", "cache", "locking" ] } # Configuration of metadata backups and archiving. In LVM2 when we @@ -316,7 +395,6 @@ shell { # Miscellaneous global LVM2 settings global { - # The file creation mask for any files and directories created. # Interpreted as octal if the first digit is zero. umask = 077 @@ -373,6 +451,10 @@ global { # Type 3 uses built-in clustered locking. # Type 4 uses read-only locking which forbids any operations that might # change metadata. + # N.B. Don't use lvmetad with locking type 3 as lvmetad is not yet + # supported in clustered environment. If use_lvmetad=1 and locking_type=3 + # is set at the same time, LVM always issues a warning message about this + # and then it automatically disables lvmetad use. locking_type = 1 # Set to 0 to fail when a lock request cannot be satisfied immediately. @@ -455,7 +537,24 @@ global { # # Specify the '--type ' option to override this default # setting. - mirror_segtype_default = "mirror" + mirror_segtype_default = "raid1" + + # 'raid10_segtype_default' determines the segment types used by default + # when the '--stripes/-i' and '--mirrors/-m' arguments are both specified + # during the creation of a logical volume. + # Possible settings include: + # + # "raid10" - This implementation leverages MD's RAID10 personality through + # device-mapper. + # + # "mirror" - LVM will layer the 'mirror' and 'stripe' segment types. It + # will do this by creating a mirror on top of striped sub-LVs; + # effectively creating a RAID 0+1 array. This is suboptimal + # in terms of providing redunancy and performance. Changing to + # this setting is not advised. + # Specify the '--type ' option to override this default + # setting. + raid10_segtype_default = "raid10" # The default format for displaying LV names in lvdisplay was changed # in version 2.02.89 to show the LV name and path separately. @@ -467,12 +566,38 @@ global { # Whether to use (trust) a running instance of lvmetad. If this is set to # 0, all commands fall back to the usual scanning mechanisms. When set to 1 - # *and* when lvmetad is running (it is not auto-started), the volume group - # metadata and PV state flags are obtained from the lvmetad instance and no - # scanning is done by the individual commands. In a setup with lvmetad, - # lvmetad udev rules *must* be set up for LVM to work correctly. Without - # proper udev rules, all changes in block device configuration will be - # *ignored* until a manual 'vgscan' is performed. + # *and* when lvmetad is running (automatically instantiated by making use of + # systemd's socket-based service activation or run as an initscripts service + # or run manually), the volume group metadata and PV state flags are obtained + # from the lvmetad instance and no scanning is done by the individual + # commands. In a setup with lvmetad, lvmetad udev rules *must* be set up for + # LVM to work correctly. Without proper udev rules, all changes in block + # device configuration will be *ignored* until a manual 'pvscan --cache' + # is performed. These rules are installed by default. + # + # If lvmetad has been running while use_lvmetad was 0, it MUST be stopped + # before changing use_lvmetad to 1 and started again afterwards. + # + # If using lvmetad, the volume activation is also switched to automatic + # event-based mode. In this mode, the volumes are activated based on + # incoming udev events that automatically inform lvmetad about new PVs + # that appear in the system. Once the VG is complete (all the PVs are + # present), it is auto-activated. The activation/auto_activation_volume_list + # setting controls which volumes are auto-activated (all by default). + # + # A note about device filtering while lvmetad is used: + # When lvmetad is updated (either automatically based on udev events + # or directly by pvscan --cache call), the devices/filter + # is ignored and all devices are scanned by default. The lvmetad always + # keeps unfiltered information which is then provided to LVM commands + # and then each LVM command does the filtering based on devices/filter + # setting itself. + # To prevent scanning devices completely, even when using lvmetad, + # the devices/global_filter must be used. + # N.B. Don't use lvmetad with locking type 3 as lvmetad is not yet + # supported in clustered environment. If use_lvmetad=1 and locking_type=3 + # is set at the same time, LVM always issues a warning message about this + # and then it automatically disables lvmetad use. use_lvmetad = 0 # Full path of the utility called to check that a thin metadata device @@ -484,11 +609,41 @@ global { # The thin tools are available as part of the device-mapper-persistent-data # package from https://github.com/jthornber/thin-provisioning-tools. # - thin_check_executable = "/sbin/thin_check" + # thin_check_executable = "/sbin/thin_check" + + # Array of string options passed with thin_check command. By default, + # option "-q" is for quiet output. + # With thin_check version 2.1 or newer you can add "--ignore-non-fatal-errors" + # to let it pass through ignoreable errors and fix them later. + # + # thin_check_options = [ "-q" ] - # String with options passed with thin_check command. By default, - # option '-q' is for quiet output. - thin_check_options = [ "-q" ] + # Full path of the utility called to repair a thin metadata device + # is in a state that allows it to be used. + # Each time a thin pool needs repair this utility is executed. + # See thin_check_executable how to obtain binaries. + # + # thin_repair_executable = "/sbin/thin_repair" + + # Array of extra string options passed with thin_repair command. + # thin_repair_options = [ "" ] + + # Full path of the utility called to dump thin metadata content. + # See thin_check_executable how to obtain binaries. + # + # thin_dump_executable = "/sbin/thin_dump" + + # If set, given features are not used by thin driver. + # This can be helpful not just for testing, but i.e. allows to avoid + # using problematic implementation of some thin feature. + # Features: + # block_size + # discards + # discards_non_power_2 + # external_origin + # metadata_resize + # + # thin_disabled_features = [ "discards", "block_size" ] } activation { @@ -551,15 +706,48 @@ activation { # If volume_list is defined, each LV is only activated if there is a # match against the list. + # # "vgname" and "vgname/lvname" are matched exactly. # "@tag" matches any tag set in the LV or VG. # "@*" matches if any tag defined on the host is also set in the LV or VG # + # If any host tags exist but volume_list is not defined, a default + # single-entry list containing "@*" is assumed. + # # volume_list = [ "vg1", "vg2/lvol1", "@tag1", "@*" ] # If auto_activation_volume_list is defined, each LV that is to be - # activated is checked against the list while using the autoactivation - # option (--activate ay/-a ay), and if it matches, it is activated. + # activated with the autoactivation option (--activate ay/-a ay) is + # first checked against the list. There are two scenarios in which + # the autoactivation option is used: + # + # - automatic activation of volumes based on incoming PVs. If all the + # PVs making up a VG are present in the system, the autoactivation + # is triggered. This requires lvmetad (global/use_lvmetad=1) and udev + # to be running. In this case, "pvscan --cache -aay" is called + # automatically without any user intervention while processing + # udev events. Please, make sure you define auto_activation_volume_list + # properly so only the volumes you want and expect are autoactivated. + # + # - direct activation on command line with the autoactivation option. + # In this case, the user calls "vgchange --activate ay/-a ay" or + # "lvchange --activate ay/-a ay" directly. + # + # By default, the auto_activation_volume_list is not defined and all + # volumes will be activated either automatically or by using --activate ay/-a ay. + # + # N.B. The "activation/volume_list" is still honoured in all cases so even + # if the VG/LV passes the auto_activation_volume_list, it still needs to + # pass the volume_list for it to be activated in the end. + + # If auto_activation_volume_list is defined but empty, no volumes will be + # activated automatically and --activate ay/-a ay will do nothing. + # + # auto_activation_volume_list = [] + + # If auto_activation_volume_list is defined and it's not empty, only matching + # volumes will be activated either automatically or by using --activate ay/-a ay. + # # "vgname" and "vgname/lvname" are matched exactly. # "@tag" matches any tag set in the LV or VG. # "@*" matches if any tag defined on the host is also set in the LV or VG @@ -570,14 +758,26 @@ activation { # is checked against the list, and if it matches, it as activated # in read-only mode. (This overrides '--permission rw' stored in the # metadata.) + # # "vgname" and "vgname/lvname" are matched exactly. # "@tag" matches any tag set in the LV or VG. # "@*" matches if any tag defined on the host is also set in the LV or VG # # read_only_volume_list = [ "vg1", "vg2/lvol1", "@tag1", "@*" ] - # Size (in KB) of each copy operation when mirroring - mirror_region_size = 512 + # Each LV can have an 'activation skip' flag stored persistently against it. + # During activation, this flag is used to decide whether such an LV is skipped. + # The 'activation skip' flag can be set during LV creation and by default it + # is automatically set for thin snapshot LVs. The 'auto_set_activation_skip' + # enables or disables this automatic setting of the flag while LVs are created. + # auto_set_activation_skip = 1 + + # For RAID or 'mirror' segment types, 'raid_region_size' is the + # size (in kiB) of each: + # - synchronization operation when initializing + # - each copy operation when performing a 'pvmove' (using 'mirror' segtype) + # This setting has replaced 'mirror_region_size' since version 2.02.99 + raid_region_size = 512 # Setting to use when there is no readahead value stored in the metadata. # diff --git a/lvm/profile/default.profile b/lvm/profile/default.profile new file mode 100644 index 0000000..9c01572 --- /dev/null +++ b/lvm/profile/default.profile @@ -0,0 +1,20 @@ +# This is a default profile for the LVM2 system. +# It contains all configuration settings that are customizable by profiles. +# +# To create a new profile, select the settings you want to customize +# and put them in a new file named .profile. Then put this +# file in a directory as defined by config/profile_dir setting found in +# /etc/lvm/lvm.conf file. +# +# Refer to 'man lvm.conf' for further information about profiles and file layout. + +allocation { + thin_pool_chunk_size = 64 + thin_pool_discards = "passdown" + thin_pool_zero = 1 +} + +activation { + thin_pool_autoextend_threshold = 100 + thin_pool_autoextend_percent = 20 +} diff --git a/lvm/profile/thin-performance.profile b/lvm/profile/thin-performance.profile new file mode 100644 index 0000000..2914de2 --- /dev/null +++ b/lvm/profile/thin-performance.profile @@ -0,0 +1,4 @@ +allocation { + thin_pool_chunk_size_policy = "performance" + thin_pool_zero = 0 +} diff --git a/modules-load.d/.keep_sys-apps_systemd-0 b/modules-load.d/.keep_sys-apps_systemd-0 new file mode 100644 index 0000000..e69de29 diff --git a/openldap/schema/evolutionperson.schema b/openldap/schema/evolutionperson.schema index fbffa16..3a3e329 120000 --- a/openldap/schema/evolutionperson.schema +++ b/openldap/schema/evolutionperson.schema @@ -1 +1 @@ -/usr/share/evolution-data-server-2.32/evolutionperson.schema \ No newline at end of file +/usr/share/evolution-data-server/evolutionperson.schema \ No newline at end of file diff --git a/pam.d/gdm b/pam.d/gdm deleted file mode 100644 index e51d98f..0000000 --- a/pam.d/gdm +++ /dev/null @@ -1,11 +0,0 @@ -#%PAM-1.0 -auth optional pam_env.so -auth include system-login -auth required pam_nologin.so - -account include system-login - -password include system-login - -session include system-auth -session optional pam_gnome_keyring.so auto_start diff --git a/pam.d/gdm-autologin b/pam.d/gdm-autologin index 191c463..71556e8 100644 --- a/pam.d/gdm-autologin +++ b/pam.d/gdm-autologin @@ -1,10 +1,17 @@ -#%PAM-1.0 -auth optional pam_env.so -auth required pam_nologin.so -auth required pam_permit.so -account include system-login -password include system-login -session include system-auth -# For the keyring to unlock with autologin, you need to set an empty -# password on the keyring. -session optional pam_gnome_keyring.so auto_start +# mirrors system-auth / system(-local)-login +# except for the authentication method, which is: +# always permit login + +auth required pam_env.so +auth required pam_tally.so file=/var/log/faillog onerr=succeed +auth required pam_shells.so +auth required pam_nologin.so +auth required pam_permit.so +-auth optional pam_gnome_keyring.so + +account include system-local-login + +password include system-local-login + +session include system-local-login +-session optional pam_gnome_keyring.so auto_start diff --git a/pam.d/gdm-fingerprint b/pam.d/gdm-fingerprint new file mode 100644 index 0000000..d9633fb --- /dev/null +++ b/pam.d/gdm-fingerprint @@ -0,0 +1,15 @@ +account include system-login + +auth optional pam_env.so +auth required pam_tally2.so onerr=succeed +auth required pam_shells.so +auth required pam_nologin.so +auth required pam_fprintd.so +auth required pam_permit.so +auth optional pam_gnome_keyring.so + +password required pam_deny.so + +session substack system-login +session optional pam_gnome_keyring.so auto_start + diff --git a/pam.d/gdm-launch-environment b/pam.d/gdm-launch-environment new file mode 100644 index 0000000..8c13b3b --- /dev/null +++ b/pam.d/gdm-launch-environment @@ -0,0 +1,15 @@ +account required pam_nologin.so +account required pam_succeed_if.so audit quiet_success user = gdm +account required pam_permit.so + +auth required pam_env.so +auth required pam_succeed_if.so audit quiet_success user = gdm +auth required pam_permit.so + +password required pam_deny.so + +-session optional pam_systemd.so kill-session-processes=1 +session optional pam_keyinit.so force revoke +session required pam_succeed_if.so audit quiet_success user = gdm +session required pam_permit.so + diff --git a/pam.d/gdm-password b/pam.d/gdm-password new file mode 100644 index 0000000..d223f66 --- /dev/null +++ b/pam.d/gdm-password @@ -0,0 +1,10 @@ +account include system-login + +auth substack system-login +auth optional pam_gnome_keyring.so + +password required pam_deny.so + +session substack system-login +session optional pam_gnome_keyring.so auto_start + diff --git a/pam.d/gdm-pin b/pam.d/gdm-pin new file mode 100644 index 0000000..d62c773 --- /dev/null +++ b/pam.d/gdm-pin @@ -0,0 +1,10 @@ +account include system-login + +auth requisite pam_pin.so +auth substack system-login +auth optional pam_gnome_keyring.so + +password required pam_deny.so + +session substack system-login +session optional pam_gnome_keyring.so auto_start \ No newline at end of file diff --git a/pam.d/gdm-smartcard b/pam.d/gdm-smartcard new file mode 100644 index 0000000..0623c6e --- /dev/null +++ b/pam.d/gdm-smartcard @@ -0,0 +1,18 @@ +# mirrors system-auth / system(-local)-login +# except for the authentication method, which is: +# smartcard login + +auth required pam_env.so +auth required pam_tally.so file=/var/log/faillog onerr=succeed +auth required pam_shells.so +auth required pam_nologin.so +auth [success=done ignore=ignore default=die] pam_pkcs11.so wait_for_card card_only +-auth optional pam_gnome_keyring.so + +account include system-local-login + +password include system-local-login + +session include system-local-login +-session optional pam_gnome_keyring.so auto_start + diff --git a/pam.d/gdmsetup b/pam.d/gdmsetup deleted file mode 100644 index b42700b..0000000 --- a/pam.d/gdmsetup +++ /dev/null @@ -1,8 +0,0 @@ -#%PAM-1.0 -auth sufficient pam_rootok.so -auth include system-login - -session required pam_permit.so -session optional pam_xauth.so - -account required pam_permit.so diff --git a/pam.d/gnome-screensaver b/pam.d/gnome-screensaver deleted file mode 100644 index 47e65a2..0000000 --- a/pam.d/gnome-screensaver +++ /dev/null @@ -1,15 +0,0 @@ -#%PAM-1.0 - -# Fedora Core -auth include system-auth -auth optional pam_gnome_keyring.so -account include system-auth -password include system-auth -session include system-auth - -# SuSE/Novell -#auth include common-auth -#auth optional pam_gnome_keyring.so -#account include common-account -#password include common-password -#session include common-session diff --git a/pam.d/system-auth b/pam.d/system-auth index 1a285d6..be5612a 100644 --- a/pam.d/system-auth +++ b/pam.d/system-auth @@ -20,3 +20,4 @@ session optional pam_mktemp.so session [success=1 default=ignore] pam_krb5.so ignore_root try_first_pass session required pam_unix.so session optional pam_permit.so +-session optional pam_systemd.so diff --git a/pam.d/system-login b/pam.d/system-login index f5861f0..1dd1c8f 100644 --- a/pam.d/system-login +++ b/pam.d/system-login @@ -16,7 +16,6 @@ session optional pam_loginuid.so session required pam_env.so session optional pam_lastlog.so silent session include system-auth --session optional pam_ck_connector.so nox11 session optional pam_gnome_keyring.so auto_start session optional pam_motd.so motd=/etc/motd session optional pam_mail.so diff --git a/pam.d/systemd-user b/pam.d/systemd-user new file mode 100644 index 0000000..7b57dbf --- /dev/null +++ b/pam.d/systemd-user @@ -0,0 +1,8 @@ +#%PAM-1.0 + +# Used by systemd when launching systemd user instances. + +account include system-auth +session include system-auth +auth required pam_deny.so +password required pam_deny.so diff --git a/pam.d/wdm b/pam.d/wdm new file mode 100644 index 0000000..ef0741c --- /dev/null +++ b/pam.d/wdm @@ -0,0 +1,7 @@ +# File autogenerated by pamd_mimic in pam eclass + + +auth include system-local-login +account include system-local-login +password include system-local-login +session include system-local-login diff --git a/pango/pangox.aliases b/pango/pangox.aliases deleted file mode 100644 index 9b41aa7..0000000 --- a/pango/pangox.aliases +++ /dev/null @@ -1,220 +0,0 @@ -# File defining aliases of PangoFontDescription to X font set -# -# family style variant weight stretch XLFD - -sans normal normal normal normal \ - "-*-helvetica-medium-r-normal--*-*-*-*-*-*-*-*,\ - -*-gulim-medium-r-normal--*-*-*-*-*-*-ksc5601.1987-0,\ - -*-clearlyu-medium-r-normal--*-*-*-*-*-*-iso10646-1,\ - -*-fixed-medium-r-normal--*-*-*-*-*-*-*-*,\ - -kaist-iyagi-bold-r-normal--*-*-*-*-*-*-johab-1,\ - -*-song ti-medium-r-normal--*-*-*-*-*-*-*-*,\ - -freetype-unitamil-medium-r-normal--*-*-*-*-*-*-iso10646-tam,\ - -*-devanagari-medium-r-normal--*-*-*-*-*-*-iso10646-dev,\ - -*-gujarati-medium-r-normal--*-*-*-*-*-*-iso10646-guj,\ - -*-gurmukhi-medium-r-normal--*-*-*-*-*-*-iso10646-gur,\ - -*-bengali-medium-r-normal--*-*-*-*-*-*-iso10646-bng,\ - -*-kannada-medium-r-normal--*-*-*-*-*-*-iso10646-kan,\ - -*-burmese-medium-r-normal--*-*-*-*-*-*-iso10646-brm,\ - -*-buginese-medium-r-normal--*-*-*-*-*-*-iso10646-bgn,\ - -*-oriya-medium-r-normal--*-*-*-*-*-*-iso10646-ori,\ - -daewoo-mincho-medium-r-normal--*-*-*-*-*-*-ksc5601.1987-0" - -sans italic normal normal normal \ - "-*-helvetica-medium-o-normal--*-*-*-*-*-*-*-*,\ - -*-gulim-medium-o-normal--*-*-*-*-*-*-ksc5601.1987-0,\ - -*-clearlyu-medium-r-normal--*-*-*-*-*-*-iso10646-1,\ - -*-fixed-medium-r-normal--*-*-*-*-*-*-*-*,\ - -kaist-iyagi-bold-r-normal--*-*-*-*-*-*-johab-1,\ - -*-song ti-medium-r-normal--*-*-*-*-*-*-*-*,\ - -freetype-unitamil-medium-r-normal--*-*-*-*-*-*-iso10646-tam,\ - -*-devanagari-medium-r-normal--*-*-*-*-*-*-iso10646-dev,\ - -*-gujarati-medium-r-normal--*-*-*-*-*-*-iso10646-guj,\ - -*-gurmukhi-medium-r-normal--*-*-*-*-*-*-iso10646-gur,\ - -*-bengali-medium-r-normal--*-*-*-*-*-*-iso10646-bng,\ - -*-kannada-medium-r-normal--*-*-*-*-*-*-iso10646-kan,\ - -*-burmese-medium-r-normal--*-*-*-*-*-*-iso10646-brm,\ - -*-buginese-medium-r-normal--*-*-*-*-*-*-iso10646-bgn,\ - -*-oriya-medium-r-normal--*-*-*-*-*-*-iso10646-ori,\ - -daewoo-mincho-medium-r-normal--*-*-*-*-*-*-ksc5601.1987-0" - -sans normal normal bold normal \ - "-*-helvetica-bold-r-normal--*-*-*-*-*-*-*-*,\ - -*-gulim-bold-r-normal--*-*-*-*-*-*-ksc5601.1987-0,\ - -*-clearlyu-medium-r-normal--*-*-*-*-*-*-iso10646-1,\ - -*-fixed-medium-r-normal--*-*-*-*-*-*-*-*,\ - -kaist-iyagi-bold-r-normal--*-*-*-*-*-*-johab-1,\ - -*-song ti-medium-r-normal--*-*-*-*-*-*-*-*,\ - -freetype-unitamil-medium-r-normal--*-*-*-*-*-*-iso10646-tam,\ - -*-devanagari-medium-r-normal--*-*-*-*-*-*-iso10646-dev,\ - -*-gujarati-medium-r-normal--*-*-*-*-*-*-iso10646-guj,\ - -*-gurmukhi-medium-r-normal--*-*-*-*-*-*-iso10646-gur,\ - -*-bengali-medium-r-normal--*-*-*-*-*-*-iso10646-bng,\ - -*-kannada-medium-r-normal--*-*-*-*-*-*-iso10646-kan,\ - -*-burmese-medium-r-normal--*-*-*-*-*-*-iso10646-brm,\ - -*-buginese-medium-r-normal--*-*-*-*-*-*-iso10646-bgn,\ - -*-oriya-medium-r-normal--*-*-*-*-*-*-iso10646-ori,\ - -daewoo-mincho-medium-r-normal--*-*-*-*-*-*-ksc5601.1987-0" - -sans italic normal bold normal \ - "-*-helvetica-bold-o-normal--*-*-*-*-*-*-*-*,\ - -*-gulim-bold-o-normal--*-*-*-*-*-*-ksc5601.1987-0,\ - -*-clearlyu-medium-r-normal--*-*-*-*-*-*-iso10646-1,\ - -*-fixed-medium-r-normal--*-*-*-*-*-*-*-*,\ - -kaist-iyagi-bold-r-normal--*-*-*-*-*-*-johab-1,\ - -*-song ti-medium-r-normal--*-*-*-*-*-*-*-*,\ - -freetype-unitamil-medium-r-normal--*-*-*-*-*-*-iso10646-tam,\ - -*-devanagari-medium-r-normal--*-*-*-*-*-*-iso10646-dev,\ - -*-gujarati-medium-r-normal--*-*-*-*-*-*-iso10646-guj,\ - -*-gurmukhi-medium-r-normal--*-*-*-*-*-*-iso10646-gur,\ - -*-bengali-medium-r-normal--*-*-*-*-*-*-iso10646-bng,\ - -*-kannada-medium-r-normal--*-*-*-*-*-*-iso10646-kan,\ - -*-burmese-medium-r-normal--*-*-*-*-*-*-iso10646-brm,\ - -*-buginese-medium-r-normal--*-*-*-*-*-*-iso10646-bgn,\ - -*-oriya-medium-r-normal--*-*-*-*-*-*-iso10646-ori,\ - -daewoo-mincho-medium-r-normal--*-*-*-*-*-*-ksc5601.1987-0" - - -serif normal normal normal normal \ - "-*-times-medium-r-normal--*-*-*-*-*-*-*-*,\ - -*-batang-medium-r-normal--*-*-*-*-*-*-ksc5601.1987-0,\ - -*-clearlyu-medium-r-normal--*-*-*-*-*-*-iso10646-1,\ - -*-fixed-medium-r-normal--*-*-*-*-*-*-*-*,\ - -kaist-iyagi-bold-r-normal--*-*-*-*-*-*-johab-1,\ - -*-song ti-medium-r-normal--*-*-*-*-*-*-*-*,\ - -freetype-unitamil-medium-r-normal--*-*-*-*-*-*-iso10646-tam,\ - -*-devanagari-medium-r-normal--*-*-*-*-*-*-iso10646-dev,\ - -*-gujarati-medium-r-normal--*-*-*-*-*-*-iso10646-guj,\ - -*-gurmukhi-medium-r-normal--*-*-*-*-*-*-iso10646-gur,\ - -*-bengali-medium-r-normal--*-*-*-*-*-*-iso10646-bng,\ - -*-kannada-medium-r-normal--*-*-*-*-*-*-iso10646-kan,\ - -*-burmese-medium-r-normal--*-*-*-*-*-*-iso10646-brm,\ - -*-buginese-medium-r-normal--*-*-*-*-*-*-iso10646-bgn,\ - -*-oriya-medium-r-normal--*-*-*-*-*-*-iso10646-ori,\ - -daewoo-mincho-medium-r-normal--*-*-*-*-*-*-ksc5601.1987-0" - -serif italic normal normal normal \ - "-*-times-medium-i-normal--*-*-*-*-*-*-*-*,\ - -*-batang-medium-r-normal--*-*-*-*-*-*-ksc5601.1987-0,\ - -*-clearlyu-medium-r-normal--*-*-*-*-*-*-iso10646-1,\ - -*-fixed-medium-r-normal--*-*-*-*-*-*-*-*,\ - -kaist-iyagi-bold-r-normal--*-*-*-*-*-*-johab-1,\ - -*-song ti-medium-r-normal--*-*-*-*-*-*-*-*,\ - -freetype-unitamil-medium-r-normal--*-*-*-*-*-*-iso10646-tam,\ - -*-devanagari-medium-r-normal--*-*-*-*-*-*-iso10646-dev,\ - -*-gujarati-medium-r-normal--*-*-*-*-*-*-iso10646-guj,\ - -*-gurmukhi-medium-r-normal--*-*-*-*-*-*-iso10646-gur,\ - -*-bengali-medium-r-normal--*-*-*-*-*-*-iso10646-bng,\ - -*-kannada-medium-r-normal--*-*-*-*-*-*-iso10646-kan,\ - -*-burmese-medium-r-normal--*-*-*-*-*-*-iso10646-brm,\ - -*-buginese-medium-r-normal--*-*-*-*-*-*-iso10646-bgn,\ - -*-oriya-medium-r-normal--*-*-*-*-*-*-iso10646-ori,\ - -daewoo-mincho-medium-r-normal--*-*-*-*-*-*-ksc5601.1987-0" - -serif normal normal bold normal \ - "-*-times-bold-r-normal--*-*-*-*-*-*-*-*,\ - -*-batang-bold-r-normal--*-*-*-*-*-*-ksc5601.1987-0,\ - -*-clearlyu-medium-r-normal--*-*-*-*-*-*-iso10646-1,\ - -*-fixed-medium-r-normal--*-*-*-*-*-*-*-*,\ - -kaist-iyagi-bold-r-normal--*-*-*-*-*-*-johab-1,\ - -*-song ti-medium-r-normal--*-*-*-*-*-*-*-*,\ - -freetype-unitamil-medium-r-normal--*-*-*-*-*-*-iso10646-tam,\ - -*-devanagari-medium-r-normal--*-*-*-*-*-*-iso10646-dev,\ - -*-gujarati-medium-r-normal--*-*-*-*-*-*-iso10646-guj,\ - -*-gurmukhi-medium-r-normal--*-*-*-*-*-*-iso10646-gur,\ - -*-bengali-medium-r-normal--*-*-*-*-*-*-iso10646-bng,\ - -*-kannada-medium-r-normal--*-*-*-*-*-*-iso10646-kan,\ - -*-burmese-medium-r-normal--*-*-*-*-*-*-iso10646-brm,\ - -*-buginese-medium-r-normal--*-*-*-*-*-*-iso10646-bgn,\ - -*-oriya-medium-r-normal--*-*-*-*-*-*-iso10646-ori,\ - -daewoo-mincho-medium-r-normal--*-*-*-*-*-*-ksc5601.1987-0" - -serif italic normal bold normal \ - "-*-times-bold-i-normal--*-*-*-*-*-*-*-*,\ - -*-batang-bold-r-normal--*-*-*-*-*-*-ksc5601.1987-0,\ - -*-clearlyu-medium-r-normal--*-*-*-*-*-*-iso10646-1,\ - -*-fixed-medium-r-normal--*-*-*-*-*-*-*-*,\ - -kaist-iyagi-bold-r-normal--*-*-*-*-*-*-johab-1,\ - -*-song ti-medium-r-normal--*-*-*-*-*-*-*-*,\ - -freetype-unitamil-medium-r-normal--*-*-*-*-*-*-iso10646-tam,\ - -*-devanagari-medium-r-normal--*-*-*-*-*-*-iso10646-dev,\ - -*-gujarati-medium-r-normal--*-*-*-*-*-*-iso10646-guj,\ - -*-gurmukhi-medium-r-normal--*-*-*-*-*-*-iso10646-gur,\ - -*-bengali-medium-r-normal--*-*-*-*-*-*-iso10646-bng,\ - -*-kannada-medium-r-normal--*-*-*-*-*-*-iso10646-kan,\ - -*-burmese-medium-r-normal--*-*-*-*-*-*-iso10646-brm,\ - -*-buginese-medium-r-normal--*-*-*-*-*-*-iso10646-bgn,\ - -*-oriya-medium-r-normal--*-*-*-*-*-*-iso10646-ori,\ - -daewoo-mincho-medium-r-normal--*-*-*-*-*-*-ksc5601.1987-0" - -monospace normal normal normal normal \ - "-*-fixed-medium-r-normal--*-*-*-*-*-*-*-*,\ - -*-dotum-medium-r-normal--*-*-*-*-*-*-ksc5601.1987-0,\ - -*-clearlyu-medium-r-normal--*-*-*-*-*-*-iso10646-1,\ - -*-fixed-medium-r-normal--*-*-*-*-*-*-*-*,\ - -kaist-iyagi-bold-r-normal--*-*-*-*-*-*-johab-1,\ - -*-song ti-medium-r-normal--*-*-*-*-*-*-*-*,\ - -freetype-unitamil-medium-r-normal--*-*-*-*-*-*-iso10646-tam,\ - -*-devanagari-medium-r-normal--*-*-*-*-*-*-iso10646-dev,\ - -*-gujarati-medium-r-normal--*-*-*-*-*-*-iso10646-guj,\ - -*-gurmukhi-medium-r-normal--*-*-*-*-*-*-iso10646-gur,\ - -*-bengali-medium-r-normal--*-*-*-*-*-*-iso10646-bng,\ - -*-kannada-medium-r-normal--*-*-*-*-*-*-iso10646-kan,\ - -*-burmese-medium-r-normal--*-*-*-*-*-*-iso10646-brm,\ - -*-buginese-medium-r-normal--*-*-*-*-*-*-iso10646-bgn,\ - -*-oriya-medium-r-normal--*-*-*-*-*-*-iso10646-ori,\ - -daewoo-mincho-medium-r-normal--*-*-*-*-*-*-ksc5601.1987-0" - -monospace italic normal normal normal \ - "-*-fixed-medium-i-normal--*-*-*-*-*-*-*-*,\ - -*-dotum-medium-r-normal--*-*-*-*-*-*-ksc5601.1987-0,\ - -*-clearlyu-medium-r-normal--*-*-*-*-*-*-iso10646-1,\ - -*-fixed-medium-r-normal--*-*-*-*-*-*-*-*,\ - -kaist-iyagi-bold-r-normal--*-*-*-*-*-*-johab-1,\ - -*-song ti-medium-r-normal--*-*-*-*-*-*-*-*,\ - -freetype-unitamil-medium-r-normal--*-*-*-*-*-*-iso10646-tam,\ - -*-devanagari-medium-r-normal--*-*-*-*-*-*-iso10646-dev,\ - -*-gujarati-medium-r-normal--*-*-*-*-*-*-iso10646-guj,\ - -*-gurmukhi-medium-r-normal--*-*-*-*-*-*-iso10646-gur,\ - -*-bengali-medium-r-normal--*-*-*-*-*-*-iso10646-bng,\ - -*-kannada-medium-r-normal--*-*-*-*-*-*-iso10646-kan,\ - -*-burmese-medium-r-normal--*-*-*-*-*-*-iso10646-brm,\ - -*-buginese-medium-r-normal--*-*-*-*-*-*-iso10646-bgn,\ - -*-oriya-medium-r-normal--*-*-*-*-*-*-iso10646-ori,\ - -daewoo-mincho-medium-r-normal--*-*-*-*-*-*-ksc5601.1987-0" - -monospace normal normal bold normal \ - "-*-fixed-bold-r-normal--*-*-*-*-*-*-*-*,\ - -*-dotum-bold-r-normal--*-*-*-*-*-*-ksc5601.1987-0,\ - -*-clearlyu-medium-r-normal--*-*-*-*-*-*-iso10646-1,\ - -*-fixed-medium-r-normal--*-*-*-*-*-*-*-*,\ - -kaist-iyagi-bold-r-normal--*-*-*-*-*-*-johab-1,\ - -*-song ti-medium-r-normal--*-*-*-*-*-*-*-*,\ - -freetype-unitamil-medium-r-normal--*-*-*-*-*-*-iso10646-tam,\ - -*-devanagari-medium-r-normal--*-*-*-*-*-*-iso10646-dev,\ - -*-gujarati-medium-r-normal--*-*-*-*-*-*-iso10646-guj,\ - -*-gurmukhi-medium-r-normal--*-*-*-*-*-*-iso10646-gur,\ - -*-bengali-medium-r-normal--*-*-*-*-*-*-iso10646-bng,\ - -*-kannada-medium-r-normal--*-*-*-*-*-*-iso10646-kan,\ - -*-burmese-medium-r-normal--*-*-*-*-*-*-iso10646-brm,\ - -*-buginese-medium-r-normal--*-*-*-*-*-*-iso10646-bgn,\ - -*-oriya-medium-r-normal--*-*-*-*-*-*-iso10646-ori,\ - -daewoo-mincho-medium-r-normal--*-*-*-*-*-*-ksc5601.1987-0" - -monospace italic normal bold normal \ - "-*-fixed-bold-i-normal--*-*-*-*-*-*-*-*,\ - -*-dotum-bold-r-normal--*-*-*-*-*-*-ksc5601.1987-0,\ - -*-clearlyu-medium-r-normal--*-*-*-*-*-*-iso10646-1,\ - -*-fixed-medium-r-normal--*-*-*-*-*-*-*-*,\ - -kaist-iyagi-bold-r-normal--*-*-*-*-*-*-johab-1,\ - -*-song ti-medium-r-normal--*-*-*-*-*-*-*-*,\ - -freetype-unitamil-medium-r-normal--*-*-*-*-*-*-iso10646-tam,\ - -*-devanagari-medium-r-normal--*-*-*-*-*-*-iso10646-dev,\ - -*-gujarati-medium-r-normal--*-*-*-*-*-*-iso10646-guj,\ - -*-gurmukhi-medium-r-normal--*-*-*-*-*-*-iso10646-gur,\ - -*-bengali-medium-r-normal--*-*-*-*-*-*-iso10646-bng,\ - -*-kannada-medium-r-normal--*-*-*-*-*-*-iso10646-kan,\ - -*-burmese-medium-r-normal--*-*-*-*-*-*-iso10646-brm,\ - -*-buginese-medium-r-normal--*-*-*-*-*-*-iso10646-bgn,\ - -*-oriya-medium-r-normal--*-*-*-*-*-*-iso10646-ori,\ - -daewoo-mincho-medium-r-normal--*-*-*-*-*-*-ksc5601.1987-0" diff --git a/pango/x86_64-pc-linux-gnu/.keep_x11-libs_pango-0 b/pango/x86_64-pc-linux-gnu/.keep_x11-libs_pango-0 new file mode 100644 index 0000000..e69de29 diff --git a/pango/x86_64-pc-linux-gnu/pango.modules b/pango/x86_64-pc-linux-gnu/pango.modules index f1d6619..7585325 100644 --- a/pango/x86_64-pc-linux-gnu/pango.modules +++ b/pango/x86_64-pc-linux-gnu/pango.modules @@ -1,33 +1,16 @@ # Pango Modules file # Automatically generated file, do not edit # -/usr/lib64/pango/1.6.0/modules/pango-arabic-fc.so ArabicScriptEngineFc PangoEngineShape PangoRenderFc arabic:* nko:* -/usr/lib64/pango/1.6.0/modules/pango-arabic-lang.so ArabicScriptEngineLang PangoEngineLang PangoRenderNone arabic:* -/usr/lib64/pango/1.6.0/modules/pango-basic-fc.so BasicScriptEngineFc PangoEngineShape PangoRenderFc latin:* cyrillic:* greek:* armenian:* georgian:* runic:* ogham:* bopomofo:* cherokee:* coptic:* deseret:* ethiopic:* gothic:* han:* hiragana:* katakana:* old-italic:* canadian-aboriginal:* yi:* braille:* cypriot:* limbu:* osmanya:* shavian:* linear-b:* ugaritic:* glagolitic:* cuneiform:* phoenician:* common: -/usr/lib64/pango/1.6.0/modules/pango-basic-x.so BasicScriptEngineX PangoEngineShape PangoRenderX common: -/usr/lib64/pango/1.6.0/modules/pango-hangul-fc.so HangulScriptEngineFc PangoEngineShape PangoRenderFc hangul:* -/usr/lib64/pango/1.6.0/modules/pango-hebrew-fc.so HebrewScriptEngineFc PangoEngineShape PangoRenderFc hebrew:* -/usr/lib64/pango/1.6.0/modules/pango-indic-fc.so devaScriptEngineFc PangoEngineShape PangoRenderFc devanagari:* -/usr/lib64/pango/1.6.0/modules/pango-indic-fc.so bengScriptEngineFc PangoEngineShape PangoRenderFc bengali:* -/usr/lib64/pango/1.6.0/modules/pango-indic-fc.so guruScriptEngineFc PangoEngineShape PangoRenderFc gurmukhi:* -/usr/lib64/pango/1.6.0/modules/pango-indic-fc.so gujrScriptEngineFc PangoEngineShape PangoRenderFc gujarati:* -/usr/lib64/pango/1.6.0/modules/pango-indic-fc.so oryaScriptEngineFc PangoEngineShape PangoRenderFc oriya:* -/usr/lib64/pango/1.6.0/modules/pango-indic-fc.so tamlScriptEngineFc PangoEngineShape PangoRenderFc tamil:* -/usr/lib64/pango/1.6.0/modules/pango-indic-fc.so teluScriptEngineFc PangoEngineShape PangoRenderFc telugu:* -/usr/lib64/pango/1.6.0/modules/pango-indic-fc.so kndaScriptEngineFc PangoEngineShape PangoRenderFc kannada:* -/usr/lib64/pango/1.6.0/modules/pango-indic-fc.so mlymScriptEngineFc PangoEngineShape PangoRenderFc malayalam:* -/usr/lib64/pango/1.6.0/modules/pango-indic-fc.so sinhScriptEngineFc PangoEngineShape PangoRenderFc sinhala:* -/usr/lib64/pango/1.6.0/modules/pango-indic-lang.so devaIndicScriptEngineLang PangoEngineLang PangoRenderNone devanagari:* -/usr/lib64/pango/1.6.0/modules/pango-indic-lang.so bengIndicScriptEngineLang PangoEngineLang PangoRenderNone bengali:* -/usr/lib64/pango/1.6.0/modules/pango-indic-lang.so guruIndicScriptEngineLang PangoEngineLang PangoRenderNone gurmukhi:* -/usr/lib64/pango/1.6.0/modules/pango-indic-lang.so gujrIndicScriptEngineLang PangoEngineLang PangoRenderNone gujarati:* -/usr/lib64/pango/1.6.0/modules/pango-indic-lang.so oryaIndicScriptEngineLang PangoEngineLang PangoRenderNone oriya:* -/usr/lib64/pango/1.6.0/modules/pango-indic-lang.so tamlIndicScriptEngineLang PangoEngineLang PangoRenderNone tamil:* -/usr/lib64/pango/1.6.0/modules/pango-indic-lang.so teluIndicScriptEngineLang PangoEngineLang PangoRenderNone telugu:* -/usr/lib64/pango/1.6.0/modules/pango-indic-lang.so kndaIndicScriptEngineLang PangoEngineLang PangoRenderNone kannada:* -/usr/lib64/pango/1.6.0/modules/pango-indic-lang.so mlymIndicScriptEngineLang PangoEngineLang PangoRenderNone malayalam:* -/usr/lib64/pango/1.6.0/modules/pango-indic-lang.so sinhIndicScriptEngineLang PangoEngineLang PangoRenderNone sinhala:* -/usr/lib64/pango/1.6.0/modules/pango-khmer-fc.so KhmerScriptEngineFc PangoEngineShape PangoRenderFc khmer:* -/usr/lib64/pango/1.6.0/modules/pango-syriac-fc.so SyriacScriptEngineFc PangoEngineShape PangoRenderFc syriac:* -/usr/lib64/pango/1.6.0/modules/pango-thai-fc.so ThaiScriptEngineFc PangoEngineShape PangoRenderFc thai:* lao:* -/usr/lib64/pango/1.6.0/modules/pango-tibetan-fc.so TibetanScriptEngineFc PangoEngineShape PangoRenderFc tibetan:* +/usr/lib64/pango/1.8.0/modules/pango-arabic-lang.so ArabicScriptEngineLang PangoEngineLang PangoRenderNone arabic:* +/usr/lib64/pango/1.8.0/modules/pango-basic-fc.so BasicScriptEngineFc PangoEngineShape PangoRenderFc common: +/usr/lib64/pango/1.8.0/modules/pango-indic-lang.so devaIndicScriptEngineLang PangoEngineLang PangoRenderNone devanagari:* +/usr/lib64/pango/1.8.0/modules/pango-indic-lang.so bengIndicScriptEngineLang PangoEngineLang PangoRenderNone bengali:* +/usr/lib64/pango/1.8.0/modules/pango-indic-lang.so guruIndicScriptEngineLang PangoEngineLang PangoRenderNone gurmukhi:* +/usr/lib64/pango/1.8.0/modules/pango-indic-lang.so gujrIndicScriptEngineLang PangoEngineLang PangoRenderNone gujarati:* +/usr/lib64/pango/1.8.0/modules/pango-indic-lang.so oryaIndicScriptEngineLang PangoEngineLang PangoRenderNone oriya:* +/usr/lib64/pango/1.8.0/modules/pango-indic-lang.so tamlIndicScriptEngineLang PangoEngineLang PangoRenderNone tamil:* +/usr/lib64/pango/1.8.0/modules/pango-indic-lang.so teluIndicScriptEngineLang PangoEngineLang PangoRenderNone telugu:* +/usr/lib64/pango/1.8.0/modules/pango-indic-lang.so kndaIndicScriptEngineLang PangoEngineLang PangoRenderNone kannada:* +/usr/lib64/pango/1.8.0/modules/pango-indic-lang.so mlymIndicScriptEngineLang PangoEngineLang PangoRenderNone malayalam:* +/usr/lib64/pango/1.8.0/modules/pango-indic-lang.so sinhIndicScriptEngineLang PangoEngineLang PangoRenderNone sinhala:* + diff --git a/pkcs11/modules/gnome-keyring.module b/pkcs11/modules/gnome-keyring.module new file mode 100644 index 0000000..3ee2018 --- /dev/null +++ b/pkcs11/modules/gnome-keyring.module @@ -0,0 +1,7 @@ + +# The file is installed/loaded from the default module p11-kit directory +module: gnome-keyring-pkcs11.so + +# And where to store and lookup trust objects +x-trust-store: pkcs11:library-manufacturer=GNOME%20Keyring;serial=1:XDG:DEFAULT +x-trust-lookup: pkcs11:library-manufacturer=GNOME%20Keyring diff --git a/pkcs11/pkcs11.conf.example b/pkcs11/pkcs11.conf.example new file mode 100644 index 0000000..b48d366 --- /dev/null +++ b/pkcs11/pkcs11.conf.example @@ -0,0 +1,9 @@ +# This is an example /etc/pkcs11/pkcs11.conf file. Copy it into +# place before use. + +# This setting controls whether to load user configuration from the +# ~/.pkcs11 directory. Possible values: +# none: No user configuration (default) +# merge: Merge the user configuration over the system configuration +# only: Only user configuration, ignore system configuration +user-config: merge diff --git a/portage/make.profile b/portage/make.profile index b75091d..3fdfde6 120000 --- a/portage/make.profile +++ b/portage/make.profile @@ -1 +1 @@ -../../usr/portage/profiles/default/linux/amd64/13.0/desktop/gnome \ No newline at end of file +../../usr/portage/profiles/default/linux/amd64/13.0/desktop/gnome/systemd \ No newline at end of file diff --git a/portage/package.keywords/common b/portage/package.keywords/common index 7abcbd1..d72e9b9 100644 --- a/portage/package.keywords/common +++ b/portage/package.keywords/common @@ -48,6 +48,7 @@ app-text/docbook2odf-xsl-stylesheets ~dev-perl/Nagios-Plugin-0.360.0 ~dev-perl/Math-Calc-Units-1.70.0 +~dev-python/configobj-4.7.3.1 ~dev-python/crcmod-1.7 ~dev-python/fabric-1.7.0 dev-python/fbrehm-libs @@ -57,6 +58,7 @@ dev-python/fbrehm-libs dev-python/pb-base dev-python/pb-logging ~dev-python/python-debian-0.1.21 +~dev-python/setuptools-1.1.6 ~dev-python/sphinx-1.1.3 ~dev-python/stevedore-0.8 ~dev-python/virtualenv-clone-0.2.4 @@ -67,6 +69,7 @@ dev-python/pb-logging ~dev-ruby/zonecheck-3.0.4 ~dev-util/kbuild-0.1.9998_pre20120806 +~dev-util/kbuild-0.1.9998_pre20131130 ~dev-vcs/gitg-0.2.7 @@ -91,6 +94,8 @@ mail-client/thunderbird ~sys-block/mbuffer-20120505 +~sys-devel/gcc-4.8.2 + ~sys-fs/nilfs-utils-2.1.0 ~sys-libs/zlib-1.2.7 diff --git a/portage/package.use b/portage/package.use index 61c4f75..a55a31f 100644 --- a/portage/package.use +++ b/portage/package.use @@ -24,6 +24,7 @@ app-emulation/virtualbox extensions vnc app-misc/beagle chm ole thunderbird app-misc/strigi hyperestraier inotify +app-misc/tracker -xine app-misc/tomboy galago app-office/libreoffice nlpsolver @@ -264,12 +265,12 @@ net-im/pidgin groupwise meanwhile prediction silc zeph # net-im/psi audacious extras net-im/psi extras jingle -# net-libs/libgadu ssl -net-libs/libpcap canusb -net-libs/libproxy spidermonkey -net-libs/libssh2 gcrypt +# net-libs/libgadu ssl +net-libs/libpcap canusb +net-libs/libproxy spidermonkey -webkit +net-libs/libssh2 gcrypt net-libs/libvncserver gcrypt gnutls -net-libs/xulrunner system-sqlite wifi +net-libs/xulrunner system-sqlite wifi net-misc/curl libssh2 net-misc/iputils caps gnutls @@ -306,7 +307,7 @@ sys-apps/util-linux ddate loop-aes sys-apps/vcb-python development vcb sys-auth/consolekit policykit -sys-auth/pambase mktemp pam_krb5 pam_ssh +sys-auth/pambase mktemp pam_krb5 pam_ssh systemd sys-block/lsitools doc sys-block/parted device-mapper @@ -317,6 +318,7 @@ sys-devel/libperl ithreads =sys-fs/mdadm-3.2.6* development sys-fs/udev devfs-compat edd extras hwdb +sys-kernel/genkernel-next dmraid gpg iscsi sys-kernel/gentoo-sources -doc sys-kernel/storage-image source diff --git a/portage/savedconfig/sys-apps/busybox-1.21.0 b/portage/savedconfig/sys-apps/busybox-1.21.0 index bc6b605..d55d33a 100644 --- a/portage/savedconfig/sys-apps/busybox-1.21.0 +++ b/portage/savedconfig/sys-apps/busybox-1.21.0 @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit # Busybox version: 1.21.0 -# Thu Sep 19 10:58:19 2013 +# Thu Dec 19 14:01:44 2013 # CONFIG_HAVE_DOT_CONFIG=y diff --git a/profile.d/vte.sh b/profile.d/vte.sh index f744d48..bbd84e3 100644 --- a/profile.d/vte.sh +++ b/profile.d/vte.sh @@ -1,9 +1,9 @@ -#!/bin/bash # Copyright © 2006 Shaun McCance +# Copyright © 2013 Peter De Wachter # # 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 +# the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but @@ -15,26 +15,50 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# Not bash or zsh? +[ -n "$BASH_VERSION" -o -n "$ZSH_VERSION" ] || return 0 + +# Not an interactive shell? +[[ $- == *i* ]] || return 0 + +# Not running under vte? +[ "${VTE_VERSION:-0}" -ge 3405 ] || return 0 + __vte_urlencode() ( # This is important to make sure string manipulation is handled # byte-by-byte. - LANG=C - arg="$1" - i="0" - while [ "$i" -lt ${#arg} ]; do - c=${arg:$i:1} - if echo "$c" | grep -q '[a-zA-Z/:_\.\-]'; then - echo -n "$c" - else - echo -n "%" - printf "%X" "'$c'" + LC_ALL=C + str="$1" + while [ -n "$str" ]; do + safe="${str%%[!a-zA-Z0-9/:_\.\-\!\'\(\)~]*}" + printf "%s" "$safe" + str="${str#"$safe"}" + if [ -n "$str" ]; then + printf "%%%02X" "'$str" + str="${str#?}" fi - i=$((i+1)) done ) +# Print a warning so that anyone who's added this manually to his PS1 can adapt. +# The function will be removed in a later version. __vte_ps1() { - printf "\e]7;file://%s" $HOSTNAME - __vte_urlencode "$PWD" - printf "\a" + echo -n "(__vte_ps1 is obsolete)" +} + +__vte_osc7 () { + printf "\033]7;file://%s%s\a" "${HOSTNAME:-}" "$(__vte_urlencode "${PWD}")" } + +__vte_prompt_command() { + printf "\033]0;%s@%s:%s\007%s" "${USER}" "${HOSTNAME%%.*}" "${PWD/#$HOME/~}" "$(__vte_osc7)" +} + +case "$TERM" in + xterm*|vte*) + [ -n "$BASH_VERSION" ] && PROMPT_COMMAND="__vte_prompt_command" + [ -n "$ZSH_VERSION" ] && chpwd_functions+=(__vte_osc7) + ;; +esac + +true diff --git a/pulse/default.pa b/pulse/default.pa index cdb0ac7..7f6b01d 100644 --- a/pulse/default.pa +++ b/pulse/default.pa @@ -38,6 +38,9 @@ load-module module-card-restore ### stored in /usr/share/application load-module module-augment-properties +### Should be after module-*-restore but before module-*-detect +load-module module-switch-on-port-available + ### Load audio drivers statically ### (it's probably better to not load these drivers manually, but instead ### use module-udev-detect -- see below -- for doing this automatically) @@ -50,18 +53,22 @@ load-module module-augment-properties .ifexists module-udev-detect.so load-module module-udev-detect .else -### Use the static hardware detection module (for systems that lack udev/hal support) +### Use the static hardware detection module (for systems that lack udev support) load-module module-detect .endif ### Automatically connect sink and source if JACK server is present .ifexists module-jackdbus-detect.so .nofail -load-module module-jackdbus-detect +load-module module-jackdbus-detect channels=2 .fail .endif ### Automatically load driver modules for Bluetooth hardware +.ifexists module-bluetooth-policy.so +load-module module-bluetooth-policy +.endif + .ifexists module-bluetooth-discover.so load-module module-bluetooth-discover .endif @@ -156,8 +163,6 @@ load-module module-dbus-protocol #.fail #.endif -load-module module-switch-on-port-available - ### Make some devices default #set-default-sink output #set-default-source input diff --git a/rc.conf b/rc.conf index b1b3448..fba55d3 100644 --- a/rc.conf +++ b/rc.conf @@ -81,6 +81,10 @@ rc_log_path="/var/log/rc.log" # Set unicode to YES to turn on unicode support for keyboards and screens. unicode="YES" +# This is how long fuser should wait for a remote server to respond. The +# default is 60 seconds, but it can be adjusted here. +#rc_fuser_timeout=60 + # Below is the default list of network fstypes. # # afs cifs coda davfs fuse fuse.sshfs gfs glusterfs lustre ncpfs @@ -102,7 +106,7 @@ unicode="YES" # Some daemons are started and stopped via start-stop-daemon. # We can set some things on a per service basis, like the nicelevel. -#export SSD_NICELEVEL="-19" +#SSD_NICELEVEL="-19" # Pass ulimit parameters #rc_ulimit="-u 30" @@ -154,10 +158,59 @@ unicode="YES" # consolefont, numlock, etc ...) rc_tty_number=12 +############################################################################## +# CGROUPS RESOURCE MANAGEMENT + # If you have cgroups turned on in your kernel, this switch controls # whether or not a group for each controller is mounted under # /sys/fs/cgroup. -# Support for process management by cgroups is planned in the future, -# so if you turn this off, be aware that you may not be able to use that -# feature. +# None of the other options in this section work if this is set to "NO". #rc_controller_cgroups="YES" + +# The following settings allow you to set up values for the cgroup +# controllers for your services. +# They can be set in this file;, however, if you do this, the settings +# will apply to all of your services. +# If you want different settings for each service, place the settings in +# /etc/conf.d/foo for service foo. +# The format is to specify the names of the settings followed by their +# values. Each variable can hold multiple settings. +# For example, you would use this to set the cpu.shares setting in the +# cpu controller to 512 for your service. +# rc_cgroup_cpu=" +# cpu.shares 512 +# " +# +#For more information about the adjustments that can be made with +#cgroups, see Documentation/cgroups/* in the linux kernel source tree. + +# Set the blkio controller settings for this service. +#rc_cgroup_blkio="" + +# Set the cpu controller settings for this service. +#rc_cgroup_cpu="" + +# Add this service to the cpuacct controller (any value means yes). +#rc_cgroup_cpuacct="" + +# Set the cpuset controller settings for this service. +#rc_cgroup_cpuset="" + +# Set the devices controller settings for this service. +#rc_cgroup_devices="" + +# Set the memory controller settings for this service. +#rc_cgroup_memory="" + +# Set the net_prio controller settings for this service. +#rc_cgroup_net_prio="" + +# Set this to YES if yu want all of the processes in a service's cgroup +# killed when the service is stopped or restarted. +# This should not be set globally because it kills all of the service's +# child processes, and most of the time this is undesirable. Please set +# it in /etc/conf.d/. +# To perform this cleanup manually for a stopped service, you can +# execute cgroup_cleanup with /etc/init.d/ cgroup_cleanup or +# rc-service cgroup_cleanup. +# rc_cgroup_cleanup="NO" diff --git a/request-key.d/cifs.idmap.conf b/request-key.d/cifs.idmap.conf new file mode 100644 index 0000000..1341c1a --- /dev/null +++ b/request-key.d/cifs.idmap.conf @@ -0,0 +1 @@ +create cifs.idmap * * /usr/sbin/cifs.idmap %k diff --git a/request-key.d/cifs.upcall.conf b/request-key.d/cifs.upcall.conf new file mode 100644 index 0000000..dac5ec0 --- /dev/null +++ b/request-key.d/cifs.upcall.conf @@ -0,0 +1 @@ +create dns_resolver * * /usr/sbin/cifs.upcall %k diff --git a/request-key.d/id_resolver.conf b/request-key.d/id_resolver.conf new file mode 100644 index 0000000..1e80480 --- /dev/null +++ b/request-key.d/id_resolver.conf @@ -0,0 +1 @@ +create id_resolver * * /usr/sbin/nfsidmap -t 600 %k %d diff --git a/revdep-rebuild/61-icedtea-bin-6 b/revdep-rebuild/61-icedtea-bin-6 index 6aa5fac..309815c 100644 --- a/revdep-rebuild/61-icedtea-bin-6 +++ b/revdep-rebuild/61-icedtea-bin-6 @@ -1 +1 @@ -SEARCH_DIRS_MASK="/opt/icedtea-bin-6.1.12.6" +SEARCH_DIRS_MASK="/opt/icedtea-bin-6.1.12.7" diff --git a/revdep-rebuild/61-oracle-jdk-bin-1.7 b/revdep-rebuild/61-oracle-jdk-bin-1.7 index f254d00..745c08b 100644 --- a/revdep-rebuild/61-oracle-jdk-bin-1.7 +++ b/revdep-rebuild/61-oracle-jdk-bin-1.7 @@ -1 +1 @@ -SEARCH_DIRS_MASK="/opt/oracle-jdk-bin-1.7.0.40" +SEARCH_DIRS_MASK="/opt/oracle-jdk-bin-1.7.0.45" diff --git a/revdep-rebuild/61-oracle-jre-bin-1.7 b/revdep-rebuild/61-oracle-jre-bin-1.7 index 719f093..f53690a 100644 --- a/revdep-rebuild/61-oracle-jre-bin-1.7 +++ b/revdep-rebuild/61-oracle-jre-bin-1.7 @@ -1 +1 @@ -SEARCH_DIRS_MASK="/opt/oracle-jre-bin-1.7.0.40" +SEARCH_DIRS_MASK="/opt/oracle-jre-bin-1.7.0.45" diff --git a/runlevels/boot/loopback b/runlevels/boot/loopback new file mode 120000 index 0000000..22878c6 --- /dev/null +++ b/runlevels/boot/loopback @@ -0,0 +1 @@ +/etc/init.d/loopback \ No newline at end of file diff --git a/runlevels/default/xdm b/runlevels/default/xdm deleted file mode 120000 index af5b119..0000000 --- a/runlevels/default/xdm +++ /dev/null @@ -1 +0,0 @@ -/etc/init.d/xdm \ No newline at end of file diff --git a/runlevels/sysinit/tmpfiles.dev b/runlevels/sysinit/tmpfiles.dev new file mode 120000 index 0000000..805685d --- /dev/null +++ b/runlevels/sysinit/tmpfiles.dev @@ -0,0 +1 @@ +/etc/init.d/tmpfiles.dev \ No newline at end of file diff --git a/security/console.apps/gdmsetup b/security/console.apps/gdmsetup deleted file mode 100644 index f55f862..0000000 --- a/security/console.apps/gdmsetup +++ /dev/null @@ -1,5 +0,0 @@ -USER=root -PROGRAM=/usr/sbin/gdmsetup -SESSION=false -FALLBACK=true - diff --git a/security/pwquality.conf b/security/pwquality.conf new file mode 100644 index 0000000..cec450f --- /dev/null +++ b/security/pwquality.conf @@ -0,0 +1,50 @@ +# Configuration for systemwide password quality limits +# Defaults: +# +# Number of characters in the new password that must not be present in the +# old password. +# difok = 5 +# +# Minimum acceptable size for the new password (plus one if +# credits are not disabled which is the default). (See pam_cracklib manual.) +# Cannot be set to lower value than 6. +# minlen = 9 +# +# The maximum credit for having digits in the new password. If less than 0 +# it is the minimum number of digits in the new password. +# dcredit = 1 +# +# The maximum credit for having uppercase characters in the new password. +# If less than 0 it is the minimum number of uppercase characters in the new +# password. +# ucredit = 1 +# +# The maximum credit for having lowercase characters in the new password. +# If less than 0 it is the minimum number of lowercase characters in the new +# password. +# lcredit = 1 +# +# The maximum credit for having other characters in the new password. +# If less than 0 it is the minimum number of other characters in the new +# password. +# ocredit = 1 +# +# The minimum number of required classes of characters for the new +# password (digits, uppercase, lowercase, others). +# minclass = 0 +# +# The maximum number of allowed consecutive same characters in the new password. +# The check is disabled if the value is 0. +# maxrepeat = 0 +# +# The maximum number of allowed consecutive characters of the same class in the +# new password. +# The check is disabled if the value is 0. +# maxclassrepeat = 0 +# +# Whether to check for the words from the passwd entry GECOS string of the user. +# The check is enabled if the value is not 0. +# gecoscheck = 0 +# +# Path to the cracklib dictionaries. Default is to use the cracklib default. +# dictpath = diff --git a/sensors3.conf b/sensors3.conf index c1e08f9..cd761ef 100644 --- a/sensors3.conf +++ b/sensors3.conf @@ -12,7 +12,7 @@ # Such custom configuration files for specific mainboards can be found at # http://www.lm-sensors.org/wiki/Configurations -chip "lm78-*" "lm79-*" "lm80-*" +chip "lm78-*" "lm79-*" "lm80-*" "lm96080-*" label temp1 "M/B Temp" @@ -323,7 +323,7 @@ chip "w83627ehf-*" "w83627dhg-*" "w83667hg-*" "nct6775-*" "nct6776-*" set in7_min 3.3 * 0.90 set in7_max 3.3 * 1.10 set in8_min 3.0 * 0.90 - set in8_max 3.0 * 1.10 + set in8_max 3.3 * 1.10 chip "w83627uhg-*" @@ -340,7 +340,7 @@ chip "w83627uhg-*" set in7_min 5.0 * 0.90 set in7_max 5.0 * 1.10 set in8_min 3.0 * 0.90 - set in8_max 3.0 * 1.10 + set in8_max 3.3 * 1.10 chip "f71805f-*" diff --git a/sgml/catalog b/sgml/catalog index 553d531..b8ab77f 100644 --- a/sgml/catalog +++ b/sgml/catalog @@ -9,3 +9,8 @@ CATALOG "/etc/sgml/xml-docbook-4.4.cat" CATALOG "/etc/sgml/xml-docbook-4.5.cat" CATALOG "/etc/sgml/xhtml1.cat" CATALOG "/etc/sgml/openjade-1.3.2.cat" +CATALOG "/etc/sgml/sgml-docbook-4.1.cat" +CATALOG "/etc/sgml/sgml-docbook-3.1.cat" +CATALOG "/etc/sgml/sgml-docbook-4.0.cat" +CATALOG "/etc/sgml/xml-simple-docbook-4.1.2.4.cat" +CATALOG "/etc/sgml/xml-simple-docbook-1.0.cat" diff --git a/sgml/sgml-docbook-3.1.cat b/sgml/sgml-docbook-3.1.cat new file mode 100644 index 0000000..f0ea203 --- /dev/null +++ b/sgml/sgml-docbook-3.1.cat @@ -0,0 +1,2 @@ +CATALOG "/usr/share/sgml/docbook/sgml-dtd-3.1/catalog" +CATALOG "/etc/sgml/sgml-docbook.cat" diff --git a/sgml/sgml-docbook-4.0.cat b/sgml/sgml-docbook-4.0.cat new file mode 100644 index 0000000..41c983f --- /dev/null +++ b/sgml/sgml-docbook-4.0.cat @@ -0,0 +1,2 @@ +CATALOG "/usr/share/sgml/docbook/sgml-dtd-4.0/catalog" +CATALOG "/etc/sgml/sgml-docbook.cat" diff --git a/sgml/sgml-docbook-4.1.cat b/sgml/sgml-docbook-4.1.cat new file mode 100644 index 0000000..acda1ef --- /dev/null +++ b/sgml/sgml-docbook-4.1.cat @@ -0,0 +1,2 @@ +CATALOG "/usr/share/sgml/docbook/sgml-dtd-4.1/catalog" +CATALOG "/etc/sgml/sgml-docbook.cat" diff --git a/sgml/xml-simple-docbook-1.0.cat b/sgml/xml-simple-docbook-1.0.cat new file mode 100644 index 0000000..04128be --- /dev/null +++ b/sgml/xml-simple-docbook-1.0.cat @@ -0,0 +1 @@ +CATALOG "/usr/share/sgml/docbook/xml-simple-dtd-1.0/catalog" diff --git a/sgml/xml-simple-docbook-4.1.2.4.cat b/sgml/xml-simple-docbook-4.1.2.4.cat new file mode 100644 index 0000000..7f2b616 --- /dev/null +++ b/sgml/xml-simple-docbook-4.1.2.4.cat @@ -0,0 +1 @@ +CATALOG "/usr/share/sgml/docbook/xml-simple-dtd-4.1.2.4/catalog" diff --git a/sysconfig/libvirt-guests b/sysconfig/libvirt-guests new file mode 100644 index 0000000..d1f2051 --- /dev/null +++ b/sysconfig/libvirt-guests @@ -0,0 +1,41 @@ +# URIs to check for running guests +# example: URIS='default xen:/// vbox+tcp://host/system lxc:///' +#URIS=default + +# action taken on host boot +# - start all guests which were running on shutdown are started on boot +# regardless on their autostart settings +# - ignore libvirt-guests init script won't start any guest on boot, however, +# guests marked as autostart will still be automatically started by +# libvirtd +#ON_BOOT=start + +# Number of seconds to wait between each guest start. Set to 0 to allow +# parallel startup. +#START_DELAY=0 + +# action taken on host shutdown +# - suspend all running guests are suspended using virsh managedsave +# - shutdown all running guests are asked to shutdown. Please be careful with +# this settings since there is no way to distinguish between a +# guest which is stuck or ignores shutdown requests and a guest +# which just needs a long time to shutdown. When setting +# ON_SHUTDOWN=shutdown, you must also set SHUTDOWN_TIMEOUT to a +# value suitable for your guests. +#ON_SHUTDOWN=suspend + +# If set to non-zero, shutdown will suspend guests concurrently. Number of +# guests on shutdown at any time will not exceed number set in this variable. +#PARALLEL_SHUTDOWN=0 + +# Number of seconds we're willing to wait for a guest to shut down. If parallel +# shutdown is enabled, this timeout applies as a timeout for shutting down all +# guests on a single URI defined in the variable URIS. If this is 0, then there +# is no time out (use with caution, as guests might not respond to a shutdown +# request). The default value is 300 seconds (5 minutes). +#SHUTDOWN_TIMEOUT=300 + +# If non-zero, try to bypass the file system cache when saving and +# restoring guests, even though this may give slower operation for +# some file systems. +#BYPASS_CACHE=0 diff --git a/sysconfig/libvirtd b/sysconfig/libvirtd new file mode 100644 index 0000000..3af1f03 --- /dev/null +++ b/sysconfig/libvirtd @@ -0,0 +1,24 @@ +# Override the default config file +# NOTE: This setting is no longer honoured if using +# systemd. Set '--config /etc/libvirt/libvirtd.conf' +# in LIBVIRTD_ARGS instead. +#LIBVIRTD_CONFIG=/etc/libvirt/libvirtd.conf + +# Listen for TCP/IP connections +# NB. must setup TLS/SSL keys prior to using this +#LIBVIRTD_ARGS="--listen" + +# Override Kerberos service keytab for SASL/GSSAPI +#KRB5_KTNAME=/etc/libvirt/krb5.tab + +# Override the QEMU/SDL default audio driver probing when +# starting virtual machines using SDL graphics +# +# NB these have no effect for VMs using VNC, unless vnc_allow_host_audio +# is enabled in /etc/libvirt/qemu.conf +#QEMU_AUDIO_DRV=sdl +# +#SDL_AUDIODRIVER=pulse + +# Override the maximum number of opened files +#LIBVIRTD_NOFILES_LIMIT=2048 diff --git a/sysconfig/virtlockd b/sysconfig/virtlockd new file mode 100644 index 0000000..d44dc46 --- /dev/null +++ b/sysconfig/virtlockd @@ -0,0 +1,3 @@ +# +# Pass extra arguments to virtlockd +#VIRTLOCKD_ARGS= diff --git a/sysctl.d/99-sysctl.conf b/sysctl.d/99-sysctl.conf new file mode 120000 index 0000000..2b0036b --- /dev/null +++ b/sysctl.d/99-sysctl.conf @@ -0,0 +1 @@ +../sysctl.conf \ No newline at end of file diff --git a/syslog-ng/syslog-ng.conf b/syslog-ng/syslog-ng.conf index 3ea646c..c2bfd4a 100644 --- a/syslog-ng/syslog-ng.conf +++ b/syslog-ng/syslog-ng.conf @@ -28,7 +28,8 @@ options { }; source src { - unix-stream("/dev/log" max-connections(256)); + #unix-stream("/dev/log" max-connections(256)); + unix-dgram("/dev/log"); internal(); file("/proc/kmsg"); }; diff --git a/systemd/bootchart.conf b/systemd/bootchart.conf new file mode 100644 index 0000000..48fad02 --- /dev/null +++ b/systemd/bootchart.conf @@ -0,0 +1,20 @@ +# This file is part of systemd. +# +# systemd is free software; you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as published by +# the Free Software Foundation; either version 2.1 of the License, or +# (at your option) any later version. +# +# See bootchart.conf(5) for details + +[Bootchart] +#Samples=500 +#Frequency=25 +#Relative=no +#Filter=yes +#Output= +#Init=/path/to/init-binary +#PlotMemoryUsage=no +#PlotEntropyGraph=no +#ScaleX=100 +#ScaleY=20 diff --git a/systemd/journald.conf b/systemd/journald.conf new file mode 100644 index 0000000..54f6833 --- /dev/null +++ b/systemd/journald.conf @@ -0,0 +1,33 @@ +# This file is part of systemd. +# +# systemd is free software; you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as published by +# the Free Software Foundation; either version 2.1 of the License, or +# (at your option) any later version. +# +# See journald.conf(5) for details + +[Journal] +#Storage=auto +#Compress=yes +#Seal=yes +#SplitMode=login +#SyncIntervalSec=5m +#RateLimitInterval=30s +#RateLimitBurst=1000 +#SystemMaxUse= +#SystemKeepFree= +#SystemMaxFileSize= +#RuntimeMaxUse= +#RuntimeKeepFree= +#RuntimeMaxFileSize= +#MaxRetentionSec= +#MaxFileSec=1month +#ForwardToSyslog=yes +#ForwardToKMsg=no +#ForwardToConsole=no +#TTYPath=/dev/console +#MaxLevelStore=debug +#MaxLevelSyslog=debug +#MaxLevelKMsg=notice +#MaxLevelConsole=info diff --git a/systemd/logind.conf b/systemd/logind.conf new file mode 100644 index 0000000..c0abf01 --- /dev/null +++ b/systemd/logind.conf @@ -0,0 +1,26 @@ +# This file is part of systemd. +# +# systemd is free software; you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as published by +# the Free Software Foundation; either version 2.1 of the License, or +# (at your option) any later version. +# +# See logind.conf(5) for details + +[Login] +#NAutoVTs=6 +#ReserveVT=6 +#KillUserProcesses=no +#KillOnlyUsers= +#KillExcludeUsers=root +#InhibitDelayMaxSec=5 +#HandlePowerKey=poweroff +#HandleSuspendKey=suspend +#HandleHibernateKey=hibernate +#HandleLidSwitch=suspend +#PowerKeyIgnoreInhibited=no +#SuspendKeyIgnoreInhibited=no +#HibernateKeyIgnoreInhibited=no +#LidSwitchIgnoreInhibited=yes +#IdleAction=ignore +#IdleActionSec=30min diff --git a/systemd/ntp-units.d/.keep_sys-apps_systemd-0 b/systemd/ntp-units.d/.keep_sys-apps_systemd-0 new file mode 100644 index 0000000..e69de29 diff --git a/systemd/system.conf b/systemd/system.conf new file mode 100644 index 0000000..7b03c87 --- /dev/null +++ b/systemd/system.conf @@ -0,0 +1,43 @@ +# This file is part of systemd. +# +# systemd is free software; you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as published by +# the Free Software Foundation; either version 2.1 of the License, or +# (at your option) any later version. +# +# See systemd-system.conf(5) for details + +[Manager] +#LogLevel=info +#LogTarget=journal-or-kmsg +#LogColor=yes +#LogLocation=no +#DumpCore=yes +#CrashShell=no +#ShowStatus=yes +#CrashChVT=1 +#CPUAffinity=1 2 +#DefaultStandardOutput=journal +#DefaultStandardError=inherit +#JoinControllers=cpu,cpuacct net_cls,net_prio +#RuntimeWatchdogSec=0 +#ShutdownWatchdogSec=10min +#CapabilityBoundingSet= +#TimerSlackNSec= +#DefaultEnvironment= +#DefaultLimitCPU= +#DefaultLimitFSIZE= +#DefaultLimitDATA= +#DefaultLimitSTACK= +#DefaultLimitCORE= +#DefaultLimitRSS= +#DefaultLimitNOFILE= +#DefaultLimitAS= +#DefaultLimitNPROC= +#DefaultLimitMEMLOCK= +#DefaultLimitLOCKS= +#DefaultLimitSIGPENDING= +#DefaultLimitMSGQUEUE= +#DefaultLimitNICE= +#DefaultLimitRTPRIO= +#DefaultLimitRTTIME= diff --git a/systemd/system/display-manager.service b/systemd/system/display-manager.service new file mode 120000 index 0000000..c8c1f26 --- /dev/null +++ b/systemd/system/display-manager.service @@ -0,0 +1 @@ +/usr/lib64/systemd/system/gdm.service \ No newline at end of file diff --git a/systemd/system/g15daemon.service b/systemd/system/g15daemon.service new file mode 100644 index 0000000..df973e7 --- /dev/null +++ b/systemd/system/g15daemon.service @@ -0,0 +1,15 @@ +[Unit] +Description=Logitech G15 Support Daemon +Documentation=man:g15daemon(1) +#After=multi-user.target //beide After-Varianten funktionieren nicht +After=syslog.target + +[Service] +Type=forking +PIDFile=/run/g15daemon.pid +ExecStart=/usr/sbin/g15daemon + +[Install] +WantedBy=multi-user.target + +# vim: filetype=cfg diff --git a/systemd/system/getty.target.wants/getty@tty1.service b/systemd/system/getty.target.wants/getty@tty1.service new file mode 120000 index 0000000..7bfe080 --- /dev/null +++ b/systemd/system/getty.target.wants/getty@tty1.service @@ -0,0 +1 @@ +/usr/lib/systemd/system/getty@.service \ No newline at end of file diff --git a/systemd/system/multi-user.target.wants/atd.service b/systemd/system/multi-user.target.wants/atd.service new file mode 120000 index 0000000..26cd0c6 --- /dev/null +++ b/systemd/system/multi-user.target.wants/atd.service @@ -0,0 +1 @@ +/usr/lib64/systemd/system/atd.service \ No newline at end of file diff --git a/systemd/system/multi-user.target.wants/cups-browsed.service b/systemd/system/multi-user.target.wants/cups-browsed.service new file mode 120000 index 0000000..d507ddf --- /dev/null +++ b/systemd/system/multi-user.target.wants/cups-browsed.service @@ -0,0 +1 @@ +/usr/lib64/systemd/system/cups-browsed.service \ No newline at end of file diff --git a/systemd/system/multi-user.target.wants/cups.path b/systemd/system/multi-user.target.wants/cups.path new file mode 120000 index 0000000..7f30adc --- /dev/null +++ b/systemd/system/multi-user.target.wants/cups.path @@ -0,0 +1 @@ +/usr/lib64/systemd/system/cups.path \ No newline at end of file diff --git a/systemd/system/multi-user.target.wants/network.service b/systemd/system/multi-user.target.wants/network.service new file mode 120000 index 0000000..d3558f9 --- /dev/null +++ b/systemd/system/multi-user.target.wants/network.service @@ -0,0 +1 @@ +../network.service \ No newline at end of file diff --git a/systemd/system/multi-user.target.wants/ntpd.service b/systemd/system/multi-user.target.wants/ntpd.service new file mode 120000 index 0000000..683b579 --- /dev/null +++ b/systemd/system/multi-user.target.wants/ntpd.service @@ -0,0 +1 @@ +/usr/lib64/systemd/system/ntpd.service \ No newline at end of file diff --git a/systemd/system/multi-user.target.wants/postfix.service b/systemd/system/multi-user.target.wants/postfix.service new file mode 120000 index 0000000..1f43ff0 --- /dev/null +++ b/systemd/system/multi-user.target.wants/postfix.service @@ -0,0 +1 @@ +/usr/lib64/systemd/system/postfix.service \ No newline at end of file diff --git a/systemd/system/multi-user.target.wants/remote-fs.target b/systemd/system/multi-user.target.wants/remote-fs.target new file mode 120000 index 0000000..2bc8b1c --- /dev/null +++ b/systemd/system/multi-user.target.wants/remote-fs.target @@ -0,0 +1 @@ +/usr/lib/systemd/system/remote-fs.target \ No newline at end of file diff --git a/systemd/system/multi-user.target.wants/sshd.service b/systemd/system/multi-user.target.wants/sshd.service new file mode 120000 index 0000000..ef20cf5 --- /dev/null +++ b/systemd/system/multi-user.target.wants/sshd.service @@ -0,0 +1 @@ +/usr/lib64/systemd/system/sshd.service \ No newline at end of file diff --git a/systemd/system/multi-user.target.wants/syslog-ng.service b/systemd/system/multi-user.target.wants/syslog-ng.service new file mode 120000 index 0000000..3c65280 --- /dev/null +++ b/systemd/system/multi-user.target.wants/syslog-ng.service @@ -0,0 +1 @@ +/usr/lib64/systemd/system/syslog-ng.service \ No newline at end of file diff --git a/systemd/system/multi-user.target.wants/vixie-cron.service b/systemd/system/multi-user.target.wants/vixie-cron.service new file mode 120000 index 0000000..b4a681d --- /dev/null +++ b/systemd/system/multi-user.target.wants/vixie-cron.service @@ -0,0 +1 @@ +/usr/lib64/systemd/system/vixie-cron.service \ No newline at end of file diff --git a/systemd/system/network.service b/systemd/system/network.service new file mode 100644 index 0000000..f67d4bb --- /dev/null +++ b/systemd/system/network.service @@ -0,0 +1,17 @@ +[Unit] +Description=Network with static IP +After=local-fs.target +Before=sshd.service +Documentation=man:ip(8) + +[Service] +Type=oneshot +RemainAfterExit=yes + +ExecStart=/bin/ip link set dev eth0 up +ExecStart=/bin/ip addr add 192.168.88.88/24 dev eth0 +ExecStart=/bin/ip route add default via 192.168.88.254 + +ExecStop=/bin/ip addr flush dev eth0 +ExecStop=/bin/ip link set dev eth0 down + diff --git a/systemd/system/network.target.wants/network.service b/systemd/system/network.target.wants/network.service new file mode 120000 index 0000000..d3558f9 --- /dev/null +++ b/systemd/system/network.target.wants/network.service @@ -0,0 +1 @@ +../network.service \ No newline at end of file diff --git a/systemd/system/ntpdate.service.d/00gentoo.conf b/systemd/system/ntpdate.service.d/00gentoo.conf new file mode 100644 index 0000000..75e4f41 --- /dev/null +++ b/systemd/system/ntpdate.service.d/00gentoo.conf @@ -0,0 +1,2 @@ +[Service] +Environment="SERVER=0.gentoo.pool.ntp.org 1.gentoo.pool.ntp.org 2.gentoo.pool.ntp.org 3.gentoo.pool.ntp.org" diff --git a/systemd/system/printer.target.wants/cups.service b/systemd/system/printer.target.wants/cups.service new file mode 120000 index 0000000..788d5df --- /dev/null +++ b/systemd/system/printer.target.wants/cups.service @@ -0,0 +1 @@ +/usr/lib64/systemd/system/cups.service \ No newline at end of file diff --git a/systemd/system/slapd.service.d/00gentoo.conf b/systemd/system/slapd.service.d/00gentoo.conf new file mode 100644 index 0000000..812ea68 --- /dev/null +++ b/systemd/system/slapd.service.d/00gentoo.conf @@ -0,0 +1,12 @@ +[Service] +# Use the classical configuration file: +#Environment="SLAPD_OPTIONS=-f /etc/openldap/slapd.conf" +# Use the slapd configuration directory: +#Environment="SLAPD_OPTIONS=-F /etc/openldap/slapd.d" + +Environment="SLAPD_URLS=ldaps:/// ldap:/// ldapi:///" +# Other examples: +#Environment="SLAPD_URLS=ldap://127.0.0.1/ ldap://10.0.0.1:1389/ cldap:///" + +# Specify the kerberos keytab file +#Environment=KRB5_KTNAME=/etc/openldap/krb5-ldap.keytab diff --git a/systemd/system/sntp.service.d/00gentoo.conf b/systemd/system/sntp.service.d/00gentoo.conf new file mode 100644 index 0000000..75e4f41 --- /dev/null +++ b/systemd/system/sntp.service.d/00gentoo.conf @@ -0,0 +1,2 @@ +[Service] +Environment="SERVER=0.gentoo.pool.ntp.org 1.gentoo.pool.ntp.org 2.gentoo.pool.ntp.org 3.gentoo.pool.ntp.org" diff --git a/systemd/system/sockets.target.wants/cups.socket b/systemd/system/sockets.target.wants/cups.socket new file mode 120000 index 0000000..35f0245 --- /dev/null +++ b/systemd/system/sockets.target.wants/cups.socket @@ -0,0 +1 @@ +/usr/lib64/systemd/system/cups.socket \ No newline at end of file diff --git a/systemd/system/syslog.service b/systemd/system/syslog.service new file mode 120000 index 0000000..3c65280 --- /dev/null +++ b/systemd/system/syslog.service @@ -0,0 +1 @@ +/usr/lib64/systemd/system/syslog-ng.service \ No newline at end of file diff --git a/systemd/user.conf b/systemd/user.conf new file mode 100644 index 0000000..4a0129a --- /dev/null +++ b/systemd/user.conf @@ -0,0 +1,16 @@ +# This file is part of systemd. +# +# systemd is free software; you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as published by +# the Free Software Foundation; either version 2.1 of the License, or +# (at your option) any later version. +# +# See systemd-user.conf(5) for details + +[Manager] +#LogLevel=info +#LogTarget=console +#LogColor=yes +#LogLocation=no +#DefaultStandardOutput=inherit +#DefaultStandardError=inherit diff --git a/systemd/user/.keep_sys-apps_systemd-0 b/systemd/user/.keep_sys-apps_systemd-0 new file mode 100644 index 0000000..e69de29 diff --git a/tmpfiles.d/.keep_sys-apps_systemd-0 b/tmpfiles.d/.keep_sys-apps_systemd-0 new file mode 100644 index 0000000..e69de29 diff --git a/udev/rules.d/20-G15_keyboard.rules b/udev/rules.d/20-G15_keyboard.rules new file mode 100644 index 0000000..b0b055e --- /dev/null +++ b/udev/rules.d/20-G15_keyboard.rules @@ -0,0 +1 @@ +ACTION=="add", SUBSYSTEM=="usb", ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c226", RUN+="/usr/local/bin/start_g15" diff --git a/vconsole.conf b/vconsole.conf new file mode 100644 index 0000000..3fa644c --- /dev/null +++ b/vconsole.conf @@ -0,0 +1 @@ +KEYMAP=de-latin1-nodeadkeys diff --git a/wireless-regdb/pubkeys/.keep_net-wireless_crda-0 b/wireless-regdb/pubkeys/.keep_net-wireless_crda-0 new file mode 100644 index 0000000..e69de29 diff --git a/wireless-regdb/pubkeys/linville.key.pub.pem b/wireless-regdb/pubkeys/linville.key.pub.pem new file mode 100644 index 0000000..3a2e8d0 --- /dev/null +++ b/wireless-regdb/pubkeys/linville.key.pub.pem @@ -0,0 +1,9 @@ +-----BEGIN PUBLIC KEY----- +MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1leZcYjTXc4qLq1oN2Ak +8vLP85P5cFTrCpqdSI5W4VOwdaJB4TtaxU2fATcH/A2EsE3h1rOfzI0+fBV9DcOO +qyID+zdILBMb8xK5Zv+78OkBGls/WzvDDVhdmn1TRHvRvmJy7cX1mCT56cnHrZM/ +ZBaFwVfiD9TcqqisyF1sqE5+cMHTWRbxc1+rtojr0eGYrNfK20awlD5KVj6Ejzot +r9EDWAsL1bH/kGfMdnputcyMapLQpRVruO/jEdjSmhAE/sj1tmHcAXBT6j5al4Oa +LiBaWnP++rune7rjimwfzp0549/rupQUM7nAZRDLyzXj3J/KEci6dXtjonBUFqDY +4QIDAQAB +-----END PUBLIC KEY----- diff --git a/xdg/autostart/Gentoo-print-applet.desktop b/xdg/autostart/Gentoo-print-applet.desktop index 0bfb536..9d232c5 100644 --- a/xdg/autostart/Gentoo-print-applet.desktop +++ b/xdg/autostart/Gentoo-print-applet.desktop @@ -1,5 +1,4 @@ [Desktop Entry] -Encoding=UTF-8 Name=Print Queue Applet Name[de]=Applet für Druckerwarteschlange Name[en_GB]=Print Queue Applet diff --git a/xdg/autostart/at-spi-dbus-bus.desktop b/xdg/autostart/at-spi-dbus-bus.desktop new file mode 100644 index 0000000..adb1787 --- /dev/null +++ b/xdg/autostart/at-spi-dbus-bus.desktop @@ -0,0 +1,9 @@ +[Desktop Entry] +Type=Application +Name=AT-SPI D-Bus Bus +Exec=/usr/libexec/at-spi-bus-launcher --launch-immediately +OnlyShowIn=GNOME;Unity; +NoDisplay=true +AutostartCondition=GSETTINGS org.gnome.desktop.interface toolkit-accessibility +X-GNOME-AutoRestart=true +X-GNOME-Autostart-Phase=Initialization diff --git a/xdg/autostart/caribou-autostart.desktop b/xdg/autostart/caribou-autostart.desktop new file mode 100644 index 0000000..445ad14 --- /dev/null +++ b/xdg/autostart/caribou-autostart.desktop @@ -0,0 +1,8 @@ +[Desktop Entry] +Type=Application +Name=Caribou +Exec=caribou +AutostartCondition=GSettings org.gnome.desktop.a11y.applications screen-keyboard-enabled +X-GNOME-AutoRestart=true +#X-GNOME-Autostart-Phase=Initialization +OnlyShowIn=GNOME;Unity; diff --git a/xdg/autostart/evolution-alarm-notify.desktop b/xdg/autostart/evolution-alarm-notify.desktop index b4666c7..aa3bd93 100644 --- a/xdg/autostart/evolution-alarm-notify.desktop +++ b/xdg/autostart/evolution-alarm-notify.desktop @@ -9,13 +9,13 @@ Comment[de]=Benachrichtigungen über Kalenderereignisse Comment[en_GB]=Calendar event notifications Comment[ru]=Уведомления о календарных событиях Icon=appointment-soon -Exec=/usr/libexec/evolution/2.32/evolution-alarm-notify +Exec=/usr/libexec/evolution/3.8/evolution-alarm-notify Terminal=false Type=Application Categories= -OnlyShowIn=GNOME;XFCE;X-MEEGO-NB; +OnlyShowIn=GNOME;Unity;XFCE;Dawati; X-Meego-Priority=Low X-GNOME-Bugzilla-Bugzilla=GNOME X-GNOME-Bugzilla-Product=evolution X-GNOME-Bugzilla-Component=calendar -X-GNOME-Bugzilla-Version=2.32.x +X-GNOME-Bugzilla-Version=3.8.x diff --git a/xdg/autostart/gnome-at-session.desktop b/xdg/autostart/gnome-at-session.desktop deleted file mode 100644 index 3b71176..0000000 --- a/xdg/autostart/gnome-at-session.desktop +++ /dev/null @@ -1,21 +0,0 @@ -[Desktop Entry] -Name=Visual Assistance -Name[de]=Visuelle Rückmeldung -Name[en_GB]=Visual Assistance -Name[ru]=Визуальная поддержка -Comment=Start the preferred visual assistive technology -Comment[de]=Die bevorzugte visuelle Hilfstechnologie starten -Comment[en_GB]=Start the preferred visual assistive technology -Comment[ru]=Запуск предпочтительной визуальной вспомогательной технологии -Exec=gnome-at-visual -s -Icon=preferences-desktop-accessibility -Terminal=false -Type=Application -StartupNotify=false -OnlyShowIn=GNOME; -AutostartCondition=GNOME /desktop/gnome/interface/accessibility -X-GNOME-Bugzilla-Bugzilla=GNOME -X-GNOME-Bugzilla-Product=gnome-control-center -X-GNOME-Bugzilla-Component=other capplets -X-GNOME-Bugzilla-Version=2.32.1 -X-GNOME-Autostart-enabled=true diff --git a/xdg/autostart/gnome-keyring-gpg.desktop b/xdg/autostart/gnome-keyring-gpg.desktop index 5e9d310..daa5ebb 100644 --- a/xdg/autostart/gnome-keyring-gpg.desktop +++ b/xdg/autostart/gnome-keyring-gpg.desktop @@ -8,12 +8,12 @@ Comment=GNOME Keyring: GPG Agent Comment[de]=GNOME-Schlüsselbunddienst: GPG-Agent Comment[en_GB]=GNOME Keyring: GPG Agent Comment[ru]=Связка ключей GNOME: GPG-агент -Exec= gnome-keyring-daemon --start --components=gpg -OnlyShowIn=GNOME;LXDE; +Exec=/usr/bin/gnome-keyring-daemon --start --components=gpg +OnlyShowIn=GNOME;Unity;MATE; X-GNOME-Autostart-Phase=Initialization X-GNOME-AutoRestart=false X-GNOME-Autostart-Notify=true X-GNOME-Bugzilla-Bugzilla=GNOME X-GNOME-Bugzilla-Product=gnome-keyring X-GNOME-Bugzilla-Component=general -X-GNOME-Bugzilla-Version=2.32.1 +X-GNOME-Bugzilla-Version=3.8.2 diff --git a/xdg/autostart/gnome-keyring-pkcs11.desktop b/xdg/autostart/gnome-keyring-pkcs11.desktop index f03381e..5406f27 100644 --- a/xdg/autostart/gnome-keyring-pkcs11.desktop +++ b/xdg/autostart/gnome-keyring-pkcs11.desktop @@ -9,11 +9,11 @@ Comment[de]=GNOME-Schlüsselbunddienst: PKCS#11-Komponente Comment[en_GB]=GNOME Keyring: PKCS#11 Component Comment[ru]=Связка ключей GNOME: компонент PKCS#11 Exec=/usr/bin/gnome-keyring-daemon --start --components=pkcs11 -OnlyShowIn=GNOME;LXDE; +OnlyShowIn=GNOME;Unity;MATE; X-GNOME-Autostart-Phase=Initialization X-GNOME-AutoRestart=false X-GNOME-Autostart-Notify=true X-GNOME-Bugzilla-Bugzilla=GNOME X-GNOME-Bugzilla-Product=gnome-keyring X-GNOME-Bugzilla-Component=general -X-GNOME-Bugzilla-Version=2.32.1 +X-GNOME-Bugzilla-Version=3.8.2 diff --git a/xdg/autostart/gnome-keyring-secrets.desktop b/xdg/autostart/gnome-keyring-secrets.desktop index 22a7199..abdc168 100644 --- a/xdg/autostart/gnome-keyring-secrets.desktop +++ b/xdg/autostart/gnome-keyring-secrets.desktop @@ -9,11 +9,11 @@ Comment[de]=GNOME-Schlüsselbunddienst: Sicherheitsdienst Comment[en_GB]=GNOME Keyring: Secret Service Comment[ru]=Связка ключей GNOME: служба безопасности Exec=/usr/bin/gnome-keyring-daemon --start --components=secrets -OnlyShowIn=GNOME;LXDE; +OnlyShowIn=GNOME;Unity;MATE; X-GNOME-Autostart-Phase=Initialization X-GNOME-AutoRestart=false X-GNOME-Autostart-Notify=true X-GNOME-Bugzilla-Bugzilla=GNOME X-GNOME-Bugzilla-Product=gnome-keyring X-GNOME-Bugzilla-Component=general -X-GNOME-Bugzilla-Version=2.32.1 +X-GNOME-Bugzilla-Version=3.8.2 diff --git a/xdg/autostart/gnome-keyring-ssh.desktop b/xdg/autostart/gnome-keyring-ssh.desktop index 600f6e8..7fb85b2 100644 --- a/xdg/autostart/gnome-keyring-ssh.desktop +++ b/xdg/autostart/gnome-keyring-ssh.desktop @@ -9,11 +9,11 @@ Comment[de]=GNOME-Schlüsselbunddienst: SSH-Agent Comment[en_GB]=GNOME Keyring: SSH Agent Comment[ru]=Связка ключей GNOME: SSH-агент Exec=/usr/bin/gnome-keyring-daemon --start --components=ssh -OnlyShowIn=GNOME;LXDE; +OnlyShowIn=GNOME;Unity;MATE; X-GNOME-Autostart-Phase=Initialization X-GNOME-AutoRestart=false X-GNOME-Autostart-Notify=true X-GNOME-Bugzilla-Bugzilla=GNOME X-GNOME-Bugzilla-Product=gnome-keyring X-GNOME-Bugzilla-Component=general -X-GNOME-Bugzilla-Version=2.32.1 +X-GNOME-Bugzilla-Version=3.8.2 diff --git a/xdg/autostart/gnome-power-manager.desktop b/xdg/autostart/gnome-power-manager.desktop deleted file mode 100644 index 56b921a..0000000 --- a/xdg/autostart/gnome-power-manager.desktop +++ /dev/null @@ -1,22 +0,0 @@ -[Desktop Entry] -Name=Power Manager -Name[de]=Energieverwaltung -Name[en_GB]=Power Manager -Name[ru]=Управление питанием -Comment=Power management daemon -Comment[de]=Hintergrundprozess der Energieverwaltung -Comment[en_GB]=Power management daemon -Comment[ru]=Служба управления питанием -Icon=gnome-power-manager -Exec=gnome-power-manager -Terminal=false -Type=Application -Categories= -OnlyShowIn=GNOME; -X-GNOME-Bugzilla-Bugzilla=GNOME -X-GNOME-Bugzilla-Product=gnome-power-manager -X-GNOME-Bugzilla-Component=gnome-power-manager -X-GNOME-Bugzilla-Version=2.32.0 -X-GNOME-Bugzilla-ExtraInfoScript=gnome-power-bugreport.sh -#X-GNOME-AutoRestart=true - diff --git a/xdg/autostart/gnome-screensaver.desktop b/xdg/autostart/gnome-screensaver.desktop deleted file mode 100644 index c809d7c..0000000 --- a/xdg/autostart/gnome-screensaver.desktop +++ /dev/null @@ -1,20 +0,0 @@ -[Desktop Entry] -Type=Application -Name=Screensaver -Name[de]=Bildschirmschoner -Name[en_GB]=Screensaver -Name[ru]=Хранитель экрана -Comment=Launch screen saver and locker program -Comment[de]=Bildschirmschoner und Bildschirmsperrung starten -Comment[en_GB]=Launch screensaver and locker program -Comment[ru]=Запустить хранитель экрана и программу блокировки -Icon=preferences-desktop-screensaver -Exec=gnome-screensaver -OnlyShowIn=GNOME; -NoDisplay=true -X-GNOME-Autostart-Phase=Application -X-GNOME-Autostart-Notify=true -X-GNOME-Bugzilla-Bugzilla=GNOME -X-GNOME-Bugzilla-Product=gnome-screensaver -X-GNOME-Bugzilla-Component=general -X-GNOME-Bugzilla-Version=2.30.2 diff --git a/xdg/autostart/gnome-settings-daemon.desktop b/xdg/autostart/gnome-settings-daemon.desktop index 69975eb..be764fe 100644 --- a/xdg/autostart/gnome-settings-daemon.desktop +++ b/xdg/autostart/gnome-settings-daemon.desktop @@ -3,9 +3,10 @@ Type=Application Name=GNOME Settings Daemon Name[de]=GNOME-Einstellungsdienst Name[en_GB]=GNOME Settings Daemon -Name[ru]=Демон параметров GNOME -Exec=/usr/libexec/gnome-settings-daemon +Name[ru]=Служба параметров GNOME +Exec=/usr/libexec/gnome-settings-daemon-localeexec OnlyShowIn=GNOME; +NoDisplay=true X-GNOME-Autostart-Phase=Initialization X-GNOME-Autostart-Notify=true X-GNOME-AutoRestart=true diff --git a/xdg/autostart/gnome-volume-control-applet.desktop b/xdg/autostart/gnome-volume-control-applet.desktop deleted file mode 100644 index 49c6490..0000000 --- a/xdg/autostart/gnome-volume-control-applet.desktop +++ /dev/null @@ -1,22 +0,0 @@ -[Desktop Entry] -Name=Volume Control -Name[de]=Lautstärkeregler -Name[en_GB]=Volume Control -Name[ru]=Регулятор громкости -Comment=Show desktop volume control -Comment[de]=Lautstärkeregler anzeigen -Comment[en_GB]=Show desktop volume control -Comment[ru]=Показать регулятор громкости -Icon=multimedia-volume-control -Exec=gnome-volume-control-applet -Terminal=false -Type=Application -Categories= -NoDisplay=true -OnlyShowIn=GNOME;XFCE; -X-GNOME-Bugzilla-Bugzilla=GNOME -X-GNOME-Bugzilla-Product=gnome-media -X-GNOME-Bugzilla-Component=gnome-volume-control -# See http://bugzilla.gnome.org/show_bug.cgi?id=568320 -#X-GNOME-Autostart-Phase=Panel -X-GNOME-Autostart-Notify=true diff --git a/xdg/autostart/gsettings-data-convert.desktop b/xdg/autostart/gsettings-data-convert.desktop index 7d7db4a..d93bc3a 100644 --- a/xdg/autostart/gsettings-data-convert.desktop +++ b/xdg/autostart/gsettings-data-convert.desktop @@ -11,5 +11,5 @@ Comment[ru]=Переносит настройки пользователя из Exec=gsettings-data-convert Terminal=false Type=Application -OnlyShowIn=GNOME; +OnlyShowIn=GNOME;Unity; X-GNOME-Autostart-Phase=Initialization diff --git a/xdg/autostart/nautilus-autostart.desktop b/xdg/autostart/nautilus-autostart.desktop new file mode 100644 index 0000000..7252f87 --- /dev/null +++ b/xdg/autostart/nautilus-autostart.desktop @@ -0,0 +1,6 @@ +[Desktop Entry] +Type=Application +Name=Files +Exec=nautilus -n +OnlyShowIn=GNOME;Unity; +AutostartCondition=GSettings org.gnome.desktop.background show-desktop-icons diff --git a/xdg/autostart/nm-applet.desktop b/xdg/autostart/nm-applet.desktop new file mode 100644 index 0000000..9125f89 --- /dev/null +++ b/xdg/autostart/nm-applet.desktop @@ -0,0 +1,19 @@ +[Desktop Entry] +Name=Network +Name[de]=Netzwerk +Name[en_GB]=Network +Name[ru]=Сеть +Comment=Manage your network connections +Comment[de]=Verwaltung der Netzwerkverbindungen +Comment[en_GB]=Manage your network connections +Comment[ru]=Управление сетевыми соединениями +Icon=nm-device-wireless +Exec=nm-applet +Terminal=false +Type=Application +NoDisplay=true +NotShowIn=KDE; +X-GNOME-Bugzilla-Bugzilla=GNOME +X-GNOME-Bugzilla-Product=NetworkManager +X-GNOME-Bugzilla-Component=nm-applet +X-GNOME-UsesNotifications=true diff --git a/xdg/autostart/pulseaudio.desktop b/xdg/autostart/pulseaudio.desktop index a627175..f9d061e 100644 --- a/xdg/autostart/pulseaudio.desktop +++ b/xdg/autostart/pulseaudio.desktop @@ -12,3 +12,4 @@ Terminal=false Type=Application Categories= GenericName= +X-GNOME-Autostart-Phase=Initialization diff --git a/xdg/autostart/tracker-miner-fs.desktop b/xdg/autostart/tracker-miner-fs.desktop new file mode 100644 index 0000000..31dd6fd --- /dev/null +++ b/xdg/autostart/tracker-miner-fs.desktop @@ -0,0 +1,25 @@ +[Desktop Entry] +Name=Tracker File System Miner +Name[de]=Tracker Dateisystem-Indizierung +Name[en_GB]=Tracker File System Miner +Name[ru]=Индексатор файловой системы +Comment=Crawls and processes files on the file system +Comment[de]=Spürt Dateien in Ihrem System auf und verarbeitet diese +Comment[en_GB]=Crawls and processes files on the file system +Comment[ru]=Перебирает и обрабатывает файлы в файловой системе +Icon= +Exec=/usr/libexec/tracker-miner-fs +Terminal=false +Type=Application +Categories=Utility; +X-Meego-Priority=Late +X-GNOME-Autostart-enabled=true +X-KDE-autostart-after=panel +X-KDE-StartupNotify=false +X-KDE-UniqueApplet=true +NoDisplay=true +OnlyShowIn=GNOME;KDE;XFCE;X-MEEGO-HS;X-MEEGO-NB;X-IVI;Unity; +X-GNOME-Bugzilla-Bugzilla=GNOME +X-GNOME-Bugzilla-Product=tracker +X-GNOME-Bugzilla-Component=Miners +X-GNOME-Bugzilla-Version=0.16.4 diff --git a/xdg/autostart/tracker-store.desktop b/xdg/autostart/tracker-store.desktop new file mode 100644 index 0000000..5a13722 --- /dev/null +++ b/xdg/autostart/tracker-store.desktop @@ -0,0 +1,24 @@ +[Desktop Entry] +Name=Tracker Store +Name[de]=Tracker-Speicher +Name[en_GB]=Tracker Store +Name[ru]=Хранилище Tracker +Comment=Metadata database store and lookup manager +Comment[de]=Verwaltung für Suche und Speicherung in einer Metadaten-Datenbank +Comment[en_GB]=Metadata database store and lookup manager +Comment[ru]=Хранилище базы метаданных и диспетчер поиска +Icon= +Exec=/usr/libexec/tracker-store +Terminal=false +Type=Application +Categories=Utility; +X-GNOME-Autostart-enabled=true +X-KDE-autostart-after=panel +X-KDE-StartupNotify=false +X-KDE-UniqueApplet=true +NoDisplay=true +OnlyShowIn=GNOME;KDE;XFCE;X-MEEGO-HS;X-MEEGO-NB;X-IVI;Unity; +X-GNOME-Bugzilla-Bugzilla=GNOME +X-GNOME-Bugzilla-Product=tracker +X-GNOME-Bugzilla-Component=Store +X-GNOME-Bugzilla-Version=0.16.4 diff --git a/xdg/autostart/vino-server.desktop b/xdg/autostart/vino-server.desktop index b45e015..49dfe22 100644 --- a/xdg/autostart/vino-server.desktop +++ b/xdg/autostart/vino-server.desktop @@ -1,17 +1,21 @@ [Desktop Entry] -Name=Remote Desktop -Name[de]=Entfernter Bildschirm -Name[en_GB]=Remote Desktop -Name[ru]=Удалённый рабочий стол -Comment=GNOME Remote Desktop Server -Comment[de]=GNOME-Dienst für entfernte Bildschirme -Comment[en_GB]=GNOME Remote Desktop Server +Name=Desktop Sharing +Name[de]=Freigabe der Arbeitsfläche +Name[en_GB]=Desktop Sharing +Name[ru]=Общий доступ к рабочему столу +Comment=GNOME Desktop Sharing Server +Comment[de]=GNOME-Server zur Freigabe der Arbeitsumgebung +Comment[en_GB]=GNOME Desktop Sharing Server Comment[ru]=Сервер удалённого рабочего стола GNOME -Exec=/usr/libexec/vino-server --sm-disable +Keywords=vnc;share;remote; +Keywords[de]=VNC;Freigabe;entfernt; +Keywords[ru]=vnc;доступ;удалённые; +Exec=/usr/libexec/vino-server Icon=preferences-desktop-remote-desktop -OnlyShowIn=GNOME; +OnlyShowIn=GNOME;Unity; Terminal=false Type=Application -AutostartCondition=GNOME /desktop/gnome/remote_access/enabled +AutostartCondition=GSettings org.gnome.Vino enabled X-GNOME-Autostart-Phase=Applications X-GNOME-AutoRestart=true +X-GNOME-UsesNotifications=true diff --git a/xdg/menus/applications-merged/ggz.merge.menu b/xdg/menus/applications-merged/ggz.merge.menu deleted file mode 100644 index b878db4..0000000 --- a/xdg/menus/applications-merged/ggz.merge.menu +++ /dev/null @@ -1,13 +0,0 @@ - - - - - Games - - GGZ - ggz.directory - ../ggz.menu - - - diff --git a/xdg/menus/ggz.menu b/xdg/menus/ggz.menu deleted file mode 100644 index 0e11c5c..0000000 --- a/xdg/menus/ggz.menu +++ /dev/null @@ -1,19 +0,0 @@ - - - - GGZ Gaming Zone - ggz.directory - - X-GGZ - - - - GGZ Games - ggz-games.directory - - X-GGZ-Games - - - - diff --git a/xdg/menus/gnome-applications.menu b/xdg/menus/gnome-applications.menu index ec48619..39e4012 100644 --- a/xdg/menus/gnome-applications.menu +++ b/xdg/menus/gnome-applications.menu @@ -26,15 +26,40 @@ Utility + category, and we display an accessibility submenu already for + the ones that do not have Settings, so don't display accessibility + applications here --> Accessibility System + X-GNOME-Utilities + + + deja-dup-preferences.desktop + eog.desktop + evince.desktop + file-roller.desktop + gcalctool.desktop + gnome-dictionary.desktop + gnome-disks.desktop + gnome-font-viewer.desktop + gnome-screenshot.desktop + gnome-terminal.desktop + gnome-tweak-tool.desktop + gucharmap.desktop + seahorse.desktop + vinagre.desktop + yelp.desktop + + + alacarte.desktop + + Universal Access @@ -45,6 +70,11 @@ Settings + + + + orca.desktop + @@ -57,6 +87,15 @@ emacs.desktop + + + + jhbuild.desktop + java-1.7.0-openjdk-jconsole.desktop + java-1.7.0-openjdk-policytool.desktop + log4j-chainsaw.desktop + log4j-logfactor5.desktop + @@ -88,6 +127,9 @@ Graphics + eog.desktop + gnome-eog.desktop + evince.desktop @@ -99,10 +141,31 @@ Network + X-GNOME-WebApplication + + + + vinagre.desktop + + + javaws.desktop + + + + Web Applications + X-GNOME-WebApplications.directory + + + Network + X-GNOME-WebApplication + + + + Multimedia @@ -121,10 +184,54 @@ Office + evince.desktop + gnome-dictionary.desktop + + + Sundry + X-GNOME-Sundry.directory + + alacarte.desktop + authconfig.desktop + dconf-editor.desktop + fedora-release-notes.desktop + firewall-config.desktop + flash-player-properties.desktop + gconf-editor.desktop + gnome-abrt.desktop + gnome-power-statistics.desktop + ibus-setup-anthy.desktop + ibus-setup.desktop + ibus-setup-hangul.desktop + ibus-setup-libbopomofo.desktop + ibus-setup-libpinyin.desktop + ibus-setup-m17n.desktop + ibus-setup-typing-booster.desktop + im-chooser.desktop + itweb-settings.desktop + jhbuild.desktop + javaws.desktop + java-1.7.0-openjdk-jconsole.desktop + java-1.7.0-openjdk-policytool.desktop + log4j-chainsaw.desktop + log4j-logfactor5.desktop + nm-connection-editor.desktop + orca.desktop + setroubleshoot.desktop + system-config-date.desktop + system-config-firewall.desktop + system-config-keyboard.desktop + system-config-language.desktop + system-config-printer.desktop + system-config-users.desktop + vino-preferences.desktop + + + System @@ -133,10 +240,64 @@ System Settings + X-GNOME-Utilities + + + + baobab.desktop + gnome-system-log.desktop + gnome-system-monitor.desktop + gnome-terminal.desktop + + + dconf-editor.desktop + fedora-release-notes.desktop + gconf-editor.desktop + gnome-abrt.desktop + gnome-power-statistics.desktop + dconf-editor.desktop + setroubleshoot.desktop + + + + System Settings + X-GNOME-SystemSettings.directory + + X-GNOME-Settings-Panel + + + + + + Utilities + X-GNOME-Utilities.directory + + X-GNOME-Utilities + baobab.desktop + deja-dup-preferences.desktop + eog.desktop + evince.desktop + file-roller.desktop + gcalctool.desktop + gnome-dictionary.desktop + gnome-disks.desktop + gnome-font-viewer.desktop + gnome-screenshot.desktop + gnome-system-log.desktop + gnome-system-monitor.desktop + gnome-terminal.desktop + gnome-tweak-tool.desktop + gucharmap.desktop + seahorse.desktop + vinagre.desktop + yelp.desktop + + + Other @@ -145,7 +306,6 @@ Core - Settings Screensaver X-KDE-settings-accessibility X-KDE-settings-components @@ -160,8 +320,18 @@ X-KDE-settings-sound X-KDE-settings-system X-KDE-information + + gnome-eog.desktop + gnome-file-roller.desktop + gnome-gucharmap.desktop + + + Other + + + diff --git a/xdg/menus/gnome-screensavers.menu b/xdg/menus/gnome-screensavers.menu deleted file mode 100644 index 8097312..0000000 --- a/xdg/menus/gnome-screensavers.menu +++ /dev/null @@ -1,20 +0,0 @@ - - - - - Screensavers - gnome-screensaver.directory - - - - - - - - - - Screensaver - - - diff --git a/xdg/menus/gnomecc.menu b/xdg/menus/gnomecc.menu deleted file mode 100644 index 206429d..0000000 --- a/xdg/menus/gnomecc.menu +++ /dev/null @@ -1,111 +0,0 @@ - - - - Control Center - gnomecc.directory - - - - - - - - - - - Personal - Internet and Network - Hardware - System - - - - - - - Settings - - - X-GNOME-PersonalSettings - DesktopSettings - X-GNOME-NetworkSettings - HardwareSettings - X-GNOME-SystemSettings - System - - - - - - - - gnomecc.desktop - - - - - Personal - Personal.directory - - - Settings - X-GNOME-PersonalSettings - - - Settings - DesktopSettings - - - - - - - Internet and Network - InternetAndNetwork.directory - - - Settings - X-GNOME-NetworkSettings - - - - - - - Hardware - Hardware.directory - - - Settings - HardwareSettings - - - - - - - System - System.directory - - - Settings - - X-GNOME-SystemSettings - - System - - - X-GNOME-PersonalSettings - DesktopSettings - HardwareSettings - X-GNOME-NetworkSettings - - - - - - - - - diff --git a/xdg/menus/settings.menu b/xdg/menus/settings.menu deleted file mode 100644 index 588d4cb..0000000 --- a/xdg/menus/settings.menu +++ /dev/null @@ -1,57 +0,0 @@ - - - - - Desktop - X-GNOME-Menu-System.directory - - - - - - - - - - - gnomecc.desktop - - - - - Preferences - Settings.directory - - - Settings - - - System - gnomecc.desktop - - - - - - - - - Administration - Settings-System.directory - - - Settings - System - - - - - - Preferences - Administration - - - - - diff --git a/xdg/systemd/user b/xdg/systemd/user new file mode 120000 index 0000000..3bc1f8c --- /dev/null +++ b/xdg/systemd/user @@ -0,0 +1 @@ +/etc/systemd/user \ No newline at end of file