diff --git a/x11/mate-applets/Makefile b/x11/mate-applets/Makefile index 9fa56c654374..d1a72dd5d724 100644 --- a/x11/mate-applets/Makefile +++ b/x11/mate-applets/Makefile @@ -1,75 +1,74 @@ PORTNAME= mate-applets -PORTVERSION= 1.26.0 -PORTREVISION= 5 +PORTVERSION= 1.28.0 CATEGORIES= x11 mate MASTER_SITES= MATE DIST_SUBDIR= mate MAINTAINER= gnome@FreeBSD.org COMMENT= Applets components for the MATE Desktop Environment WWW= https://mate-desktop.org/ LICENSE= GPLv2 GFDL LICENSE_COMB= multi LICENSE_FILE_GPLv2= ${WRKSRC}/COPYING LICENSE_FILE_GFDL= ${WRKSRC}/COPYING-DOCS BUILD_DEPENDS= itstool:textproc/itstool LIB_DEPENDS= libgtop-2.0.so:devel/libgtop \ libdbus-1.so:devel/dbus \ libdbus-glib-1.so:devel/dbus-glib \ libupower-glib.so:sysutils/upower \ libgucharmap_2_90.so:deskutils/gucharmap \ libnotify.so:devel/libnotify PORTSCOUT= limitw:1,even USES= compiler:c11 gettext gmake gnome libtool localbase mate \ pkgconfig tar:xz xorg USE_CSTD= c11 USE_MATE= libmateweather panel USE_XORG= ice sm x11 -USE_GNOME= cairo gtk30 gtksourceview3 intltool libwnck3 libxml2 +USE_GNOME= cairo gtk30 gtksourceview4 intltool libwnck3 libxml2 USE_LDCONFIG= yes GNU_CONFIGURE= yes GNU_CONFIGURE_MANPREFIX=${PREFIX}/share CONFIGURE_ENV= OS_SYS="/usr/include" CONFIGURE_ARGS= --without-nl INSTALL_TARGET= install-strip GLIB_SCHEMAS= org.mate.drivemount.gschema.xml \ org.mate.panel.applet.charpick.gschema.xml \ org.mate.panel.applet.command.gschema.xml \ org.mate.panel.applet.geyes.gschema.xml \ org.mate.panel.applet.multiload.gschema.xml \ org.mate.panel.applet.netspeed.gschema.xml \ org.mate.panel.applet.timer.gschema.xml \ org.mate.stickynotes.gschema.xml MAKE_JOBS_UNSAFE= yes .include .if ${ARCH} != "i386" && ${ARCH} != "amd64" CONFIGURE_ARGS+=--disable-battstat CFLAGS+= -fPIC PLIST_SUB+= BATTERY="@comment " .else #CONFIGURE_ARGS+=--enable-battstat GLIB_SCHEMAS+= org.mate.panel.applet.battstat.gschema.xml PLIST_SUB+= BATTERY="" .endif # requires linux libcpufreq library # .if ${ARCH} != "i386" && ${ARCH} != "amd64" CONFIGURE_ARGS+=--disable-cpufreq PLIST_SUB+= CPUFREQ="@comment " # .else # CONFIGURE_ARGS+=--enable-cpufreq # PLIST_SUB+= CPUFREQ="" # GLIB_SCHEMAS+= org.mate.panel.applet.cpufreq.gschema.xml # .endif .include diff --git a/x11/mate-applets/distinfo b/x11/mate-applets/distinfo index fbcbe452642b..e38c6135f2a4 100644 --- a/x11/mate-applets/distinfo +++ b/x11/mate-applets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1633998272 -SHA256 (mate/mate-applets-1.26.0.tar.xz) = b7e0439b4e0c754233c2988644faa3f6ab6270970061b7a0c635d68d236fc977 -SIZE (mate/mate-applets-1.26.0.tar.xz) = 8442720 +TIMESTAMP = 1712017097 +SHA256 (mate/mate-applets-1.28.0.tar.xz) = 1b6bef6bd5d326fb9dc828ff910e4b1b9294b4660c311dc1c90310fd9c356686 +SIZE (mate/mate-applets-1.28.0.tar.xz) = 8465116 diff --git a/x11/mate-applets/files/patch-battstat_power-management.c b/x11/mate-applets/files/patch-battstat_power-management.c index c99254f7c28a..2ba1bd46514d 100644 --- a/x11/mate-applets/files/patch-battstat_power-management.c +++ b/x11/mate-applets/files/patch-battstat_power-management.c @@ -1,126 +1,115 @@ ---- battstat/power-management.c.orig 2021-08-07 11:25:17 UTC +--- battstat/power-management.c.orig 2024-02-21 23:15:11 UTC +++ battstat/power-management.c -@@ -63,6 +63,10 @@ - - static const char *apm_readinfo (BatteryStatus *status); - static int pm_initialised; -+#ifdef HAVE_HAL -+static int using_hal; -+#endif -+static int using_hal = FALSE; - #ifdef HAVE_UPOWER - static int using_upower; - #endif -@@ -174,38 +178,69 @@ apm_readinfo (BatteryStatus *status) +@@ -172,38 +172,69 @@ apm_readinfo (BatteryStatus *status) #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) +#if defined(__i386__) #include +#endif #include "acpi-freebsd.h" static struct acpi_info acpiinfo; static gboolean using_acpi; static int acpi_count; +static int acpiwatch; static struct apm_info apminfo; +gboolean acpi_freebsd_read(struct apm_info *apminfo, struct acpi_info *acpiinfo); + #define APMDEVICE "/dev/apm" +static gboolean acpi_callback (GIOChannel * chan, GIOCondition cond, gpointer data) +{ + gboolean read_error; + if (cond & (G_IO_ERR | G_IO_HUP)) { + acpi_freebsd_cleanup(&acpiinfo); + return FALSE; + } + + if (acpi_process_event(&acpiinfo, &read_error)) { + acpi_freebsd_read(&apminfo, &acpiinfo); + } + else if (read_error) { + acpi_freebsd_cleanup(&acpiinfo); + return FALSE; + } + + return TRUE; +} + static const char * apm_readinfo (BatteryStatus *status) { int fd; - + gboolean read_error; if (DEBUG) g_print ("apm_readinfo () (FreeBSD)\n"); - if (using_acpi) { + if (using_acpi && (!acpiinfo.event_inited || acpiinfo.event_fd >= 0)) { if (acpi_count <= 0) { acpi_count = 30; - acpi_process_event (&acpiinfo); - if (acpi_freebsd_read (&apminfo, &acpiinfo) == FALSE) + acpi_process_event(&acpiinfo, &read_error); + if (!acpiinfo.event_inited) { + acpi_freebsd_update(&acpiinfo); + } + if (acpi_freebsd_read(&apminfo, &acpiinfo) == FALSE) return ERR_FREEBSD_ACPI; } acpi_count--; } - else - { - /* This is how I read the information from the APM subsystem under - FreeBSD. Each time this functions is called (once every second) - the APM device is opened, read from and then closed. - */ + else if (using_acpi && acpiinfo.event_inited) { + if (acpi_freebsd_init(&acpiinfo)) { + acpiwatch = g_io_add_watch (acpiinfo.channel, + G_IO_IN | G_IO_ERR | G_IO_HUP, + acpi_callback, NULL); + acpi_freebsd_read(&apminfo, &acpiinfo); + } + } + else { +#if defined(__i386__) fd = open (APMDEVICE, O_RDONLY); if (fd == -1) { return ERR_OPEN_APMDEV; -@@ -218,6 +253,9 @@ apm_readinfo (BatteryStatus *status) +@@ -216,6 +247,9 @@ apm_readinfo (BatteryStatus *status) if (apminfo.ai_status == 0) return ERR_APM_E; +#else + return ERR_OPEN_APMDEV; +#endif } status->present = TRUE; -@@ -484,6 +522,12 @@ power_management_initialise (void (*callback) (void)) +@@ -482,6 +516,12 @@ power_management_initialise (void (*callback) (void)) } else using_acpi = FALSE; + + if (using_acpi && acpiinfo.event_fd >= 0) { + acpiwatch = g_io_add_watch (acpiinfo.channel, + G_IO_IN | G_IO_ERR | G_IO_HUP, + acpi_callback, NULL); + } #endif - pm_initialised = 1; + pm_initialised = TRUE; -@@ -517,6 +561,9 @@ power_management_cleanup (void) +@@ -515,6 +555,9 @@ power_management_cleanup (void) } #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) if (using_acpi) { + if (acpiwatch != 0) + g_source_remove(acpiwatch); + acpiwatch = 0; acpi_freebsd_cleanup (&acpiinfo); } #endif diff --git a/x11/mate-applets/files/patch-configure b/x11/mate-applets/files/patch-configure index eec0292184ca..bec86e8d4d5a 100644 --- a/x11/mate-applets/files/patch-configure +++ b/x11/mate-applets/files/patch-configure @@ -1,164 +1,155 @@ ---- configure.orig 2021-08-07 11:28:45 UTC +--- configure.orig 2024-02-21 23:17:55 UTC +++ configure -@@ -9534,7 +9534,7 @@ $as_echo_n "checking whether the $compiler linker ($LD +@@ -10229,7 +10229,7 @@ printf %s "checking whether the $compiler linker ($LD) hardcode_minus_L=no hardcode_shlibpath_var=unsupported inherit_rpath=no - link_all_deplibs=unknown + link_all_deplibs=no module_cmds= module_expsym_cmds= old_archive_from_new_cmds= -@@ -9833,7 +9833,7 @@ _LT_EOF +@@ -10529,7 +10529,7 @@ _LT_EOF wlarc= else archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' + archive_expsym_cmds='echo "{ global:" > $lib-ver~ sed -e "s|$|;|" < $export_symbols >> $lib-ver~ echo "local: *; };" >> $lib-ver~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$lib-ver -o $lib' fi ;; -@@ -9852,7 +9852,7 @@ _LT_EOF +@@ -10548,7 +10548,7 @@ _LT_EOF _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' + archive_expsym_cmds='echo "{ global:" > $lib-ver~ sed -e "s|$|;|" < $export_symbols >> $lib-ver~ echo "local: *; };" >> $lib-ver~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$lib-ver -o $lib' else ld_shlibs=no fi -@@ -9881,7 +9881,7 @@ _LT_EOF +@@ -10577,7 +10577,7 @@ _LT_EOF if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' + archive_expsym_cmds='echo "{ global:" > $lib-ver~ sed -e "s|$|;|" < $export_symbols >> $lib-ver~ echo "local: *; };" >> $lib-ver~$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$lib-ver -o $lib' else ld_shlibs=no fi -@@ -9899,7 +9899,7 @@ _LT_EOF +@@ -10595,7 +10595,7 @@ _LT_EOF *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' + archive_expsym_cmds='echo "{ global:" > $lib-ver~ sed -e "s|$|;|" < $export_symbols >> $lib-ver~ echo "local: *; };" >> $lib-ver~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$lib-ver -o $lib' else ld_shlibs=no fi -@@ -10547,7 +10547,7 @@ $as_echo "$lt_cv_irix_exported_symbol" >&6; } +@@ -11250,7 +11250,7 @@ printf "%s\n" "$lt_cv_irix_exported_symbol" >&6; } hardcode_direct_absolute=yes if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols' + archive_expsym_cmds='echo "{ global:" > $lib-ver~ sed -e "s|$|;|" < $export_symbols >> $lib-ver~ echo "local: *; };" >> $lib-ver~$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-version-script,$lib-ver' hardcode_libdir_flag_spec='$wl-rpath,$libdir' export_dynamic_flag_spec='$wl-E' else -@@ -11396,7 +11396,7 @@ freebsd* | dragonfly*) +@@ -12101,7 +12101,7 @@ freebsd* | dragonfly* | midnightbsd*) version_type=freebsd-$objformat case $version_type in freebsd-elf*) - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' soname_spec='$libname$release$shared_ext$major' need_version=no need_lib_prefix=no -@@ -12531,7 +12531,7 @@ striplib= - old_striplib= - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5 - $as_echo_n "checking whether stripping libraries is possible... " >&6; } --if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then -+if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "strip" >/dev/null; then - test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" - test -z "$striplib" && striplib="$STRIP --strip-unneeded" - { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 -@@ -17173,7 +17173,7 @@ _ACEOF +@@ -18234,7 +18234,7 @@ printf "%s\n" "#define GETTEXT_PACKAGE \"$GETTEXT_PACK test "x$prefix" = xNONE && prefix="$ac_default_prefix" test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' - ac_define_dir=`eval echo $"${datadir}/locale"` + ac_define_dir=`eval echo $localedir` ac_define_dir=`eval echo $ac_define_dir` MATELOCALEDIR="$ac_define_dir" -@@ -17595,7 +17595,7 @@ fi +@@ -18623,7 +18623,7 @@ fi ;; # list of supported OS cores that do not use libapm - i386-*-freebsd*|*-*-netbsd*|*-*-openbsd*|*-*kfreebsd*-gnu) + *-*-freebsd*|*-*-netbsd*|*-*-openbsd*|*-*kfreebsd*-gnu) if test -n "${OS_SYS}"; then ACPIINC="-I${OS_SYS}" else -@@ -18421,7 +18421,7 @@ pkgdatadir="${datadir}/mate-applets" +@@ -19586,7 +19586,7 @@ pkgdatadir="${datadir}/mate-applets" test "x$prefix" = xNONE && prefix="$ac_default_prefix" test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' - ac_define_dir=`eval echo $"${pixmapsdir}"` + ac_define_dir=`eval echo $pixmapsdir` ac_define_dir=`eval echo $ac_define_dir` MATE_PIXMAPSDIR="$ac_define_dir" -@@ -18434,7 +18434,7 @@ _ACEOF +@@ -19597,7 +19597,7 @@ printf "%s\n" "#define MATE_PIXMAPSDIR \"$ac_define_di test "x$prefix" = xNONE && prefix="$ac_default_prefix" test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' - ac_define_dir=`eval echo $"${pkgdatadir}"` + ac_define_dir=`eval echo $pkgdatadir` ac_define_dir=`eval echo $ac_define_dir` PKGDATADIR="$ac_define_dir" -@@ -18447,7 +18447,7 @@ _ACEOF +@@ -19608,7 +19608,7 @@ printf "%s\n" "#define PKGDATADIR \"$ac_define_dir\"" test "x$prefix" = xNONE && prefix="$ac_default_prefix" test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' - ac_define_dir=`eval echo $"${datadir}"` + ac_define_dir=`eval echo $datadir` ac_define_dir=`eval echo $ac_define_dir` DATADIR="$ac_define_dir" -@@ -18460,7 +18460,7 @@ _ACEOF +@@ -19619,7 +19619,7 @@ printf "%s\n" "#define DATADIR \"$ac_define_dir\"" >>c test "x$prefix" = xNONE && prefix="$ac_default_prefix" test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' - ac_define_dir=`eval echo $"${pkgdatadir}"` + ac_define_dir=`eval echo $pkgdatadir` ac_define_dir=`eval echo $ac_define_dir` PKG_DATA_DIR="$ac_define_dir" -@@ -18473,7 +18473,7 @@ _ACEOF +@@ -19630,7 +19630,7 @@ printf "%s\n" "#define PKG_DATA_DIR \"$ac_define_dir\" test "x$prefix" = xNONE && prefix="$ac_default_prefix" test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' - ac_define_dir=`eval echo $"${sysconfdir}"` + ac_define_dir=`eval echo $sysconfdir` ac_define_dir=`eval echo $ac_define_dir` SYSCONFDIR="$ac_define_dir" -@@ -18486,7 +18486,7 @@ _ACEOF +@@ -19641,7 +19641,7 @@ printf "%s\n" "#define SYSCONFDIR \"$ac_define_dir\"" test "x$prefix" = xNONE && prefix="$ac_default_prefix" test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' - ac_define_dir=`eval echo $"${libdir}"` + ac_define_dir=`eval echo $libdir` ac_define_dir=`eval echo $ac_define_dir` LIBDIR="$ac_define_dir" -@@ -18499,7 +18499,7 @@ _ACEOF +@@ -19652,7 +19652,7 @@ printf "%s\n" "#define LIBDIR \"$ac_define_dir\"" >>co test "x$prefix" = xNONE && prefix="$ac_default_prefix" test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' - ac_define_dir=`eval echo $"$prefix"` + ac_define_dir=`eval echo $prefix` ac_define_dir=`eval echo $ac_define_dir` PREFIX="$ac_define_dir" -@@ -18512,7 +18512,7 @@ _ACEOF +@@ -19663,7 +19663,7 @@ printf "%s\n" "#define PREFIX \"$ac_define_dir\"" >>co EXP_VAR=DATADIR - FROM_VAR="${datadir}" + FROM_VAR=$datadir prefix_save=$prefix exec_prefix_save=$exec_prefix diff --git a/x11/mate-applets/files/patch-cpufreq-freebsd b/x11/mate-applets/files/patch-cpufreq-freebsd deleted file mode 100644 index 7380792d9f7f..000000000000 --- a/x11/mate-applets/files/patch-cpufreq-freebsd +++ /dev/null @@ -1,410 +0,0 @@ ---- cpufreq/src/Makefile.am.orig 2021-08-07 11:25:17 UTC -+++ cpufreq/src/Makefile.am -@@ -33,6 +33,8 @@ else - mate_cpufreq_applet_SOURCES += \ - cpufreq-monitor-cpuinfo.c \ - cpufreq-monitor-cpuinfo.h \ -+ cpufreq-monitor-sysctl.c \ -+ cpufreq-monitor-sysctl.h \ - cpufreq-monitor-sysfs.c \ - cpufreq-monitor-sysfs.h - endif ---- cpufreq/src/cpufreq-monitor-cpuinfo.c.orig 2021-08-07 11:25:17 UTC -+++ cpufreq/src/cpufreq-monitor-cpuinfo.c -@@ -16,7 +16,7 @@ - * License along with this library; if not, write to the Free - * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. - * -- * Authors : Carlos García Campos -+ * Authors : Carlos Garcia Campos - */ - - #ifdef HAVE_CONFIG_H -@@ -26,6 +26,10 @@ - #include - #include - -+#ifdef __FreeBSD__ -+#include -+#include -+#endif /* __FreeBSD__ */ - #include - #include - -@@ -62,15 +66,19 @@ cpufreq_monitor_cpuinfo_new (guint cpu) - static gboolean - cpufreq_monitor_cpuinfo_run (CPUFreqMonitor *monitor) - { -+#ifndef __FreeBSD__ - gchar *file; - gchar **lines; - gchar *buffer = NULL; - gchar *p; -+#else -+ size_t len; -+#endif /* __FreeBSD__ */ - gint cpu, i; - gint cur_freq, max_freq; - gchar *governor; - GError *error = NULL; -- -+#ifndef __FreeBSD__ - file = g_strdup ("/proc/cpuinfo"); - if (!cpufreq_file_get_contents (file, &buffer, NULL, &error)) { - g_warning ("%s", error->message); -@@ -115,7 +123,12 @@ cpufreq_monitor_cpuinfo_run (CPUFreqMonitor *monitor) - - g_strfreev (lines); - g_free (buffer); -+#else -+ len = sizeof (cpu); - -+ if (sysctlbyname ("hw.clockrate", &cpu, &len, NULL, 0) == -1) -+ return FALSE; -+#endif /* __FreeBSD__ */ - governor = g_strdup (_("Frequency Scaling Unsupported")); - cur_freq = cpu * 1000; - max_freq = cur_freq; ---- cpufreq/src/cpufreq-monitor-factory.c.orig 2021-08-07 11:25:17 UTC -+++ cpufreq/src/cpufreq-monitor-factory.c -@@ -17,6 +17,7 @@ - * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. - * - * Authors : Carlos García Campos -+ * Joe Marcus Clarke - */ - - #ifdef HAVE_CONFIG_H -@@ -26,8 +27,16 @@ - #include - #include - -+#ifdef __FreeBSD__ -+#include -+#include -+#endif /* __FreeBSD__ */ -+ - #include "cpufreq-applet.h" - #include "cpufreq-utils.h" -+#ifdef __FreeBSD__ -+#include "cpufreq-monitor-sysctl.h" -+#endif /* __FreeBSD__ */ - #include "cpufreq-monitor-factory.h" - #ifdef HAVE_LIBCPUFREQ - #include "cpufreq-monitor-libcpufreq.h" -@@ -43,7 +52,7 @@ cpufreq_monitor_factory_create_monitor (guint cpu) - return cpufreq_monitor_libcpufreq_new (cpu); - #else - CPUFreqMonitor *monitor = NULL; -- -+#ifndef __FreeBSD__ - if (g_file_test ("/sys/devices/system/cpu/cpu0/cpufreq", G_FILE_TEST_EXISTS)) { - monitor = cpufreq_monitor_sysfs_new (cpu); - } else if (g_file_test ("/proc/cpuinfo", G_FILE_TEST_EXISTS)) { -@@ -59,7 +68,19 @@ cpufreq_monitor_factory_create_monitor (guint cpu) - - monitor = cpufreq_monitor_cpuinfo_new (cpu); - } -+#else -+ size_t len; - -+ if (sysctlbyname ("dev.cpu.0.freq", NULL, &len, NULL, 0) == 0) { -+ monitor = cpufreq_monitor_sysctl_new (cpu); -+ } else { -+ cpufreq_utils_display_error (_("CPU frequency scaling unsupported"), -+ ("You will not be able to modify the frequency of your machine. " -+ "Your machine may be misconfigured or not have hardware support " -+ "for CPU frequency scaling.")); -+ monitor = cpufreq_monitor_cpuinfo_new (cpu); -+ } -+#endif /* __FreeBSD__ */ - return monitor; - #endif - } ---- cpufreq/src/cpufreq-monitor-sysctl.c.orig 2021-10-12 00:51:41 UTC -+++ cpufreq/src/cpufreq-monitor-sysctl.c -@@ -0,0 +1,184 @@ -+/* -+ * Copyright (C) 2001, 2002 Free Software Foundation -+ * -+ * This library is free software; you can redistribute it and/or -+ * modify it under the terms of the GNU General Public -+ * License as published by the Free Software Foundation; either -+ * version 2 of the License, or (at your option) any later version. -+ * -+ * This library is distributed in the hope that it will be useful, -+ * but WITHOUT ANY WARRANTY; without even the implied warranty of -+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -+ * General Public License for more details. -+ * -+ * You should have received a copy of the GNU General Public -+ * License along with this library; if not, write to the Free -+ * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -+ * -+ * Authors : Joe Marcus Clarke -+ */ -+ -+#include -+#include -+ -+#include -+ -+#ifdef __FreeBSD__ -+#include -+#include -+ -+#include "cpufreq-monitor-sysctl.h" -+ -+#define PARENT_TYPE TYPE_CPUFREQ_MONITOR -+ -+#define CPUFREQ_MONITOR_GET_PROTECTED(obj) (G_TYPE_INSTANCE_GET_PRIVATE((obj), PARENT_TYPE, CPUFreqMonitorProtected)) -+ -+static void cpufreq_monitor_sysctl_class_init (CPUFreqMonitorSysctlClass *klass); -+ -+static gboolean cpufreq_monitor_sysctl_run (CPUFreqMonitor *monitor); -+static GList *cpufreq_monitor_sysctl_get_available_frequencies (CPUFreqMonitor *monitor); -+static GList *cpufreq_monitor_sysctl_get_available_governors (CPUFreqMonitor *monitor); -+ -+static gboolean cpufreq_monitor_sysctl_get (gpointer gdata); -+ -+G_DEFINE_TYPE (CPUFreqMonitorSysctl, cpufreq_monitor_sysctl, CPUFREQ_TYPE_MONITOR) -+ -+static void -+cpufreq_monitor_sysctl_init (CPUFreqMonitorSysctl *monitor) -+{ -+} -+ -+static void -+cpufreq_monitor_sysctl_class_init (CPUFreqMonitorSysctlClass *klass) -+{ -+ CPUFreqMonitorClass *monitor_class = CPUFREQ_MONITOR_CLASS (klass); -+ -+ monitor_class->run = cpufreq_monitor_sysctl_run; -+ monitor_class->get_available_frequencies = cpufreq_monitor_sysctl_get_available_frequencies; -+ monitor_class->get_available_governors = cpufreq_monitor_sysctl_get_available_governors; -+} -+ -+CPUFreqMonitor * -+cpufreq_monitor_sysctl_new (guint cpu) -+{ -+ CPUFreqMonitorSysctl *monitor; -+ -+ monitor = g_object_new (TYPE_CPUFREQ_MONITOR_SYSCTL, "cpu", cpu, NULL); -+ -+ return CPUFREQ_MONITOR (monitor); -+} -+ -+static gboolean -+cpufreq_monitor_sysctl_run (CPUFreqMonitor *monitor) -+{ -+ gint fmax, fmin, ifreq; -+ gchar *governor; -+ size_t len; -+ gchar *freq_oid; -+ guint mon_cpu; -+ GList *list; -+ -+ list = cpufreq_monitor_sysctl_get_available_frequencies (CPUFREQ_MONITOR (monitor)); -+ -+ fmax = atoi ((gchar *) list->data); -+ fmin = atoi ((gchar *) g_list_nth_data (list, (g_list_length (list) - 1))); -+ -+ g_list_foreach (list, (GFunc) g_free, NULL); -+ g_list_free (list); -+ -+ g_object_get (G_OBJECT (monitor), "cpu", &mon_cpu, NULL); -+ len = sizeof (ifreq); -+ freq_oid = g_strdup_printf ("dev.cpu.%d.freq", 0); -+ -+ if (sysctlbyname (freq_oid, &ifreq, &len, NULL, 0) == -1) { -+ g_free (freq_oid); -+ return FALSE; -+ } -+ -+ ifreq *= 1000; -+ -+ if (ifreq == fmax) -+ governor = g_strdup ("performance"); -+ else if (ifreq == fmin) -+ governor = g_strdup ("economy"); -+ else -+ governor = g_strdup ("userspace"); -+ -+ g_object_set (G_OBJECT (monitor), -+ "online", TRUE, -+ "governor", governor, -+ "frequency", ifreq, -+ "max-frequency", fmax, -+ NULL); -+ -+ g_free (governor); -+ -+ return TRUE; -+} -+ -+static GList * -+cpufreq_monitor_sysctl_get_available_frequencies (CPUFreqMonitor *monitor) -+{ -+ gchar *levels_oid, *levels; -+ gchar **levelsp, **l; -+ GList *list = NULL; -+ gint mib[4]; -+ guint mon_cpu; -+ size_t len; -+ -+ g_object_get (G_OBJECT (monitor), "cpu", &mon_cpu, NULL); -+ -+ levels_oid = g_strdup_printf ("dev.cpu.%d.freq_levels", -+ 0); -+ len = 4; -+ sysctlnametomib (levels_oid, mib, &len); -+ len = sizeof (levels); -+ g_free (levels_oid); -+ -+ if (sysctl (mib, 4, NULL, &len, NULL, 0) == -1) -+ return NULL; -+ -+ levels = g_malloc (len); -+ if (sysctl (mib, 4, levels, &len, NULL, 0) == -1) -+ { -+ g_free(levels); -+ return NULL; -+ } -+ -+ levelsp = g_strsplit (levels, " ", 0); -+ g_free (levels); -+ -+ for (l = levelsp; l && *l; l++) { -+ gchar **frpr; -+ -+ frpr = g_strsplit (*l, "/", 0); -+ if (frpr && frpr[0] != NULL) { -+ /* sysctl format is %d/%d where the -+ * first %d is the frequency, and -+ * the second is the power used in -+ * mW. -+ */ -+ int freq = atoi (frpr[0]); -+ list = -+ g_list_append (list, g_strdup_printf ("%d", freq * 1000)); -+ } -+ g_strfreev (frpr); -+ } -+ -+ g_strfreev (levelsp); -+ -+ return (list); -+} -+ -+static GList * -+cpufreq_monitor_sysctl_get_available_governors (CPUFreqMonitor *monitor) -+{ -+ GList *list = NULL; -+ -+ list = g_list_prepend (list, g_strdup ("performance")); -+ list = g_list_prepend (list, g_strdup ("userspace")); -+ list = g_list_prepend (list, g_strdup ("economy")); -+ -+ return list; -+} -+#endif /* __FreeBSD__ */ ---- cpufreq/src/cpufreq-monitor-sysctl.h.orig 2021-10-12 00:51:41 UTC -+++ cpufreq/src/cpufreq-monitor-sysctl.h -@@ -0,0 +1,49 @@ -+/* -+ * Copyright (C) 2001, 2002 Free Software Foundation -+ * -+ * This library is free software; you can redistribute it and/or -+ * modify it under the terms of the GNU General Public -+ * License as published by the Free Software Foundation; either -+ * version 2 of the License, or (at your option) any later version. -+ * -+ * This library is distributed in the hope that it will be useful, -+ * but WITHOUT ANY WARRANTY; without even the implied warranty of -+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -+ * General Public License for more details. -+ * -+ * You should have received a copy of the GNU General Public -+ * License along with this library; if not, write to the Free -+ * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -+ * -+ * Authors : Joe Marcus Clarke -+ */ -+ -+#ifndef __CPUFREQ_MONITOR_SYSCTL_H__ -+#define __CPUFREQ_MONITOR_SYSCTL_H__ -+ -+#include -+ -+#include "cpufreq-monitor.h" -+ -+#define TYPE_CPUFREQ_MONITOR_SYSCTL (cpufreq_monitor_sysctl_get_type ()) -+#define CPUFREQ_MONITOR_SYSCTL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_CPUFREQ_MONITOR_SYSCTL, CPUFreqMonitorSysctl)) -+#define CPUFREQ_MONITOR_SYSCTL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), TYPE_CPUFREQ_MONITOR_SYSCTL, CPUFreqMonitorSysctlClass)) -+#define IS_CPUFREQ_MONITOR_SYSCTL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_CPUFREQ_MONITOR_SYSCTL)) -+#define IS_CPUFREQ_MONITOR_SYSCTL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_CPUFREQ_MONITOR_SYSCTL)) -+#define CPUFREQ_MONITOR_SYSCTL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_CPUFREQ_MONITOR_SYSCTL, CPUFreqMonitorSysctlClass)) -+ -+typedef struct _CPUFreqMonitorSysctl CPUFreqMonitorSysctl; -+typedef struct _CPUFreqMonitorSysctlClass CPUFreqMonitorSysctlClass; -+ -+struct _CPUFreqMonitorSysctl { -+ CPUFreqMonitor parent; -+}; -+ -+struct _CPUFreqMonitorSysctlClass { -+ CPUFreqMonitorClass parent_class; -+}; -+ -+GType cpufreq_monitor_sysctl_get_type (void) G_GNUC_CONST; -+CPUFreqMonitor *cpufreq_monitor_sysctl_new (guint cpu); -+ -+#endif /* __CPUFREQ_MONITOR_SYSCTL_H__ */ ---- cpufreq/src/cpufreq-utils.c.orig 2021-08-07 11:25:17 UTC -+++ cpufreq/src/cpufreq-utils.c -@@ -24,6 +24,9 @@ - #include - #include - #include -+#ifdef __FreeBSD__ -+#include -+#endif - #include - #include - #include -@@ -36,9 +39,27 @@ - #include - #endif /* HAVE_POLKIT */ - -+#ifdef __FreeBSD__ - guint - cpufreq_utils_get_n_cpus (void) - { -+ size_t len; -+ static guint n_cpus = 0; -+ -+ if (n_cpus > 0) -+ return n_cpus; -+ -+ len = sizeof (n_cpus); -+ if (sysctlbyname ("hw.ncpu", &n_cpus, &len, NULL, 0) == -1) { -+ return 1; -+ } -+ -+ return n_cpus; -+} -+#else -+guint -+cpufreq_utils_get_n_cpus (void) -+{ - gint mcpu = -1; - gchar *file = NULL; - static guint n_cpus = 0; -@@ -78,6 +99,7 @@ cpufreq_utils_get_n_cpus (void) - - return 1; - } -+#endif /* __FreeBSD__ */ - - void - cpufreq_utils_display_error (const gchar *message, diff --git a/x11/mate-applets/pkg-plist b/x11/mate-applets/pkg-plist index b4e9344932bb..71de567444d2 100644 --- a/x11/mate-applets/pkg-plist +++ b/x11/mate-applets/pkg-plist @@ -1,9584 +1,9737 @@ %%BATTERY%%etc/sound/events/mate-battstat_applet.soundlist libexec/accessx-status-applet %%BATTERY%%libexec/battstat-applet libexec/command-applet libexec/mate-charpick-applet libexec/mate-drivemount-applet libexec/mate-geyes-applet libexec/mate-multiload-applet libexec/mate-netspeed-applet libexec/mateweather-applet libexec/stickynotes-applet libexec/timer-applet libexec/trashapplet -share/man/man1/mate-charpick-applet.1.gz -share/man/man1/mate-cpufreq-selector.1.gz -share/man/man1/mate-drivemount-applet.1.gz -share/man/man1/mate-geyes-applet.1.gz -share/man/man1/mate-multiload-applet.1.gz -share/man/man1/mateweather.1.gz share/dbus-1/services/org.mate.panel.applet.AccessxStatusAppletFactory.service %%BATTERY%%share/dbus-1/services/org.mate.panel.applet.BattstatAppletFactory.service share/dbus-1/services/org.mate.panel.applet.CharpickerAppletFactory.service share/dbus-1/services/org.mate.panel.applet.CommandAppletFactory.service share/dbus-1/services/org.mate.panel.applet.DriveMountAppletFactory.service share/dbus-1/services/org.mate.panel.applet.GeyesAppletFactory.service share/dbus-1/services/org.mate.panel.applet.MateWeatherAppletFactory.service share/dbus-1/services/org.mate.panel.applet.MultiLoadAppletFactory.service share/dbus-1/services/org.mate.panel.applet.NetspeedAppletFactory.service share/dbus-1/services/org.mate.panel.applet.StickyNotesAppletFactory.service share/dbus-1/services/org.mate.panel.applet.TimerAppletFactory.service share/dbus-1/services/org.mate.panel.applet.TrashAppletFactory.service share/help/C/mate-accessx-status/figures/accessx-status-applet.png share/help/C/mate-accessx-status/figures/accessx-status-disabled.png share/help/C/mate-accessx-status/figures/accessx_bounce-keys.png share/help/C/mate-accessx-status/figures/accessx_mouse-keys.png share/help/C/mate-accessx-status/figures/accessx_slow-keys.png share/help/C/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/C/mate-accessx-status/figures/accessx_sticky-keys.png share/help/C/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/C/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/C/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/C/mate-accessx-status/index.docbook share/help/C/mate-accessx-status/legal.xml %%BATTERY%%share/help/C/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/C/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/C/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/C/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/C/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/C/mate-battstat/index.docbook %%BATTERY%%share/help/C/mate-battstat/legal.xml share/help/C/mate-char-palette/figures/charpalette_applet.png share/help/C/mate-char-palette/figures/charpick-preferences.png share/help/C/mate-char-palette/figures/charpick_characters.png share/help/C/mate-char-palette/index.docbook share/help/C/mate-char-palette/legal.xml share/help/C/mate-drivemount/figures/drivemount-applet_eject.png share/help/C/mate-drivemount/figures/drivemount-applet_example.png share/help/C/mate-drivemount/figures/drivemount-applet_mount.png share/help/C/mate-drivemount/figures/drivemount-applet_open.png share/help/C/mate-drivemount/figures/drivemount-applet_status.png share/help/C/mate-drivemount/index.docbook share/help/C/mate-drivemount/legal.xml share/help/C/mate-geyes/figures/geyes_applet.png share/help/C/mate-geyes/index.docbook share/help/C/mate-geyes/legal.xml share/help/C/mate-multiload/figures/multiload-preferences.png share/help/C/mate-multiload/figures/system-monitor-applet_window.png share/help/C/mate-multiload/index.docbook share/help/C/mate-multiload/legal.xml share/help/C/mate-netspeed-applet/figures/details.png share/help/C/mate-netspeed-applet/figures/eth_sum_48.png share/help/C/mate-netspeed-applet/figures/ethernet.png share/help/C/mate-netspeed-applet/figures/loopback.png share/help/C/mate-netspeed-applet/figures/netspeed_applet.png share/help/C/mate-netspeed-applet/figures/plip.png share/help/C/mate-netspeed-applet/figures/ppp.png share/help/C/mate-netspeed-applet/figures/settings.png share/help/C/mate-netspeed-applet/figures/wavelan.png share/help/C/mate-netspeed-applet/index.docbook share/help/C/mate-netspeed-applet/legal.xml share/help/C/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/C/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/C/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/C/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/C/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/C/mate-stickynotes-applet/index.docbook share/help/C/mate-stickynotes-applet/legal.xml share/help/C/mate-trashapplet/figures/trash-applet.png share/help/C/mate-trashapplet/index.docbook share/help/C/mate-trashapplet/legal.xml share/help/C/mateweather/figures/mateweather-details.png share/help/C/mateweather/figures/mateweather-menu-prefs.png share/help/C/mateweather/figures/mateweather-prefs-general.png share/help/C/mateweather/figures/mateweather-prefs-locations.png share/help/C/mateweather/figures/mateweather_applet.png share/help/C/mateweather/figures/stock_weather-cloudy.png share/help/C/mateweather/figures/stock_weather-few-clouds.png share/help/C/mateweather/figures/stock_weather-fog.png share/help/C/mateweather/figures/stock_weather-night-clear.png share/help/C/mateweather/figures/stock_weather-night-few-clouds.png share/help/C/mateweather/figures/stock_weather-showers.png share/help/C/mateweather/figures/stock_weather-snow.png share/help/C/mateweather/figures/stock_weather-storm.png share/help/C/mateweather/figures/stock_weather-sunny.png share/help/C/mateweather/index.docbook share/help/C/mateweather/legal.xml share/help/af/mate-accessx-status/figures/accessx-status-applet.png share/help/af/mate-accessx-status/figures/accessx-status-disabled.png share/help/af/mate-accessx-status/figures/accessx_bounce-keys.png share/help/af/mate-accessx-status/figures/accessx_mouse-keys.png share/help/af/mate-accessx-status/figures/accessx_slow-keys.png share/help/af/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/af/mate-accessx-status/figures/accessx_sticky-keys.png share/help/af/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/af/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/af/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/af/mate-accessx-status/index.docbook share/help/af/mate-accessx-status/legal.xml %%BATTERY%%share/help/af/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/af/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/af/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/af/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/af/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/af/mate-battstat/index.docbook %%BATTERY%%share/help/af/mate-battstat/legal.xml share/help/af/mate-char-palette/figures/charpalette_applet.png share/help/af/mate-char-palette/figures/charpick-preferences.png share/help/af/mate-char-palette/figures/charpick_characters.png share/help/af/mate-char-palette/index.docbook share/help/af/mate-char-palette/legal.xml share/help/af/mate-drivemount/figures/drivemount-applet_eject.png share/help/af/mate-drivemount/figures/drivemount-applet_example.png share/help/af/mate-drivemount/figures/drivemount-applet_mount.png share/help/af/mate-drivemount/figures/drivemount-applet_open.png share/help/af/mate-drivemount/figures/drivemount-applet_status.png share/help/af/mate-drivemount/index.docbook share/help/af/mate-drivemount/legal.xml share/help/af/mate-geyes/figures/geyes_applet.png share/help/af/mate-geyes/index.docbook share/help/af/mate-geyes/legal.xml share/help/af/mate-multiload/figures/multiload-preferences.png share/help/af/mate-multiload/figures/system-monitor-applet_window.png share/help/af/mate-multiload/index.docbook share/help/af/mate-multiload/legal.xml share/help/af/mate-netspeed-applet/figures/details.png share/help/af/mate-netspeed-applet/figures/eth_sum_48.png share/help/af/mate-netspeed-applet/figures/ethernet.png share/help/af/mate-netspeed-applet/figures/loopback.png share/help/af/mate-netspeed-applet/figures/netspeed_applet.png share/help/af/mate-netspeed-applet/figures/plip.png share/help/af/mate-netspeed-applet/figures/ppp.png share/help/af/mate-netspeed-applet/figures/settings.png share/help/af/mate-netspeed-applet/figures/wavelan.png share/help/af/mate-netspeed-applet/index.docbook share/help/af/mate-netspeed-applet/legal.xml share/help/af/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/af/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/af/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/af/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/af/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/af/mate-stickynotes-applet/index.docbook share/help/af/mate-stickynotes-applet/legal.xml share/help/af/mate-trashapplet/figures/trash-applet.png share/help/af/mate-trashapplet/index.docbook share/help/af/mate-trashapplet/legal.xml share/help/af/mateweather/figures/mateweather-details.png share/help/af/mateweather/figures/mateweather-menu-prefs.png share/help/af/mateweather/figures/mateweather-prefs-general.png share/help/af/mateweather/figures/mateweather-prefs-locations.png share/help/af/mateweather/figures/mateweather_applet.png share/help/af/mateweather/figures/stock_weather-cloudy.png share/help/af/mateweather/figures/stock_weather-few-clouds.png share/help/af/mateweather/figures/stock_weather-fog.png share/help/af/mateweather/figures/stock_weather-night-clear.png share/help/af/mateweather/figures/stock_weather-night-few-clouds.png share/help/af/mateweather/figures/stock_weather-showers.png share/help/af/mateweather/figures/stock_weather-snow.png share/help/af/mateweather/figures/stock_weather-storm.png share/help/af/mateweather/figures/stock_weather-sunny.png share/help/af/mateweather/index.docbook share/help/af/mateweather/legal.xml share/help/am/mate-accessx-status/figures/accessx-status-applet.png share/help/am/mate-accessx-status/figures/accessx-status-disabled.png share/help/am/mate-accessx-status/figures/accessx_bounce-keys.png share/help/am/mate-accessx-status/figures/accessx_mouse-keys.png share/help/am/mate-accessx-status/figures/accessx_slow-keys.png share/help/am/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/am/mate-accessx-status/figures/accessx_sticky-keys.png share/help/am/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/am/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/am/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/am/mate-accessx-status/index.docbook share/help/am/mate-accessx-status/legal.xml %%BATTERY%%share/help/am/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/am/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/am/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/am/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/am/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/am/mate-battstat/index.docbook %%BATTERY%%share/help/am/mate-battstat/legal.xml share/help/am/mate-char-palette/figures/charpalette_applet.png share/help/am/mate-char-palette/figures/charpick-preferences.png share/help/am/mate-char-palette/figures/charpick_characters.png share/help/am/mate-char-palette/index.docbook share/help/am/mate-char-palette/legal.xml share/help/am/mate-drivemount/figures/drivemount-applet_eject.png share/help/am/mate-drivemount/figures/drivemount-applet_example.png share/help/am/mate-drivemount/figures/drivemount-applet_mount.png share/help/am/mate-drivemount/figures/drivemount-applet_open.png share/help/am/mate-drivemount/figures/drivemount-applet_status.png share/help/am/mate-drivemount/index.docbook share/help/am/mate-drivemount/legal.xml share/help/am/mate-geyes/figures/geyes_applet.png share/help/am/mate-geyes/index.docbook share/help/am/mate-geyes/legal.xml share/help/am/mate-multiload/figures/multiload-preferences.png share/help/am/mate-multiload/figures/system-monitor-applet_window.png share/help/am/mate-multiload/index.docbook share/help/am/mate-multiload/legal.xml share/help/am/mate-netspeed-applet/figures/details.png share/help/am/mate-netspeed-applet/figures/eth_sum_48.png share/help/am/mate-netspeed-applet/figures/ethernet.png share/help/am/mate-netspeed-applet/figures/loopback.png share/help/am/mate-netspeed-applet/figures/netspeed_applet.png share/help/am/mate-netspeed-applet/figures/plip.png share/help/am/mate-netspeed-applet/figures/ppp.png share/help/am/mate-netspeed-applet/figures/settings.png share/help/am/mate-netspeed-applet/figures/wavelan.png share/help/am/mate-netspeed-applet/index.docbook share/help/am/mate-netspeed-applet/legal.xml share/help/am/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/am/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/am/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/am/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/am/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/am/mate-stickynotes-applet/index.docbook share/help/am/mate-stickynotes-applet/legal.xml share/help/am/mate-trashapplet/figures/trash-applet.png share/help/am/mate-trashapplet/index.docbook share/help/am/mate-trashapplet/legal.xml share/help/am/mateweather/figures/mateweather-details.png share/help/am/mateweather/figures/mateweather-menu-prefs.png share/help/am/mateweather/figures/mateweather-prefs-general.png share/help/am/mateweather/figures/mateweather-prefs-locations.png share/help/am/mateweather/figures/mateweather_applet.png share/help/am/mateweather/figures/stock_weather-cloudy.png share/help/am/mateweather/figures/stock_weather-few-clouds.png share/help/am/mateweather/figures/stock_weather-fog.png share/help/am/mateweather/figures/stock_weather-night-clear.png share/help/am/mateweather/figures/stock_weather-night-few-clouds.png share/help/am/mateweather/figures/stock_weather-showers.png share/help/am/mateweather/figures/stock_weather-snow.png share/help/am/mateweather/figures/stock_weather-storm.png share/help/am/mateweather/figures/stock_weather-sunny.png share/help/am/mateweather/index.docbook share/help/am/mateweather/legal.xml %%BATTERY%%share/help/an/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/an/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/an/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/an/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/an/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/an/mate-battstat/index.docbook %%BATTERY%%share/help/an/mate-battstat/legal.xml share/help/an/mate-geyes/figures/geyes_applet.png share/help/an/mate-geyes/index.docbook share/help/an/mate-geyes/legal.xml share/help/an/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/an/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/an/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/an/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/an/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/an/mate-stickynotes-applet/index.docbook share/help/an/mate-stickynotes-applet/legal.xml share/help/an/mate-trashapplet/figures/trash-applet.png share/help/an/mate-trashapplet/index.docbook share/help/an/mate-trashapplet/legal.xml share/help/ar/mate-accessx-status/figures/accessx-status-applet.png share/help/ar/mate-accessx-status/figures/accessx-status-disabled.png share/help/ar/mate-accessx-status/figures/accessx_bounce-keys.png share/help/ar/mate-accessx-status/figures/accessx_mouse-keys.png share/help/ar/mate-accessx-status/figures/accessx_slow-keys.png share/help/ar/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/ar/mate-accessx-status/figures/accessx_sticky-keys.png share/help/ar/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/ar/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/ar/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/ar/mate-accessx-status/index.docbook share/help/ar/mate-accessx-status/legal.xml %%BATTERY%%share/help/ar/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/ar/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/ar/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/ar/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/ar/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/ar/mate-battstat/index.docbook %%BATTERY%%share/help/ar/mate-battstat/legal.xml share/help/ar/mate-char-palette/figures/charpalette_applet.png share/help/ar/mate-char-palette/figures/charpick-preferences.png share/help/ar/mate-char-palette/figures/charpick_characters.png share/help/ar/mate-char-palette/index.docbook share/help/ar/mate-char-palette/legal.xml share/help/ar/mate-drivemount/figures/drivemount-applet_eject.png share/help/ar/mate-drivemount/figures/drivemount-applet_example.png share/help/ar/mate-drivemount/figures/drivemount-applet_mount.png share/help/ar/mate-drivemount/figures/drivemount-applet_open.png share/help/ar/mate-drivemount/figures/drivemount-applet_status.png share/help/ar/mate-drivemount/index.docbook share/help/ar/mate-drivemount/legal.xml share/help/ar/mate-geyes/figures/geyes_applet.png share/help/ar/mate-geyes/index.docbook share/help/ar/mate-geyes/legal.xml share/help/ar/mate-multiload/figures/multiload-preferences.png share/help/ar/mate-multiload/figures/system-monitor-applet_window.png share/help/ar/mate-multiload/index.docbook share/help/ar/mate-multiload/legal.xml share/help/ar/mate-netspeed-applet/figures/details.png share/help/ar/mate-netspeed-applet/figures/eth_sum_48.png share/help/ar/mate-netspeed-applet/figures/ethernet.png share/help/ar/mate-netspeed-applet/figures/loopback.png share/help/ar/mate-netspeed-applet/figures/netspeed_applet.png share/help/ar/mate-netspeed-applet/figures/plip.png share/help/ar/mate-netspeed-applet/figures/ppp.png share/help/ar/mate-netspeed-applet/figures/settings.png share/help/ar/mate-netspeed-applet/figures/wavelan.png share/help/ar/mate-netspeed-applet/index.docbook share/help/ar/mate-netspeed-applet/legal.xml share/help/ar/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/ar/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/ar/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/ar/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/ar/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/ar/mate-stickynotes-applet/index.docbook share/help/ar/mate-stickynotes-applet/legal.xml share/help/ar/mate-trashapplet/figures/trash-applet.png share/help/ar/mate-trashapplet/index.docbook share/help/ar/mate-trashapplet/legal.xml share/help/ar/mateweather/figures/mateweather-details.png share/help/ar/mateweather/figures/mateweather-menu-prefs.png share/help/ar/mateweather/figures/mateweather-prefs-general.png share/help/ar/mateweather/figures/mateweather-prefs-locations.png share/help/ar/mateweather/figures/mateweather_applet.png share/help/ar/mateweather/figures/stock_weather-cloudy.png share/help/ar/mateweather/figures/stock_weather-few-clouds.png share/help/ar/mateweather/figures/stock_weather-fog.png share/help/ar/mateweather/figures/stock_weather-night-clear.png share/help/ar/mateweather/figures/stock_weather-night-few-clouds.png share/help/ar/mateweather/figures/stock_weather-showers.png share/help/ar/mateweather/figures/stock_weather-snow.png share/help/ar/mateweather/figures/stock_weather-storm.png share/help/ar/mateweather/figures/stock_weather-sunny.png share/help/ar/mateweather/index.docbook share/help/ar/mateweather/legal.xml share/help/as/mate-accessx-status/figures/accessx-status-applet.png share/help/as/mate-accessx-status/figures/accessx-status-disabled.png share/help/as/mate-accessx-status/figures/accessx_bounce-keys.png share/help/as/mate-accessx-status/figures/accessx_mouse-keys.png share/help/as/mate-accessx-status/figures/accessx_slow-keys.png share/help/as/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/as/mate-accessx-status/figures/accessx_sticky-keys.png share/help/as/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/as/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/as/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/as/mate-accessx-status/index.docbook share/help/as/mate-accessx-status/legal.xml %%BATTERY%%share/help/as/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/as/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/as/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/as/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/as/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/as/mate-battstat/index.docbook %%BATTERY%%share/help/as/mate-battstat/legal.xml share/help/as/mate-char-palette/figures/charpalette_applet.png share/help/as/mate-char-palette/figures/charpick-preferences.png share/help/as/mate-char-palette/figures/charpick_characters.png share/help/as/mate-char-palette/index.docbook share/help/as/mate-char-palette/legal.xml share/help/as/mate-drivemount/figures/drivemount-applet_eject.png share/help/as/mate-drivemount/figures/drivemount-applet_example.png share/help/as/mate-drivemount/figures/drivemount-applet_mount.png share/help/as/mate-drivemount/figures/drivemount-applet_open.png share/help/as/mate-drivemount/figures/drivemount-applet_status.png share/help/as/mate-drivemount/index.docbook share/help/as/mate-drivemount/legal.xml share/help/as/mate-geyes/figures/geyes_applet.png share/help/as/mate-geyes/index.docbook share/help/as/mate-geyes/legal.xml share/help/as/mate-multiload/figures/multiload-preferences.png share/help/as/mate-multiload/figures/system-monitor-applet_window.png share/help/as/mate-multiload/index.docbook share/help/as/mate-multiload/legal.xml share/help/as/mate-netspeed-applet/figures/details.png share/help/as/mate-netspeed-applet/figures/eth_sum_48.png share/help/as/mate-netspeed-applet/figures/ethernet.png share/help/as/mate-netspeed-applet/figures/loopback.png share/help/as/mate-netspeed-applet/figures/netspeed_applet.png share/help/as/mate-netspeed-applet/figures/plip.png share/help/as/mate-netspeed-applet/figures/ppp.png share/help/as/mate-netspeed-applet/figures/settings.png share/help/as/mate-netspeed-applet/figures/wavelan.png share/help/as/mate-netspeed-applet/index.docbook share/help/as/mate-netspeed-applet/legal.xml share/help/as/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/as/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/as/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/as/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/as/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/as/mate-stickynotes-applet/index.docbook share/help/as/mate-stickynotes-applet/legal.xml share/help/as/mate-trashapplet/figures/trash-applet.png share/help/as/mate-trashapplet/index.docbook share/help/as/mate-trashapplet/legal.xml share/help/as/mateweather/figures/mateweather-details.png share/help/as/mateweather/figures/mateweather-menu-prefs.png share/help/as/mateweather/figures/mateweather-prefs-general.png share/help/as/mateweather/figures/mateweather-prefs-locations.png share/help/as/mateweather/figures/mateweather_applet.png share/help/as/mateweather/figures/stock_weather-cloudy.png share/help/as/mateweather/figures/stock_weather-few-clouds.png share/help/as/mateweather/figures/stock_weather-fog.png share/help/as/mateweather/figures/stock_weather-night-clear.png share/help/as/mateweather/figures/stock_weather-night-few-clouds.png share/help/as/mateweather/figures/stock_weather-showers.png share/help/as/mateweather/figures/stock_weather-snow.png share/help/as/mateweather/figures/stock_weather-storm.png share/help/as/mateweather/figures/stock_weather-sunny.png share/help/as/mateweather/index.docbook share/help/as/mateweather/legal.xml share/help/ast/mate-accessx-status/figures/accessx-status-applet.png share/help/ast/mate-accessx-status/figures/accessx-status-disabled.png share/help/ast/mate-accessx-status/figures/accessx_bounce-keys.png share/help/ast/mate-accessx-status/figures/accessx_mouse-keys.png share/help/ast/mate-accessx-status/figures/accessx_slow-keys.png share/help/ast/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/ast/mate-accessx-status/figures/accessx_sticky-keys.png share/help/ast/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/ast/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/ast/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/ast/mate-accessx-status/index.docbook share/help/ast/mate-accessx-status/legal.xml %%BATTERY%%share/help/ast/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/ast/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/ast/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/ast/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/ast/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/ast/mate-battstat/index.docbook %%BATTERY%%share/help/ast/mate-battstat/legal.xml share/help/ast/mate-char-palette/figures/charpalette_applet.png share/help/ast/mate-char-palette/figures/charpick-preferences.png share/help/ast/mate-char-palette/figures/charpick_characters.png share/help/ast/mate-char-palette/index.docbook share/help/ast/mate-char-palette/legal.xml share/help/ast/mate-drivemount/figures/drivemount-applet_eject.png share/help/ast/mate-drivemount/figures/drivemount-applet_example.png share/help/ast/mate-drivemount/figures/drivemount-applet_mount.png share/help/ast/mate-drivemount/figures/drivemount-applet_open.png share/help/ast/mate-drivemount/figures/drivemount-applet_status.png share/help/ast/mate-drivemount/index.docbook share/help/ast/mate-drivemount/legal.xml share/help/ast/mate-geyes/figures/geyes_applet.png share/help/ast/mate-geyes/index.docbook share/help/ast/mate-geyes/legal.xml share/help/ast/mate-multiload/figures/multiload-preferences.png share/help/ast/mate-multiload/figures/system-monitor-applet_window.png share/help/ast/mate-multiload/index.docbook share/help/ast/mate-multiload/legal.xml share/help/ast/mate-netspeed-applet/figures/details.png share/help/ast/mate-netspeed-applet/figures/eth_sum_48.png share/help/ast/mate-netspeed-applet/figures/ethernet.png share/help/ast/mate-netspeed-applet/figures/loopback.png share/help/ast/mate-netspeed-applet/figures/netspeed_applet.png share/help/ast/mate-netspeed-applet/figures/plip.png share/help/ast/mate-netspeed-applet/figures/ppp.png share/help/ast/mate-netspeed-applet/figures/settings.png share/help/ast/mate-netspeed-applet/figures/wavelan.png share/help/ast/mate-netspeed-applet/index.docbook share/help/ast/mate-netspeed-applet/legal.xml share/help/ast/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/ast/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/ast/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/ast/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/ast/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/ast/mate-stickynotes-applet/index.docbook share/help/ast/mate-stickynotes-applet/legal.xml share/help/ast/mate-trashapplet/figures/trash-applet.png share/help/ast/mate-trashapplet/index.docbook share/help/ast/mate-trashapplet/legal.xml share/help/ast/mateweather/figures/mateweather-details.png share/help/ast/mateweather/figures/mateweather-menu-prefs.png share/help/ast/mateweather/figures/mateweather-prefs-general.png share/help/ast/mateweather/figures/mateweather-prefs-locations.png share/help/ast/mateweather/figures/mateweather_applet.png share/help/ast/mateweather/figures/stock_weather-cloudy.png share/help/ast/mateweather/figures/stock_weather-few-clouds.png share/help/ast/mateweather/figures/stock_weather-fog.png share/help/ast/mateweather/figures/stock_weather-night-clear.png share/help/ast/mateweather/figures/stock_weather-night-few-clouds.png share/help/ast/mateweather/figures/stock_weather-showers.png share/help/ast/mateweather/figures/stock_weather-snow.png share/help/ast/mateweather/figures/stock_weather-storm.png share/help/ast/mateweather/figures/stock_weather-sunny.png share/help/ast/mateweather/index.docbook share/help/ast/mateweather/legal.xml share/help/az/mate-accessx-status/figures/accessx-status-applet.png share/help/az/mate-accessx-status/figures/accessx-status-disabled.png share/help/az/mate-accessx-status/figures/accessx_bounce-keys.png share/help/az/mate-accessx-status/figures/accessx_mouse-keys.png share/help/az/mate-accessx-status/figures/accessx_slow-keys.png share/help/az/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/az/mate-accessx-status/figures/accessx_sticky-keys.png share/help/az/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/az/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/az/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/az/mate-accessx-status/index.docbook share/help/az/mate-accessx-status/legal.xml %%BATTERY%%share/help/az/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/az/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/az/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/az/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/az/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/az/mate-battstat/index.docbook %%BATTERY%%share/help/az/mate-battstat/legal.xml share/help/az/mate-char-palette/figures/charpalette_applet.png share/help/az/mate-char-palette/figures/charpick-preferences.png share/help/az/mate-char-palette/figures/charpick_characters.png share/help/az/mate-char-palette/index.docbook share/help/az/mate-char-palette/legal.xml share/help/az/mate-drivemount/figures/drivemount-applet_eject.png share/help/az/mate-drivemount/figures/drivemount-applet_example.png share/help/az/mate-drivemount/figures/drivemount-applet_mount.png share/help/az/mate-drivemount/figures/drivemount-applet_open.png share/help/az/mate-drivemount/figures/drivemount-applet_status.png share/help/az/mate-drivemount/index.docbook share/help/az/mate-drivemount/legal.xml share/help/az/mate-geyes/figures/geyes_applet.png share/help/az/mate-geyes/index.docbook share/help/az/mate-geyes/legal.xml share/help/az/mate-multiload/figures/multiload-preferences.png share/help/az/mate-multiload/figures/system-monitor-applet_window.png share/help/az/mate-multiload/index.docbook share/help/az/mate-multiload/legal.xml share/help/az/mate-netspeed-applet/figures/details.png share/help/az/mate-netspeed-applet/figures/eth_sum_48.png share/help/az/mate-netspeed-applet/figures/ethernet.png share/help/az/mate-netspeed-applet/figures/loopback.png share/help/az/mate-netspeed-applet/figures/netspeed_applet.png share/help/az/mate-netspeed-applet/figures/plip.png share/help/az/mate-netspeed-applet/figures/ppp.png share/help/az/mate-netspeed-applet/figures/settings.png share/help/az/mate-netspeed-applet/figures/wavelan.png share/help/az/mate-netspeed-applet/index.docbook share/help/az/mate-netspeed-applet/legal.xml share/help/az/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/az/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/az/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/az/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/az/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/az/mate-stickynotes-applet/index.docbook share/help/az/mate-stickynotes-applet/legal.xml share/help/az/mate-trashapplet/figures/trash-applet.png share/help/az/mate-trashapplet/index.docbook share/help/az/mate-trashapplet/legal.xml share/help/az/mateweather/figures/mateweather-details.png share/help/az/mateweather/figures/mateweather-menu-prefs.png share/help/az/mateweather/figures/mateweather-prefs-general.png share/help/az/mateweather/figures/mateweather-prefs-locations.png share/help/az/mateweather/figures/mateweather_applet.png share/help/az/mateweather/figures/stock_weather-cloudy.png share/help/az/mateweather/figures/stock_weather-few-clouds.png share/help/az/mateweather/figures/stock_weather-fog.png share/help/az/mateweather/figures/stock_weather-night-clear.png share/help/az/mateweather/figures/stock_weather-night-few-clouds.png share/help/az/mateweather/figures/stock_weather-showers.png share/help/az/mateweather/figures/stock_weather-snow.png share/help/az/mateweather/figures/stock_weather-storm.png share/help/az/mateweather/figures/stock_weather-sunny.png share/help/az/mateweather/index.docbook share/help/az/mateweather/legal.xml share/help/be/mate-accessx-status/figures/accessx-status-applet.png share/help/be/mate-accessx-status/figures/accessx-status-disabled.png share/help/be/mate-accessx-status/figures/accessx_bounce-keys.png share/help/be/mate-accessx-status/figures/accessx_mouse-keys.png share/help/be/mate-accessx-status/figures/accessx_slow-keys.png share/help/be/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/be/mate-accessx-status/figures/accessx_sticky-keys.png share/help/be/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/be/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/be/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/be/mate-accessx-status/index.docbook share/help/be/mate-accessx-status/legal.xml %%BATTERY%%share/help/be/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/be/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/be/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/be/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/be/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/be/mate-battstat/index.docbook %%BATTERY%%share/help/be/mate-battstat/legal.xml share/help/be/mate-char-palette/figures/charpalette_applet.png share/help/be/mate-char-palette/figures/charpick-preferences.png share/help/be/mate-char-palette/figures/charpick_characters.png share/help/be/mate-char-palette/index.docbook share/help/be/mate-char-palette/legal.xml share/help/be/mate-drivemount/figures/drivemount-applet_eject.png share/help/be/mate-drivemount/figures/drivemount-applet_example.png share/help/be/mate-drivemount/figures/drivemount-applet_mount.png share/help/be/mate-drivemount/figures/drivemount-applet_open.png share/help/be/mate-drivemount/figures/drivemount-applet_status.png share/help/be/mate-drivemount/index.docbook share/help/be/mate-drivemount/legal.xml share/help/be/mate-geyes/figures/geyes_applet.png share/help/be/mate-geyes/index.docbook share/help/be/mate-geyes/legal.xml share/help/be/mate-multiload/figures/multiload-preferences.png share/help/be/mate-multiload/figures/system-monitor-applet_window.png share/help/be/mate-multiload/index.docbook share/help/be/mate-multiload/legal.xml share/help/be/mate-netspeed-applet/figures/details.png share/help/be/mate-netspeed-applet/figures/eth_sum_48.png share/help/be/mate-netspeed-applet/figures/ethernet.png share/help/be/mate-netspeed-applet/figures/loopback.png share/help/be/mate-netspeed-applet/figures/netspeed_applet.png share/help/be/mate-netspeed-applet/figures/plip.png share/help/be/mate-netspeed-applet/figures/ppp.png share/help/be/mate-netspeed-applet/figures/settings.png share/help/be/mate-netspeed-applet/figures/wavelan.png share/help/be/mate-netspeed-applet/index.docbook share/help/be/mate-netspeed-applet/legal.xml share/help/be/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/be/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/be/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/be/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/be/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/be/mate-stickynotes-applet/index.docbook share/help/be/mate-stickynotes-applet/legal.xml share/help/be/mate-trashapplet/figures/trash-applet.png share/help/be/mate-trashapplet/index.docbook share/help/be/mate-trashapplet/legal.xml share/help/be/mateweather/figures/mateweather-details.png share/help/be/mateweather/figures/mateweather-menu-prefs.png share/help/be/mateweather/figures/mateweather-prefs-general.png share/help/be/mateweather/figures/mateweather-prefs-locations.png share/help/be/mateweather/figures/mateweather_applet.png share/help/be/mateweather/figures/stock_weather-cloudy.png share/help/be/mateweather/figures/stock_weather-few-clouds.png share/help/be/mateweather/figures/stock_weather-fog.png share/help/be/mateweather/figures/stock_weather-night-clear.png share/help/be/mateweather/figures/stock_weather-night-few-clouds.png share/help/be/mateweather/figures/stock_weather-showers.png share/help/be/mateweather/figures/stock_weather-snow.png share/help/be/mateweather/figures/stock_weather-storm.png share/help/be/mateweather/figures/stock_weather-sunny.png share/help/be/mateweather/index.docbook share/help/be/mateweather/legal.xml share/help/bg/mate-accessx-status/figures/accessx-status-applet.png share/help/bg/mate-accessx-status/figures/accessx-status-disabled.png share/help/bg/mate-accessx-status/figures/accessx_bounce-keys.png share/help/bg/mate-accessx-status/figures/accessx_mouse-keys.png share/help/bg/mate-accessx-status/figures/accessx_slow-keys.png share/help/bg/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/bg/mate-accessx-status/figures/accessx_sticky-keys.png share/help/bg/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/bg/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/bg/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/bg/mate-accessx-status/index.docbook share/help/bg/mate-accessx-status/legal.xml %%BATTERY%%share/help/bg/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/bg/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/bg/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/bg/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/bg/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/bg/mate-battstat/index.docbook %%BATTERY%%share/help/bg/mate-battstat/legal.xml share/help/bg/mate-char-palette/figures/charpalette_applet.png share/help/bg/mate-char-palette/figures/charpick-preferences.png share/help/bg/mate-char-palette/figures/charpick_characters.png share/help/bg/mate-char-palette/index.docbook share/help/bg/mate-char-palette/legal.xml share/help/bg/mate-drivemount/figures/drivemount-applet_eject.png share/help/bg/mate-drivemount/figures/drivemount-applet_example.png share/help/bg/mate-drivemount/figures/drivemount-applet_mount.png share/help/bg/mate-drivemount/figures/drivemount-applet_open.png share/help/bg/mate-drivemount/figures/drivemount-applet_status.png share/help/bg/mate-drivemount/index.docbook share/help/bg/mate-drivemount/legal.xml share/help/bg/mate-geyes/figures/geyes_applet.png share/help/bg/mate-geyes/index.docbook share/help/bg/mate-geyes/legal.xml share/help/bg/mate-multiload/figures/multiload-preferences.png share/help/bg/mate-multiload/figures/system-monitor-applet_window.png share/help/bg/mate-multiload/index.docbook share/help/bg/mate-multiload/legal.xml share/help/bg/mate-netspeed-applet/figures/details.png share/help/bg/mate-netspeed-applet/figures/eth_sum_48.png share/help/bg/mate-netspeed-applet/figures/ethernet.png share/help/bg/mate-netspeed-applet/figures/loopback.png share/help/bg/mate-netspeed-applet/figures/netspeed_applet.png share/help/bg/mate-netspeed-applet/figures/plip.png share/help/bg/mate-netspeed-applet/figures/ppp.png share/help/bg/mate-netspeed-applet/figures/settings.png share/help/bg/mate-netspeed-applet/figures/wavelan.png share/help/bg/mate-netspeed-applet/index.docbook share/help/bg/mate-netspeed-applet/legal.xml share/help/bg/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/bg/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/bg/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/bg/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/bg/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/bg/mate-stickynotes-applet/index.docbook share/help/bg/mate-stickynotes-applet/legal.xml share/help/bg/mate-trashapplet/figures/trash-applet.png share/help/bg/mate-trashapplet/index.docbook share/help/bg/mate-trashapplet/legal.xml share/help/bg/mateweather/figures/mateweather-details.png share/help/bg/mateweather/figures/mateweather-menu-prefs.png share/help/bg/mateweather/figures/mateweather-prefs-general.png share/help/bg/mateweather/figures/mateweather-prefs-locations.png share/help/bg/mateweather/figures/mateweather_applet.png share/help/bg/mateweather/figures/stock_weather-cloudy.png share/help/bg/mateweather/figures/stock_weather-few-clouds.png share/help/bg/mateweather/figures/stock_weather-fog.png share/help/bg/mateweather/figures/stock_weather-night-clear.png share/help/bg/mateweather/figures/stock_weather-night-few-clouds.png share/help/bg/mateweather/figures/stock_weather-showers.png share/help/bg/mateweather/figures/stock_weather-snow.png share/help/bg/mateweather/figures/stock_weather-storm.png share/help/bg/mateweather/figures/stock_weather-sunny.png share/help/bg/mateweather/index.docbook share/help/bg/mateweather/legal.xml share/help/bn/mate-accessx-status/figures/accessx-status-applet.png share/help/bn/mate-accessx-status/figures/accessx-status-disabled.png share/help/bn/mate-accessx-status/figures/accessx_bounce-keys.png share/help/bn/mate-accessx-status/figures/accessx_mouse-keys.png share/help/bn/mate-accessx-status/figures/accessx_slow-keys.png share/help/bn/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/bn/mate-accessx-status/figures/accessx_sticky-keys.png share/help/bn/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/bn/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/bn/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/bn/mate-accessx-status/index.docbook share/help/bn/mate-accessx-status/legal.xml %%BATTERY%%share/help/bn/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/bn/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/bn/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/bn/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/bn/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/bn/mate-battstat/index.docbook %%BATTERY%%share/help/bn/mate-battstat/legal.xml share/help/bn/mate-char-palette/figures/charpalette_applet.png share/help/bn/mate-char-palette/figures/charpick-preferences.png share/help/bn/mate-char-palette/figures/charpick_characters.png share/help/bn/mate-char-palette/index.docbook share/help/bn/mate-char-palette/legal.xml share/help/bn/mate-drivemount/figures/drivemount-applet_eject.png share/help/bn/mate-drivemount/figures/drivemount-applet_example.png share/help/bn/mate-drivemount/figures/drivemount-applet_mount.png share/help/bn/mate-drivemount/figures/drivemount-applet_open.png share/help/bn/mate-drivemount/figures/drivemount-applet_status.png share/help/bn/mate-drivemount/index.docbook share/help/bn/mate-drivemount/legal.xml share/help/bn/mate-geyes/figures/geyes_applet.png share/help/bn/mate-geyes/index.docbook share/help/bn/mate-geyes/legal.xml share/help/bn/mate-multiload/figures/multiload-preferences.png share/help/bn/mate-multiload/figures/system-monitor-applet_window.png share/help/bn/mate-multiload/index.docbook share/help/bn/mate-multiload/legal.xml share/help/bn/mate-netspeed-applet/figures/details.png share/help/bn/mate-netspeed-applet/figures/eth_sum_48.png share/help/bn/mate-netspeed-applet/figures/ethernet.png share/help/bn/mate-netspeed-applet/figures/loopback.png share/help/bn/mate-netspeed-applet/figures/netspeed_applet.png share/help/bn/mate-netspeed-applet/figures/plip.png share/help/bn/mate-netspeed-applet/figures/ppp.png share/help/bn/mate-netspeed-applet/figures/settings.png share/help/bn/mate-netspeed-applet/figures/wavelan.png share/help/bn/mate-netspeed-applet/index.docbook share/help/bn/mate-netspeed-applet/legal.xml share/help/bn/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/bn/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/bn/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/bn/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/bn/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/bn/mate-stickynotes-applet/index.docbook share/help/bn/mate-stickynotes-applet/legal.xml share/help/bn/mate-trashapplet/figures/trash-applet.png share/help/bn/mate-trashapplet/index.docbook share/help/bn/mate-trashapplet/legal.xml share/help/bn/mateweather/figures/mateweather-details.png share/help/bn/mateweather/figures/mateweather-menu-prefs.png share/help/bn/mateweather/figures/mateweather-prefs-general.png share/help/bn/mateweather/figures/mateweather-prefs-locations.png share/help/bn/mateweather/figures/mateweather_applet.png share/help/bn/mateweather/figures/stock_weather-cloudy.png share/help/bn/mateweather/figures/stock_weather-few-clouds.png share/help/bn/mateweather/figures/stock_weather-fog.png share/help/bn/mateweather/figures/stock_weather-night-clear.png share/help/bn/mateweather/figures/stock_weather-night-few-clouds.png share/help/bn/mateweather/figures/stock_weather-showers.png share/help/bn/mateweather/figures/stock_weather-snow.png share/help/bn/mateweather/figures/stock_weather-storm.png share/help/bn/mateweather/figures/stock_weather-sunny.png share/help/bn/mateweather/index.docbook share/help/bn/mateweather/legal.xml share/help/bn_IN/mate-accessx-status/figures/accessx-status-applet.png share/help/bn_IN/mate-accessx-status/figures/accessx-status-disabled.png share/help/bn_IN/mate-accessx-status/figures/accessx_bounce-keys.png share/help/bn_IN/mate-accessx-status/figures/accessx_mouse-keys.png share/help/bn_IN/mate-accessx-status/figures/accessx_slow-keys.png share/help/bn_IN/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/bn_IN/mate-accessx-status/figures/accessx_sticky-keys.png share/help/bn_IN/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/bn_IN/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/bn_IN/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/bn_IN/mate-accessx-status/index.docbook share/help/bn_IN/mate-accessx-status/legal.xml %%BATTERY%%share/help/bn_IN/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/bn_IN/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/bn_IN/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/bn_IN/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/bn_IN/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/bn_IN/mate-battstat/index.docbook %%BATTERY%%share/help/bn_IN/mate-battstat/legal.xml share/help/bn_IN/mate-char-palette/figures/charpalette_applet.png share/help/bn_IN/mate-char-palette/figures/charpick-preferences.png share/help/bn_IN/mate-char-palette/figures/charpick_characters.png share/help/bn_IN/mate-char-palette/index.docbook share/help/bn_IN/mate-char-palette/legal.xml share/help/bn_IN/mate-drivemount/figures/drivemount-applet_eject.png share/help/bn_IN/mate-drivemount/figures/drivemount-applet_example.png share/help/bn_IN/mate-drivemount/figures/drivemount-applet_mount.png share/help/bn_IN/mate-drivemount/figures/drivemount-applet_open.png share/help/bn_IN/mate-drivemount/figures/drivemount-applet_status.png share/help/bn_IN/mate-drivemount/index.docbook share/help/bn_IN/mate-drivemount/legal.xml share/help/bn_IN/mate-geyes/figures/geyes_applet.png share/help/bn_IN/mate-geyes/index.docbook share/help/bn_IN/mate-geyes/legal.xml share/help/bn_IN/mate-multiload/figures/multiload-preferences.png share/help/bn_IN/mate-multiload/figures/system-monitor-applet_window.png share/help/bn_IN/mate-multiload/index.docbook share/help/bn_IN/mate-multiload/legal.xml share/help/bn_IN/mate-netspeed-applet/figures/details.png share/help/bn_IN/mate-netspeed-applet/figures/eth_sum_48.png share/help/bn_IN/mate-netspeed-applet/figures/ethernet.png share/help/bn_IN/mate-netspeed-applet/figures/loopback.png share/help/bn_IN/mate-netspeed-applet/figures/netspeed_applet.png share/help/bn_IN/mate-netspeed-applet/figures/plip.png share/help/bn_IN/mate-netspeed-applet/figures/ppp.png share/help/bn_IN/mate-netspeed-applet/figures/settings.png share/help/bn_IN/mate-netspeed-applet/figures/wavelan.png share/help/bn_IN/mate-netspeed-applet/index.docbook share/help/bn_IN/mate-netspeed-applet/legal.xml share/help/bn_IN/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/bn_IN/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/bn_IN/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/bn_IN/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/bn_IN/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/bn_IN/mate-stickynotes-applet/index.docbook share/help/bn_IN/mate-stickynotes-applet/legal.xml share/help/bn_IN/mate-trashapplet/figures/trash-applet.png share/help/bn_IN/mate-trashapplet/index.docbook share/help/bn_IN/mate-trashapplet/legal.xml share/help/bn_IN/mateweather/figures/mateweather-details.png share/help/bn_IN/mateweather/figures/mateweather-menu-prefs.png share/help/bn_IN/mateweather/figures/mateweather-prefs-general.png share/help/bn_IN/mateweather/figures/mateweather-prefs-locations.png share/help/bn_IN/mateweather/figures/mateweather_applet.png share/help/bn_IN/mateweather/figures/stock_weather-cloudy.png share/help/bn_IN/mateweather/figures/stock_weather-few-clouds.png share/help/bn_IN/mateweather/figures/stock_weather-fog.png share/help/bn_IN/mateweather/figures/stock_weather-night-clear.png share/help/bn_IN/mateweather/figures/stock_weather-night-few-clouds.png share/help/bn_IN/mateweather/figures/stock_weather-showers.png share/help/bn_IN/mateweather/figures/stock_weather-snow.png share/help/bn_IN/mateweather/figures/stock_weather-storm.png share/help/bn_IN/mateweather/figures/stock_weather-sunny.png share/help/bn_IN/mateweather/index.docbook share/help/bn_IN/mateweather/legal.xml share/help/br/mate-accessx-status/figures/accessx-status-applet.png share/help/br/mate-accessx-status/figures/accessx-status-disabled.png share/help/br/mate-accessx-status/figures/accessx_bounce-keys.png share/help/br/mate-accessx-status/figures/accessx_mouse-keys.png share/help/br/mate-accessx-status/figures/accessx_slow-keys.png share/help/br/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/br/mate-accessx-status/figures/accessx_sticky-keys.png share/help/br/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/br/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/br/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/br/mate-accessx-status/index.docbook share/help/br/mate-accessx-status/legal.xml %%BATTERY%%share/help/br/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/br/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/br/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/br/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/br/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/br/mate-battstat/index.docbook %%BATTERY%%share/help/br/mate-battstat/legal.xml share/help/br/mate-char-palette/figures/charpalette_applet.png share/help/br/mate-char-palette/figures/charpick-preferences.png share/help/br/mate-char-palette/figures/charpick_characters.png share/help/br/mate-char-palette/index.docbook share/help/br/mate-char-palette/legal.xml share/help/br/mate-drivemount/figures/drivemount-applet_eject.png share/help/br/mate-drivemount/figures/drivemount-applet_example.png share/help/br/mate-drivemount/figures/drivemount-applet_mount.png share/help/br/mate-drivemount/figures/drivemount-applet_open.png share/help/br/mate-drivemount/figures/drivemount-applet_status.png share/help/br/mate-drivemount/index.docbook share/help/br/mate-drivemount/legal.xml share/help/br/mate-geyes/figures/geyes_applet.png share/help/br/mate-geyes/index.docbook share/help/br/mate-geyes/legal.xml share/help/br/mate-multiload/figures/multiload-preferences.png share/help/br/mate-multiload/figures/system-monitor-applet_window.png share/help/br/mate-multiload/index.docbook share/help/br/mate-multiload/legal.xml share/help/br/mate-netspeed-applet/figures/details.png share/help/br/mate-netspeed-applet/figures/eth_sum_48.png share/help/br/mate-netspeed-applet/figures/ethernet.png share/help/br/mate-netspeed-applet/figures/loopback.png share/help/br/mate-netspeed-applet/figures/netspeed_applet.png share/help/br/mate-netspeed-applet/figures/plip.png share/help/br/mate-netspeed-applet/figures/ppp.png share/help/br/mate-netspeed-applet/figures/settings.png share/help/br/mate-netspeed-applet/figures/wavelan.png share/help/br/mate-netspeed-applet/index.docbook share/help/br/mate-netspeed-applet/legal.xml share/help/br/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/br/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/br/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/br/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/br/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/br/mate-stickynotes-applet/index.docbook share/help/br/mate-stickynotes-applet/legal.xml share/help/br/mate-trashapplet/figures/trash-applet.png share/help/br/mate-trashapplet/index.docbook share/help/br/mate-trashapplet/legal.xml share/help/br/mateweather/figures/mateweather-details.png share/help/br/mateweather/figures/mateweather-menu-prefs.png share/help/br/mateweather/figures/mateweather-prefs-general.png share/help/br/mateweather/figures/mateweather-prefs-locations.png share/help/br/mateweather/figures/mateweather_applet.png share/help/br/mateweather/figures/stock_weather-cloudy.png share/help/br/mateweather/figures/stock_weather-few-clouds.png share/help/br/mateweather/figures/stock_weather-fog.png share/help/br/mateweather/figures/stock_weather-night-clear.png share/help/br/mateweather/figures/stock_weather-night-few-clouds.png share/help/br/mateweather/figures/stock_weather-showers.png share/help/br/mateweather/figures/stock_weather-snow.png share/help/br/mateweather/figures/stock_weather-storm.png share/help/br/mateweather/figures/stock_weather-sunny.png share/help/br/mateweather/index.docbook share/help/br/mateweather/legal.xml share/help/bs/mate-accessx-status/figures/accessx-status-applet.png share/help/bs/mate-accessx-status/figures/accessx-status-disabled.png share/help/bs/mate-accessx-status/figures/accessx_bounce-keys.png share/help/bs/mate-accessx-status/figures/accessx_mouse-keys.png share/help/bs/mate-accessx-status/figures/accessx_slow-keys.png share/help/bs/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/bs/mate-accessx-status/figures/accessx_sticky-keys.png share/help/bs/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/bs/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/bs/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/bs/mate-accessx-status/index.docbook share/help/bs/mate-accessx-status/legal.xml %%BATTERY%%share/help/bs/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/bs/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/bs/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/bs/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/bs/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/bs/mate-battstat/index.docbook %%BATTERY%%share/help/bs/mate-battstat/legal.xml share/help/bs/mate-char-palette/figures/charpalette_applet.png share/help/bs/mate-char-palette/figures/charpick-preferences.png share/help/bs/mate-char-palette/figures/charpick_characters.png share/help/bs/mate-char-palette/index.docbook share/help/bs/mate-char-palette/legal.xml share/help/bs/mate-drivemount/figures/drivemount-applet_eject.png share/help/bs/mate-drivemount/figures/drivemount-applet_example.png share/help/bs/mate-drivemount/figures/drivemount-applet_mount.png share/help/bs/mate-drivemount/figures/drivemount-applet_open.png share/help/bs/mate-drivemount/figures/drivemount-applet_status.png share/help/bs/mate-drivemount/index.docbook share/help/bs/mate-drivemount/legal.xml share/help/bs/mate-geyes/figures/geyes_applet.png share/help/bs/mate-geyes/index.docbook share/help/bs/mate-geyes/legal.xml share/help/bs/mate-multiload/figures/multiload-preferences.png share/help/bs/mate-multiload/figures/system-monitor-applet_window.png share/help/bs/mate-multiload/index.docbook share/help/bs/mate-multiload/legal.xml share/help/bs/mate-netspeed-applet/figures/details.png share/help/bs/mate-netspeed-applet/figures/eth_sum_48.png share/help/bs/mate-netspeed-applet/figures/ethernet.png share/help/bs/mate-netspeed-applet/figures/loopback.png share/help/bs/mate-netspeed-applet/figures/netspeed_applet.png share/help/bs/mate-netspeed-applet/figures/plip.png share/help/bs/mate-netspeed-applet/figures/ppp.png share/help/bs/mate-netspeed-applet/figures/settings.png share/help/bs/mate-netspeed-applet/figures/wavelan.png share/help/bs/mate-netspeed-applet/index.docbook share/help/bs/mate-netspeed-applet/legal.xml share/help/bs/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/bs/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/bs/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/bs/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/bs/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/bs/mate-stickynotes-applet/index.docbook share/help/bs/mate-stickynotes-applet/legal.xml share/help/bs/mate-trashapplet/figures/trash-applet.png share/help/bs/mate-trashapplet/index.docbook share/help/bs/mate-trashapplet/legal.xml share/help/bs/mateweather/figures/mateweather-details.png share/help/bs/mateweather/figures/mateweather-menu-prefs.png share/help/bs/mateweather/figures/mateweather-prefs-general.png share/help/bs/mateweather/figures/mateweather-prefs-locations.png share/help/bs/mateweather/figures/mateweather_applet.png share/help/bs/mateweather/figures/stock_weather-cloudy.png share/help/bs/mateweather/figures/stock_weather-few-clouds.png share/help/bs/mateweather/figures/stock_weather-fog.png share/help/bs/mateweather/figures/stock_weather-night-clear.png share/help/bs/mateweather/figures/stock_weather-night-few-clouds.png share/help/bs/mateweather/figures/stock_weather-showers.png share/help/bs/mateweather/figures/stock_weather-snow.png share/help/bs/mateweather/figures/stock_weather-storm.png share/help/bs/mateweather/figures/stock_weather-sunny.png share/help/bs/mateweather/index.docbook share/help/bs/mateweather/legal.xml share/help/ca/mate-accessx-status/figures/accessx-status-applet.png share/help/ca/mate-accessx-status/figures/accessx-status-disabled.png share/help/ca/mate-accessx-status/figures/accessx_bounce-keys.png share/help/ca/mate-accessx-status/figures/accessx_mouse-keys.png share/help/ca/mate-accessx-status/figures/accessx_slow-keys.png share/help/ca/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/ca/mate-accessx-status/figures/accessx_sticky-keys.png share/help/ca/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/ca/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/ca/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/ca/mate-accessx-status/index.docbook share/help/ca/mate-accessx-status/legal.xml %%BATTERY%%share/help/ca/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/ca/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/ca/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/ca/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/ca/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/ca/mate-battstat/index.docbook %%BATTERY%%share/help/ca/mate-battstat/legal.xml share/help/ca/mate-char-palette/figures/charpalette_applet.png share/help/ca/mate-char-palette/figures/charpick-preferences.png share/help/ca/mate-char-palette/figures/charpick_characters.png share/help/ca/mate-char-palette/index.docbook share/help/ca/mate-char-palette/legal.xml share/help/ca/mate-drivemount/figures/drivemount-applet_eject.png share/help/ca/mate-drivemount/figures/drivemount-applet_example.png share/help/ca/mate-drivemount/figures/drivemount-applet_mount.png share/help/ca/mate-drivemount/figures/drivemount-applet_open.png share/help/ca/mate-drivemount/figures/drivemount-applet_status.png share/help/ca/mate-drivemount/index.docbook share/help/ca/mate-drivemount/legal.xml share/help/ca/mate-geyes/figures/geyes_applet.png share/help/ca/mate-geyes/index.docbook share/help/ca/mate-geyes/legal.xml share/help/ca/mate-multiload/figures/multiload-preferences.png share/help/ca/mate-multiload/figures/system-monitor-applet_window.png share/help/ca/mate-multiload/index.docbook share/help/ca/mate-multiload/legal.xml share/help/ca/mate-netspeed-applet/figures/details.png share/help/ca/mate-netspeed-applet/figures/eth_sum_48.png share/help/ca/mate-netspeed-applet/figures/ethernet.png share/help/ca/mate-netspeed-applet/figures/loopback.png share/help/ca/mate-netspeed-applet/figures/netspeed_applet.png share/help/ca/mate-netspeed-applet/figures/plip.png share/help/ca/mate-netspeed-applet/figures/ppp.png share/help/ca/mate-netspeed-applet/figures/settings.png share/help/ca/mate-netspeed-applet/figures/wavelan.png share/help/ca/mate-netspeed-applet/index.docbook share/help/ca/mate-netspeed-applet/legal.xml share/help/ca/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/ca/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/ca/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/ca/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/ca/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/ca/mate-stickynotes-applet/index.docbook share/help/ca/mate-stickynotes-applet/legal.xml share/help/ca/mate-trashapplet/figures/trash-applet.png share/help/ca/mate-trashapplet/index.docbook share/help/ca/mate-trashapplet/legal.xml share/help/ca/mateweather/figures/mateweather-details.png share/help/ca/mateweather/figures/mateweather-menu-prefs.png share/help/ca/mateweather/figures/mateweather-prefs-general.png share/help/ca/mateweather/figures/mateweather-prefs-locations.png share/help/ca/mateweather/figures/mateweather_applet.png share/help/ca/mateweather/figures/stock_weather-cloudy.png share/help/ca/mateweather/figures/stock_weather-few-clouds.png share/help/ca/mateweather/figures/stock_weather-fog.png share/help/ca/mateweather/figures/stock_weather-night-clear.png share/help/ca/mateweather/figures/stock_weather-night-few-clouds.png share/help/ca/mateweather/figures/stock_weather-showers.png share/help/ca/mateweather/figures/stock_weather-snow.png share/help/ca/mateweather/figures/stock_weather-storm.png share/help/ca/mateweather/figures/stock_weather-sunny.png share/help/ca/mateweather/index.docbook share/help/ca/mateweather/legal.xml share/help/ca@valencia/mate-accessx-status/figures/accessx-status-applet.png share/help/ca@valencia/mate-accessx-status/figures/accessx-status-disabled.png share/help/ca@valencia/mate-accessx-status/figures/accessx_bounce-keys.png share/help/ca@valencia/mate-accessx-status/figures/accessx_mouse-keys.png share/help/ca@valencia/mate-accessx-status/figures/accessx_slow-keys.png share/help/ca@valencia/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/ca@valencia/mate-accessx-status/figures/accessx_sticky-keys.png share/help/ca@valencia/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/ca@valencia/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/ca@valencia/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/ca@valencia/mate-accessx-status/index.docbook share/help/ca@valencia/mate-accessx-status/legal.xml %%BATTERY%%share/help/ca@valencia/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/ca@valencia/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/ca@valencia/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/ca@valencia/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/ca@valencia/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/ca@valencia/mate-battstat/index.docbook %%BATTERY%%share/help/ca@valencia/mate-battstat/legal.xml share/help/ca@valencia/mate-char-palette/figures/charpalette_applet.png share/help/ca@valencia/mate-char-palette/figures/charpick-preferences.png share/help/ca@valencia/mate-char-palette/figures/charpick_characters.png share/help/ca@valencia/mate-char-palette/index.docbook share/help/ca@valencia/mate-char-palette/legal.xml share/help/ca@valencia/mate-drivemount/figures/drivemount-applet_eject.png share/help/ca@valencia/mate-drivemount/figures/drivemount-applet_example.png share/help/ca@valencia/mate-drivemount/figures/drivemount-applet_mount.png share/help/ca@valencia/mate-drivemount/figures/drivemount-applet_open.png share/help/ca@valencia/mate-drivemount/figures/drivemount-applet_status.png share/help/ca@valencia/mate-drivemount/index.docbook share/help/ca@valencia/mate-drivemount/legal.xml share/help/ca@valencia/mate-geyes/figures/geyes_applet.png share/help/ca@valencia/mate-geyes/index.docbook share/help/ca@valencia/mate-geyes/legal.xml share/help/ca@valencia/mate-multiload/figures/multiload-preferences.png share/help/ca@valencia/mate-multiload/figures/system-monitor-applet_window.png share/help/ca@valencia/mate-multiload/index.docbook share/help/ca@valencia/mate-multiload/legal.xml share/help/ca@valencia/mate-netspeed-applet/figures/details.png share/help/ca@valencia/mate-netspeed-applet/figures/eth_sum_48.png share/help/ca@valencia/mate-netspeed-applet/figures/ethernet.png share/help/ca@valencia/mate-netspeed-applet/figures/loopback.png share/help/ca@valencia/mate-netspeed-applet/figures/netspeed_applet.png share/help/ca@valencia/mate-netspeed-applet/figures/plip.png share/help/ca@valencia/mate-netspeed-applet/figures/ppp.png share/help/ca@valencia/mate-netspeed-applet/figures/settings.png share/help/ca@valencia/mate-netspeed-applet/figures/wavelan.png share/help/ca@valencia/mate-netspeed-applet/index.docbook share/help/ca@valencia/mate-netspeed-applet/legal.xml share/help/ca@valencia/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/ca@valencia/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/ca@valencia/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/ca@valencia/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/ca@valencia/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/ca@valencia/mate-stickynotes-applet/index.docbook share/help/ca@valencia/mate-stickynotes-applet/legal.xml share/help/ca@valencia/mate-trashapplet/figures/trash-applet.png share/help/ca@valencia/mate-trashapplet/index.docbook share/help/ca@valencia/mate-trashapplet/legal.xml share/help/ca@valencia/mateweather/figures/mateweather-details.png share/help/ca@valencia/mateweather/figures/mateweather-menu-prefs.png share/help/ca@valencia/mateweather/figures/mateweather-prefs-general.png share/help/ca@valencia/mateweather/figures/mateweather-prefs-locations.png share/help/ca@valencia/mateweather/figures/mateweather_applet.png share/help/ca@valencia/mateweather/figures/stock_weather-cloudy.png share/help/ca@valencia/mateweather/figures/stock_weather-few-clouds.png share/help/ca@valencia/mateweather/figures/stock_weather-fog.png share/help/ca@valencia/mateweather/figures/stock_weather-night-clear.png share/help/ca@valencia/mateweather/figures/stock_weather-night-few-clouds.png share/help/ca@valencia/mateweather/figures/stock_weather-showers.png share/help/ca@valencia/mateweather/figures/stock_weather-snow.png share/help/ca@valencia/mateweather/figures/stock_weather-storm.png share/help/ca@valencia/mateweather/figures/stock_weather-sunny.png share/help/ca@valencia/mateweather/index.docbook share/help/ca@valencia/mateweather/legal.xml share/help/cmn/mate-accessx-status/figures/accessx-status-applet.png share/help/cmn/mate-accessx-status/figures/accessx-status-disabled.png share/help/cmn/mate-accessx-status/figures/accessx_bounce-keys.png share/help/cmn/mate-accessx-status/figures/accessx_mouse-keys.png share/help/cmn/mate-accessx-status/figures/accessx_slow-keys.png share/help/cmn/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/cmn/mate-accessx-status/figures/accessx_sticky-keys.png share/help/cmn/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/cmn/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/cmn/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/cmn/mate-accessx-status/index.docbook share/help/cmn/mate-accessx-status/legal.xml %%BATTERY%%share/help/cmn/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/cmn/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/cmn/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/cmn/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/cmn/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/cmn/mate-battstat/index.docbook %%BATTERY%%share/help/cmn/mate-battstat/legal.xml share/help/cmn/mate-char-palette/figures/charpalette_applet.png share/help/cmn/mate-char-palette/figures/charpick-preferences.png share/help/cmn/mate-char-palette/figures/charpick_characters.png share/help/cmn/mate-char-palette/index.docbook share/help/cmn/mate-char-palette/legal.xml share/help/cmn/mate-drivemount/figures/drivemount-applet_eject.png share/help/cmn/mate-drivemount/figures/drivemount-applet_example.png share/help/cmn/mate-drivemount/figures/drivemount-applet_mount.png share/help/cmn/mate-drivemount/figures/drivemount-applet_open.png share/help/cmn/mate-drivemount/figures/drivemount-applet_status.png share/help/cmn/mate-drivemount/index.docbook share/help/cmn/mate-drivemount/legal.xml share/help/cmn/mate-geyes/figures/geyes_applet.png share/help/cmn/mate-geyes/index.docbook share/help/cmn/mate-geyes/legal.xml share/help/cmn/mate-multiload/figures/multiload-preferences.png share/help/cmn/mate-multiload/figures/system-monitor-applet_window.png share/help/cmn/mate-multiload/index.docbook share/help/cmn/mate-multiload/legal.xml share/help/cmn/mate-netspeed-applet/figures/details.png share/help/cmn/mate-netspeed-applet/figures/eth_sum_48.png share/help/cmn/mate-netspeed-applet/figures/ethernet.png share/help/cmn/mate-netspeed-applet/figures/loopback.png share/help/cmn/mate-netspeed-applet/figures/netspeed_applet.png share/help/cmn/mate-netspeed-applet/figures/plip.png share/help/cmn/mate-netspeed-applet/figures/ppp.png share/help/cmn/mate-netspeed-applet/figures/settings.png share/help/cmn/mate-netspeed-applet/figures/wavelan.png share/help/cmn/mate-netspeed-applet/index.docbook share/help/cmn/mate-netspeed-applet/legal.xml share/help/cmn/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/cmn/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/cmn/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/cmn/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/cmn/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/cmn/mate-stickynotes-applet/index.docbook share/help/cmn/mate-stickynotes-applet/legal.xml share/help/cmn/mate-trashapplet/figures/trash-applet.png share/help/cmn/mate-trashapplet/index.docbook share/help/cmn/mate-trashapplet/legal.xml share/help/cmn/mateweather/figures/mateweather-details.png share/help/cmn/mateweather/figures/mateweather-menu-prefs.png share/help/cmn/mateweather/figures/mateweather-prefs-general.png share/help/cmn/mateweather/figures/mateweather-prefs-locations.png share/help/cmn/mateweather/figures/mateweather_applet.png share/help/cmn/mateweather/figures/stock_weather-cloudy.png share/help/cmn/mateweather/figures/stock_weather-few-clouds.png share/help/cmn/mateweather/figures/stock_weather-fog.png share/help/cmn/mateweather/figures/stock_weather-night-clear.png share/help/cmn/mateweather/figures/stock_weather-night-few-clouds.png share/help/cmn/mateweather/figures/stock_weather-showers.png share/help/cmn/mateweather/figures/stock_weather-snow.png share/help/cmn/mateweather/figures/stock_weather-storm.png share/help/cmn/mateweather/figures/stock_weather-sunny.png share/help/cmn/mateweather/index.docbook share/help/cmn/mateweather/legal.xml share/help/crh/mate-accessx-status/figures/accessx-status-applet.png share/help/crh/mate-accessx-status/figures/accessx-status-disabled.png share/help/crh/mate-accessx-status/figures/accessx_bounce-keys.png share/help/crh/mate-accessx-status/figures/accessx_mouse-keys.png share/help/crh/mate-accessx-status/figures/accessx_slow-keys.png share/help/crh/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/crh/mate-accessx-status/figures/accessx_sticky-keys.png share/help/crh/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/crh/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/crh/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/crh/mate-accessx-status/index.docbook share/help/crh/mate-accessx-status/legal.xml %%BATTERY%%share/help/crh/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/crh/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/crh/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/crh/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/crh/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/crh/mate-battstat/index.docbook %%BATTERY%%share/help/crh/mate-battstat/legal.xml share/help/crh/mate-char-palette/figures/charpalette_applet.png share/help/crh/mate-char-palette/figures/charpick-preferences.png share/help/crh/mate-char-palette/figures/charpick_characters.png share/help/crh/mate-char-palette/index.docbook share/help/crh/mate-char-palette/legal.xml share/help/crh/mate-drivemount/figures/drivemount-applet_eject.png share/help/crh/mate-drivemount/figures/drivemount-applet_example.png share/help/crh/mate-drivemount/figures/drivemount-applet_mount.png share/help/crh/mate-drivemount/figures/drivemount-applet_open.png share/help/crh/mate-drivemount/figures/drivemount-applet_status.png share/help/crh/mate-drivemount/index.docbook share/help/crh/mate-drivemount/legal.xml share/help/crh/mate-geyes/figures/geyes_applet.png share/help/crh/mate-geyes/index.docbook share/help/crh/mate-geyes/legal.xml share/help/crh/mate-multiload/figures/multiload-preferences.png share/help/crh/mate-multiload/figures/system-monitor-applet_window.png share/help/crh/mate-multiload/index.docbook share/help/crh/mate-multiload/legal.xml share/help/crh/mate-netspeed-applet/figures/details.png share/help/crh/mate-netspeed-applet/figures/eth_sum_48.png share/help/crh/mate-netspeed-applet/figures/ethernet.png share/help/crh/mate-netspeed-applet/figures/loopback.png share/help/crh/mate-netspeed-applet/figures/netspeed_applet.png share/help/crh/mate-netspeed-applet/figures/plip.png share/help/crh/mate-netspeed-applet/figures/ppp.png share/help/crh/mate-netspeed-applet/figures/settings.png share/help/crh/mate-netspeed-applet/figures/wavelan.png share/help/crh/mate-netspeed-applet/index.docbook share/help/crh/mate-netspeed-applet/legal.xml share/help/crh/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/crh/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/crh/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/crh/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/crh/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/crh/mate-stickynotes-applet/index.docbook share/help/crh/mate-stickynotes-applet/legal.xml share/help/crh/mate-trashapplet/figures/trash-applet.png share/help/crh/mate-trashapplet/index.docbook share/help/crh/mate-trashapplet/legal.xml share/help/crh/mateweather/figures/mateweather-details.png share/help/crh/mateweather/figures/mateweather-menu-prefs.png share/help/crh/mateweather/figures/mateweather-prefs-general.png share/help/crh/mateweather/figures/mateweather-prefs-locations.png share/help/crh/mateweather/figures/mateweather_applet.png share/help/crh/mateweather/figures/stock_weather-cloudy.png share/help/crh/mateweather/figures/stock_weather-few-clouds.png share/help/crh/mateweather/figures/stock_weather-fog.png share/help/crh/mateweather/figures/stock_weather-night-clear.png share/help/crh/mateweather/figures/stock_weather-night-few-clouds.png share/help/crh/mateweather/figures/stock_weather-showers.png share/help/crh/mateweather/figures/stock_weather-snow.png share/help/crh/mateweather/figures/stock_weather-storm.png share/help/crh/mateweather/figures/stock_weather-sunny.png share/help/crh/mateweather/index.docbook share/help/crh/mateweather/legal.xml share/help/cs/mate-accessx-status/figures/accessx-status-applet.png share/help/cs/mate-accessx-status/figures/accessx-status-disabled.png share/help/cs/mate-accessx-status/figures/accessx_bounce-keys.png share/help/cs/mate-accessx-status/figures/accessx_mouse-keys.png share/help/cs/mate-accessx-status/figures/accessx_slow-keys.png share/help/cs/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/cs/mate-accessx-status/figures/accessx_sticky-keys.png share/help/cs/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/cs/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/cs/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/cs/mate-accessx-status/index.docbook share/help/cs/mate-accessx-status/legal.xml %%BATTERY%%share/help/cs/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/cs/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/cs/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/cs/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/cs/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/cs/mate-battstat/index.docbook %%BATTERY%%share/help/cs/mate-battstat/legal.xml share/help/cs/mate-char-palette/figures/charpalette_applet.png share/help/cs/mate-char-palette/figures/charpick-preferences.png share/help/cs/mate-char-palette/figures/charpick_characters.png share/help/cs/mate-char-palette/index.docbook share/help/cs/mate-char-palette/legal.xml share/help/cs/mate-drivemount/figures/drivemount-applet_eject.png share/help/cs/mate-drivemount/figures/drivemount-applet_example.png share/help/cs/mate-drivemount/figures/drivemount-applet_mount.png share/help/cs/mate-drivemount/figures/drivemount-applet_open.png share/help/cs/mate-drivemount/figures/drivemount-applet_status.png share/help/cs/mate-drivemount/index.docbook share/help/cs/mate-drivemount/legal.xml share/help/cs/mate-geyes/figures/geyes_applet.png share/help/cs/mate-geyes/index.docbook share/help/cs/mate-geyes/legal.xml share/help/cs/mate-multiload/figures/multiload-preferences.png share/help/cs/mate-multiload/figures/system-monitor-applet_window.png share/help/cs/mate-multiload/index.docbook share/help/cs/mate-multiload/legal.xml share/help/cs/mate-netspeed-applet/figures/details.png share/help/cs/mate-netspeed-applet/figures/eth_sum_48.png share/help/cs/mate-netspeed-applet/figures/ethernet.png share/help/cs/mate-netspeed-applet/figures/loopback.png share/help/cs/mate-netspeed-applet/figures/netspeed_applet.png share/help/cs/mate-netspeed-applet/figures/plip.png share/help/cs/mate-netspeed-applet/figures/ppp.png share/help/cs/mate-netspeed-applet/figures/settings.png share/help/cs/mate-netspeed-applet/figures/wavelan.png share/help/cs/mate-netspeed-applet/index.docbook share/help/cs/mate-netspeed-applet/legal.xml share/help/cs/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/cs/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/cs/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/cs/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/cs/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/cs/mate-stickynotes-applet/index.docbook share/help/cs/mate-stickynotes-applet/legal.xml share/help/cs/mate-trashapplet/figures/trash-applet.png share/help/cs/mate-trashapplet/index.docbook share/help/cs/mate-trashapplet/legal.xml share/help/cs/mateweather/figures/mateweather-details.png share/help/cs/mateweather/figures/mateweather-menu-prefs.png share/help/cs/mateweather/figures/mateweather-prefs-general.png share/help/cs/mateweather/figures/mateweather-prefs-locations.png share/help/cs/mateweather/figures/mateweather_applet.png share/help/cs/mateweather/figures/stock_weather-cloudy.png share/help/cs/mateweather/figures/stock_weather-few-clouds.png share/help/cs/mateweather/figures/stock_weather-fog.png share/help/cs/mateweather/figures/stock_weather-night-clear.png share/help/cs/mateweather/figures/stock_weather-night-few-clouds.png share/help/cs/mateweather/figures/stock_weather-showers.png share/help/cs/mateweather/figures/stock_weather-snow.png share/help/cs/mateweather/figures/stock_weather-storm.png share/help/cs/mateweather/figures/stock_weather-sunny.png share/help/cs/mateweather/index.docbook share/help/cs/mateweather/legal.xml share/help/csb/mate-geyes/figures/geyes_applet.png share/help/csb/mate-geyes/index.docbook share/help/csb/mate-geyes/legal.xml share/help/csb/mate-trashapplet/figures/trash-applet.png share/help/csb/mate-trashapplet/index.docbook share/help/csb/mate-trashapplet/legal.xml share/help/cy/mate-accessx-status/figures/accessx-status-applet.png share/help/cy/mate-accessx-status/figures/accessx-status-disabled.png share/help/cy/mate-accessx-status/figures/accessx_bounce-keys.png share/help/cy/mate-accessx-status/figures/accessx_mouse-keys.png share/help/cy/mate-accessx-status/figures/accessx_slow-keys.png share/help/cy/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/cy/mate-accessx-status/figures/accessx_sticky-keys.png share/help/cy/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/cy/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/cy/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/cy/mate-accessx-status/index.docbook share/help/cy/mate-accessx-status/legal.xml %%BATTERY%%share/help/cy/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/cy/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/cy/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/cy/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/cy/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/cy/mate-battstat/index.docbook %%BATTERY%%share/help/cy/mate-battstat/legal.xml share/help/cy/mate-char-palette/figures/charpalette_applet.png share/help/cy/mate-char-palette/figures/charpick-preferences.png share/help/cy/mate-char-palette/figures/charpick_characters.png share/help/cy/mate-char-palette/index.docbook share/help/cy/mate-char-palette/legal.xml share/help/cy/mate-drivemount/figures/drivemount-applet_eject.png share/help/cy/mate-drivemount/figures/drivemount-applet_example.png share/help/cy/mate-drivemount/figures/drivemount-applet_mount.png share/help/cy/mate-drivemount/figures/drivemount-applet_open.png share/help/cy/mate-drivemount/figures/drivemount-applet_status.png share/help/cy/mate-drivemount/index.docbook share/help/cy/mate-drivemount/legal.xml share/help/cy/mate-geyes/figures/geyes_applet.png share/help/cy/mate-geyes/index.docbook share/help/cy/mate-geyes/legal.xml share/help/cy/mate-multiload/figures/multiload-preferences.png share/help/cy/mate-multiload/figures/system-monitor-applet_window.png share/help/cy/mate-multiload/index.docbook share/help/cy/mate-multiload/legal.xml share/help/cy/mate-netspeed-applet/figures/details.png share/help/cy/mate-netspeed-applet/figures/eth_sum_48.png share/help/cy/mate-netspeed-applet/figures/ethernet.png share/help/cy/mate-netspeed-applet/figures/loopback.png share/help/cy/mate-netspeed-applet/figures/netspeed_applet.png share/help/cy/mate-netspeed-applet/figures/plip.png share/help/cy/mate-netspeed-applet/figures/ppp.png share/help/cy/mate-netspeed-applet/figures/settings.png share/help/cy/mate-netspeed-applet/figures/wavelan.png share/help/cy/mate-netspeed-applet/index.docbook share/help/cy/mate-netspeed-applet/legal.xml share/help/cy/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/cy/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/cy/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/cy/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/cy/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/cy/mate-stickynotes-applet/index.docbook share/help/cy/mate-stickynotes-applet/legal.xml share/help/cy/mate-trashapplet/figures/trash-applet.png share/help/cy/mate-trashapplet/index.docbook share/help/cy/mate-trashapplet/legal.xml share/help/cy/mateweather/figures/mateweather-details.png share/help/cy/mateweather/figures/mateweather-menu-prefs.png share/help/cy/mateweather/figures/mateweather-prefs-general.png share/help/cy/mateweather/figures/mateweather-prefs-locations.png share/help/cy/mateweather/figures/mateweather_applet.png share/help/cy/mateweather/figures/stock_weather-cloudy.png share/help/cy/mateweather/figures/stock_weather-few-clouds.png share/help/cy/mateweather/figures/stock_weather-fog.png share/help/cy/mateweather/figures/stock_weather-night-clear.png share/help/cy/mateweather/figures/stock_weather-night-few-clouds.png share/help/cy/mateweather/figures/stock_weather-showers.png share/help/cy/mateweather/figures/stock_weather-snow.png share/help/cy/mateweather/figures/stock_weather-storm.png share/help/cy/mateweather/figures/stock_weather-sunny.png share/help/cy/mateweather/index.docbook share/help/cy/mateweather/legal.xml share/help/da/mate-accessx-status/figures/accessx-status-applet.png share/help/da/mate-accessx-status/figures/accessx-status-disabled.png share/help/da/mate-accessx-status/figures/accessx_bounce-keys.png share/help/da/mate-accessx-status/figures/accessx_mouse-keys.png share/help/da/mate-accessx-status/figures/accessx_slow-keys.png share/help/da/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/da/mate-accessx-status/figures/accessx_sticky-keys.png share/help/da/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/da/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/da/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/da/mate-accessx-status/index.docbook share/help/da/mate-accessx-status/legal.xml %%BATTERY%%share/help/da/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/da/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/da/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/da/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/da/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/da/mate-battstat/index.docbook %%BATTERY%%share/help/da/mate-battstat/legal.xml share/help/da/mate-char-palette/figures/charpalette_applet.png share/help/da/mate-char-palette/figures/charpick-preferences.png share/help/da/mate-char-palette/figures/charpick_characters.png share/help/da/mate-char-palette/index.docbook share/help/da/mate-char-palette/legal.xml share/help/da/mate-drivemount/figures/drivemount-applet_eject.png share/help/da/mate-drivemount/figures/drivemount-applet_example.png share/help/da/mate-drivemount/figures/drivemount-applet_mount.png share/help/da/mate-drivemount/figures/drivemount-applet_open.png share/help/da/mate-drivemount/figures/drivemount-applet_status.png share/help/da/mate-drivemount/index.docbook share/help/da/mate-drivemount/legal.xml share/help/da/mate-geyes/figures/geyes_applet.png share/help/da/mate-geyes/index.docbook share/help/da/mate-geyes/legal.xml share/help/da/mate-multiload/figures/multiload-preferences.png share/help/da/mate-multiload/figures/system-monitor-applet_window.png share/help/da/mate-multiload/index.docbook share/help/da/mate-multiload/legal.xml share/help/da/mate-netspeed-applet/figures/details.png share/help/da/mate-netspeed-applet/figures/eth_sum_48.png share/help/da/mate-netspeed-applet/figures/ethernet.png share/help/da/mate-netspeed-applet/figures/loopback.png share/help/da/mate-netspeed-applet/figures/netspeed_applet.png share/help/da/mate-netspeed-applet/figures/plip.png share/help/da/mate-netspeed-applet/figures/ppp.png share/help/da/mate-netspeed-applet/figures/settings.png share/help/da/mate-netspeed-applet/figures/wavelan.png share/help/da/mate-netspeed-applet/index.docbook share/help/da/mate-netspeed-applet/legal.xml share/help/da/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/da/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/da/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/da/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/da/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/da/mate-stickynotes-applet/index.docbook share/help/da/mate-stickynotes-applet/legal.xml share/help/da/mate-trashapplet/figures/trash-applet.png share/help/da/mate-trashapplet/index.docbook share/help/da/mate-trashapplet/legal.xml share/help/da/mateweather/figures/mateweather-details.png share/help/da/mateweather/figures/mateweather-menu-prefs.png share/help/da/mateweather/figures/mateweather-prefs-general.png share/help/da/mateweather/figures/mateweather-prefs-locations.png share/help/da/mateweather/figures/mateweather_applet.png share/help/da/mateweather/figures/stock_weather-cloudy.png share/help/da/mateweather/figures/stock_weather-few-clouds.png share/help/da/mateweather/figures/stock_weather-fog.png share/help/da/mateweather/figures/stock_weather-night-clear.png share/help/da/mateweather/figures/stock_weather-night-few-clouds.png share/help/da/mateweather/figures/stock_weather-showers.png share/help/da/mateweather/figures/stock_weather-snow.png share/help/da/mateweather/figures/stock_weather-storm.png share/help/da/mateweather/figures/stock_weather-sunny.png share/help/da/mateweather/index.docbook share/help/da/mateweather/legal.xml share/help/de/mate-accessx-status/figures/accessx-status-applet.png share/help/de/mate-accessx-status/figures/accessx-status-disabled.png share/help/de/mate-accessx-status/figures/accessx_bounce-keys.png share/help/de/mate-accessx-status/figures/accessx_mouse-keys.png share/help/de/mate-accessx-status/figures/accessx_slow-keys.png share/help/de/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/de/mate-accessx-status/figures/accessx_sticky-keys.png share/help/de/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/de/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/de/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/de/mate-accessx-status/index.docbook share/help/de/mate-accessx-status/legal.xml %%BATTERY%%share/help/de/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/de/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/de/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/de/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/de/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/de/mate-battstat/index.docbook %%BATTERY%%share/help/de/mate-battstat/legal.xml share/help/de/mate-char-palette/figures/charpalette_applet.png share/help/de/mate-char-palette/figures/charpick-preferences.png share/help/de/mate-char-palette/figures/charpick_characters.png share/help/de/mate-char-palette/index.docbook share/help/de/mate-char-palette/legal.xml share/help/de/mate-drivemount/figures/drivemount-applet_eject.png share/help/de/mate-drivemount/figures/drivemount-applet_example.png share/help/de/mate-drivemount/figures/drivemount-applet_mount.png share/help/de/mate-drivemount/figures/drivemount-applet_open.png share/help/de/mate-drivemount/figures/drivemount-applet_status.png share/help/de/mate-drivemount/index.docbook share/help/de/mate-drivemount/legal.xml share/help/de/mate-geyes/figures/geyes_applet.png share/help/de/mate-geyes/index.docbook share/help/de/mate-geyes/legal.xml share/help/de/mate-multiload/figures/multiload-preferences.png share/help/de/mate-multiload/figures/system-monitor-applet_window.png share/help/de/mate-multiload/index.docbook share/help/de/mate-multiload/legal.xml share/help/de/mate-netspeed-applet/figures/details.png share/help/de/mate-netspeed-applet/figures/eth_sum_48.png share/help/de/mate-netspeed-applet/figures/ethernet.png share/help/de/mate-netspeed-applet/figures/loopback.png share/help/de/mate-netspeed-applet/figures/netspeed_applet.png share/help/de/mate-netspeed-applet/figures/plip.png share/help/de/mate-netspeed-applet/figures/ppp.png share/help/de/mate-netspeed-applet/figures/settings.png share/help/de/mate-netspeed-applet/figures/wavelan.png share/help/de/mate-netspeed-applet/index.docbook share/help/de/mate-netspeed-applet/legal.xml share/help/de/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/de/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/de/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/de/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/de/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/de/mate-stickynotes-applet/index.docbook share/help/de/mate-stickynotes-applet/legal.xml share/help/de/mate-trashapplet/figures/trash-applet.png share/help/de/mate-trashapplet/index.docbook share/help/de/mate-trashapplet/legal.xml share/help/de/mateweather/figures/mateweather-details.png share/help/de/mateweather/figures/mateweather-menu-prefs.png share/help/de/mateweather/figures/mateweather-prefs-general.png share/help/de/mateweather/figures/mateweather-prefs-locations.png share/help/de/mateweather/figures/mateweather_applet.png share/help/de/mateweather/figures/stock_weather-cloudy.png share/help/de/mateweather/figures/stock_weather-few-clouds.png share/help/de/mateweather/figures/stock_weather-fog.png share/help/de/mateweather/figures/stock_weather-night-clear.png share/help/de/mateweather/figures/stock_weather-night-few-clouds.png share/help/de/mateweather/figures/stock_weather-showers.png share/help/de/mateweather/figures/stock_weather-snow.png share/help/de/mateweather/figures/stock_weather-storm.png share/help/de/mateweather/figures/stock_weather-sunny.png share/help/de/mateweather/index.docbook share/help/de/mateweather/legal.xml share/help/dz/mate-accessx-status/figures/accessx-status-applet.png share/help/dz/mate-accessx-status/figures/accessx-status-disabled.png share/help/dz/mate-accessx-status/figures/accessx_bounce-keys.png share/help/dz/mate-accessx-status/figures/accessx_mouse-keys.png share/help/dz/mate-accessx-status/figures/accessx_slow-keys.png share/help/dz/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/dz/mate-accessx-status/figures/accessx_sticky-keys.png share/help/dz/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/dz/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/dz/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/dz/mate-accessx-status/index.docbook share/help/dz/mate-accessx-status/legal.xml %%BATTERY%%share/help/dz/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/dz/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/dz/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/dz/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/dz/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/dz/mate-battstat/index.docbook %%BATTERY%%share/help/dz/mate-battstat/legal.xml share/help/dz/mate-char-palette/figures/charpalette_applet.png share/help/dz/mate-char-palette/figures/charpick-preferences.png share/help/dz/mate-char-palette/figures/charpick_characters.png share/help/dz/mate-char-palette/index.docbook share/help/dz/mate-char-palette/legal.xml share/help/dz/mate-drivemount/figures/drivemount-applet_eject.png share/help/dz/mate-drivemount/figures/drivemount-applet_example.png share/help/dz/mate-drivemount/figures/drivemount-applet_mount.png share/help/dz/mate-drivemount/figures/drivemount-applet_open.png share/help/dz/mate-drivemount/figures/drivemount-applet_status.png share/help/dz/mate-drivemount/index.docbook share/help/dz/mate-drivemount/legal.xml share/help/dz/mate-geyes/figures/geyes_applet.png share/help/dz/mate-geyes/index.docbook share/help/dz/mate-geyes/legal.xml share/help/dz/mate-multiload/figures/multiload-preferences.png share/help/dz/mate-multiload/figures/system-monitor-applet_window.png share/help/dz/mate-multiload/index.docbook share/help/dz/mate-multiload/legal.xml share/help/dz/mate-netspeed-applet/figures/details.png share/help/dz/mate-netspeed-applet/figures/eth_sum_48.png share/help/dz/mate-netspeed-applet/figures/ethernet.png share/help/dz/mate-netspeed-applet/figures/loopback.png share/help/dz/mate-netspeed-applet/figures/netspeed_applet.png share/help/dz/mate-netspeed-applet/figures/plip.png share/help/dz/mate-netspeed-applet/figures/ppp.png share/help/dz/mate-netspeed-applet/figures/settings.png share/help/dz/mate-netspeed-applet/figures/wavelan.png share/help/dz/mate-netspeed-applet/index.docbook share/help/dz/mate-netspeed-applet/legal.xml share/help/dz/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/dz/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/dz/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/dz/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/dz/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/dz/mate-stickynotes-applet/index.docbook share/help/dz/mate-stickynotes-applet/legal.xml share/help/dz/mate-trashapplet/figures/trash-applet.png share/help/dz/mate-trashapplet/index.docbook share/help/dz/mate-trashapplet/legal.xml share/help/dz/mateweather/figures/mateweather-details.png share/help/dz/mateweather/figures/mateweather-menu-prefs.png share/help/dz/mateweather/figures/mateweather-prefs-general.png share/help/dz/mateweather/figures/mateweather-prefs-locations.png share/help/dz/mateweather/figures/mateweather_applet.png share/help/dz/mateweather/figures/stock_weather-cloudy.png share/help/dz/mateweather/figures/stock_weather-few-clouds.png share/help/dz/mateweather/figures/stock_weather-fog.png share/help/dz/mateweather/figures/stock_weather-night-clear.png share/help/dz/mateweather/figures/stock_weather-night-few-clouds.png share/help/dz/mateweather/figures/stock_weather-showers.png share/help/dz/mateweather/figures/stock_weather-snow.png share/help/dz/mateweather/figures/stock_weather-storm.png share/help/dz/mateweather/figures/stock_weather-sunny.png share/help/dz/mateweather/index.docbook share/help/dz/mateweather/legal.xml share/help/el/mate-accessx-status/figures/accessx-status-applet.png share/help/el/mate-accessx-status/figures/accessx-status-disabled.png share/help/el/mate-accessx-status/figures/accessx_bounce-keys.png share/help/el/mate-accessx-status/figures/accessx_mouse-keys.png share/help/el/mate-accessx-status/figures/accessx_slow-keys.png share/help/el/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/el/mate-accessx-status/figures/accessx_sticky-keys.png share/help/el/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/el/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/el/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/el/mate-accessx-status/index.docbook share/help/el/mate-accessx-status/legal.xml %%BATTERY%%share/help/el/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/el/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/el/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/el/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/el/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/el/mate-battstat/index.docbook %%BATTERY%%share/help/el/mate-battstat/legal.xml share/help/el/mate-char-palette/figures/charpalette_applet.png share/help/el/mate-char-palette/figures/charpick-preferences.png share/help/el/mate-char-palette/figures/charpick_characters.png share/help/el/mate-char-palette/index.docbook share/help/el/mate-char-palette/legal.xml share/help/el/mate-drivemount/figures/drivemount-applet_eject.png share/help/el/mate-drivemount/figures/drivemount-applet_example.png share/help/el/mate-drivemount/figures/drivemount-applet_mount.png share/help/el/mate-drivemount/figures/drivemount-applet_open.png share/help/el/mate-drivemount/figures/drivemount-applet_status.png share/help/el/mate-drivemount/index.docbook share/help/el/mate-drivemount/legal.xml share/help/el/mate-geyes/figures/geyes_applet.png share/help/el/mate-geyes/index.docbook share/help/el/mate-geyes/legal.xml share/help/el/mate-multiload/figures/multiload-preferences.png share/help/el/mate-multiload/figures/system-monitor-applet_window.png share/help/el/mate-multiload/index.docbook share/help/el/mate-multiload/legal.xml share/help/el/mate-netspeed-applet/figures/details.png share/help/el/mate-netspeed-applet/figures/eth_sum_48.png share/help/el/mate-netspeed-applet/figures/ethernet.png share/help/el/mate-netspeed-applet/figures/loopback.png share/help/el/mate-netspeed-applet/figures/netspeed_applet.png share/help/el/mate-netspeed-applet/figures/plip.png share/help/el/mate-netspeed-applet/figures/ppp.png share/help/el/mate-netspeed-applet/figures/settings.png share/help/el/mate-netspeed-applet/figures/wavelan.png share/help/el/mate-netspeed-applet/index.docbook share/help/el/mate-netspeed-applet/legal.xml share/help/el/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/el/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/el/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/el/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/el/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/el/mate-stickynotes-applet/index.docbook share/help/el/mate-stickynotes-applet/legal.xml share/help/el/mate-trashapplet/figures/trash-applet.png share/help/el/mate-trashapplet/index.docbook share/help/el/mate-trashapplet/legal.xml share/help/el/mateweather/figures/mateweather-details.png share/help/el/mateweather/figures/mateweather-menu-prefs.png share/help/el/mateweather/figures/mateweather-prefs-general.png share/help/el/mateweather/figures/mateweather-prefs-locations.png share/help/el/mateweather/figures/mateweather_applet.png share/help/el/mateweather/figures/stock_weather-cloudy.png share/help/el/mateweather/figures/stock_weather-few-clouds.png share/help/el/mateweather/figures/stock_weather-fog.png share/help/el/mateweather/figures/stock_weather-night-clear.png share/help/el/mateweather/figures/stock_weather-night-few-clouds.png share/help/el/mateweather/figures/stock_weather-showers.png share/help/el/mateweather/figures/stock_weather-snow.png share/help/el/mateweather/figures/stock_weather-storm.png share/help/el/mateweather/figures/stock_weather-sunny.png share/help/el/mateweather/index.docbook share/help/el/mateweather/legal.xml share/help/en_AU/mate-accessx-status/figures/accessx-status-applet.png share/help/en_AU/mate-accessx-status/figures/accessx-status-disabled.png share/help/en_AU/mate-accessx-status/figures/accessx_bounce-keys.png share/help/en_AU/mate-accessx-status/figures/accessx_mouse-keys.png share/help/en_AU/mate-accessx-status/figures/accessx_slow-keys.png share/help/en_AU/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/en_AU/mate-accessx-status/figures/accessx_sticky-keys.png share/help/en_AU/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/en_AU/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/en_AU/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/en_AU/mate-accessx-status/index.docbook share/help/en_AU/mate-accessx-status/legal.xml %%BATTERY%%share/help/en_AU/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/en_AU/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/en_AU/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/en_AU/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/en_AU/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/en_AU/mate-battstat/index.docbook %%BATTERY%%share/help/en_AU/mate-battstat/legal.xml share/help/en_AU/mate-char-palette/figures/charpalette_applet.png share/help/en_AU/mate-char-palette/figures/charpick-preferences.png share/help/en_AU/mate-char-palette/figures/charpick_characters.png share/help/en_AU/mate-char-palette/index.docbook share/help/en_AU/mate-char-palette/legal.xml share/help/en_AU/mate-drivemount/figures/drivemount-applet_eject.png share/help/en_AU/mate-drivemount/figures/drivemount-applet_example.png share/help/en_AU/mate-drivemount/figures/drivemount-applet_mount.png share/help/en_AU/mate-drivemount/figures/drivemount-applet_open.png share/help/en_AU/mate-drivemount/figures/drivemount-applet_status.png share/help/en_AU/mate-drivemount/index.docbook share/help/en_AU/mate-drivemount/legal.xml share/help/en_AU/mate-geyes/figures/geyes_applet.png share/help/en_AU/mate-geyes/index.docbook share/help/en_AU/mate-geyes/legal.xml share/help/en_AU/mate-multiload/figures/multiload-preferences.png share/help/en_AU/mate-multiload/figures/system-monitor-applet_window.png share/help/en_AU/mate-multiload/index.docbook share/help/en_AU/mate-multiload/legal.xml share/help/en_AU/mate-netspeed-applet/figures/details.png share/help/en_AU/mate-netspeed-applet/figures/eth_sum_48.png share/help/en_AU/mate-netspeed-applet/figures/ethernet.png share/help/en_AU/mate-netspeed-applet/figures/loopback.png share/help/en_AU/mate-netspeed-applet/figures/netspeed_applet.png share/help/en_AU/mate-netspeed-applet/figures/plip.png share/help/en_AU/mate-netspeed-applet/figures/ppp.png share/help/en_AU/mate-netspeed-applet/figures/settings.png share/help/en_AU/mate-netspeed-applet/figures/wavelan.png share/help/en_AU/mate-netspeed-applet/index.docbook share/help/en_AU/mate-netspeed-applet/legal.xml share/help/en_AU/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/en_AU/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/en_AU/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/en_AU/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/en_AU/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/en_AU/mate-stickynotes-applet/index.docbook share/help/en_AU/mate-stickynotes-applet/legal.xml share/help/en_AU/mate-trashapplet/figures/trash-applet.png share/help/en_AU/mate-trashapplet/index.docbook share/help/en_AU/mate-trashapplet/legal.xml share/help/en_AU/mateweather/figures/mateweather-details.png share/help/en_AU/mateweather/figures/mateweather-menu-prefs.png share/help/en_AU/mateweather/figures/mateweather-prefs-general.png share/help/en_AU/mateweather/figures/mateweather-prefs-locations.png share/help/en_AU/mateweather/figures/mateweather_applet.png share/help/en_AU/mateweather/figures/stock_weather-cloudy.png share/help/en_AU/mateweather/figures/stock_weather-few-clouds.png share/help/en_AU/mateweather/figures/stock_weather-fog.png share/help/en_AU/mateweather/figures/stock_weather-night-clear.png share/help/en_AU/mateweather/figures/stock_weather-night-few-clouds.png share/help/en_AU/mateweather/figures/stock_weather-showers.png share/help/en_AU/mateweather/figures/stock_weather-snow.png share/help/en_AU/mateweather/figures/stock_weather-storm.png share/help/en_AU/mateweather/figures/stock_weather-sunny.png share/help/en_AU/mateweather/index.docbook share/help/en_AU/mateweather/legal.xml share/help/en_CA/mate-accessx-status/figures/accessx-status-applet.png share/help/en_CA/mate-accessx-status/figures/accessx-status-disabled.png share/help/en_CA/mate-accessx-status/figures/accessx_bounce-keys.png share/help/en_CA/mate-accessx-status/figures/accessx_mouse-keys.png share/help/en_CA/mate-accessx-status/figures/accessx_slow-keys.png share/help/en_CA/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/en_CA/mate-accessx-status/figures/accessx_sticky-keys.png share/help/en_CA/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/en_CA/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/en_CA/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/en_CA/mate-accessx-status/index.docbook share/help/en_CA/mate-accessx-status/legal.xml %%BATTERY%%share/help/en_CA/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/en_CA/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/en_CA/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/en_CA/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/en_CA/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/en_CA/mate-battstat/index.docbook %%BATTERY%%share/help/en_CA/mate-battstat/legal.xml share/help/en_CA/mate-char-palette/figures/charpalette_applet.png share/help/en_CA/mate-char-palette/figures/charpick-preferences.png share/help/en_CA/mate-char-palette/figures/charpick_characters.png share/help/en_CA/mate-char-palette/index.docbook share/help/en_CA/mate-char-palette/legal.xml share/help/en_CA/mate-drivemount/figures/drivemount-applet_eject.png share/help/en_CA/mate-drivemount/figures/drivemount-applet_example.png share/help/en_CA/mate-drivemount/figures/drivemount-applet_mount.png share/help/en_CA/mate-drivemount/figures/drivemount-applet_open.png share/help/en_CA/mate-drivemount/figures/drivemount-applet_status.png share/help/en_CA/mate-drivemount/index.docbook share/help/en_CA/mate-drivemount/legal.xml share/help/en_CA/mate-geyes/figures/geyes_applet.png share/help/en_CA/mate-geyes/index.docbook share/help/en_CA/mate-geyes/legal.xml share/help/en_CA/mate-multiload/figures/multiload-preferences.png share/help/en_CA/mate-multiload/figures/system-monitor-applet_window.png share/help/en_CA/mate-multiload/index.docbook share/help/en_CA/mate-multiload/legal.xml share/help/en_CA/mate-netspeed-applet/figures/details.png share/help/en_CA/mate-netspeed-applet/figures/eth_sum_48.png share/help/en_CA/mate-netspeed-applet/figures/ethernet.png share/help/en_CA/mate-netspeed-applet/figures/loopback.png share/help/en_CA/mate-netspeed-applet/figures/netspeed_applet.png share/help/en_CA/mate-netspeed-applet/figures/plip.png share/help/en_CA/mate-netspeed-applet/figures/ppp.png share/help/en_CA/mate-netspeed-applet/figures/settings.png share/help/en_CA/mate-netspeed-applet/figures/wavelan.png share/help/en_CA/mate-netspeed-applet/index.docbook share/help/en_CA/mate-netspeed-applet/legal.xml share/help/en_CA/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/en_CA/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/en_CA/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/en_CA/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/en_CA/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/en_CA/mate-stickynotes-applet/index.docbook share/help/en_CA/mate-stickynotes-applet/legal.xml share/help/en_CA/mate-trashapplet/figures/trash-applet.png share/help/en_CA/mate-trashapplet/index.docbook share/help/en_CA/mate-trashapplet/legal.xml share/help/en_CA/mateweather/figures/mateweather-details.png share/help/en_CA/mateweather/figures/mateweather-menu-prefs.png share/help/en_CA/mateweather/figures/mateweather-prefs-general.png share/help/en_CA/mateweather/figures/mateweather-prefs-locations.png share/help/en_CA/mateweather/figures/mateweather_applet.png share/help/en_CA/mateweather/figures/stock_weather-cloudy.png share/help/en_CA/mateweather/figures/stock_weather-few-clouds.png share/help/en_CA/mateweather/figures/stock_weather-fog.png share/help/en_CA/mateweather/figures/stock_weather-night-clear.png share/help/en_CA/mateweather/figures/stock_weather-night-few-clouds.png share/help/en_CA/mateweather/figures/stock_weather-showers.png share/help/en_CA/mateweather/figures/stock_weather-snow.png share/help/en_CA/mateweather/figures/stock_weather-storm.png share/help/en_CA/mateweather/figures/stock_weather-sunny.png share/help/en_CA/mateweather/index.docbook share/help/en_CA/mateweather/legal.xml share/help/en_GB/mate-accessx-status/figures/accessx-status-applet.png share/help/en_GB/mate-accessx-status/figures/accessx-status-disabled.png share/help/en_GB/mate-accessx-status/figures/accessx_bounce-keys.png share/help/en_GB/mate-accessx-status/figures/accessx_mouse-keys.png share/help/en_GB/mate-accessx-status/figures/accessx_slow-keys.png share/help/en_GB/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/en_GB/mate-accessx-status/figures/accessx_sticky-keys.png share/help/en_GB/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/en_GB/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/en_GB/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/en_GB/mate-accessx-status/index.docbook share/help/en_GB/mate-accessx-status/legal.xml %%BATTERY%%share/help/en_GB/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/en_GB/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/en_GB/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/en_GB/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/en_GB/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/en_GB/mate-battstat/index.docbook %%BATTERY%%share/help/en_GB/mate-battstat/legal.xml share/help/en_GB/mate-char-palette/figures/charpalette_applet.png share/help/en_GB/mate-char-palette/figures/charpick-preferences.png share/help/en_GB/mate-char-palette/figures/charpick_characters.png share/help/en_GB/mate-char-palette/index.docbook share/help/en_GB/mate-char-palette/legal.xml share/help/en_GB/mate-drivemount/figures/drivemount-applet_eject.png share/help/en_GB/mate-drivemount/figures/drivemount-applet_example.png share/help/en_GB/mate-drivemount/figures/drivemount-applet_mount.png share/help/en_GB/mate-drivemount/figures/drivemount-applet_open.png share/help/en_GB/mate-drivemount/figures/drivemount-applet_status.png share/help/en_GB/mate-drivemount/index.docbook share/help/en_GB/mate-drivemount/legal.xml share/help/en_GB/mate-geyes/figures/geyes_applet.png share/help/en_GB/mate-geyes/index.docbook share/help/en_GB/mate-geyes/legal.xml share/help/en_GB/mate-multiload/figures/multiload-preferences.png share/help/en_GB/mate-multiload/figures/system-monitor-applet_window.png share/help/en_GB/mate-multiload/index.docbook share/help/en_GB/mate-multiload/legal.xml share/help/en_GB/mate-netspeed-applet/figures/details.png share/help/en_GB/mate-netspeed-applet/figures/eth_sum_48.png share/help/en_GB/mate-netspeed-applet/figures/ethernet.png share/help/en_GB/mate-netspeed-applet/figures/loopback.png share/help/en_GB/mate-netspeed-applet/figures/netspeed_applet.png share/help/en_GB/mate-netspeed-applet/figures/plip.png share/help/en_GB/mate-netspeed-applet/figures/ppp.png share/help/en_GB/mate-netspeed-applet/figures/settings.png share/help/en_GB/mate-netspeed-applet/figures/wavelan.png share/help/en_GB/mate-netspeed-applet/index.docbook share/help/en_GB/mate-netspeed-applet/legal.xml share/help/en_GB/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/en_GB/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/en_GB/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/en_GB/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/en_GB/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/en_GB/mate-stickynotes-applet/index.docbook share/help/en_GB/mate-stickynotes-applet/legal.xml share/help/en_GB/mate-trashapplet/figures/trash-applet.png share/help/en_GB/mate-trashapplet/index.docbook share/help/en_GB/mate-trashapplet/legal.xml share/help/en_GB/mateweather/figures/mateweather-details.png share/help/en_GB/mateweather/figures/mateweather-menu-prefs.png share/help/en_GB/mateweather/figures/mateweather-prefs-general.png share/help/en_GB/mateweather/figures/mateweather-prefs-locations.png share/help/en_GB/mateweather/figures/mateweather_applet.png share/help/en_GB/mateweather/figures/stock_weather-cloudy.png share/help/en_GB/mateweather/figures/stock_weather-few-clouds.png share/help/en_GB/mateweather/figures/stock_weather-fog.png share/help/en_GB/mateweather/figures/stock_weather-night-clear.png share/help/en_GB/mateweather/figures/stock_weather-night-few-clouds.png share/help/en_GB/mateweather/figures/stock_weather-showers.png share/help/en_GB/mateweather/figures/stock_weather-snow.png share/help/en_GB/mateweather/figures/stock_weather-storm.png share/help/en_GB/mateweather/figures/stock_weather-sunny.png share/help/en_GB/mateweather/index.docbook share/help/en_GB/mateweather/legal.xml share/help/eo/mate-accessx-status/figures/accessx-status-applet.png share/help/eo/mate-accessx-status/figures/accessx-status-disabled.png share/help/eo/mate-accessx-status/figures/accessx_bounce-keys.png share/help/eo/mate-accessx-status/figures/accessx_mouse-keys.png share/help/eo/mate-accessx-status/figures/accessx_slow-keys.png share/help/eo/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/eo/mate-accessx-status/figures/accessx_sticky-keys.png share/help/eo/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/eo/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/eo/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/eo/mate-accessx-status/index.docbook share/help/eo/mate-accessx-status/legal.xml %%BATTERY%%share/help/eo/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/eo/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/eo/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/eo/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/eo/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/eo/mate-battstat/index.docbook %%BATTERY%%share/help/eo/mate-battstat/legal.xml share/help/eo/mate-char-palette/figures/charpalette_applet.png share/help/eo/mate-char-palette/figures/charpick-preferences.png share/help/eo/mate-char-palette/figures/charpick_characters.png share/help/eo/mate-char-palette/index.docbook share/help/eo/mate-char-palette/legal.xml share/help/eo/mate-drivemount/figures/drivemount-applet_eject.png share/help/eo/mate-drivemount/figures/drivemount-applet_example.png share/help/eo/mate-drivemount/figures/drivemount-applet_mount.png share/help/eo/mate-drivemount/figures/drivemount-applet_open.png share/help/eo/mate-drivemount/figures/drivemount-applet_status.png share/help/eo/mate-drivemount/index.docbook share/help/eo/mate-drivemount/legal.xml share/help/eo/mate-geyes/figures/geyes_applet.png share/help/eo/mate-geyes/index.docbook share/help/eo/mate-geyes/legal.xml share/help/eo/mate-multiload/figures/multiload-preferences.png share/help/eo/mate-multiload/figures/system-monitor-applet_window.png share/help/eo/mate-multiload/index.docbook share/help/eo/mate-multiload/legal.xml share/help/eo/mate-netspeed-applet/figures/details.png share/help/eo/mate-netspeed-applet/figures/eth_sum_48.png share/help/eo/mate-netspeed-applet/figures/ethernet.png share/help/eo/mate-netspeed-applet/figures/loopback.png share/help/eo/mate-netspeed-applet/figures/netspeed_applet.png share/help/eo/mate-netspeed-applet/figures/plip.png share/help/eo/mate-netspeed-applet/figures/ppp.png share/help/eo/mate-netspeed-applet/figures/settings.png share/help/eo/mate-netspeed-applet/figures/wavelan.png share/help/eo/mate-netspeed-applet/index.docbook share/help/eo/mate-netspeed-applet/legal.xml share/help/eo/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/eo/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/eo/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/eo/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/eo/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/eo/mate-stickynotes-applet/index.docbook share/help/eo/mate-stickynotes-applet/legal.xml share/help/eo/mate-trashapplet/figures/trash-applet.png share/help/eo/mate-trashapplet/index.docbook share/help/eo/mate-trashapplet/legal.xml share/help/eo/mateweather/figures/mateweather-details.png share/help/eo/mateweather/figures/mateweather-menu-prefs.png share/help/eo/mateweather/figures/mateweather-prefs-general.png share/help/eo/mateweather/figures/mateweather-prefs-locations.png share/help/eo/mateweather/figures/mateweather_applet.png share/help/eo/mateweather/figures/stock_weather-cloudy.png share/help/eo/mateweather/figures/stock_weather-few-clouds.png share/help/eo/mateweather/figures/stock_weather-fog.png share/help/eo/mateweather/figures/stock_weather-night-clear.png share/help/eo/mateweather/figures/stock_weather-night-few-clouds.png share/help/eo/mateweather/figures/stock_weather-showers.png share/help/eo/mateweather/figures/stock_weather-snow.png share/help/eo/mateweather/figures/stock_weather-storm.png share/help/eo/mateweather/figures/stock_weather-sunny.png share/help/eo/mateweather/index.docbook share/help/eo/mateweather/legal.xml share/help/es/mate-accessx-status/figures/accessx-status-applet.png share/help/es/mate-accessx-status/figures/accessx-status-disabled.png share/help/es/mate-accessx-status/figures/accessx_bounce-keys.png share/help/es/mate-accessx-status/figures/accessx_mouse-keys.png share/help/es/mate-accessx-status/figures/accessx_slow-keys.png share/help/es/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/es/mate-accessx-status/figures/accessx_sticky-keys.png share/help/es/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/es/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/es/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/es/mate-accessx-status/index.docbook share/help/es/mate-accessx-status/legal.xml %%BATTERY%%share/help/es/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/es/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/es/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/es/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/es/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/es/mate-battstat/index.docbook %%BATTERY%%share/help/es/mate-battstat/legal.xml share/help/es/mate-char-palette/figures/charpalette_applet.png share/help/es/mate-char-palette/figures/charpick-preferences.png share/help/es/mate-char-palette/figures/charpick_characters.png share/help/es/mate-char-palette/index.docbook share/help/es/mate-char-palette/legal.xml share/help/es/mate-drivemount/figures/drivemount-applet_eject.png share/help/es/mate-drivemount/figures/drivemount-applet_example.png share/help/es/mate-drivemount/figures/drivemount-applet_mount.png share/help/es/mate-drivemount/figures/drivemount-applet_open.png share/help/es/mate-drivemount/figures/drivemount-applet_status.png share/help/es/mate-drivemount/index.docbook share/help/es/mate-drivemount/legal.xml share/help/es/mate-geyes/figures/geyes_applet.png share/help/es/mate-geyes/index.docbook share/help/es/mate-geyes/legal.xml share/help/es/mate-multiload/figures/multiload-preferences.png share/help/es/mate-multiload/figures/system-monitor-applet_window.png share/help/es/mate-multiload/index.docbook share/help/es/mate-multiload/legal.xml share/help/es/mate-netspeed-applet/figures/details.png share/help/es/mate-netspeed-applet/figures/eth_sum_48.png share/help/es/mate-netspeed-applet/figures/ethernet.png share/help/es/mate-netspeed-applet/figures/loopback.png share/help/es/mate-netspeed-applet/figures/netspeed_applet.png share/help/es/mate-netspeed-applet/figures/plip.png share/help/es/mate-netspeed-applet/figures/ppp.png share/help/es/mate-netspeed-applet/figures/settings.png share/help/es/mate-netspeed-applet/figures/wavelan.png share/help/es/mate-netspeed-applet/index.docbook share/help/es/mate-netspeed-applet/legal.xml share/help/es/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/es/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/es/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/es/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/es/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/es/mate-stickynotes-applet/index.docbook share/help/es/mate-stickynotes-applet/legal.xml share/help/es/mate-trashapplet/figures/trash-applet.png share/help/es/mate-trashapplet/index.docbook share/help/es/mate-trashapplet/legal.xml share/help/es/mateweather/figures/mateweather-details.png share/help/es/mateweather/figures/mateweather-menu-prefs.png share/help/es/mateweather/figures/mateweather-prefs-general.png share/help/es/mateweather/figures/mateweather-prefs-locations.png share/help/es/mateweather/figures/mateweather_applet.png share/help/es/mateweather/figures/stock_weather-cloudy.png share/help/es/mateweather/figures/stock_weather-few-clouds.png share/help/es/mateweather/figures/stock_weather-fog.png share/help/es/mateweather/figures/stock_weather-night-clear.png share/help/es/mateweather/figures/stock_weather-night-few-clouds.png share/help/es/mateweather/figures/stock_weather-showers.png share/help/es/mateweather/figures/stock_weather-snow.png share/help/es/mateweather/figures/stock_weather-storm.png share/help/es/mateweather/figures/stock_weather-sunny.png share/help/es/mateweather/index.docbook share/help/es/mateweather/legal.xml share/help/es_AR/mate-accessx-status/figures/accessx-status-applet.png share/help/es_AR/mate-accessx-status/figures/accessx-status-disabled.png share/help/es_AR/mate-accessx-status/figures/accessx_bounce-keys.png share/help/es_AR/mate-accessx-status/figures/accessx_mouse-keys.png share/help/es_AR/mate-accessx-status/figures/accessx_slow-keys.png share/help/es_AR/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/es_AR/mate-accessx-status/figures/accessx_sticky-keys.png share/help/es_AR/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/es_AR/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/es_AR/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/es_AR/mate-accessx-status/index.docbook share/help/es_AR/mate-accessx-status/legal.xml %%BATTERY%%share/help/es_AR/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/es_AR/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/es_AR/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/es_AR/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/es_AR/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/es_AR/mate-battstat/index.docbook %%BATTERY%%share/help/es_AR/mate-battstat/legal.xml share/help/es_AR/mate-char-palette/figures/charpalette_applet.png share/help/es_AR/mate-char-palette/figures/charpick-preferences.png share/help/es_AR/mate-char-palette/figures/charpick_characters.png share/help/es_AR/mate-char-palette/index.docbook share/help/es_AR/mate-char-palette/legal.xml share/help/es_AR/mate-drivemount/figures/drivemount-applet_eject.png share/help/es_AR/mate-drivemount/figures/drivemount-applet_example.png share/help/es_AR/mate-drivemount/figures/drivemount-applet_mount.png share/help/es_AR/mate-drivemount/figures/drivemount-applet_open.png share/help/es_AR/mate-drivemount/figures/drivemount-applet_status.png share/help/es_AR/mate-drivemount/index.docbook share/help/es_AR/mate-drivemount/legal.xml share/help/es_AR/mate-geyes/figures/geyes_applet.png share/help/es_AR/mate-geyes/index.docbook share/help/es_AR/mate-geyes/legal.xml share/help/es_AR/mate-multiload/figures/multiload-preferences.png share/help/es_AR/mate-multiload/figures/system-monitor-applet_window.png share/help/es_AR/mate-multiload/index.docbook share/help/es_AR/mate-multiload/legal.xml share/help/es_AR/mate-netspeed-applet/figures/details.png share/help/es_AR/mate-netspeed-applet/figures/eth_sum_48.png share/help/es_AR/mate-netspeed-applet/figures/ethernet.png share/help/es_AR/mate-netspeed-applet/figures/loopback.png share/help/es_AR/mate-netspeed-applet/figures/netspeed_applet.png share/help/es_AR/mate-netspeed-applet/figures/plip.png share/help/es_AR/mate-netspeed-applet/figures/ppp.png share/help/es_AR/mate-netspeed-applet/figures/settings.png share/help/es_AR/mate-netspeed-applet/figures/wavelan.png share/help/es_AR/mate-netspeed-applet/index.docbook share/help/es_AR/mate-netspeed-applet/legal.xml share/help/es_AR/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/es_AR/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/es_AR/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/es_AR/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/es_AR/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/es_AR/mate-stickynotes-applet/index.docbook share/help/es_AR/mate-stickynotes-applet/legal.xml share/help/es_AR/mate-trashapplet/figures/trash-applet.png share/help/es_AR/mate-trashapplet/index.docbook share/help/es_AR/mate-trashapplet/legal.xml share/help/es_AR/mateweather/figures/mateweather-details.png share/help/es_AR/mateweather/figures/mateweather-menu-prefs.png share/help/es_AR/mateweather/figures/mateweather-prefs-general.png share/help/es_AR/mateweather/figures/mateweather-prefs-locations.png share/help/es_AR/mateweather/figures/mateweather_applet.png share/help/es_AR/mateweather/figures/stock_weather-cloudy.png share/help/es_AR/mateweather/figures/stock_weather-few-clouds.png share/help/es_AR/mateweather/figures/stock_weather-fog.png share/help/es_AR/mateweather/figures/stock_weather-night-clear.png share/help/es_AR/mateweather/figures/stock_weather-night-few-clouds.png share/help/es_AR/mateweather/figures/stock_weather-showers.png share/help/es_AR/mateweather/figures/stock_weather-snow.png share/help/es_AR/mateweather/figures/stock_weather-storm.png share/help/es_AR/mateweather/figures/stock_weather-sunny.png share/help/es_AR/mateweather/index.docbook share/help/es_AR/mateweather/legal.xml share/help/es_CL/mate-accessx-status/figures/accessx-status-applet.png share/help/es_CL/mate-accessx-status/figures/accessx-status-disabled.png share/help/es_CL/mate-accessx-status/figures/accessx_bounce-keys.png share/help/es_CL/mate-accessx-status/figures/accessx_mouse-keys.png share/help/es_CL/mate-accessx-status/figures/accessx_slow-keys.png share/help/es_CL/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/es_CL/mate-accessx-status/figures/accessx_sticky-keys.png share/help/es_CL/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/es_CL/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/es_CL/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/es_CL/mate-accessx-status/index.docbook share/help/es_CL/mate-accessx-status/legal.xml %%BATTERY%%share/help/es_CL/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/es_CL/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/es_CL/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/es_CL/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/es_CL/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/es_CL/mate-battstat/index.docbook %%BATTERY%%share/help/es_CL/mate-battstat/legal.xml share/help/es_CL/mate-char-palette/figures/charpalette_applet.png share/help/es_CL/mate-char-palette/figures/charpick-preferences.png share/help/es_CL/mate-char-palette/figures/charpick_characters.png share/help/es_CL/mate-char-palette/index.docbook share/help/es_CL/mate-char-palette/legal.xml share/help/es_CL/mate-drivemount/figures/drivemount-applet_eject.png share/help/es_CL/mate-drivemount/figures/drivemount-applet_example.png share/help/es_CL/mate-drivemount/figures/drivemount-applet_mount.png share/help/es_CL/mate-drivemount/figures/drivemount-applet_open.png share/help/es_CL/mate-drivemount/figures/drivemount-applet_status.png share/help/es_CL/mate-drivemount/index.docbook share/help/es_CL/mate-drivemount/legal.xml share/help/es_CL/mate-geyes/figures/geyes_applet.png share/help/es_CL/mate-geyes/index.docbook share/help/es_CL/mate-geyes/legal.xml share/help/es_CL/mate-multiload/figures/multiload-preferences.png share/help/es_CL/mate-multiload/figures/system-monitor-applet_window.png share/help/es_CL/mate-multiload/index.docbook share/help/es_CL/mate-multiload/legal.xml share/help/es_CL/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/es_CL/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/es_CL/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/es_CL/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/es_CL/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/es_CL/mate-stickynotes-applet/index.docbook share/help/es_CL/mate-stickynotes-applet/legal.xml share/help/es_CL/mate-trashapplet/figures/trash-applet.png share/help/es_CL/mate-trashapplet/index.docbook share/help/es_CL/mate-trashapplet/legal.xml share/help/es_CL/mateweather/figures/mateweather-details.png share/help/es_CL/mateweather/figures/mateweather-menu-prefs.png share/help/es_CL/mateweather/figures/mateweather-prefs-general.png share/help/es_CL/mateweather/figures/mateweather-prefs-locations.png share/help/es_CL/mateweather/figures/mateweather_applet.png share/help/es_CL/mateweather/figures/stock_weather-cloudy.png share/help/es_CL/mateweather/figures/stock_weather-few-clouds.png share/help/es_CL/mateweather/figures/stock_weather-fog.png share/help/es_CL/mateweather/figures/stock_weather-night-clear.png share/help/es_CL/mateweather/figures/stock_weather-night-few-clouds.png share/help/es_CL/mateweather/figures/stock_weather-showers.png share/help/es_CL/mateweather/figures/stock_weather-snow.png share/help/es_CL/mateweather/figures/stock_weather-storm.png share/help/es_CL/mateweather/figures/stock_weather-sunny.png share/help/es_CL/mateweather/index.docbook share/help/es_CL/mateweather/legal.xml share/help/es_CO/mate-accessx-status/figures/accessx-status-applet.png share/help/es_CO/mate-accessx-status/figures/accessx-status-disabled.png share/help/es_CO/mate-accessx-status/figures/accessx_bounce-keys.png share/help/es_CO/mate-accessx-status/figures/accessx_mouse-keys.png share/help/es_CO/mate-accessx-status/figures/accessx_slow-keys.png share/help/es_CO/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/es_CO/mate-accessx-status/figures/accessx_sticky-keys.png share/help/es_CO/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/es_CO/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/es_CO/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/es_CO/mate-accessx-status/index.docbook share/help/es_CO/mate-accessx-status/legal.xml %%BATTERY%%share/help/es_CO/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/es_CO/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/es_CO/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/es_CO/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/es_CO/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/es_CO/mate-battstat/index.docbook %%BATTERY%%share/help/es_CO/mate-battstat/legal.xml share/help/es_CO/mate-char-palette/figures/charpalette_applet.png share/help/es_CO/mate-char-palette/figures/charpick-preferences.png share/help/es_CO/mate-char-palette/figures/charpick_characters.png share/help/es_CO/mate-char-palette/index.docbook share/help/es_CO/mate-char-palette/legal.xml share/help/es_CO/mate-drivemount/figures/drivemount-applet_eject.png share/help/es_CO/mate-drivemount/figures/drivemount-applet_example.png share/help/es_CO/mate-drivemount/figures/drivemount-applet_mount.png share/help/es_CO/mate-drivemount/figures/drivemount-applet_open.png share/help/es_CO/mate-drivemount/figures/drivemount-applet_status.png share/help/es_CO/mate-drivemount/index.docbook share/help/es_CO/mate-drivemount/legal.xml share/help/es_CO/mate-geyes/figures/geyes_applet.png share/help/es_CO/mate-geyes/index.docbook share/help/es_CO/mate-geyes/legal.xml share/help/es_CO/mate-multiload/figures/multiload-preferences.png share/help/es_CO/mate-multiload/figures/system-monitor-applet_window.png share/help/es_CO/mate-multiload/index.docbook share/help/es_CO/mate-multiload/legal.xml share/help/es_CO/mate-netspeed-applet/figures/details.png share/help/es_CO/mate-netspeed-applet/figures/eth_sum_48.png share/help/es_CO/mate-netspeed-applet/figures/ethernet.png share/help/es_CO/mate-netspeed-applet/figures/loopback.png share/help/es_CO/mate-netspeed-applet/figures/netspeed_applet.png share/help/es_CO/mate-netspeed-applet/figures/plip.png share/help/es_CO/mate-netspeed-applet/figures/ppp.png share/help/es_CO/mate-netspeed-applet/figures/settings.png share/help/es_CO/mate-netspeed-applet/figures/wavelan.png share/help/es_CO/mate-netspeed-applet/index.docbook share/help/es_CO/mate-netspeed-applet/legal.xml share/help/es_CO/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/es_CO/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/es_CO/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/es_CO/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/es_CO/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/es_CO/mate-stickynotes-applet/index.docbook share/help/es_CO/mate-stickynotes-applet/legal.xml share/help/es_CO/mate-trashapplet/figures/trash-applet.png share/help/es_CO/mate-trashapplet/index.docbook share/help/es_CO/mate-trashapplet/legal.xml share/help/es_CO/mateweather/figures/mateweather-details.png share/help/es_CO/mateweather/figures/mateweather-menu-prefs.png share/help/es_CO/mateweather/figures/mateweather-prefs-general.png share/help/es_CO/mateweather/figures/mateweather-prefs-locations.png share/help/es_CO/mateweather/figures/mateweather_applet.png share/help/es_CO/mateweather/figures/stock_weather-cloudy.png share/help/es_CO/mateweather/figures/stock_weather-few-clouds.png share/help/es_CO/mateweather/figures/stock_weather-fog.png share/help/es_CO/mateweather/figures/stock_weather-night-clear.png share/help/es_CO/mateweather/figures/stock_weather-night-few-clouds.png share/help/es_CO/mateweather/figures/stock_weather-showers.png share/help/es_CO/mateweather/figures/stock_weather-snow.png share/help/es_CO/mateweather/figures/stock_weather-storm.png share/help/es_CO/mateweather/figures/stock_weather-sunny.png share/help/es_CO/mateweather/index.docbook share/help/es_CO/mateweather/legal.xml share/help/es_CR/mate-accessx-status/figures/accessx-status-applet.png share/help/es_CR/mate-accessx-status/figures/accessx-status-disabled.png share/help/es_CR/mate-accessx-status/figures/accessx_bounce-keys.png share/help/es_CR/mate-accessx-status/figures/accessx_mouse-keys.png share/help/es_CR/mate-accessx-status/figures/accessx_slow-keys.png share/help/es_CR/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/es_CR/mate-accessx-status/figures/accessx_sticky-keys.png share/help/es_CR/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/es_CR/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/es_CR/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/es_CR/mate-accessx-status/index.docbook share/help/es_CR/mate-accessx-status/legal.xml share/help/es_CR/mate-char-palette/figures/charpalette_applet.png share/help/es_CR/mate-char-palette/figures/charpick-preferences.png share/help/es_CR/mate-char-palette/figures/charpick_characters.png share/help/es_CR/mate-char-palette/index.docbook share/help/es_CR/mate-char-palette/legal.xml share/help/es_CR/mate-drivemount/figures/drivemount-applet_eject.png share/help/es_CR/mate-drivemount/figures/drivemount-applet_example.png share/help/es_CR/mate-drivemount/figures/drivemount-applet_mount.png share/help/es_CR/mate-drivemount/figures/drivemount-applet_open.png share/help/es_CR/mate-drivemount/figures/drivemount-applet_status.png share/help/es_CR/mate-drivemount/index.docbook share/help/es_CR/mate-drivemount/legal.xml share/help/es_CR/mate-geyes/figures/geyes_applet.png share/help/es_CR/mate-geyes/index.docbook share/help/es_CR/mate-geyes/legal.xml share/help/es_CR/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/es_CR/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/es_CR/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/es_CR/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/es_CR/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/es_CR/mate-stickynotes-applet/index.docbook share/help/es_CR/mate-stickynotes-applet/legal.xml share/help/es_CR/mate-trashapplet/figures/trash-applet.png share/help/es_CR/mate-trashapplet/index.docbook share/help/es_CR/mate-trashapplet/legal.xml share/help/es_CR/mateweather/figures/mateweather-details.png share/help/es_CR/mateweather/figures/mateweather-menu-prefs.png share/help/es_CR/mateweather/figures/mateweather-prefs-general.png share/help/es_CR/mateweather/figures/mateweather-prefs-locations.png share/help/es_CR/mateweather/figures/mateweather_applet.png share/help/es_CR/mateweather/figures/stock_weather-cloudy.png share/help/es_CR/mateweather/figures/stock_weather-few-clouds.png share/help/es_CR/mateweather/figures/stock_weather-fog.png share/help/es_CR/mateweather/figures/stock_weather-night-clear.png share/help/es_CR/mateweather/figures/stock_weather-night-few-clouds.png share/help/es_CR/mateweather/figures/stock_weather-showers.png share/help/es_CR/mateweather/figures/stock_weather-snow.png share/help/es_CR/mateweather/figures/stock_weather-storm.png share/help/es_CR/mateweather/figures/stock_weather-sunny.png share/help/es_CR/mateweather/index.docbook share/help/es_CR/mateweather/legal.xml share/help/es_DO/mate-accessx-status/figures/accessx-status-applet.png share/help/es_DO/mate-accessx-status/figures/accessx-status-disabled.png share/help/es_DO/mate-accessx-status/figures/accessx_bounce-keys.png share/help/es_DO/mate-accessx-status/figures/accessx_mouse-keys.png share/help/es_DO/mate-accessx-status/figures/accessx_slow-keys.png share/help/es_DO/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/es_DO/mate-accessx-status/figures/accessx_sticky-keys.png share/help/es_DO/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/es_DO/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/es_DO/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/es_DO/mate-accessx-status/index.docbook share/help/es_DO/mate-accessx-status/legal.xml share/help/es_DO/mate-char-palette/figures/charpalette_applet.png share/help/es_DO/mate-char-palette/figures/charpick-preferences.png share/help/es_DO/mate-char-palette/figures/charpick_characters.png share/help/es_DO/mate-char-palette/index.docbook share/help/es_DO/mate-char-palette/legal.xml share/help/es_DO/mate-drivemount/figures/drivemount-applet_eject.png share/help/es_DO/mate-drivemount/figures/drivemount-applet_example.png share/help/es_DO/mate-drivemount/figures/drivemount-applet_mount.png share/help/es_DO/mate-drivemount/figures/drivemount-applet_open.png share/help/es_DO/mate-drivemount/figures/drivemount-applet_status.png share/help/es_DO/mate-drivemount/index.docbook share/help/es_DO/mate-drivemount/legal.xml share/help/es_DO/mate-geyes/figures/geyes_applet.png share/help/es_DO/mate-geyes/index.docbook share/help/es_DO/mate-geyes/legal.xml share/help/es_DO/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/es_DO/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/es_DO/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/es_DO/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/es_DO/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/es_DO/mate-stickynotes-applet/index.docbook share/help/es_DO/mate-stickynotes-applet/legal.xml share/help/es_DO/mate-trashapplet/figures/trash-applet.png share/help/es_DO/mate-trashapplet/index.docbook share/help/es_DO/mate-trashapplet/legal.xml share/help/es_DO/mateweather/figures/mateweather-details.png share/help/es_DO/mateweather/figures/mateweather-menu-prefs.png share/help/es_DO/mateweather/figures/mateweather-prefs-general.png share/help/es_DO/mateweather/figures/mateweather-prefs-locations.png share/help/es_DO/mateweather/figures/mateweather_applet.png share/help/es_DO/mateweather/figures/stock_weather-cloudy.png share/help/es_DO/mateweather/figures/stock_weather-few-clouds.png share/help/es_DO/mateweather/figures/stock_weather-fog.png share/help/es_DO/mateweather/figures/stock_weather-night-clear.png share/help/es_DO/mateweather/figures/stock_weather-night-few-clouds.png share/help/es_DO/mateweather/figures/stock_weather-showers.png share/help/es_DO/mateweather/figures/stock_weather-snow.png share/help/es_DO/mateweather/figures/stock_weather-storm.png share/help/es_DO/mateweather/figures/stock_weather-sunny.png share/help/es_DO/mateweather/index.docbook share/help/es_DO/mateweather/legal.xml share/help/es_EC/mate-accessx-status/figures/accessx-status-applet.png share/help/es_EC/mate-accessx-status/figures/accessx-status-disabled.png share/help/es_EC/mate-accessx-status/figures/accessx_bounce-keys.png share/help/es_EC/mate-accessx-status/figures/accessx_mouse-keys.png share/help/es_EC/mate-accessx-status/figures/accessx_slow-keys.png share/help/es_EC/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/es_EC/mate-accessx-status/figures/accessx_sticky-keys.png share/help/es_EC/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/es_EC/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/es_EC/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/es_EC/mate-accessx-status/index.docbook share/help/es_EC/mate-accessx-status/legal.xml share/help/es_EC/mate-char-palette/figures/charpalette_applet.png share/help/es_EC/mate-char-palette/figures/charpick-preferences.png share/help/es_EC/mate-char-palette/figures/charpick_characters.png share/help/es_EC/mate-char-palette/index.docbook share/help/es_EC/mate-char-palette/legal.xml share/help/es_EC/mate-drivemount/figures/drivemount-applet_eject.png share/help/es_EC/mate-drivemount/figures/drivemount-applet_example.png share/help/es_EC/mate-drivemount/figures/drivemount-applet_mount.png share/help/es_EC/mate-drivemount/figures/drivemount-applet_open.png share/help/es_EC/mate-drivemount/figures/drivemount-applet_status.png share/help/es_EC/mate-drivemount/index.docbook share/help/es_EC/mate-drivemount/legal.xml share/help/es_EC/mate-geyes/figures/geyes_applet.png share/help/es_EC/mate-geyes/index.docbook share/help/es_EC/mate-geyes/legal.xml share/help/es_EC/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/es_EC/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/es_EC/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/es_EC/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/es_EC/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/es_EC/mate-stickynotes-applet/index.docbook share/help/es_EC/mate-stickynotes-applet/legal.xml share/help/es_EC/mate-trashapplet/figures/trash-applet.png share/help/es_EC/mate-trashapplet/index.docbook share/help/es_EC/mate-trashapplet/legal.xml share/help/es_EC/mateweather/figures/mateweather-details.png share/help/es_EC/mateweather/figures/mateweather-menu-prefs.png share/help/es_EC/mateweather/figures/mateweather-prefs-general.png share/help/es_EC/mateweather/figures/mateweather-prefs-locations.png share/help/es_EC/mateweather/figures/mateweather_applet.png share/help/es_EC/mateweather/figures/stock_weather-cloudy.png share/help/es_EC/mateweather/figures/stock_weather-few-clouds.png share/help/es_EC/mateweather/figures/stock_weather-fog.png share/help/es_EC/mateweather/figures/stock_weather-night-clear.png share/help/es_EC/mateweather/figures/stock_weather-night-few-clouds.png share/help/es_EC/mateweather/figures/stock_weather-showers.png share/help/es_EC/mateweather/figures/stock_weather-snow.png share/help/es_EC/mateweather/figures/stock_weather-storm.png share/help/es_EC/mateweather/figures/stock_weather-sunny.png share/help/es_EC/mateweather/index.docbook share/help/es_EC/mateweather/legal.xml share/help/es_ES/mate-accessx-status/figures/accessx-status-applet.png share/help/es_ES/mate-accessx-status/figures/accessx-status-disabled.png share/help/es_ES/mate-accessx-status/figures/accessx_bounce-keys.png share/help/es_ES/mate-accessx-status/figures/accessx_mouse-keys.png share/help/es_ES/mate-accessx-status/figures/accessx_slow-keys.png share/help/es_ES/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/es_ES/mate-accessx-status/figures/accessx_sticky-keys.png share/help/es_ES/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/es_ES/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/es_ES/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/es_ES/mate-accessx-status/index.docbook share/help/es_ES/mate-accessx-status/legal.xml %%BATTERY%%share/help/es_ES/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/es_ES/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/es_ES/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/es_ES/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/es_ES/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/es_ES/mate-battstat/index.docbook %%BATTERY%%share/help/es_ES/mate-battstat/legal.xml share/help/es_ES/mate-char-palette/figures/charpalette_applet.png share/help/es_ES/mate-char-palette/figures/charpick-preferences.png share/help/es_ES/mate-char-palette/figures/charpick_characters.png share/help/es_ES/mate-char-palette/index.docbook share/help/es_ES/mate-char-palette/legal.xml share/help/es_ES/mate-drivemount/figures/drivemount-applet_eject.png share/help/es_ES/mate-drivemount/figures/drivemount-applet_example.png share/help/es_ES/mate-drivemount/figures/drivemount-applet_mount.png share/help/es_ES/mate-drivemount/figures/drivemount-applet_open.png share/help/es_ES/mate-drivemount/figures/drivemount-applet_status.png share/help/es_ES/mate-drivemount/index.docbook share/help/es_ES/mate-drivemount/legal.xml share/help/es_ES/mate-geyes/figures/geyes_applet.png share/help/es_ES/mate-geyes/index.docbook share/help/es_ES/mate-geyes/legal.xml share/help/es_ES/mate-multiload/figures/multiload-preferences.png share/help/es_ES/mate-multiload/figures/system-monitor-applet_window.png share/help/es_ES/mate-multiload/index.docbook share/help/es_ES/mate-multiload/legal.xml share/help/es_ES/mate-netspeed-applet/figures/details.png share/help/es_ES/mate-netspeed-applet/figures/eth_sum_48.png share/help/es_ES/mate-netspeed-applet/figures/ethernet.png share/help/es_ES/mate-netspeed-applet/figures/loopback.png share/help/es_ES/mate-netspeed-applet/figures/netspeed_applet.png share/help/es_ES/mate-netspeed-applet/figures/plip.png share/help/es_ES/mate-netspeed-applet/figures/ppp.png share/help/es_ES/mate-netspeed-applet/figures/settings.png share/help/es_ES/mate-netspeed-applet/figures/wavelan.png share/help/es_ES/mate-netspeed-applet/index.docbook share/help/es_ES/mate-netspeed-applet/legal.xml share/help/es_ES/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/es_ES/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/es_ES/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/es_ES/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/es_ES/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/es_ES/mate-stickynotes-applet/index.docbook share/help/es_ES/mate-stickynotes-applet/legal.xml share/help/es_ES/mate-trashapplet/figures/trash-applet.png share/help/es_ES/mate-trashapplet/index.docbook share/help/es_ES/mate-trashapplet/legal.xml share/help/es_ES/mateweather/figures/mateweather-details.png share/help/es_ES/mateweather/figures/mateweather-menu-prefs.png share/help/es_ES/mateweather/figures/mateweather-prefs-general.png share/help/es_ES/mateweather/figures/mateweather-prefs-locations.png share/help/es_ES/mateweather/figures/mateweather_applet.png share/help/es_ES/mateweather/figures/stock_weather-cloudy.png share/help/es_ES/mateweather/figures/stock_weather-few-clouds.png share/help/es_ES/mateweather/figures/stock_weather-fog.png share/help/es_ES/mateweather/figures/stock_weather-night-clear.png share/help/es_ES/mateweather/figures/stock_weather-night-few-clouds.png share/help/es_ES/mateweather/figures/stock_weather-showers.png share/help/es_ES/mateweather/figures/stock_weather-snow.png share/help/es_ES/mateweather/figures/stock_weather-storm.png share/help/es_ES/mateweather/figures/stock_weather-sunny.png share/help/es_ES/mateweather/index.docbook share/help/es_ES/mateweather/legal.xml share/help/es_MX/mate-accessx-status/figures/accessx-status-applet.png share/help/es_MX/mate-accessx-status/figures/accessx-status-disabled.png share/help/es_MX/mate-accessx-status/figures/accessx_bounce-keys.png share/help/es_MX/mate-accessx-status/figures/accessx_mouse-keys.png share/help/es_MX/mate-accessx-status/figures/accessx_slow-keys.png share/help/es_MX/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/es_MX/mate-accessx-status/figures/accessx_sticky-keys.png share/help/es_MX/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/es_MX/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/es_MX/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/es_MX/mate-accessx-status/index.docbook share/help/es_MX/mate-accessx-status/legal.xml %%BATTERY%%share/help/es_MX/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/es_MX/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/es_MX/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/es_MX/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/es_MX/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/es_MX/mate-battstat/index.docbook %%BATTERY%%share/help/es_MX/mate-battstat/legal.xml share/help/es_MX/mate-char-palette/figures/charpalette_applet.png share/help/es_MX/mate-char-palette/figures/charpick-preferences.png share/help/es_MX/mate-char-palette/figures/charpick_characters.png share/help/es_MX/mate-char-palette/index.docbook share/help/es_MX/mate-char-palette/legal.xml share/help/es_MX/mate-drivemount/figures/drivemount-applet_eject.png share/help/es_MX/mate-drivemount/figures/drivemount-applet_example.png share/help/es_MX/mate-drivemount/figures/drivemount-applet_mount.png share/help/es_MX/mate-drivemount/figures/drivemount-applet_open.png share/help/es_MX/mate-drivemount/figures/drivemount-applet_status.png share/help/es_MX/mate-drivemount/index.docbook share/help/es_MX/mate-drivemount/legal.xml share/help/es_MX/mate-geyes/figures/geyes_applet.png share/help/es_MX/mate-geyes/index.docbook share/help/es_MX/mate-geyes/legal.xml share/help/es_MX/mate-netspeed-applet/figures/details.png share/help/es_MX/mate-netspeed-applet/figures/eth_sum_48.png share/help/es_MX/mate-netspeed-applet/figures/ethernet.png share/help/es_MX/mate-netspeed-applet/figures/loopback.png share/help/es_MX/mate-netspeed-applet/figures/netspeed_applet.png share/help/es_MX/mate-netspeed-applet/figures/plip.png share/help/es_MX/mate-netspeed-applet/figures/ppp.png share/help/es_MX/mate-netspeed-applet/figures/settings.png share/help/es_MX/mate-netspeed-applet/figures/wavelan.png share/help/es_MX/mate-netspeed-applet/index.docbook share/help/es_MX/mate-netspeed-applet/legal.xml share/help/es_MX/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/es_MX/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/es_MX/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/es_MX/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/es_MX/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/es_MX/mate-stickynotes-applet/index.docbook share/help/es_MX/mate-stickynotes-applet/legal.xml share/help/es_MX/mate-trashapplet/figures/trash-applet.png share/help/es_MX/mate-trashapplet/index.docbook share/help/es_MX/mate-trashapplet/legal.xml share/help/es_MX/mateweather/figures/mateweather-details.png share/help/es_MX/mateweather/figures/mateweather-menu-prefs.png share/help/es_MX/mateweather/figures/mateweather-prefs-general.png share/help/es_MX/mateweather/figures/mateweather-prefs-locations.png share/help/es_MX/mateweather/figures/mateweather_applet.png share/help/es_MX/mateweather/figures/stock_weather-cloudy.png share/help/es_MX/mateweather/figures/stock_weather-few-clouds.png share/help/es_MX/mateweather/figures/stock_weather-fog.png share/help/es_MX/mateweather/figures/stock_weather-night-clear.png share/help/es_MX/mateweather/figures/stock_weather-night-few-clouds.png share/help/es_MX/mateweather/figures/stock_weather-showers.png share/help/es_MX/mateweather/figures/stock_weather-snow.png share/help/es_MX/mateweather/figures/stock_weather-storm.png share/help/es_MX/mateweather/figures/stock_weather-sunny.png share/help/es_MX/mateweather/index.docbook share/help/es_MX/mateweather/legal.xml share/help/es_NI/mate-accessx-status/figures/accessx-status-applet.png share/help/es_NI/mate-accessx-status/figures/accessx-status-disabled.png share/help/es_NI/mate-accessx-status/figures/accessx_bounce-keys.png share/help/es_NI/mate-accessx-status/figures/accessx_mouse-keys.png share/help/es_NI/mate-accessx-status/figures/accessx_slow-keys.png share/help/es_NI/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/es_NI/mate-accessx-status/figures/accessx_sticky-keys.png share/help/es_NI/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/es_NI/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/es_NI/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/es_NI/mate-accessx-status/index.docbook share/help/es_NI/mate-accessx-status/legal.xml share/help/es_NI/mate-char-palette/figures/charpalette_applet.png share/help/es_NI/mate-char-palette/figures/charpick-preferences.png share/help/es_NI/mate-char-palette/figures/charpick_characters.png share/help/es_NI/mate-char-palette/index.docbook share/help/es_NI/mate-char-palette/legal.xml share/help/es_NI/mate-drivemount/figures/drivemount-applet_eject.png share/help/es_NI/mate-drivemount/figures/drivemount-applet_example.png share/help/es_NI/mate-drivemount/figures/drivemount-applet_mount.png share/help/es_NI/mate-drivemount/figures/drivemount-applet_open.png share/help/es_NI/mate-drivemount/figures/drivemount-applet_status.png share/help/es_NI/mate-drivemount/index.docbook share/help/es_NI/mate-drivemount/legal.xml share/help/es_NI/mate-geyes/figures/geyes_applet.png share/help/es_NI/mate-geyes/index.docbook share/help/es_NI/mate-geyes/legal.xml share/help/es_NI/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/es_NI/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/es_NI/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/es_NI/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/es_NI/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/es_NI/mate-stickynotes-applet/index.docbook share/help/es_NI/mate-stickynotes-applet/legal.xml share/help/es_NI/mate-trashapplet/figures/trash-applet.png share/help/es_NI/mate-trashapplet/index.docbook share/help/es_NI/mate-trashapplet/legal.xml share/help/es_NI/mateweather/figures/mateweather-details.png share/help/es_NI/mateweather/figures/mateweather-menu-prefs.png share/help/es_NI/mateweather/figures/mateweather-prefs-general.png share/help/es_NI/mateweather/figures/mateweather-prefs-locations.png share/help/es_NI/mateweather/figures/mateweather_applet.png share/help/es_NI/mateweather/figures/stock_weather-cloudy.png share/help/es_NI/mateweather/figures/stock_weather-few-clouds.png share/help/es_NI/mateweather/figures/stock_weather-fog.png share/help/es_NI/mateweather/figures/stock_weather-night-clear.png share/help/es_NI/mateweather/figures/stock_weather-night-few-clouds.png share/help/es_NI/mateweather/figures/stock_weather-showers.png share/help/es_NI/mateweather/figures/stock_weather-snow.png share/help/es_NI/mateweather/figures/stock_weather-storm.png share/help/es_NI/mateweather/figures/stock_weather-sunny.png share/help/es_NI/mateweather/index.docbook share/help/es_NI/mateweather/legal.xml share/help/es_PA/mate-accessx-status/figures/accessx-status-applet.png share/help/es_PA/mate-accessx-status/figures/accessx-status-disabled.png share/help/es_PA/mate-accessx-status/figures/accessx_bounce-keys.png share/help/es_PA/mate-accessx-status/figures/accessx_mouse-keys.png share/help/es_PA/mate-accessx-status/figures/accessx_slow-keys.png share/help/es_PA/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/es_PA/mate-accessx-status/figures/accessx_sticky-keys.png share/help/es_PA/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/es_PA/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/es_PA/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/es_PA/mate-accessx-status/index.docbook share/help/es_PA/mate-accessx-status/legal.xml share/help/es_PA/mate-char-palette/figures/charpalette_applet.png share/help/es_PA/mate-char-palette/figures/charpick-preferences.png share/help/es_PA/mate-char-palette/figures/charpick_characters.png share/help/es_PA/mate-char-palette/index.docbook share/help/es_PA/mate-char-palette/legal.xml share/help/es_PA/mate-drivemount/figures/drivemount-applet_eject.png share/help/es_PA/mate-drivemount/figures/drivemount-applet_example.png share/help/es_PA/mate-drivemount/figures/drivemount-applet_mount.png share/help/es_PA/mate-drivemount/figures/drivemount-applet_open.png share/help/es_PA/mate-drivemount/figures/drivemount-applet_status.png share/help/es_PA/mate-drivemount/index.docbook share/help/es_PA/mate-drivemount/legal.xml share/help/es_PA/mate-geyes/figures/geyes_applet.png share/help/es_PA/mate-geyes/index.docbook share/help/es_PA/mate-geyes/legal.xml share/help/es_PA/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/es_PA/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/es_PA/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/es_PA/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/es_PA/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/es_PA/mate-stickynotes-applet/index.docbook share/help/es_PA/mate-stickynotes-applet/legal.xml share/help/es_PA/mate-trashapplet/figures/trash-applet.png share/help/es_PA/mate-trashapplet/index.docbook share/help/es_PA/mate-trashapplet/legal.xml share/help/es_PA/mateweather/figures/mateweather-details.png share/help/es_PA/mateweather/figures/mateweather-menu-prefs.png share/help/es_PA/mateweather/figures/mateweather-prefs-general.png share/help/es_PA/mateweather/figures/mateweather-prefs-locations.png share/help/es_PA/mateweather/figures/mateweather_applet.png share/help/es_PA/mateweather/figures/stock_weather-cloudy.png share/help/es_PA/mateweather/figures/stock_weather-few-clouds.png share/help/es_PA/mateweather/figures/stock_weather-fog.png share/help/es_PA/mateweather/figures/stock_weather-night-clear.png share/help/es_PA/mateweather/figures/stock_weather-night-few-clouds.png share/help/es_PA/mateweather/figures/stock_weather-showers.png share/help/es_PA/mateweather/figures/stock_weather-snow.png share/help/es_PA/mateweather/figures/stock_weather-storm.png share/help/es_PA/mateweather/figures/stock_weather-sunny.png share/help/es_PA/mateweather/index.docbook share/help/es_PA/mateweather/legal.xml share/help/es_PE/mate-accessx-status/figures/accessx-status-applet.png share/help/es_PE/mate-accessx-status/figures/accessx-status-disabled.png share/help/es_PE/mate-accessx-status/figures/accessx_bounce-keys.png share/help/es_PE/mate-accessx-status/figures/accessx_mouse-keys.png share/help/es_PE/mate-accessx-status/figures/accessx_slow-keys.png share/help/es_PE/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/es_PE/mate-accessx-status/figures/accessx_sticky-keys.png share/help/es_PE/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/es_PE/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/es_PE/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/es_PE/mate-accessx-status/index.docbook share/help/es_PE/mate-accessx-status/legal.xml share/help/es_PE/mate-char-palette/figures/charpalette_applet.png share/help/es_PE/mate-char-palette/figures/charpick-preferences.png share/help/es_PE/mate-char-palette/figures/charpick_characters.png share/help/es_PE/mate-char-palette/index.docbook share/help/es_PE/mate-char-palette/legal.xml share/help/es_PE/mate-drivemount/figures/drivemount-applet_eject.png share/help/es_PE/mate-drivemount/figures/drivemount-applet_example.png share/help/es_PE/mate-drivemount/figures/drivemount-applet_mount.png share/help/es_PE/mate-drivemount/figures/drivemount-applet_open.png share/help/es_PE/mate-drivemount/figures/drivemount-applet_status.png share/help/es_PE/mate-drivemount/index.docbook share/help/es_PE/mate-drivemount/legal.xml share/help/es_PE/mate-geyes/figures/geyes_applet.png share/help/es_PE/mate-geyes/index.docbook share/help/es_PE/mate-geyes/legal.xml share/help/es_PE/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/es_PE/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/es_PE/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/es_PE/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/es_PE/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/es_PE/mate-stickynotes-applet/index.docbook share/help/es_PE/mate-stickynotes-applet/legal.xml share/help/es_PE/mate-trashapplet/figures/trash-applet.png share/help/es_PE/mate-trashapplet/index.docbook share/help/es_PE/mate-trashapplet/legal.xml share/help/es_PE/mateweather/figures/mateweather-details.png share/help/es_PE/mateweather/figures/mateweather-menu-prefs.png share/help/es_PE/mateweather/figures/mateweather-prefs-general.png share/help/es_PE/mateweather/figures/mateweather-prefs-locations.png share/help/es_PE/mateweather/figures/mateweather_applet.png share/help/es_PE/mateweather/figures/stock_weather-cloudy.png share/help/es_PE/mateweather/figures/stock_weather-few-clouds.png share/help/es_PE/mateweather/figures/stock_weather-fog.png share/help/es_PE/mateweather/figures/stock_weather-night-clear.png share/help/es_PE/mateweather/figures/stock_weather-night-few-clouds.png share/help/es_PE/mateweather/figures/stock_weather-showers.png share/help/es_PE/mateweather/figures/stock_weather-snow.png share/help/es_PE/mateweather/figures/stock_weather-storm.png share/help/es_PE/mateweather/figures/stock_weather-sunny.png share/help/es_PE/mateweather/index.docbook share/help/es_PE/mateweather/legal.xml share/help/es_PR/mate-accessx-status/figures/accessx-status-applet.png share/help/es_PR/mate-accessx-status/figures/accessx-status-disabled.png share/help/es_PR/mate-accessx-status/figures/accessx_bounce-keys.png share/help/es_PR/mate-accessx-status/figures/accessx_mouse-keys.png share/help/es_PR/mate-accessx-status/figures/accessx_slow-keys.png share/help/es_PR/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/es_PR/mate-accessx-status/figures/accessx_sticky-keys.png share/help/es_PR/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/es_PR/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/es_PR/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/es_PR/mate-accessx-status/index.docbook share/help/es_PR/mate-accessx-status/legal.xml %%BATTERY%%share/help/es_PR/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/es_PR/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/es_PR/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/es_PR/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/es_PR/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/es_PR/mate-battstat/index.docbook %%BATTERY%%share/help/es_PR/mate-battstat/legal.xml share/help/es_PR/mate-char-palette/figures/charpalette_applet.png share/help/es_PR/mate-char-palette/figures/charpick-preferences.png share/help/es_PR/mate-char-palette/figures/charpick_characters.png share/help/es_PR/mate-char-palette/index.docbook share/help/es_PR/mate-char-palette/legal.xml share/help/es_PR/mate-drivemount/figures/drivemount-applet_eject.png share/help/es_PR/mate-drivemount/figures/drivemount-applet_example.png share/help/es_PR/mate-drivemount/figures/drivemount-applet_mount.png share/help/es_PR/mate-drivemount/figures/drivemount-applet_open.png share/help/es_PR/mate-drivemount/figures/drivemount-applet_status.png share/help/es_PR/mate-drivemount/index.docbook share/help/es_PR/mate-drivemount/legal.xml share/help/es_PR/mate-geyes/figures/geyes_applet.png share/help/es_PR/mate-geyes/index.docbook share/help/es_PR/mate-geyes/legal.xml share/help/es_PR/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/es_PR/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/es_PR/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/es_PR/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/es_PR/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/es_PR/mate-stickynotes-applet/index.docbook share/help/es_PR/mate-stickynotes-applet/legal.xml share/help/es_PR/mate-trashapplet/figures/trash-applet.png share/help/es_PR/mate-trashapplet/index.docbook share/help/es_PR/mate-trashapplet/legal.xml share/help/es_PR/mateweather/figures/mateweather-details.png share/help/es_PR/mateweather/figures/mateweather-menu-prefs.png share/help/es_PR/mateweather/figures/mateweather-prefs-general.png share/help/es_PR/mateweather/figures/mateweather-prefs-locations.png share/help/es_PR/mateweather/figures/mateweather_applet.png share/help/es_PR/mateweather/figures/stock_weather-cloudy.png share/help/es_PR/mateweather/figures/stock_weather-few-clouds.png share/help/es_PR/mateweather/figures/stock_weather-fog.png share/help/es_PR/mateweather/figures/stock_weather-night-clear.png share/help/es_PR/mateweather/figures/stock_weather-night-few-clouds.png share/help/es_PR/mateweather/figures/stock_weather-showers.png share/help/es_PR/mateweather/figures/stock_weather-snow.png share/help/es_PR/mateweather/figures/stock_weather-storm.png share/help/es_PR/mateweather/figures/stock_weather-sunny.png share/help/es_PR/mateweather/index.docbook share/help/es_PR/mateweather/legal.xml share/help/es_SV/mate-accessx-status/figures/accessx-status-applet.png share/help/es_SV/mate-accessx-status/figures/accessx-status-disabled.png share/help/es_SV/mate-accessx-status/figures/accessx_bounce-keys.png share/help/es_SV/mate-accessx-status/figures/accessx_mouse-keys.png share/help/es_SV/mate-accessx-status/figures/accessx_slow-keys.png share/help/es_SV/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/es_SV/mate-accessx-status/figures/accessx_sticky-keys.png share/help/es_SV/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/es_SV/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/es_SV/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/es_SV/mate-accessx-status/index.docbook share/help/es_SV/mate-accessx-status/legal.xml share/help/es_SV/mate-char-palette/figures/charpalette_applet.png share/help/es_SV/mate-char-palette/figures/charpick-preferences.png share/help/es_SV/mate-char-palette/figures/charpick_characters.png share/help/es_SV/mate-char-palette/index.docbook share/help/es_SV/mate-char-palette/legal.xml share/help/es_SV/mate-drivemount/figures/drivemount-applet_eject.png share/help/es_SV/mate-drivemount/figures/drivemount-applet_example.png share/help/es_SV/mate-drivemount/figures/drivemount-applet_mount.png share/help/es_SV/mate-drivemount/figures/drivemount-applet_open.png share/help/es_SV/mate-drivemount/figures/drivemount-applet_status.png share/help/es_SV/mate-drivemount/index.docbook share/help/es_SV/mate-drivemount/legal.xml share/help/es_SV/mate-geyes/figures/geyes_applet.png share/help/es_SV/mate-geyes/index.docbook share/help/es_SV/mate-geyes/legal.xml share/help/es_SV/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/es_SV/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/es_SV/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/es_SV/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/es_SV/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/es_SV/mate-stickynotes-applet/index.docbook share/help/es_SV/mate-stickynotes-applet/legal.xml share/help/es_SV/mate-trashapplet/figures/trash-applet.png share/help/es_SV/mate-trashapplet/index.docbook share/help/es_SV/mate-trashapplet/legal.xml share/help/es_SV/mateweather/figures/mateweather-details.png share/help/es_SV/mateweather/figures/mateweather-menu-prefs.png share/help/es_SV/mateweather/figures/mateweather-prefs-general.png share/help/es_SV/mateweather/figures/mateweather-prefs-locations.png share/help/es_SV/mateweather/figures/mateweather_applet.png share/help/es_SV/mateweather/figures/stock_weather-cloudy.png share/help/es_SV/mateweather/figures/stock_weather-few-clouds.png share/help/es_SV/mateweather/figures/stock_weather-fog.png share/help/es_SV/mateweather/figures/stock_weather-night-clear.png share/help/es_SV/mateweather/figures/stock_weather-night-few-clouds.png share/help/es_SV/mateweather/figures/stock_weather-showers.png share/help/es_SV/mateweather/figures/stock_weather-snow.png share/help/es_SV/mateweather/figures/stock_weather-storm.png share/help/es_SV/mateweather/figures/stock_weather-sunny.png share/help/es_SV/mateweather/index.docbook share/help/es_SV/mateweather/legal.xml share/help/es_UY/mate-accessx-status/figures/accessx-status-applet.png share/help/es_UY/mate-accessx-status/figures/accessx-status-disabled.png share/help/es_UY/mate-accessx-status/figures/accessx_bounce-keys.png share/help/es_UY/mate-accessx-status/figures/accessx_mouse-keys.png share/help/es_UY/mate-accessx-status/figures/accessx_slow-keys.png share/help/es_UY/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/es_UY/mate-accessx-status/figures/accessx_sticky-keys.png share/help/es_UY/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/es_UY/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/es_UY/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/es_UY/mate-accessx-status/index.docbook share/help/es_UY/mate-accessx-status/legal.xml share/help/es_UY/mate-char-palette/figures/charpalette_applet.png share/help/es_UY/mate-char-palette/figures/charpick-preferences.png share/help/es_UY/mate-char-palette/figures/charpick_characters.png share/help/es_UY/mate-char-palette/index.docbook share/help/es_UY/mate-char-palette/legal.xml share/help/es_UY/mate-drivemount/figures/drivemount-applet_eject.png share/help/es_UY/mate-drivemount/figures/drivemount-applet_example.png share/help/es_UY/mate-drivemount/figures/drivemount-applet_mount.png share/help/es_UY/mate-drivemount/figures/drivemount-applet_open.png share/help/es_UY/mate-drivemount/figures/drivemount-applet_status.png share/help/es_UY/mate-drivemount/index.docbook share/help/es_UY/mate-drivemount/legal.xml share/help/es_UY/mate-geyes/figures/geyes_applet.png share/help/es_UY/mate-geyes/index.docbook share/help/es_UY/mate-geyes/legal.xml share/help/es_UY/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/es_UY/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/es_UY/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/es_UY/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/es_UY/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/es_UY/mate-stickynotes-applet/index.docbook share/help/es_UY/mate-stickynotes-applet/legal.xml share/help/es_UY/mate-trashapplet/figures/trash-applet.png share/help/es_UY/mate-trashapplet/index.docbook share/help/es_UY/mate-trashapplet/legal.xml share/help/es_UY/mateweather/figures/mateweather-details.png share/help/es_UY/mateweather/figures/mateweather-menu-prefs.png share/help/es_UY/mateweather/figures/mateweather-prefs-general.png share/help/es_UY/mateweather/figures/mateweather-prefs-locations.png share/help/es_UY/mateweather/figures/mateweather_applet.png share/help/es_UY/mateweather/figures/stock_weather-cloudy.png share/help/es_UY/mateweather/figures/stock_weather-few-clouds.png share/help/es_UY/mateweather/figures/stock_weather-fog.png share/help/es_UY/mateweather/figures/stock_weather-night-clear.png share/help/es_UY/mateweather/figures/stock_weather-night-few-clouds.png share/help/es_UY/mateweather/figures/stock_weather-showers.png share/help/es_UY/mateweather/figures/stock_weather-snow.png share/help/es_UY/mateweather/figures/stock_weather-storm.png share/help/es_UY/mateweather/figures/stock_weather-sunny.png share/help/es_UY/mateweather/index.docbook share/help/es_UY/mateweather/legal.xml share/help/es_VE/mate-accessx-status/figures/accessx-status-applet.png share/help/es_VE/mate-accessx-status/figures/accessx-status-disabled.png share/help/es_VE/mate-accessx-status/figures/accessx_bounce-keys.png share/help/es_VE/mate-accessx-status/figures/accessx_mouse-keys.png share/help/es_VE/mate-accessx-status/figures/accessx_slow-keys.png share/help/es_VE/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/es_VE/mate-accessx-status/figures/accessx_sticky-keys.png share/help/es_VE/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/es_VE/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/es_VE/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/es_VE/mate-accessx-status/index.docbook share/help/es_VE/mate-accessx-status/legal.xml share/help/es_VE/mate-char-palette/figures/charpalette_applet.png share/help/es_VE/mate-char-palette/figures/charpick-preferences.png share/help/es_VE/mate-char-palette/figures/charpick_characters.png share/help/es_VE/mate-char-palette/index.docbook share/help/es_VE/mate-char-palette/legal.xml share/help/es_VE/mate-drivemount/figures/drivemount-applet_eject.png share/help/es_VE/mate-drivemount/figures/drivemount-applet_example.png share/help/es_VE/mate-drivemount/figures/drivemount-applet_mount.png share/help/es_VE/mate-drivemount/figures/drivemount-applet_open.png share/help/es_VE/mate-drivemount/figures/drivemount-applet_status.png share/help/es_VE/mate-drivemount/index.docbook share/help/es_VE/mate-drivemount/legal.xml share/help/es_VE/mate-geyes/figures/geyes_applet.png share/help/es_VE/mate-geyes/index.docbook share/help/es_VE/mate-geyes/legal.xml share/help/es_VE/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/es_VE/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/es_VE/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/es_VE/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/es_VE/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/es_VE/mate-stickynotes-applet/index.docbook share/help/es_VE/mate-stickynotes-applet/legal.xml share/help/es_VE/mate-trashapplet/figures/trash-applet.png share/help/es_VE/mate-trashapplet/index.docbook share/help/es_VE/mate-trashapplet/legal.xml share/help/es_VE/mateweather/figures/mateweather-details.png share/help/es_VE/mateweather/figures/mateweather-menu-prefs.png share/help/es_VE/mateweather/figures/mateweather-prefs-general.png share/help/es_VE/mateweather/figures/mateweather-prefs-locations.png share/help/es_VE/mateweather/figures/mateweather_applet.png share/help/es_VE/mateweather/figures/stock_weather-cloudy.png share/help/es_VE/mateweather/figures/stock_weather-few-clouds.png share/help/es_VE/mateweather/figures/stock_weather-fog.png share/help/es_VE/mateweather/figures/stock_weather-night-clear.png share/help/es_VE/mateweather/figures/stock_weather-night-few-clouds.png share/help/es_VE/mateweather/figures/stock_weather-showers.png share/help/es_VE/mateweather/figures/stock_weather-snow.png share/help/es_VE/mateweather/figures/stock_weather-storm.png share/help/es_VE/mateweather/figures/stock_weather-sunny.png share/help/es_VE/mateweather/index.docbook share/help/es_VE/mateweather/legal.xml share/help/et/mate-accessx-status/figures/accessx-status-applet.png share/help/et/mate-accessx-status/figures/accessx-status-disabled.png share/help/et/mate-accessx-status/figures/accessx_bounce-keys.png share/help/et/mate-accessx-status/figures/accessx_mouse-keys.png share/help/et/mate-accessx-status/figures/accessx_slow-keys.png share/help/et/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/et/mate-accessx-status/figures/accessx_sticky-keys.png share/help/et/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/et/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/et/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/et/mate-accessx-status/index.docbook share/help/et/mate-accessx-status/legal.xml %%BATTERY%%share/help/et/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/et/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/et/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/et/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/et/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/et/mate-battstat/index.docbook %%BATTERY%%share/help/et/mate-battstat/legal.xml share/help/et/mate-char-palette/figures/charpalette_applet.png share/help/et/mate-char-palette/figures/charpick-preferences.png share/help/et/mate-char-palette/figures/charpick_characters.png share/help/et/mate-char-palette/index.docbook share/help/et/mate-char-palette/legal.xml share/help/et/mate-drivemount/figures/drivemount-applet_eject.png share/help/et/mate-drivemount/figures/drivemount-applet_example.png share/help/et/mate-drivemount/figures/drivemount-applet_mount.png share/help/et/mate-drivemount/figures/drivemount-applet_open.png share/help/et/mate-drivemount/figures/drivemount-applet_status.png share/help/et/mate-drivemount/index.docbook share/help/et/mate-drivemount/legal.xml share/help/et/mate-geyes/figures/geyes_applet.png share/help/et/mate-geyes/index.docbook share/help/et/mate-geyes/legal.xml share/help/et/mate-multiload/figures/multiload-preferences.png share/help/et/mate-multiload/figures/system-monitor-applet_window.png share/help/et/mate-multiload/index.docbook share/help/et/mate-multiload/legal.xml share/help/et/mate-netspeed-applet/figures/details.png share/help/et/mate-netspeed-applet/figures/eth_sum_48.png share/help/et/mate-netspeed-applet/figures/ethernet.png share/help/et/mate-netspeed-applet/figures/loopback.png share/help/et/mate-netspeed-applet/figures/netspeed_applet.png share/help/et/mate-netspeed-applet/figures/plip.png share/help/et/mate-netspeed-applet/figures/ppp.png share/help/et/mate-netspeed-applet/figures/settings.png share/help/et/mate-netspeed-applet/figures/wavelan.png share/help/et/mate-netspeed-applet/index.docbook share/help/et/mate-netspeed-applet/legal.xml share/help/et/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/et/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/et/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/et/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/et/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/et/mate-stickynotes-applet/index.docbook share/help/et/mate-stickynotes-applet/legal.xml share/help/et/mate-trashapplet/figures/trash-applet.png share/help/et/mate-trashapplet/index.docbook share/help/et/mate-trashapplet/legal.xml share/help/et/mateweather/figures/mateweather-details.png share/help/et/mateweather/figures/mateweather-menu-prefs.png share/help/et/mateweather/figures/mateweather-prefs-general.png share/help/et/mateweather/figures/mateweather-prefs-locations.png share/help/et/mateweather/figures/mateweather_applet.png share/help/et/mateweather/figures/stock_weather-cloudy.png share/help/et/mateweather/figures/stock_weather-few-clouds.png share/help/et/mateweather/figures/stock_weather-fog.png share/help/et/mateweather/figures/stock_weather-night-clear.png share/help/et/mateweather/figures/stock_weather-night-few-clouds.png share/help/et/mateweather/figures/stock_weather-showers.png share/help/et/mateweather/figures/stock_weather-snow.png share/help/et/mateweather/figures/stock_weather-storm.png share/help/et/mateweather/figures/stock_weather-sunny.png share/help/et/mateweather/index.docbook share/help/et/mateweather/legal.xml share/help/eu/mate-accessx-status/figures/accessx-status-applet.png share/help/eu/mate-accessx-status/figures/accessx-status-disabled.png share/help/eu/mate-accessx-status/figures/accessx_bounce-keys.png share/help/eu/mate-accessx-status/figures/accessx_mouse-keys.png share/help/eu/mate-accessx-status/figures/accessx_slow-keys.png share/help/eu/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/eu/mate-accessx-status/figures/accessx_sticky-keys.png share/help/eu/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/eu/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/eu/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/eu/mate-accessx-status/index.docbook share/help/eu/mate-accessx-status/legal.xml %%BATTERY%%share/help/eu/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/eu/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/eu/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/eu/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/eu/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/eu/mate-battstat/index.docbook %%BATTERY%%share/help/eu/mate-battstat/legal.xml -%%BATTERY%%share/help/eu/mate-char-palette/figures/charpalette_applet.png +share/help/eu/mate-char-palette/figures/charpalette_applet.png share/help/eu/mate-char-palette/figures/charpick-preferences.png share/help/eu/mate-char-palette/figures/charpick_characters.png share/help/eu/mate-char-palette/index.docbook share/help/eu/mate-char-palette/legal.xml share/help/eu/mate-drivemount/figures/drivemount-applet_eject.png share/help/eu/mate-drivemount/figures/drivemount-applet_example.png share/help/eu/mate-drivemount/figures/drivemount-applet_mount.png share/help/eu/mate-drivemount/figures/drivemount-applet_open.png share/help/eu/mate-drivemount/figures/drivemount-applet_status.png share/help/eu/mate-drivemount/index.docbook share/help/eu/mate-drivemount/legal.xml share/help/eu/mate-geyes/figures/geyes_applet.png share/help/eu/mate-geyes/index.docbook share/help/eu/mate-geyes/legal.xml share/help/eu/mate-multiload/figures/multiload-preferences.png share/help/eu/mate-multiload/figures/system-monitor-applet_window.png share/help/eu/mate-multiload/index.docbook share/help/eu/mate-multiload/legal.xml share/help/eu/mate-netspeed-applet/figures/details.png share/help/eu/mate-netspeed-applet/figures/eth_sum_48.png share/help/eu/mate-netspeed-applet/figures/ethernet.png share/help/eu/mate-netspeed-applet/figures/loopback.png share/help/eu/mate-netspeed-applet/figures/netspeed_applet.png share/help/eu/mate-netspeed-applet/figures/plip.png share/help/eu/mate-netspeed-applet/figures/ppp.png share/help/eu/mate-netspeed-applet/figures/settings.png share/help/eu/mate-netspeed-applet/figures/wavelan.png share/help/eu/mate-netspeed-applet/index.docbook share/help/eu/mate-netspeed-applet/legal.xml share/help/eu/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/eu/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/eu/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/eu/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/eu/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/eu/mate-stickynotes-applet/index.docbook share/help/eu/mate-stickynotes-applet/legal.xml share/help/eu/mate-trashapplet/figures/trash-applet.png share/help/eu/mate-trashapplet/index.docbook share/help/eu/mate-trashapplet/legal.xml share/help/eu/mateweather/figures/mateweather-details.png share/help/eu/mateweather/figures/mateweather-menu-prefs.png share/help/eu/mateweather/figures/mateweather-prefs-general.png share/help/eu/mateweather/figures/mateweather-prefs-locations.png share/help/eu/mateweather/figures/mateweather_applet.png share/help/eu/mateweather/figures/stock_weather-cloudy.png share/help/eu/mateweather/figures/stock_weather-few-clouds.png share/help/eu/mateweather/figures/stock_weather-fog.png share/help/eu/mateweather/figures/stock_weather-night-clear.png share/help/eu/mateweather/figures/stock_weather-night-few-clouds.png share/help/eu/mateweather/figures/stock_weather-showers.png share/help/eu/mateweather/figures/stock_weather-snow.png share/help/eu/mateweather/figures/stock_weather-storm.png share/help/eu/mateweather/figures/stock_weather-sunny.png share/help/eu/mateweather/index.docbook share/help/eu/mateweather/legal.xml share/help/fa/mate-accessx-status/figures/accessx-status-applet.png share/help/fa/mate-accessx-status/figures/accessx-status-disabled.png share/help/fa/mate-accessx-status/figures/accessx_bounce-keys.png share/help/fa/mate-accessx-status/figures/accessx_mouse-keys.png share/help/fa/mate-accessx-status/figures/accessx_slow-keys.png share/help/fa/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/fa/mate-accessx-status/figures/accessx_sticky-keys.png share/help/fa/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/fa/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/fa/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/fa/mate-accessx-status/index.docbook share/help/fa/mate-accessx-status/legal.xml %%BATTERY%%share/help/fa/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/fa/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/fa/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/fa/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/fa/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/fa/mate-battstat/index.docbook %%BATTERY%%share/help/fa/mate-battstat/legal.xml share/help/fa/mate-char-palette/figures/charpalette_applet.png share/help/fa/mate-char-palette/figures/charpick-preferences.png share/help/fa/mate-char-palette/figures/charpick_characters.png share/help/fa/mate-char-palette/index.docbook share/help/fa/mate-char-palette/legal.xml share/help/fa/mate-drivemount/figures/drivemount-applet_eject.png share/help/fa/mate-drivemount/figures/drivemount-applet_example.png share/help/fa/mate-drivemount/figures/drivemount-applet_mount.png share/help/fa/mate-drivemount/figures/drivemount-applet_open.png share/help/fa/mate-drivemount/figures/drivemount-applet_status.png share/help/fa/mate-drivemount/index.docbook share/help/fa/mate-drivemount/legal.xml share/help/fa/mate-geyes/figures/geyes_applet.png share/help/fa/mate-geyes/index.docbook share/help/fa/mate-geyes/legal.xml share/help/fa/mate-multiload/figures/multiload-preferences.png share/help/fa/mate-multiload/figures/system-monitor-applet_window.png share/help/fa/mate-multiload/index.docbook share/help/fa/mate-multiload/legal.xml share/help/fa/mate-netspeed-applet/figures/details.png share/help/fa/mate-netspeed-applet/figures/eth_sum_48.png share/help/fa/mate-netspeed-applet/figures/ethernet.png share/help/fa/mate-netspeed-applet/figures/loopback.png share/help/fa/mate-netspeed-applet/figures/netspeed_applet.png share/help/fa/mate-netspeed-applet/figures/plip.png share/help/fa/mate-netspeed-applet/figures/ppp.png share/help/fa/mate-netspeed-applet/figures/settings.png share/help/fa/mate-netspeed-applet/figures/wavelan.png share/help/fa/mate-netspeed-applet/index.docbook share/help/fa/mate-netspeed-applet/legal.xml share/help/fa/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/fa/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/fa/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/fa/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/fa/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/fa/mate-stickynotes-applet/index.docbook share/help/fa/mate-stickynotes-applet/legal.xml share/help/fa/mate-trashapplet/figures/trash-applet.png share/help/fa/mate-trashapplet/index.docbook share/help/fa/mate-trashapplet/legal.xml share/help/fa/mateweather/figures/mateweather-details.png share/help/fa/mateweather/figures/mateweather-menu-prefs.png share/help/fa/mateweather/figures/mateweather-prefs-general.png share/help/fa/mateweather/figures/mateweather-prefs-locations.png share/help/fa/mateweather/figures/mateweather_applet.png share/help/fa/mateweather/figures/stock_weather-cloudy.png share/help/fa/mateweather/figures/stock_weather-few-clouds.png share/help/fa/mateweather/figures/stock_weather-fog.png share/help/fa/mateweather/figures/stock_weather-night-clear.png share/help/fa/mateweather/figures/stock_weather-night-few-clouds.png share/help/fa/mateweather/figures/stock_weather-showers.png share/help/fa/mateweather/figures/stock_weather-snow.png share/help/fa/mateweather/figures/stock_weather-storm.png share/help/fa/mateweather/figures/stock_weather-sunny.png share/help/fa/mateweather/index.docbook share/help/fa/mateweather/legal.xml share/help/fi/mate-accessx-status/figures/accessx-status-applet.png share/help/fi/mate-accessx-status/figures/accessx-status-disabled.png share/help/fi/mate-accessx-status/figures/accessx_bounce-keys.png share/help/fi/mate-accessx-status/figures/accessx_mouse-keys.png share/help/fi/mate-accessx-status/figures/accessx_slow-keys.png share/help/fi/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/fi/mate-accessx-status/figures/accessx_sticky-keys.png share/help/fi/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/fi/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/fi/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/fi/mate-accessx-status/index.docbook share/help/fi/mate-accessx-status/legal.xml %%BATTERY%%share/help/fi/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/fi/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/fi/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/fi/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/fi/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/fi/mate-battstat/index.docbook %%BATTERY%%share/help/fi/mate-battstat/legal.xml share/help/fi/mate-char-palette/figures/charpalette_applet.png share/help/fi/mate-char-palette/figures/charpick-preferences.png share/help/fi/mate-char-palette/figures/charpick_characters.png share/help/fi/mate-char-palette/index.docbook share/help/fi/mate-char-palette/legal.xml share/help/fi/mate-drivemount/figures/drivemount-applet_eject.png share/help/fi/mate-drivemount/figures/drivemount-applet_example.png share/help/fi/mate-drivemount/figures/drivemount-applet_mount.png share/help/fi/mate-drivemount/figures/drivemount-applet_open.png share/help/fi/mate-drivemount/figures/drivemount-applet_status.png share/help/fi/mate-drivemount/index.docbook share/help/fi/mate-drivemount/legal.xml share/help/fi/mate-geyes/figures/geyes_applet.png share/help/fi/mate-geyes/index.docbook share/help/fi/mate-geyes/legal.xml share/help/fi/mate-multiload/figures/multiload-preferences.png share/help/fi/mate-multiload/figures/system-monitor-applet_window.png share/help/fi/mate-multiload/index.docbook share/help/fi/mate-multiload/legal.xml share/help/fi/mate-netspeed-applet/figures/details.png share/help/fi/mate-netspeed-applet/figures/eth_sum_48.png share/help/fi/mate-netspeed-applet/figures/ethernet.png share/help/fi/mate-netspeed-applet/figures/loopback.png share/help/fi/mate-netspeed-applet/figures/netspeed_applet.png share/help/fi/mate-netspeed-applet/figures/plip.png share/help/fi/mate-netspeed-applet/figures/ppp.png share/help/fi/mate-netspeed-applet/figures/settings.png share/help/fi/mate-netspeed-applet/figures/wavelan.png share/help/fi/mate-netspeed-applet/index.docbook share/help/fi/mate-netspeed-applet/legal.xml share/help/fi/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/fi/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/fi/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/fi/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/fi/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/fi/mate-stickynotes-applet/index.docbook share/help/fi/mate-stickynotes-applet/legal.xml share/help/fi/mate-trashapplet/figures/trash-applet.png share/help/fi/mate-trashapplet/index.docbook share/help/fi/mate-trashapplet/legal.xml share/help/fi/mateweather/figures/mateweather-details.png share/help/fi/mateweather/figures/mateweather-menu-prefs.png share/help/fi/mateweather/figures/mateweather-prefs-general.png share/help/fi/mateweather/figures/mateweather-prefs-locations.png share/help/fi/mateweather/figures/mateweather_applet.png share/help/fi/mateweather/figures/stock_weather-cloudy.png share/help/fi/mateweather/figures/stock_weather-few-clouds.png share/help/fi/mateweather/figures/stock_weather-fog.png share/help/fi/mateweather/figures/stock_weather-night-clear.png share/help/fi/mateweather/figures/stock_weather-night-few-clouds.png share/help/fi/mateweather/figures/stock_weather-showers.png share/help/fi/mateweather/figures/stock_weather-snow.png share/help/fi/mateweather/figures/stock_weather-storm.png share/help/fi/mateweather/figures/stock_weather-sunny.png share/help/fi/mateweather/index.docbook share/help/fi/mateweather/legal.xml share/help/fil/mate-geyes/figures/geyes_applet.png share/help/fil/mate-geyes/index.docbook share/help/fil/mate-geyes/legal.xml share/help/fil/mate-trashapplet/figures/trash-applet.png share/help/fil/mate-trashapplet/index.docbook share/help/fil/mate-trashapplet/legal.xml share/help/fr/mate-accessx-status/figures/accessx-status-applet.png share/help/fr/mate-accessx-status/figures/accessx-status-disabled.png share/help/fr/mate-accessx-status/figures/accessx_bounce-keys.png share/help/fr/mate-accessx-status/figures/accessx_mouse-keys.png share/help/fr/mate-accessx-status/figures/accessx_slow-keys.png share/help/fr/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/fr/mate-accessx-status/figures/accessx_sticky-keys.png share/help/fr/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/fr/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/fr/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/fr/mate-accessx-status/index.docbook share/help/fr/mate-accessx-status/legal.xml %%BATTERY%%share/help/fr/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/fr/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/fr/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/fr/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/fr/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/fr/mate-battstat/index.docbook %%BATTERY%%share/help/fr/mate-battstat/legal.xml share/help/fr/mate-char-palette/figures/charpalette_applet.png share/help/fr/mate-char-palette/figures/charpick-preferences.png share/help/fr/mate-char-palette/figures/charpick_characters.png share/help/fr/mate-char-palette/index.docbook share/help/fr/mate-char-palette/legal.xml share/help/fr/mate-drivemount/figures/drivemount-applet_eject.png share/help/fr/mate-drivemount/figures/drivemount-applet_example.png share/help/fr/mate-drivemount/figures/drivemount-applet_mount.png share/help/fr/mate-drivemount/figures/drivemount-applet_open.png share/help/fr/mate-drivemount/figures/drivemount-applet_status.png share/help/fr/mate-drivemount/index.docbook share/help/fr/mate-drivemount/legal.xml share/help/fr/mate-geyes/figures/geyes_applet.png share/help/fr/mate-geyes/index.docbook share/help/fr/mate-geyes/legal.xml share/help/fr/mate-multiload/figures/multiload-preferences.png share/help/fr/mate-multiload/figures/system-monitor-applet_window.png share/help/fr/mate-multiload/index.docbook share/help/fr/mate-multiload/legal.xml share/help/fr/mate-netspeed-applet/figures/details.png share/help/fr/mate-netspeed-applet/figures/eth_sum_48.png share/help/fr/mate-netspeed-applet/figures/ethernet.png share/help/fr/mate-netspeed-applet/figures/loopback.png share/help/fr/mate-netspeed-applet/figures/netspeed_applet.png share/help/fr/mate-netspeed-applet/figures/plip.png share/help/fr/mate-netspeed-applet/figures/ppp.png share/help/fr/mate-netspeed-applet/figures/settings.png share/help/fr/mate-netspeed-applet/figures/wavelan.png share/help/fr/mate-netspeed-applet/index.docbook share/help/fr/mate-netspeed-applet/legal.xml share/help/fr/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/fr/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/fr/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/fr/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/fr/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/fr/mate-stickynotes-applet/index.docbook share/help/fr/mate-stickynotes-applet/legal.xml share/help/fr/mate-trashapplet/figures/trash-applet.png share/help/fr/mate-trashapplet/index.docbook share/help/fr/mate-trashapplet/legal.xml share/help/fr/mateweather/figures/mateweather-details.png share/help/fr/mateweather/figures/mateweather-menu-prefs.png share/help/fr/mateweather/figures/mateweather-prefs-general.png share/help/fr/mateweather/figures/mateweather-prefs-locations.png share/help/fr/mateweather/figures/mateweather_applet.png share/help/fr/mateweather/figures/stock_weather-cloudy.png share/help/fr/mateweather/figures/stock_weather-few-clouds.png share/help/fr/mateweather/figures/stock_weather-fog.png share/help/fr/mateweather/figures/stock_weather-night-clear.png share/help/fr/mateweather/figures/stock_weather-night-few-clouds.png share/help/fr/mateweather/figures/stock_weather-showers.png share/help/fr/mateweather/figures/stock_weather-snow.png share/help/fr/mateweather/figures/stock_weather-storm.png share/help/fr/mateweather/figures/stock_weather-sunny.png share/help/fr/mateweather/index.docbook share/help/fr/mateweather/legal.xml share/help/fr_CA/mate-geyes/figures/geyes_applet.png share/help/fr_CA/mate-geyes/index.docbook share/help/fr_CA/mate-geyes/legal.xml %%BATTERY%%share/help/frp/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/frp/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/frp/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/frp/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/frp/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/frp/mate-battstat/index.docbook %%BATTERY%%share/help/frp/mate-battstat/legal.xml share/help/frp/mate-geyes/figures/geyes_applet.png share/help/frp/mate-geyes/index.docbook share/help/frp/mate-geyes/legal.xml share/help/frp/mate-netspeed-applet/figures/details.png share/help/frp/mate-netspeed-applet/figures/eth_sum_48.png share/help/frp/mate-netspeed-applet/figures/ethernet.png share/help/frp/mate-netspeed-applet/figures/loopback.png share/help/frp/mate-netspeed-applet/figures/netspeed_applet.png share/help/frp/mate-netspeed-applet/figures/plip.png share/help/frp/mate-netspeed-applet/figures/ppp.png share/help/frp/mate-netspeed-applet/figures/settings.png share/help/frp/mate-netspeed-applet/figures/wavelan.png share/help/frp/mate-netspeed-applet/index.docbook share/help/frp/mate-netspeed-applet/legal.xml share/help/frp/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/frp/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/frp/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/frp/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/frp/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/frp/mate-stickynotes-applet/index.docbook share/help/frp/mate-stickynotes-applet/legal.xml share/help/frp/mate-trashapplet/figures/trash-applet.png share/help/frp/mate-trashapplet/index.docbook share/help/frp/mate-trashapplet/legal.xml share/help/frp/mateweather/figures/mateweather-details.png share/help/frp/mateweather/figures/mateweather-menu-prefs.png share/help/frp/mateweather/figures/mateweather-prefs-general.png share/help/frp/mateweather/figures/mateweather-prefs-locations.png share/help/frp/mateweather/figures/mateweather_applet.png share/help/frp/mateweather/figures/stock_weather-cloudy.png share/help/frp/mateweather/figures/stock_weather-few-clouds.png share/help/frp/mateweather/figures/stock_weather-fog.png share/help/frp/mateweather/figures/stock_weather-night-clear.png share/help/frp/mateweather/figures/stock_weather-night-few-clouds.png share/help/frp/mateweather/figures/stock_weather-showers.png share/help/frp/mateweather/figures/stock_weather-snow.png share/help/frp/mateweather/figures/stock_weather-storm.png share/help/frp/mateweather/figures/stock_weather-sunny.png share/help/frp/mateweather/index.docbook share/help/frp/mateweather/legal.xml share/help/fur/mate-accessx-status/figures/accessx-status-applet.png share/help/fur/mate-accessx-status/figures/accessx-status-disabled.png share/help/fur/mate-accessx-status/figures/accessx_bounce-keys.png share/help/fur/mate-accessx-status/figures/accessx_mouse-keys.png share/help/fur/mate-accessx-status/figures/accessx_slow-keys.png share/help/fur/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/fur/mate-accessx-status/figures/accessx_sticky-keys.png share/help/fur/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/fur/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/fur/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/fur/mate-accessx-status/index.docbook share/help/fur/mate-accessx-status/legal.xml %%BATTERY%%share/help/fur/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/fur/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/fur/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/fur/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/fur/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/fur/mate-battstat/index.docbook %%BATTERY%%share/help/fur/mate-battstat/legal.xml share/help/fur/mate-char-palette/figures/charpalette_applet.png share/help/fur/mate-char-palette/figures/charpick-preferences.png share/help/fur/mate-char-palette/figures/charpick_characters.png share/help/fur/mate-char-palette/index.docbook share/help/fur/mate-char-palette/legal.xml share/help/fur/mate-drivemount/figures/drivemount-applet_eject.png share/help/fur/mate-drivemount/figures/drivemount-applet_example.png share/help/fur/mate-drivemount/figures/drivemount-applet_mount.png share/help/fur/mate-drivemount/figures/drivemount-applet_open.png share/help/fur/mate-drivemount/figures/drivemount-applet_status.png share/help/fur/mate-drivemount/index.docbook share/help/fur/mate-drivemount/legal.xml share/help/fur/mate-geyes/figures/geyes_applet.png share/help/fur/mate-geyes/index.docbook share/help/fur/mate-geyes/legal.xml share/help/fur/mate-multiload/figures/multiload-preferences.png share/help/fur/mate-multiload/figures/system-monitor-applet_window.png share/help/fur/mate-multiload/index.docbook share/help/fur/mate-multiload/legal.xml share/help/fur/mate-netspeed-applet/figures/details.png share/help/fur/mate-netspeed-applet/figures/eth_sum_48.png share/help/fur/mate-netspeed-applet/figures/ethernet.png share/help/fur/mate-netspeed-applet/figures/loopback.png share/help/fur/mate-netspeed-applet/figures/netspeed_applet.png share/help/fur/mate-netspeed-applet/figures/plip.png share/help/fur/mate-netspeed-applet/figures/ppp.png share/help/fur/mate-netspeed-applet/figures/settings.png share/help/fur/mate-netspeed-applet/figures/wavelan.png share/help/fur/mate-netspeed-applet/index.docbook share/help/fur/mate-netspeed-applet/legal.xml share/help/fur/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/fur/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/fur/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/fur/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/fur/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/fur/mate-stickynotes-applet/index.docbook share/help/fur/mate-stickynotes-applet/legal.xml share/help/fur/mate-trashapplet/figures/trash-applet.png share/help/fur/mate-trashapplet/index.docbook share/help/fur/mate-trashapplet/legal.xml share/help/fur/mateweather/figures/mateweather-details.png share/help/fur/mateweather/figures/mateweather-menu-prefs.png share/help/fur/mateweather/figures/mateweather-prefs-general.png share/help/fur/mateweather/figures/mateweather-prefs-locations.png share/help/fur/mateweather/figures/mateweather_applet.png share/help/fur/mateweather/figures/stock_weather-cloudy.png share/help/fur/mateweather/figures/stock_weather-few-clouds.png share/help/fur/mateweather/figures/stock_weather-fog.png share/help/fur/mateweather/figures/stock_weather-night-clear.png share/help/fur/mateweather/figures/stock_weather-night-few-clouds.png share/help/fur/mateweather/figures/stock_weather-showers.png share/help/fur/mateweather/figures/stock_weather-snow.png share/help/fur/mateweather/figures/stock_weather-storm.png share/help/fur/mateweather/figures/stock_weather-sunny.png share/help/fur/mateweather/index.docbook share/help/fur/mateweather/legal.xml share/help/fy/mate-accessx-status/figures/accessx-status-applet.png share/help/fy/mate-accessx-status/figures/accessx-status-disabled.png share/help/fy/mate-accessx-status/figures/accessx_bounce-keys.png share/help/fy/mate-accessx-status/figures/accessx_mouse-keys.png share/help/fy/mate-accessx-status/figures/accessx_slow-keys.png share/help/fy/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/fy/mate-accessx-status/figures/accessx_sticky-keys.png share/help/fy/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/fy/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/fy/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/fy/mate-accessx-status/index.docbook share/help/fy/mate-accessx-status/legal.xml %%BATTERY%%share/help/fy/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/fy/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/fy/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/fy/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/fy/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/fy/mate-battstat/index.docbook %%BATTERY%%share/help/fy/mate-battstat/legal.xml share/help/fy/mate-char-palette/figures/charpalette_applet.png share/help/fy/mate-char-palette/figures/charpick-preferences.png share/help/fy/mate-char-palette/figures/charpick_characters.png share/help/fy/mate-char-palette/index.docbook share/help/fy/mate-char-palette/legal.xml share/help/fy/mate-drivemount/figures/drivemount-applet_eject.png share/help/fy/mate-drivemount/figures/drivemount-applet_example.png share/help/fy/mate-drivemount/figures/drivemount-applet_mount.png share/help/fy/mate-drivemount/figures/drivemount-applet_open.png share/help/fy/mate-drivemount/figures/drivemount-applet_status.png share/help/fy/mate-drivemount/index.docbook share/help/fy/mate-drivemount/legal.xml share/help/fy/mate-geyes/figures/geyes_applet.png share/help/fy/mate-geyes/index.docbook share/help/fy/mate-geyes/legal.xml share/help/fy/mate-multiload/figures/multiload-preferences.png share/help/fy/mate-multiload/figures/system-monitor-applet_window.png share/help/fy/mate-multiload/index.docbook share/help/fy/mate-multiload/legal.xml share/help/fy/mate-netspeed-applet/figures/details.png share/help/fy/mate-netspeed-applet/figures/eth_sum_48.png share/help/fy/mate-netspeed-applet/figures/ethernet.png share/help/fy/mate-netspeed-applet/figures/loopback.png share/help/fy/mate-netspeed-applet/figures/netspeed_applet.png share/help/fy/mate-netspeed-applet/figures/plip.png share/help/fy/mate-netspeed-applet/figures/ppp.png share/help/fy/mate-netspeed-applet/figures/settings.png share/help/fy/mate-netspeed-applet/figures/wavelan.png share/help/fy/mate-netspeed-applet/index.docbook share/help/fy/mate-netspeed-applet/legal.xml share/help/fy/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/fy/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/fy/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/fy/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/fy/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/fy/mate-stickynotes-applet/index.docbook share/help/fy/mate-stickynotes-applet/legal.xml share/help/fy/mate-trashapplet/figures/trash-applet.png share/help/fy/mate-trashapplet/index.docbook share/help/fy/mate-trashapplet/legal.xml share/help/fy/mateweather/figures/mateweather-details.png share/help/fy/mateweather/figures/mateweather-menu-prefs.png share/help/fy/mateweather/figures/mateweather-prefs-general.png share/help/fy/mateweather/figures/mateweather-prefs-locations.png share/help/fy/mateweather/figures/mateweather_applet.png share/help/fy/mateweather/figures/stock_weather-cloudy.png share/help/fy/mateweather/figures/stock_weather-few-clouds.png share/help/fy/mateweather/figures/stock_weather-fog.png share/help/fy/mateweather/figures/stock_weather-night-clear.png share/help/fy/mateweather/figures/stock_weather-night-few-clouds.png share/help/fy/mateweather/figures/stock_weather-showers.png share/help/fy/mateweather/figures/stock_weather-snow.png share/help/fy/mateweather/figures/stock_weather-storm.png share/help/fy/mateweather/figures/stock_weather-sunny.png share/help/fy/mateweather/index.docbook share/help/fy/mateweather/legal.xml share/help/ga/mate-accessx-status/figures/accessx-status-applet.png share/help/ga/mate-accessx-status/figures/accessx-status-disabled.png share/help/ga/mate-accessx-status/figures/accessx_bounce-keys.png share/help/ga/mate-accessx-status/figures/accessx_mouse-keys.png share/help/ga/mate-accessx-status/figures/accessx_slow-keys.png share/help/ga/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/ga/mate-accessx-status/figures/accessx_sticky-keys.png share/help/ga/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/ga/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/ga/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/ga/mate-accessx-status/index.docbook share/help/ga/mate-accessx-status/legal.xml %%BATTERY%%share/help/ga/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/ga/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/ga/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/ga/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/ga/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/ga/mate-battstat/index.docbook %%BATTERY%%share/help/ga/mate-battstat/legal.xml share/help/ga/mate-char-palette/figures/charpalette_applet.png share/help/ga/mate-char-palette/figures/charpick-preferences.png share/help/ga/mate-char-palette/figures/charpick_characters.png share/help/ga/mate-char-palette/index.docbook share/help/ga/mate-char-palette/legal.xml share/help/ga/mate-drivemount/figures/drivemount-applet_eject.png share/help/ga/mate-drivemount/figures/drivemount-applet_example.png share/help/ga/mate-drivemount/figures/drivemount-applet_mount.png share/help/ga/mate-drivemount/figures/drivemount-applet_open.png share/help/ga/mate-drivemount/figures/drivemount-applet_status.png share/help/ga/mate-drivemount/index.docbook share/help/ga/mate-drivemount/legal.xml share/help/ga/mate-geyes/figures/geyes_applet.png share/help/ga/mate-geyes/index.docbook share/help/ga/mate-geyes/legal.xml share/help/ga/mate-multiload/figures/multiload-preferences.png share/help/ga/mate-multiload/figures/system-monitor-applet_window.png share/help/ga/mate-multiload/index.docbook share/help/ga/mate-multiload/legal.xml share/help/ga/mate-netspeed-applet/figures/details.png share/help/ga/mate-netspeed-applet/figures/eth_sum_48.png share/help/ga/mate-netspeed-applet/figures/ethernet.png share/help/ga/mate-netspeed-applet/figures/loopback.png share/help/ga/mate-netspeed-applet/figures/netspeed_applet.png share/help/ga/mate-netspeed-applet/figures/plip.png share/help/ga/mate-netspeed-applet/figures/ppp.png share/help/ga/mate-netspeed-applet/figures/settings.png share/help/ga/mate-netspeed-applet/figures/wavelan.png share/help/ga/mate-netspeed-applet/index.docbook share/help/ga/mate-netspeed-applet/legal.xml share/help/ga/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/ga/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/ga/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/ga/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/ga/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/ga/mate-stickynotes-applet/index.docbook share/help/ga/mate-stickynotes-applet/legal.xml share/help/ga/mate-trashapplet/figures/trash-applet.png share/help/ga/mate-trashapplet/index.docbook share/help/ga/mate-trashapplet/legal.xml share/help/ga/mateweather/figures/mateweather-details.png share/help/ga/mateweather/figures/mateweather-menu-prefs.png share/help/ga/mateweather/figures/mateweather-prefs-general.png share/help/ga/mateweather/figures/mateweather-prefs-locations.png share/help/ga/mateweather/figures/mateweather_applet.png share/help/ga/mateweather/figures/stock_weather-cloudy.png share/help/ga/mateweather/figures/stock_weather-few-clouds.png share/help/ga/mateweather/figures/stock_weather-fog.png share/help/ga/mateweather/figures/stock_weather-night-clear.png share/help/ga/mateweather/figures/stock_weather-night-few-clouds.png share/help/ga/mateweather/figures/stock_weather-showers.png share/help/ga/mateweather/figures/stock_weather-snow.png share/help/ga/mateweather/figures/stock_weather-storm.png share/help/ga/mateweather/figures/stock_weather-sunny.png share/help/ga/mateweather/index.docbook share/help/ga/mateweather/legal.xml share/help/gl/mate-accessx-status/figures/accessx-status-applet.png share/help/gl/mate-accessx-status/figures/accessx-status-disabled.png share/help/gl/mate-accessx-status/figures/accessx_bounce-keys.png share/help/gl/mate-accessx-status/figures/accessx_mouse-keys.png share/help/gl/mate-accessx-status/figures/accessx_slow-keys.png share/help/gl/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/gl/mate-accessx-status/figures/accessx_sticky-keys.png share/help/gl/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/gl/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/gl/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/gl/mate-accessx-status/index.docbook share/help/gl/mate-accessx-status/legal.xml %%BATTERY%%share/help/gl/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/gl/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/gl/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/gl/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/gl/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/gl/mate-battstat/index.docbook %%BATTERY%%share/help/gl/mate-battstat/legal.xml share/help/gl/mate-char-palette/figures/charpalette_applet.png share/help/gl/mate-char-palette/figures/charpick-preferences.png share/help/gl/mate-char-palette/figures/charpick_characters.png share/help/gl/mate-char-palette/index.docbook share/help/gl/mate-char-palette/legal.xml share/help/gl/mate-drivemount/figures/drivemount-applet_eject.png share/help/gl/mate-drivemount/figures/drivemount-applet_example.png share/help/gl/mate-drivemount/figures/drivemount-applet_mount.png share/help/gl/mate-drivemount/figures/drivemount-applet_open.png share/help/gl/mate-drivemount/figures/drivemount-applet_status.png share/help/gl/mate-drivemount/index.docbook share/help/gl/mate-drivemount/legal.xml share/help/gl/mate-geyes/figures/geyes_applet.png share/help/gl/mate-geyes/index.docbook share/help/gl/mate-geyes/legal.xml share/help/gl/mate-multiload/figures/multiload-preferences.png share/help/gl/mate-multiload/figures/system-monitor-applet_window.png share/help/gl/mate-multiload/index.docbook share/help/gl/mate-multiload/legal.xml share/help/gl/mate-netspeed-applet/figures/details.png share/help/gl/mate-netspeed-applet/figures/eth_sum_48.png share/help/gl/mate-netspeed-applet/figures/ethernet.png share/help/gl/mate-netspeed-applet/figures/loopback.png share/help/gl/mate-netspeed-applet/figures/netspeed_applet.png share/help/gl/mate-netspeed-applet/figures/plip.png share/help/gl/mate-netspeed-applet/figures/ppp.png share/help/gl/mate-netspeed-applet/figures/settings.png share/help/gl/mate-netspeed-applet/figures/wavelan.png share/help/gl/mate-netspeed-applet/index.docbook share/help/gl/mate-netspeed-applet/legal.xml share/help/gl/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/gl/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/gl/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/gl/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/gl/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/gl/mate-stickynotes-applet/index.docbook share/help/gl/mate-stickynotes-applet/legal.xml share/help/gl/mate-trashapplet/figures/trash-applet.png share/help/gl/mate-trashapplet/index.docbook share/help/gl/mate-trashapplet/legal.xml share/help/gl/mateweather/figures/mateweather-details.png share/help/gl/mateweather/figures/mateweather-menu-prefs.png share/help/gl/mateweather/figures/mateweather-prefs-general.png share/help/gl/mateweather/figures/mateweather-prefs-locations.png share/help/gl/mateweather/figures/mateweather_applet.png share/help/gl/mateweather/figures/stock_weather-cloudy.png share/help/gl/mateweather/figures/stock_weather-few-clouds.png share/help/gl/mateweather/figures/stock_weather-fog.png share/help/gl/mateweather/figures/stock_weather-night-clear.png share/help/gl/mateweather/figures/stock_weather-night-few-clouds.png share/help/gl/mateweather/figures/stock_weather-showers.png share/help/gl/mateweather/figures/stock_weather-snow.png share/help/gl/mateweather/figures/stock_weather-storm.png share/help/gl/mateweather/figures/stock_weather-sunny.png share/help/gl/mateweather/index.docbook share/help/gl/mateweather/legal.xml share/help/gu/mate-accessx-status/figures/accessx-status-applet.png share/help/gu/mate-accessx-status/figures/accessx-status-disabled.png share/help/gu/mate-accessx-status/figures/accessx_bounce-keys.png share/help/gu/mate-accessx-status/figures/accessx_mouse-keys.png share/help/gu/mate-accessx-status/figures/accessx_slow-keys.png share/help/gu/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/gu/mate-accessx-status/figures/accessx_sticky-keys.png share/help/gu/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/gu/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/gu/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/gu/mate-accessx-status/index.docbook share/help/gu/mate-accessx-status/legal.xml %%BATTERY%%share/help/gu/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/gu/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/gu/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/gu/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/gu/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/gu/mate-battstat/index.docbook %%BATTERY%%share/help/gu/mate-battstat/legal.xml share/help/gu/mate-char-palette/figures/charpalette_applet.png share/help/gu/mate-char-palette/figures/charpick-preferences.png share/help/gu/mate-char-palette/figures/charpick_characters.png share/help/gu/mate-char-palette/index.docbook share/help/gu/mate-char-palette/legal.xml share/help/gu/mate-drivemount/figures/drivemount-applet_eject.png share/help/gu/mate-drivemount/figures/drivemount-applet_example.png share/help/gu/mate-drivemount/figures/drivemount-applet_mount.png share/help/gu/mate-drivemount/figures/drivemount-applet_open.png share/help/gu/mate-drivemount/figures/drivemount-applet_status.png share/help/gu/mate-drivemount/index.docbook share/help/gu/mate-drivemount/legal.xml share/help/gu/mate-geyes/figures/geyes_applet.png share/help/gu/mate-geyes/index.docbook share/help/gu/mate-geyes/legal.xml share/help/gu/mate-multiload/figures/multiload-preferences.png share/help/gu/mate-multiload/figures/system-monitor-applet_window.png share/help/gu/mate-multiload/index.docbook share/help/gu/mate-multiload/legal.xml share/help/gu/mate-netspeed-applet/figures/details.png share/help/gu/mate-netspeed-applet/figures/eth_sum_48.png share/help/gu/mate-netspeed-applet/figures/ethernet.png share/help/gu/mate-netspeed-applet/figures/loopback.png share/help/gu/mate-netspeed-applet/figures/netspeed_applet.png share/help/gu/mate-netspeed-applet/figures/plip.png share/help/gu/mate-netspeed-applet/figures/ppp.png share/help/gu/mate-netspeed-applet/figures/settings.png share/help/gu/mate-netspeed-applet/figures/wavelan.png share/help/gu/mate-netspeed-applet/index.docbook share/help/gu/mate-netspeed-applet/legal.xml share/help/gu/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/gu/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/gu/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/gu/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/gu/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/gu/mate-stickynotes-applet/index.docbook share/help/gu/mate-stickynotes-applet/legal.xml share/help/gu/mate-trashapplet/figures/trash-applet.png share/help/gu/mate-trashapplet/index.docbook share/help/gu/mate-trashapplet/legal.xml share/help/gu/mateweather/figures/mateweather-details.png share/help/gu/mateweather/figures/mateweather-menu-prefs.png share/help/gu/mateweather/figures/mateweather-prefs-general.png share/help/gu/mateweather/figures/mateweather-prefs-locations.png share/help/gu/mateweather/figures/mateweather_applet.png share/help/gu/mateweather/figures/stock_weather-cloudy.png share/help/gu/mateweather/figures/stock_weather-few-clouds.png share/help/gu/mateweather/figures/stock_weather-fog.png share/help/gu/mateweather/figures/stock_weather-night-clear.png share/help/gu/mateweather/figures/stock_weather-night-few-clouds.png share/help/gu/mateweather/figures/stock_weather-showers.png share/help/gu/mateweather/figures/stock_weather-snow.png share/help/gu/mateweather/figures/stock_weather-storm.png share/help/gu/mateweather/figures/stock_weather-sunny.png share/help/gu/mateweather/index.docbook share/help/gu/mateweather/legal.xml share/help/ha/mate-accessx-status/figures/accessx-status-applet.png share/help/ha/mate-accessx-status/figures/accessx-status-disabled.png share/help/ha/mate-accessx-status/figures/accessx_bounce-keys.png share/help/ha/mate-accessx-status/figures/accessx_mouse-keys.png share/help/ha/mate-accessx-status/figures/accessx_slow-keys.png share/help/ha/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/ha/mate-accessx-status/figures/accessx_sticky-keys.png share/help/ha/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/ha/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/ha/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/ha/mate-accessx-status/index.docbook share/help/ha/mate-accessx-status/legal.xml %%BATTERY%%share/help/ha/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/ha/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/ha/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/ha/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/ha/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/ha/mate-battstat/index.docbook %%BATTERY%%share/help/ha/mate-battstat/legal.xml share/help/ha/mate-char-palette/figures/charpalette_applet.png share/help/ha/mate-char-palette/figures/charpick-preferences.png share/help/ha/mate-char-palette/figures/charpick_characters.png share/help/ha/mate-char-palette/index.docbook share/help/ha/mate-char-palette/legal.xml share/help/ha/mate-drivemount/figures/drivemount-applet_eject.png share/help/ha/mate-drivemount/figures/drivemount-applet_example.png share/help/ha/mate-drivemount/figures/drivemount-applet_mount.png share/help/ha/mate-drivemount/figures/drivemount-applet_open.png share/help/ha/mate-drivemount/figures/drivemount-applet_status.png share/help/ha/mate-drivemount/index.docbook share/help/ha/mate-drivemount/legal.xml share/help/ha/mate-geyes/figures/geyes_applet.png share/help/ha/mate-geyes/index.docbook share/help/ha/mate-geyes/legal.xml share/help/ha/mate-multiload/figures/multiload-preferences.png share/help/ha/mate-multiload/figures/system-monitor-applet_window.png share/help/ha/mate-multiload/index.docbook share/help/ha/mate-multiload/legal.xml share/help/ha/mate-netspeed-applet/figures/details.png share/help/ha/mate-netspeed-applet/figures/eth_sum_48.png share/help/ha/mate-netspeed-applet/figures/ethernet.png share/help/ha/mate-netspeed-applet/figures/loopback.png share/help/ha/mate-netspeed-applet/figures/netspeed_applet.png share/help/ha/mate-netspeed-applet/figures/plip.png share/help/ha/mate-netspeed-applet/figures/ppp.png share/help/ha/mate-netspeed-applet/figures/settings.png share/help/ha/mate-netspeed-applet/figures/wavelan.png share/help/ha/mate-netspeed-applet/index.docbook share/help/ha/mate-netspeed-applet/legal.xml share/help/ha/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/ha/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/ha/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/ha/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/ha/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/ha/mate-stickynotes-applet/index.docbook share/help/ha/mate-stickynotes-applet/legal.xml share/help/ha/mate-trashapplet/figures/trash-applet.png share/help/ha/mate-trashapplet/index.docbook share/help/ha/mate-trashapplet/legal.xml share/help/ha/mateweather/figures/mateweather-details.png share/help/ha/mateweather/figures/mateweather-menu-prefs.png share/help/ha/mateweather/figures/mateweather-prefs-general.png share/help/ha/mateweather/figures/mateweather-prefs-locations.png share/help/ha/mateweather/figures/mateweather_applet.png share/help/ha/mateweather/figures/stock_weather-cloudy.png share/help/ha/mateweather/figures/stock_weather-few-clouds.png share/help/ha/mateweather/figures/stock_weather-fog.png share/help/ha/mateweather/figures/stock_weather-night-clear.png share/help/ha/mateweather/figures/stock_weather-night-few-clouds.png share/help/ha/mateweather/figures/stock_weather-showers.png share/help/ha/mateweather/figures/stock_weather-snow.png share/help/ha/mateweather/figures/stock_weather-storm.png share/help/ha/mateweather/figures/stock_weather-sunny.png share/help/ha/mateweather/index.docbook share/help/ha/mateweather/legal.xml share/help/he/mate-accessx-status/figures/accessx-status-applet.png share/help/he/mate-accessx-status/figures/accessx-status-disabled.png share/help/he/mate-accessx-status/figures/accessx_bounce-keys.png share/help/he/mate-accessx-status/figures/accessx_mouse-keys.png share/help/he/mate-accessx-status/figures/accessx_slow-keys.png share/help/he/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/he/mate-accessx-status/figures/accessx_sticky-keys.png share/help/he/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/he/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/he/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/he/mate-accessx-status/index.docbook share/help/he/mate-accessx-status/legal.xml %%BATTERY%%share/help/he/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/he/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/he/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/he/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/he/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/he/mate-battstat/index.docbook %%BATTERY%%share/help/he/mate-battstat/legal.xml share/help/he/mate-char-palette/figures/charpalette_applet.png share/help/he/mate-char-palette/figures/charpick-preferences.png share/help/he/mate-char-palette/figures/charpick_characters.png share/help/he/mate-char-palette/index.docbook share/help/he/mate-char-palette/legal.xml share/help/he/mate-drivemount/figures/drivemount-applet_eject.png share/help/he/mate-drivemount/figures/drivemount-applet_example.png share/help/he/mate-drivemount/figures/drivemount-applet_mount.png share/help/he/mate-drivemount/figures/drivemount-applet_open.png share/help/he/mate-drivemount/figures/drivemount-applet_status.png share/help/he/mate-drivemount/index.docbook share/help/he/mate-drivemount/legal.xml share/help/he/mate-geyes/figures/geyes_applet.png share/help/he/mate-geyes/index.docbook share/help/he/mate-geyes/legal.xml share/help/he/mate-multiload/figures/multiload-preferences.png share/help/he/mate-multiload/figures/system-monitor-applet_window.png share/help/he/mate-multiload/index.docbook share/help/he/mate-multiload/legal.xml share/help/he/mate-netspeed-applet/figures/details.png share/help/he/mate-netspeed-applet/figures/eth_sum_48.png share/help/he/mate-netspeed-applet/figures/ethernet.png share/help/he/mate-netspeed-applet/figures/loopback.png share/help/he/mate-netspeed-applet/figures/netspeed_applet.png share/help/he/mate-netspeed-applet/figures/plip.png share/help/he/mate-netspeed-applet/figures/ppp.png share/help/he/mate-netspeed-applet/figures/settings.png share/help/he/mate-netspeed-applet/figures/wavelan.png share/help/he/mate-netspeed-applet/index.docbook share/help/he/mate-netspeed-applet/legal.xml share/help/he/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/he/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/he/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/he/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/he/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/he/mate-stickynotes-applet/index.docbook share/help/he/mate-stickynotes-applet/legal.xml share/help/he/mate-trashapplet/figures/trash-applet.png share/help/he/mate-trashapplet/index.docbook share/help/he/mate-trashapplet/legal.xml share/help/he/mateweather/figures/mateweather-details.png share/help/he/mateweather/figures/mateweather-menu-prefs.png share/help/he/mateweather/figures/mateweather-prefs-general.png share/help/he/mateweather/figures/mateweather-prefs-locations.png share/help/he/mateweather/figures/mateweather_applet.png share/help/he/mateweather/figures/stock_weather-cloudy.png share/help/he/mateweather/figures/stock_weather-few-clouds.png share/help/he/mateweather/figures/stock_weather-fog.png share/help/he/mateweather/figures/stock_weather-night-clear.png share/help/he/mateweather/figures/stock_weather-night-few-clouds.png share/help/he/mateweather/figures/stock_weather-showers.png share/help/he/mateweather/figures/stock_weather-snow.png share/help/he/mateweather/figures/stock_weather-storm.png share/help/he/mateweather/figures/stock_weather-sunny.png share/help/he/mateweather/index.docbook share/help/he/mateweather/legal.xml share/help/hi/mate-accessx-status/figures/accessx-status-applet.png share/help/hi/mate-accessx-status/figures/accessx-status-disabled.png share/help/hi/mate-accessx-status/figures/accessx_bounce-keys.png share/help/hi/mate-accessx-status/figures/accessx_mouse-keys.png share/help/hi/mate-accessx-status/figures/accessx_slow-keys.png share/help/hi/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/hi/mate-accessx-status/figures/accessx_sticky-keys.png share/help/hi/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/hi/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/hi/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/hi/mate-accessx-status/index.docbook share/help/hi/mate-accessx-status/legal.xml %%BATTERY%%share/help/hi/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/hi/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/hi/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/hi/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/hi/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/hi/mate-battstat/index.docbook %%BATTERY%%share/help/hi/mate-battstat/legal.xml share/help/hi/mate-char-palette/figures/charpalette_applet.png share/help/hi/mate-char-palette/figures/charpick-preferences.png share/help/hi/mate-char-palette/figures/charpick_characters.png share/help/hi/mate-char-palette/index.docbook share/help/hi/mate-char-palette/legal.xml share/help/hi/mate-drivemount/figures/drivemount-applet_eject.png share/help/hi/mate-drivemount/figures/drivemount-applet_example.png share/help/hi/mate-drivemount/figures/drivemount-applet_mount.png share/help/hi/mate-drivemount/figures/drivemount-applet_open.png share/help/hi/mate-drivemount/figures/drivemount-applet_status.png share/help/hi/mate-drivemount/index.docbook share/help/hi/mate-drivemount/legal.xml share/help/hi/mate-geyes/figures/geyes_applet.png share/help/hi/mate-geyes/index.docbook share/help/hi/mate-geyes/legal.xml share/help/hi/mate-multiload/figures/multiload-preferences.png share/help/hi/mate-multiload/figures/system-monitor-applet_window.png share/help/hi/mate-multiload/index.docbook share/help/hi/mate-multiload/legal.xml share/help/hi/mate-netspeed-applet/figures/details.png share/help/hi/mate-netspeed-applet/figures/eth_sum_48.png share/help/hi/mate-netspeed-applet/figures/ethernet.png share/help/hi/mate-netspeed-applet/figures/loopback.png share/help/hi/mate-netspeed-applet/figures/netspeed_applet.png share/help/hi/mate-netspeed-applet/figures/plip.png share/help/hi/mate-netspeed-applet/figures/ppp.png share/help/hi/mate-netspeed-applet/figures/settings.png share/help/hi/mate-netspeed-applet/figures/wavelan.png share/help/hi/mate-netspeed-applet/index.docbook share/help/hi/mate-netspeed-applet/legal.xml share/help/hi/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/hi/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/hi/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/hi/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/hi/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/hi/mate-stickynotes-applet/index.docbook share/help/hi/mate-stickynotes-applet/legal.xml share/help/hi/mate-trashapplet/figures/trash-applet.png share/help/hi/mate-trashapplet/index.docbook share/help/hi/mate-trashapplet/legal.xml share/help/hi/mateweather/figures/mateweather-details.png share/help/hi/mateweather/figures/mateweather-menu-prefs.png share/help/hi/mateweather/figures/mateweather-prefs-general.png share/help/hi/mateweather/figures/mateweather-prefs-locations.png share/help/hi/mateweather/figures/mateweather_applet.png share/help/hi/mateweather/figures/stock_weather-cloudy.png share/help/hi/mateweather/figures/stock_weather-few-clouds.png share/help/hi/mateweather/figures/stock_weather-fog.png share/help/hi/mateweather/figures/stock_weather-night-clear.png share/help/hi/mateweather/figures/stock_weather-night-few-clouds.png share/help/hi/mateweather/figures/stock_weather-showers.png share/help/hi/mateweather/figures/stock_weather-snow.png share/help/hi/mateweather/figures/stock_weather-storm.png share/help/hi/mateweather/figures/stock_weather-sunny.png share/help/hi/mateweather/index.docbook share/help/hi/mateweather/legal.xml share/help/hr/mate-accessx-status/figures/accessx-status-applet.png share/help/hr/mate-accessx-status/figures/accessx-status-disabled.png share/help/hr/mate-accessx-status/figures/accessx_bounce-keys.png share/help/hr/mate-accessx-status/figures/accessx_mouse-keys.png share/help/hr/mate-accessx-status/figures/accessx_slow-keys.png share/help/hr/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/hr/mate-accessx-status/figures/accessx_sticky-keys.png share/help/hr/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/hr/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/hr/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/hr/mate-accessx-status/index.docbook share/help/hr/mate-accessx-status/legal.xml %%BATTERY%%share/help/hr/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/hr/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/hr/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/hr/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/hr/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/hr/mate-battstat/index.docbook %%BATTERY%%share/help/hr/mate-battstat/legal.xml share/help/hr/mate-char-palette/figures/charpalette_applet.png share/help/hr/mate-char-palette/figures/charpick-preferences.png share/help/hr/mate-char-palette/figures/charpick_characters.png share/help/hr/mate-char-palette/index.docbook share/help/hr/mate-char-palette/legal.xml share/help/hr/mate-drivemount/figures/drivemount-applet_eject.png share/help/hr/mate-drivemount/figures/drivemount-applet_example.png share/help/hr/mate-drivemount/figures/drivemount-applet_mount.png share/help/hr/mate-drivemount/figures/drivemount-applet_open.png share/help/hr/mate-drivemount/figures/drivemount-applet_status.png share/help/hr/mate-drivemount/index.docbook share/help/hr/mate-drivemount/legal.xml share/help/hr/mate-geyes/figures/geyes_applet.png share/help/hr/mate-geyes/index.docbook share/help/hr/mate-geyes/legal.xml share/help/hr/mate-multiload/figures/multiload-preferences.png share/help/hr/mate-multiload/figures/system-monitor-applet_window.png share/help/hr/mate-multiload/index.docbook share/help/hr/mate-multiload/legal.xml share/help/hr/mate-netspeed-applet/figures/details.png share/help/hr/mate-netspeed-applet/figures/eth_sum_48.png share/help/hr/mate-netspeed-applet/figures/ethernet.png share/help/hr/mate-netspeed-applet/figures/loopback.png share/help/hr/mate-netspeed-applet/figures/netspeed_applet.png share/help/hr/mate-netspeed-applet/figures/plip.png share/help/hr/mate-netspeed-applet/figures/ppp.png share/help/hr/mate-netspeed-applet/figures/settings.png share/help/hr/mate-netspeed-applet/figures/wavelan.png share/help/hr/mate-netspeed-applet/index.docbook share/help/hr/mate-netspeed-applet/legal.xml share/help/hr/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/hr/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/hr/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/hr/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/hr/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/hr/mate-stickynotes-applet/index.docbook share/help/hr/mate-stickynotes-applet/legal.xml share/help/hr/mate-trashapplet/figures/trash-applet.png share/help/hr/mate-trashapplet/index.docbook share/help/hr/mate-trashapplet/legal.xml share/help/hr/mateweather/figures/mateweather-details.png share/help/hr/mateweather/figures/mateweather-menu-prefs.png share/help/hr/mateweather/figures/mateweather-prefs-general.png share/help/hr/mateweather/figures/mateweather-prefs-locations.png share/help/hr/mateweather/figures/mateweather_applet.png share/help/hr/mateweather/figures/stock_weather-cloudy.png share/help/hr/mateweather/figures/stock_weather-few-clouds.png share/help/hr/mateweather/figures/stock_weather-fog.png share/help/hr/mateweather/figures/stock_weather-night-clear.png share/help/hr/mateweather/figures/stock_weather-night-few-clouds.png share/help/hr/mateweather/figures/stock_weather-showers.png share/help/hr/mateweather/figures/stock_weather-snow.png share/help/hr/mateweather/figures/stock_weather-storm.png share/help/hr/mateweather/figures/stock_weather-sunny.png share/help/hr/mateweather/index.docbook share/help/hr/mateweather/legal.xml share/help/hu/mate-accessx-status/figures/accessx-status-applet.png share/help/hu/mate-accessx-status/figures/accessx-status-disabled.png share/help/hu/mate-accessx-status/figures/accessx_bounce-keys.png share/help/hu/mate-accessx-status/figures/accessx_mouse-keys.png share/help/hu/mate-accessx-status/figures/accessx_slow-keys.png share/help/hu/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/hu/mate-accessx-status/figures/accessx_sticky-keys.png share/help/hu/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/hu/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/hu/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/hu/mate-accessx-status/index.docbook share/help/hu/mate-accessx-status/legal.xml %%BATTERY%%share/help/hu/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/hu/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/hu/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/hu/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/hu/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/hu/mate-battstat/index.docbook %%BATTERY%%share/help/hu/mate-battstat/legal.xml share/help/hu/mate-char-palette/figures/charpalette_applet.png share/help/hu/mate-char-palette/figures/charpick-preferences.png share/help/hu/mate-char-palette/figures/charpick_characters.png share/help/hu/mate-char-palette/index.docbook share/help/hu/mate-char-palette/legal.xml share/help/hu/mate-drivemount/figures/drivemount-applet_eject.png share/help/hu/mate-drivemount/figures/drivemount-applet_example.png share/help/hu/mate-drivemount/figures/drivemount-applet_mount.png share/help/hu/mate-drivemount/figures/drivemount-applet_open.png share/help/hu/mate-drivemount/figures/drivemount-applet_status.png share/help/hu/mate-drivemount/index.docbook share/help/hu/mate-drivemount/legal.xml share/help/hu/mate-geyes/figures/geyes_applet.png share/help/hu/mate-geyes/index.docbook share/help/hu/mate-geyes/legal.xml share/help/hu/mate-multiload/figures/multiload-preferences.png share/help/hu/mate-multiload/figures/system-monitor-applet_window.png share/help/hu/mate-multiload/index.docbook share/help/hu/mate-multiload/legal.xml share/help/hu/mate-netspeed-applet/figures/details.png share/help/hu/mate-netspeed-applet/figures/eth_sum_48.png share/help/hu/mate-netspeed-applet/figures/ethernet.png share/help/hu/mate-netspeed-applet/figures/loopback.png share/help/hu/mate-netspeed-applet/figures/netspeed_applet.png share/help/hu/mate-netspeed-applet/figures/plip.png share/help/hu/mate-netspeed-applet/figures/ppp.png share/help/hu/mate-netspeed-applet/figures/settings.png share/help/hu/mate-netspeed-applet/figures/wavelan.png share/help/hu/mate-netspeed-applet/index.docbook share/help/hu/mate-netspeed-applet/legal.xml share/help/hu/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/hu/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/hu/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/hu/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/hu/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/hu/mate-stickynotes-applet/index.docbook share/help/hu/mate-stickynotes-applet/legal.xml share/help/hu/mate-trashapplet/figures/trash-applet.png share/help/hu/mate-trashapplet/index.docbook share/help/hu/mate-trashapplet/legal.xml share/help/hu/mateweather/figures/mateweather-details.png share/help/hu/mateweather/figures/mateweather-menu-prefs.png share/help/hu/mateweather/figures/mateweather-prefs-general.png share/help/hu/mateweather/figures/mateweather-prefs-locations.png share/help/hu/mateweather/figures/mateweather_applet.png share/help/hu/mateweather/figures/stock_weather-cloudy.png share/help/hu/mateweather/figures/stock_weather-few-clouds.png share/help/hu/mateweather/figures/stock_weather-fog.png share/help/hu/mateweather/figures/stock_weather-night-clear.png share/help/hu/mateweather/figures/stock_weather-night-few-clouds.png share/help/hu/mateweather/figures/stock_weather-showers.png share/help/hu/mateweather/figures/stock_weather-snow.png share/help/hu/mateweather/figures/stock_weather-storm.png share/help/hu/mateweather/figures/stock_weather-sunny.png share/help/hu/mateweather/index.docbook share/help/hu/mateweather/legal.xml share/help/hy/mate-accessx-status/figures/accessx-status-applet.png share/help/hy/mate-accessx-status/figures/accessx-status-disabled.png share/help/hy/mate-accessx-status/figures/accessx_bounce-keys.png share/help/hy/mate-accessx-status/figures/accessx_mouse-keys.png share/help/hy/mate-accessx-status/figures/accessx_slow-keys.png share/help/hy/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/hy/mate-accessx-status/figures/accessx_sticky-keys.png share/help/hy/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/hy/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/hy/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/hy/mate-accessx-status/index.docbook share/help/hy/mate-accessx-status/legal.xml %%BATTERY%%share/help/hy/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/hy/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/hy/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/hy/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/hy/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/hy/mate-battstat/index.docbook %%BATTERY%%share/help/hy/mate-battstat/legal.xml share/help/hy/mate-char-palette/figures/charpalette_applet.png share/help/hy/mate-char-palette/figures/charpick-preferences.png share/help/hy/mate-char-palette/figures/charpick_characters.png share/help/hy/mate-char-palette/index.docbook share/help/hy/mate-char-palette/legal.xml share/help/hy/mate-drivemount/figures/drivemount-applet_eject.png share/help/hy/mate-drivemount/figures/drivemount-applet_example.png share/help/hy/mate-drivemount/figures/drivemount-applet_mount.png share/help/hy/mate-drivemount/figures/drivemount-applet_open.png share/help/hy/mate-drivemount/figures/drivemount-applet_status.png share/help/hy/mate-drivemount/index.docbook share/help/hy/mate-drivemount/legal.xml share/help/hy/mate-geyes/figures/geyes_applet.png share/help/hy/mate-geyes/index.docbook share/help/hy/mate-geyes/legal.xml share/help/hy/mate-multiload/figures/multiload-preferences.png share/help/hy/mate-multiload/figures/system-monitor-applet_window.png share/help/hy/mate-multiload/index.docbook share/help/hy/mate-multiload/legal.xml share/help/hy/mate-netspeed-applet/figures/details.png share/help/hy/mate-netspeed-applet/figures/eth_sum_48.png share/help/hy/mate-netspeed-applet/figures/ethernet.png share/help/hy/mate-netspeed-applet/figures/loopback.png share/help/hy/mate-netspeed-applet/figures/netspeed_applet.png share/help/hy/mate-netspeed-applet/figures/plip.png share/help/hy/mate-netspeed-applet/figures/ppp.png share/help/hy/mate-netspeed-applet/figures/settings.png share/help/hy/mate-netspeed-applet/figures/wavelan.png share/help/hy/mate-netspeed-applet/index.docbook share/help/hy/mate-netspeed-applet/legal.xml share/help/hy/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/hy/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/hy/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/hy/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/hy/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/hy/mate-stickynotes-applet/index.docbook share/help/hy/mate-stickynotes-applet/legal.xml share/help/hy/mate-trashapplet/figures/trash-applet.png share/help/hy/mate-trashapplet/index.docbook share/help/hy/mate-trashapplet/legal.xml share/help/hy/mateweather/figures/mateweather-details.png share/help/hy/mateweather/figures/mateweather-menu-prefs.png share/help/hy/mateweather/figures/mateweather-prefs-general.png share/help/hy/mateweather/figures/mateweather-prefs-locations.png share/help/hy/mateweather/figures/mateweather_applet.png share/help/hy/mateweather/figures/stock_weather-cloudy.png share/help/hy/mateweather/figures/stock_weather-few-clouds.png share/help/hy/mateweather/figures/stock_weather-fog.png share/help/hy/mateweather/figures/stock_weather-night-clear.png share/help/hy/mateweather/figures/stock_weather-night-few-clouds.png share/help/hy/mateweather/figures/stock_weather-showers.png share/help/hy/mateweather/figures/stock_weather-snow.png share/help/hy/mateweather/figures/stock_weather-storm.png share/help/hy/mateweather/figures/stock_weather-sunny.png share/help/hy/mateweather/index.docbook share/help/hy/mateweather/legal.xml share/help/ia/mate-accessx-status/figures/accessx-status-applet.png share/help/ia/mate-accessx-status/figures/accessx-status-disabled.png share/help/ia/mate-accessx-status/figures/accessx_bounce-keys.png share/help/ia/mate-accessx-status/figures/accessx_mouse-keys.png share/help/ia/mate-accessx-status/figures/accessx_slow-keys.png share/help/ia/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/ia/mate-accessx-status/figures/accessx_sticky-keys.png share/help/ia/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/ia/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/ia/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/ia/mate-accessx-status/index.docbook share/help/ia/mate-accessx-status/legal.xml %%BATTERY%%share/help/ia/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/ia/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/ia/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/ia/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/ia/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/ia/mate-battstat/index.docbook %%BATTERY%%share/help/ia/mate-battstat/legal.xml share/help/ia/mate-char-palette/figures/charpalette_applet.png share/help/ia/mate-char-palette/figures/charpick-preferences.png share/help/ia/mate-char-palette/figures/charpick_characters.png share/help/ia/mate-char-palette/index.docbook share/help/ia/mate-char-palette/legal.xml share/help/ia/mate-drivemount/figures/drivemount-applet_eject.png share/help/ia/mate-drivemount/figures/drivemount-applet_example.png share/help/ia/mate-drivemount/figures/drivemount-applet_mount.png share/help/ia/mate-drivemount/figures/drivemount-applet_open.png share/help/ia/mate-drivemount/figures/drivemount-applet_status.png share/help/ia/mate-drivemount/index.docbook share/help/ia/mate-drivemount/legal.xml share/help/ia/mate-geyes/figures/geyes_applet.png share/help/ia/mate-geyes/index.docbook share/help/ia/mate-geyes/legal.xml share/help/ia/mate-netspeed-applet/figures/details.png share/help/ia/mate-netspeed-applet/figures/eth_sum_48.png share/help/ia/mate-netspeed-applet/figures/ethernet.png share/help/ia/mate-netspeed-applet/figures/loopback.png share/help/ia/mate-netspeed-applet/figures/netspeed_applet.png share/help/ia/mate-netspeed-applet/figures/plip.png share/help/ia/mate-netspeed-applet/figures/ppp.png share/help/ia/mate-netspeed-applet/figures/settings.png share/help/ia/mate-netspeed-applet/figures/wavelan.png share/help/ia/mate-netspeed-applet/index.docbook share/help/ia/mate-netspeed-applet/legal.xml share/help/ia/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/ia/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/ia/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/ia/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/ia/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/ia/mate-stickynotes-applet/index.docbook share/help/ia/mate-stickynotes-applet/legal.xml share/help/ia/mate-trashapplet/figures/trash-applet.png share/help/ia/mate-trashapplet/index.docbook share/help/ia/mate-trashapplet/legal.xml share/help/id/mate-accessx-status/figures/accessx-status-applet.png share/help/id/mate-accessx-status/figures/accessx-status-disabled.png share/help/id/mate-accessx-status/figures/accessx_bounce-keys.png share/help/id/mate-accessx-status/figures/accessx_mouse-keys.png share/help/id/mate-accessx-status/figures/accessx_slow-keys.png share/help/id/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/id/mate-accessx-status/figures/accessx_sticky-keys.png share/help/id/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/id/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/id/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/id/mate-accessx-status/index.docbook share/help/id/mate-accessx-status/legal.xml %%BATTERY%%share/help/id/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/id/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/id/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/id/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/id/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/id/mate-battstat/index.docbook %%BATTERY%%share/help/id/mate-battstat/legal.xml share/help/id/mate-char-palette/figures/charpalette_applet.png share/help/id/mate-char-palette/figures/charpick-preferences.png share/help/id/mate-char-palette/figures/charpick_characters.png share/help/id/mate-char-palette/index.docbook share/help/id/mate-char-palette/legal.xml share/help/id/mate-drivemount/figures/drivemount-applet_eject.png share/help/id/mate-drivemount/figures/drivemount-applet_example.png share/help/id/mate-drivemount/figures/drivemount-applet_mount.png share/help/id/mate-drivemount/figures/drivemount-applet_open.png share/help/id/mate-drivemount/figures/drivemount-applet_status.png share/help/id/mate-drivemount/index.docbook share/help/id/mate-drivemount/legal.xml share/help/id/mate-geyes/figures/geyes_applet.png share/help/id/mate-geyes/index.docbook share/help/id/mate-geyes/legal.xml share/help/id/mate-multiload/figures/multiload-preferences.png share/help/id/mate-multiload/figures/system-monitor-applet_window.png share/help/id/mate-multiload/index.docbook share/help/id/mate-multiload/legal.xml share/help/id/mate-netspeed-applet/figures/details.png share/help/id/mate-netspeed-applet/figures/eth_sum_48.png share/help/id/mate-netspeed-applet/figures/ethernet.png share/help/id/mate-netspeed-applet/figures/loopback.png share/help/id/mate-netspeed-applet/figures/netspeed_applet.png share/help/id/mate-netspeed-applet/figures/plip.png share/help/id/mate-netspeed-applet/figures/ppp.png share/help/id/mate-netspeed-applet/figures/settings.png share/help/id/mate-netspeed-applet/figures/wavelan.png share/help/id/mate-netspeed-applet/index.docbook share/help/id/mate-netspeed-applet/legal.xml share/help/id/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/id/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/id/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/id/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/id/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/id/mate-stickynotes-applet/index.docbook share/help/id/mate-stickynotes-applet/legal.xml share/help/id/mate-trashapplet/figures/trash-applet.png share/help/id/mate-trashapplet/index.docbook share/help/id/mate-trashapplet/legal.xml share/help/id/mateweather/figures/mateweather-details.png share/help/id/mateweather/figures/mateweather-menu-prefs.png share/help/id/mateweather/figures/mateweather-prefs-general.png share/help/id/mateweather/figures/mateweather-prefs-locations.png share/help/id/mateweather/figures/mateweather_applet.png share/help/id/mateweather/figures/stock_weather-cloudy.png share/help/id/mateweather/figures/stock_weather-few-clouds.png share/help/id/mateweather/figures/stock_weather-fog.png share/help/id/mateweather/figures/stock_weather-night-clear.png share/help/id/mateweather/figures/stock_weather-night-few-clouds.png share/help/id/mateweather/figures/stock_weather-showers.png share/help/id/mateweather/figures/stock_weather-snow.png share/help/id/mateweather/figures/stock_weather-storm.png share/help/id/mateweather/figures/stock_weather-sunny.png share/help/id/mateweather/index.docbook share/help/id/mateweather/legal.xml share/help/ie/mate-accessx-status/figures/accessx-status-applet.png share/help/ie/mate-accessx-status/figures/accessx-status-disabled.png share/help/ie/mate-accessx-status/figures/accessx_bounce-keys.png share/help/ie/mate-accessx-status/figures/accessx_mouse-keys.png share/help/ie/mate-accessx-status/figures/accessx_slow-keys.png share/help/ie/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/ie/mate-accessx-status/figures/accessx_sticky-keys.png share/help/ie/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/ie/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/ie/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/ie/mate-accessx-status/index.docbook share/help/ie/mate-accessx-status/legal.xml %%BATTERY%%share/help/ie/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/ie/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/ie/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/ie/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/ie/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/ie/mate-battstat/index.docbook %%BATTERY%%share/help/ie/mate-battstat/legal.xml share/help/ie/mate-char-palette/figures/charpalette_applet.png share/help/ie/mate-char-palette/figures/charpick-preferences.png share/help/ie/mate-char-palette/figures/charpick_characters.png share/help/ie/mate-char-palette/index.docbook share/help/ie/mate-char-palette/legal.xml share/help/ie/mate-drivemount/figures/drivemount-applet_eject.png share/help/ie/mate-drivemount/figures/drivemount-applet_example.png share/help/ie/mate-drivemount/figures/drivemount-applet_mount.png share/help/ie/mate-drivemount/figures/drivemount-applet_open.png share/help/ie/mate-drivemount/figures/drivemount-applet_status.png share/help/ie/mate-drivemount/index.docbook share/help/ie/mate-drivemount/legal.xml share/help/ie/mate-geyes/figures/geyes_applet.png share/help/ie/mate-geyes/index.docbook share/help/ie/mate-geyes/legal.xml share/help/ie/mate-multiload/figures/multiload-preferences.png share/help/ie/mate-multiload/figures/system-monitor-applet_window.png share/help/ie/mate-multiload/index.docbook share/help/ie/mate-multiload/legal.xml share/help/ie/mate-netspeed-applet/figures/details.png share/help/ie/mate-netspeed-applet/figures/eth_sum_48.png share/help/ie/mate-netspeed-applet/figures/ethernet.png share/help/ie/mate-netspeed-applet/figures/loopback.png share/help/ie/mate-netspeed-applet/figures/netspeed_applet.png share/help/ie/mate-netspeed-applet/figures/plip.png share/help/ie/mate-netspeed-applet/figures/ppp.png share/help/ie/mate-netspeed-applet/figures/settings.png share/help/ie/mate-netspeed-applet/figures/wavelan.png share/help/ie/mate-netspeed-applet/index.docbook share/help/ie/mate-netspeed-applet/legal.xml share/help/ie/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/ie/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/ie/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/ie/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/ie/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/ie/mate-stickynotes-applet/index.docbook share/help/ie/mate-stickynotes-applet/legal.xml share/help/ie/mate-trashapplet/figures/trash-applet.png share/help/ie/mate-trashapplet/index.docbook share/help/ie/mate-trashapplet/legal.xml share/help/ie/mateweather/figures/mateweather-details.png share/help/ie/mateweather/figures/mateweather-menu-prefs.png share/help/ie/mateweather/figures/mateweather-prefs-general.png share/help/ie/mateweather/figures/mateweather-prefs-locations.png share/help/ie/mateweather/figures/mateweather_applet.png share/help/ie/mateweather/figures/stock_weather-cloudy.png share/help/ie/mateweather/figures/stock_weather-few-clouds.png share/help/ie/mateweather/figures/stock_weather-fog.png share/help/ie/mateweather/figures/stock_weather-night-clear.png share/help/ie/mateweather/figures/stock_weather-night-few-clouds.png share/help/ie/mateweather/figures/stock_weather-showers.png share/help/ie/mateweather/figures/stock_weather-snow.png share/help/ie/mateweather/figures/stock_weather-storm.png share/help/ie/mateweather/figures/stock_weather-sunny.png share/help/ie/mateweather/index.docbook share/help/ie/mateweather/legal.xml share/help/ig/mate-accessx-status/figures/accessx-status-applet.png share/help/ig/mate-accessx-status/figures/accessx-status-disabled.png share/help/ig/mate-accessx-status/figures/accessx_bounce-keys.png share/help/ig/mate-accessx-status/figures/accessx_mouse-keys.png share/help/ig/mate-accessx-status/figures/accessx_slow-keys.png share/help/ig/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/ig/mate-accessx-status/figures/accessx_sticky-keys.png share/help/ig/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/ig/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/ig/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/ig/mate-accessx-status/index.docbook share/help/ig/mate-accessx-status/legal.xml %%BATTERY%%share/help/ig/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/ig/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/ig/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/ig/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/ig/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/ig/mate-battstat/index.docbook %%BATTERY%%share/help/ig/mate-battstat/legal.xml share/help/ig/mate-char-palette/figures/charpalette_applet.png share/help/ig/mate-char-palette/figures/charpick-preferences.png share/help/ig/mate-char-palette/figures/charpick_characters.png share/help/ig/mate-char-palette/index.docbook share/help/ig/mate-char-palette/legal.xml share/help/ig/mate-drivemount/figures/drivemount-applet_eject.png share/help/ig/mate-drivemount/figures/drivemount-applet_example.png share/help/ig/mate-drivemount/figures/drivemount-applet_mount.png share/help/ig/mate-drivemount/figures/drivemount-applet_open.png share/help/ig/mate-drivemount/figures/drivemount-applet_status.png share/help/ig/mate-drivemount/index.docbook share/help/ig/mate-drivemount/legal.xml share/help/ig/mate-geyes/figures/geyes_applet.png share/help/ig/mate-geyes/index.docbook share/help/ig/mate-geyes/legal.xml share/help/ig/mate-multiload/figures/multiload-preferences.png share/help/ig/mate-multiload/figures/system-monitor-applet_window.png share/help/ig/mate-multiload/index.docbook share/help/ig/mate-multiload/legal.xml share/help/ig/mate-netspeed-applet/figures/details.png share/help/ig/mate-netspeed-applet/figures/eth_sum_48.png share/help/ig/mate-netspeed-applet/figures/ethernet.png share/help/ig/mate-netspeed-applet/figures/loopback.png share/help/ig/mate-netspeed-applet/figures/netspeed_applet.png share/help/ig/mate-netspeed-applet/figures/plip.png share/help/ig/mate-netspeed-applet/figures/ppp.png share/help/ig/mate-netspeed-applet/figures/settings.png share/help/ig/mate-netspeed-applet/figures/wavelan.png share/help/ig/mate-netspeed-applet/index.docbook share/help/ig/mate-netspeed-applet/legal.xml share/help/ig/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/ig/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/ig/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/ig/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/ig/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/ig/mate-stickynotes-applet/index.docbook share/help/ig/mate-stickynotes-applet/legal.xml share/help/ig/mate-trashapplet/figures/trash-applet.png share/help/ig/mate-trashapplet/index.docbook share/help/ig/mate-trashapplet/legal.xml share/help/ig/mateweather/figures/mateweather-details.png share/help/ig/mateweather/figures/mateweather-menu-prefs.png share/help/ig/mateweather/figures/mateweather-prefs-general.png share/help/ig/mateweather/figures/mateweather-prefs-locations.png share/help/ig/mateweather/figures/mateweather_applet.png share/help/ig/mateweather/figures/stock_weather-cloudy.png share/help/ig/mateweather/figures/stock_weather-few-clouds.png share/help/ig/mateweather/figures/stock_weather-fog.png share/help/ig/mateweather/figures/stock_weather-night-clear.png share/help/ig/mateweather/figures/stock_weather-night-few-clouds.png share/help/ig/mateweather/figures/stock_weather-showers.png share/help/ig/mateweather/figures/stock_weather-snow.png share/help/ig/mateweather/figures/stock_weather-storm.png share/help/ig/mateweather/figures/stock_weather-sunny.png share/help/ig/mateweather/index.docbook share/help/ig/mateweather/legal.xml share/help/is/mate-accessx-status/figures/accessx-status-applet.png share/help/is/mate-accessx-status/figures/accessx-status-disabled.png share/help/is/mate-accessx-status/figures/accessx_bounce-keys.png share/help/is/mate-accessx-status/figures/accessx_mouse-keys.png share/help/is/mate-accessx-status/figures/accessx_slow-keys.png share/help/is/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/is/mate-accessx-status/figures/accessx_sticky-keys.png share/help/is/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/is/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/is/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/is/mate-accessx-status/index.docbook share/help/is/mate-accessx-status/legal.xml %%BATTERY%%share/help/is/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/is/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/is/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/is/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/is/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/is/mate-battstat/index.docbook %%BATTERY%%share/help/is/mate-battstat/legal.xml share/help/is/mate-char-palette/figures/charpalette_applet.png share/help/is/mate-char-palette/figures/charpick-preferences.png share/help/is/mate-char-palette/figures/charpick_characters.png share/help/is/mate-char-palette/index.docbook share/help/is/mate-char-palette/legal.xml share/help/is/mate-drivemount/figures/drivemount-applet_eject.png share/help/is/mate-drivemount/figures/drivemount-applet_example.png share/help/is/mate-drivemount/figures/drivemount-applet_mount.png share/help/is/mate-drivemount/figures/drivemount-applet_open.png share/help/is/mate-drivemount/figures/drivemount-applet_status.png share/help/is/mate-drivemount/index.docbook share/help/is/mate-drivemount/legal.xml share/help/is/mate-geyes/figures/geyes_applet.png share/help/is/mate-geyes/index.docbook share/help/is/mate-geyes/legal.xml share/help/is/mate-multiload/figures/multiload-preferences.png share/help/is/mate-multiload/figures/system-monitor-applet_window.png share/help/is/mate-multiload/index.docbook share/help/is/mate-multiload/legal.xml share/help/is/mate-netspeed-applet/figures/details.png share/help/is/mate-netspeed-applet/figures/eth_sum_48.png share/help/is/mate-netspeed-applet/figures/ethernet.png share/help/is/mate-netspeed-applet/figures/loopback.png share/help/is/mate-netspeed-applet/figures/netspeed_applet.png share/help/is/mate-netspeed-applet/figures/plip.png share/help/is/mate-netspeed-applet/figures/ppp.png share/help/is/mate-netspeed-applet/figures/settings.png share/help/is/mate-netspeed-applet/figures/wavelan.png share/help/is/mate-netspeed-applet/index.docbook share/help/is/mate-netspeed-applet/legal.xml share/help/is/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/is/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/is/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/is/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/is/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/is/mate-stickynotes-applet/index.docbook share/help/is/mate-stickynotes-applet/legal.xml share/help/is/mate-trashapplet/figures/trash-applet.png share/help/is/mate-trashapplet/index.docbook share/help/is/mate-trashapplet/legal.xml share/help/is/mateweather/figures/mateweather-details.png share/help/is/mateweather/figures/mateweather-menu-prefs.png share/help/is/mateweather/figures/mateweather-prefs-general.png share/help/is/mateweather/figures/mateweather-prefs-locations.png share/help/is/mateweather/figures/mateweather_applet.png share/help/is/mateweather/figures/stock_weather-cloudy.png share/help/is/mateweather/figures/stock_weather-few-clouds.png share/help/is/mateweather/figures/stock_weather-fog.png share/help/is/mateweather/figures/stock_weather-night-clear.png share/help/is/mateweather/figures/stock_weather-night-few-clouds.png share/help/is/mateweather/figures/stock_weather-showers.png share/help/is/mateweather/figures/stock_weather-snow.png share/help/is/mateweather/figures/stock_weather-storm.png share/help/is/mateweather/figures/stock_weather-sunny.png share/help/is/mateweather/index.docbook share/help/is/mateweather/legal.xml share/help/it/mate-accessx-status/figures/accessx-status-applet.png share/help/it/mate-accessx-status/figures/accessx-status-disabled.png share/help/it/mate-accessx-status/figures/accessx_bounce-keys.png share/help/it/mate-accessx-status/figures/accessx_mouse-keys.png share/help/it/mate-accessx-status/figures/accessx_slow-keys.png share/help/it/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/it/mate-accessx-status/figures/accessx_sticky-keys.png share/help/it/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/it/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/it/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/it/mate-accessx-status/index.docbook share/help/it/mate-accessx-status/legal.xml %%BATTERY%%share/help/it/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/it/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/it/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/it/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/it/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/it/mate-battstat/index.docbook %%BATTERY%%share/help/it/mate-battstat/legal.xml share/help/it/mate-char-palette/figures/charpalette_applet.png share/help/it/mate-char-palette/figures/charpick-preferences.png share/help/it/mate-char-palette/figures/charpick_characters.png share/help/it/mate-char-palette/index.docbook share/help/it/mate-char-palette/legal.xml share/help/it/mate-drivemount/figures/drivemount-applet_eject.png share/help/it/mate-drivemount/figures/drivemount-applet_example.png share/help/it/mate-drivemount/figures/drivemount-applet_mount.png share/help/it/mate-drivemount/figures/drivemount-applet_open.png share/help/it/mate-drivemount/figures/drivemount-applet_status.png share/help/it/mate-drivemount/index.docbook share/help/it/mate-drivemount/legal.xml share/help/it/mate-geyes/figures/geyes_applet.png share/help/it/mate-geyes/index.docbook share/help/it/mate-geyes/legal.xml share/help/it/mate-multiload/figures/multiload-preferences.png share/help/it/mate-multiload/figures/system-monitor-applet_window.png share/help/it/mate-multiload/index.docbook share/help/it/mate-multiload/legal.xml share/help/it/mate-netspeed-applet/figures/details.png share/help/it/mate-netspeed-applet/figures/eth_sum_48.png share/help/it/mate-netspeed-applet/figures/ethernet.png share/help/it/mate-netspeed-applet/figures/loopback.png share/help/it/mate-netspeed-applet/figures/netspeed_applet.png share/help/it/mate-netspeed-applet/figures/plip.png share/help/it/mate-netspeed-applet/figures/ppp.png share/help/it/mate-netspeed-applet/figures/settings.png share/help/it/mate-netspeed-applet/figures/wavelan.png share/help/it/mate-netspeed-applet/index.docbook share/help/it/mate-netspeed-applet/legal.xml share/help/it/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/it/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/it/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/it/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/it/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/it/mate-stickynotes-applet/index.docbook share/help/it/mate-stickynotes-applet/legal.xml share/help/it/mate-trashapplet/figures/trash-applet.png share/help/it/mate-trashapplet/index.docbook share/help/it/mate-trashapplet/legal.xml share/help/it/mateweather/figures/mateweather-details.png share/help/it/mateweather/figures/mateweather-menu-prefs.png share/help/it/mateweather/figures/mateweather-prefs-general.png share/help/it/mateweather/figures/mateweather-prefs-locations.png share/help/it/mateweather/figures/mateweather_applet.png share/help/it/mateweather/figures/stock_weather-cloudy.png share/help/it/mateweather/figures/stock_weather-few-clouds.png share/help/it/mateweather/figures/stock_weather-fog.png share/help/it/mateweather/figures/stock_weather-night-clear.png share/help/it/mateweather/figures/stock_weather-night-few-clouds.png share/help/it/mateweather/figures/stock_weather-showers.png share/help/it/mateweather/figures/stock_weather-snow.png share/help/it/mateweather/figures/stock_weather-storm.png share/help/it/mateweather/figures/stock_weather-sunny.png share/help/it/mateweather/index.docbook share/help/it/mateweather/legal.xml share/help/ja/mate-accessx-status/figures/accessx-status-applet.png share/help/ja/mate-accessx-status/figures/accessx-status-disabled.png share/help/ja/mate-accessx-status/figures/accessx_bounce-keys.png share/help/ja/mate-accessx-status/figures/accessx_mouse-keys.png share/help/ja/mate-accessx-status/figures/accessx_slow-keys.png share/help/ja/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/ja/mate-accessx-status/figures/accessx_sticky-keys.png share/help/ja/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/ja/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/ja/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/ja/mate-accessx-status/index.docbook share/help/ja/mate-accessx-status/legal.xml %%BATTERY%%share/help/ja/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/ja/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/ja/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/ja/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/ja/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/ja/mate-battstat/index.docbook %%BATTERY%%share/help/ja/mate-battstat/legal.xml share/help/ja/mate-char-palette/figures/charpalette_applet.png share/help/ja/mate-char-palette/figures/charpick-preferences.png share/help/ja/mate-char-palette/figures/charpick_characters.png share/help/ja/mate-char-palette/index.docbook share/help/ja/mate-char-palette/legal.xml share/help/ja/mate-drivemount/figures/drivemount-applet_eject.png share/help/ja/mate-drivemount/figures/drivemount-applet_example.png share/help/ja/mate-drivemount/figures/drivemount-applet_mount.png share/help/ja/mate-drivemount/figures/drivemount-applet_open.png share/help/ja/mate-drivemount/figures/drivemount-applet_status.png share/help/ja/mate-drivemount/index.docbook share/help/ja/mate-drivemount/legal.xml share/help/ja/mate-geyes/figures/geyes_applet.png share/help/ja/mate-geyes/index.docbook share/help/ja/mate-geyes/legal.xml share/help/ja/mate-multiload/figures/multiload-preferences.png share/help/ja/mate-multiload/figures/system-monitor-applet_window.png share/help/ja/mate-multiload/index.docbook share/help/ja/mate-multiload/legal.xml share/help/ja/mate-netspeed-applet/figures/details.png share/help/ja/mate-netspeed-applet/figures/eth_sum_48.png share/help/ja/mate-netspeed-applet/figures/ethernet.png share/help/ja/mate-netspeed-applet/figures/loopback.png share/help/ja/mate-netspeed-applet/figures/netspeed_applet.png share/help/ja/mate-netspeed-applet/figures/plip.png share/help/ja/mate-netspeed-applet/figures/ppp.png share/help/ja/mate-netspeed-applet/figures/settings.png share/help/ja/mate-netspeed-applet/figures/wavelan.png share/help/ja/mate-netspeed-applet/index.docbook share/help/ja/mate-netspeed-applet/legal.xml share/help/ja/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/ja/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/ja/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/ja/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/ja/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/ja/mate-stickynotes-applet/index.docbook share/help/ja/mate-stickynotes-applet/legal.xml share/help/ja/mate-trashapplet/figures/trash-applet.png share/help/ja/mate-trashapplet/index.docbook share/help/ja/mate-trashapplet/legal.xml share/help/ja/mateweather/figures/mateweather-details.png share/help/ja/mateweather/figures/mateweather-menu-prefs.png share/help/ja/mateweather/figures/mateweather-prefs-general.png share/help/ja/mateweather/figures/mateweather-prefs-locations.png share/help/ja/mateweather/figures/mateweather_applet.png share/help/ja/mateweather/figures/stock_weather-cloudy.png share/help/ja/mateweather/figures/stock_weather-few-clouds.png share/help/ja/mateweather/figures/stock_weather-fog.png share/help/ja/mateweather/figures/stock_weather-night-clear.png share/help/ja/mateweather/figures/stock_weather-night-few-clouds.png share/help/ja/mateweather/figures/stock_weather-showers.png share/help/ja/mateweather/figures/stock_weather-snow.png share/help/ja/mateweather/figures/stock_weather-storm.png share/help/ja/mateweather/figures/stock_weather-sunny.png share/help/ja/mateweather/index.docbook share/help/ja/mateweather/legal.xml %%BATTERY%%share/help/jv/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/jv/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/jv/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/jv/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/jv/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/jv/mate-battstat/index.docbook %%BATTERY%%share/help/jv/mate-battstat/legal.xml share/help/jv/mate-geyes/figures/geyes_applet.png share/help/jv/mate-geyes/index.docbook share/help/jv/mate-geyes/legal.xml share/help/jv/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/jv/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/jv/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/jv/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/jv/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/jv/mate-stickynotes-applet/index.docbook share/help/jv/mate-stickynotes-applet/legal.xml share/help/jv/mate-trashapplet/figures/trash-applet.png share/help/jv/mate-trashapplet/index.docbook share/help/jv/mate-trashapplet/legal.xml share/help/ka/mate-accessx-status/figures/accessx-status-applet.png share/help/ka/mate-accessx-status/figures/accessx-status-disabled.png share/help/ka/mate-accessx-status/figures/accessx_bounce-keys.png share/help/ka/mate-accessx-status/figures/accessx_mouse-keys.png share/help/ka/mate-accessx-status/figures/accessx_slow-keys.png share/help/ka/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/ka/mate-accessx-status/figures/accessx_sticky-keys.png share/help/ka/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/ka/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/ka/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/ka/mate-accessx-status/index.docbook share/help/ka/mate-accessx-status/legal.xml %%BATTERY%%share/help/ka/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/ka/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/ka/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/ka/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/ka/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/ka/mate-battstat/index.docbook %%BATTERY%%share/help/ka/mate-battstat/legal.xml share/help/ka/mate-char-palette/figures/charpalette_applet.png share/help/ka/mate-char-palette/figures/charpick-preferences.png share/help/ka/mate-char-palette/figures/charpick_characters.png share/help/ka/mate-char-palette/index.docbook share/help/ka/mate-char-palette/legal.xml share/help/ka/mate-drivemount/figures/drivemount-applet_eject.png share/help/ka/mate-drivemount/figures/drivemount-applet_example.png share/help/ka/mate-drivemount/figures/drivemount-applet_mount.png share/help/ka/mate-drivemount/figures/drivemount-applet_open.png share/help/ka/mate-drivemount/figures/drivemount-applet_status.png share/help/ka/mate-drivemount/index.docbook share/help/ka/mate-drivemount/legal.xml share/help/ka/mate-geyes/figures/geyes_applet.png share/help/ka/mate-geyes/index.docbook share/help/ka/mate-geyes/legal.xml share/help/ka/mate-multiload/figures/multiload-preferences.png share/help/ka/mate-multiload/figures/system-monitor-applet_window.png share/help/ka/mate-multiload/index.docbook share/help/ka/mate-multiload/legal.xml share/help/ka/mate-netspeed-applet/figures/details.png share/help/ka/mate-netspeed-applet/figures/eth_sum_48.png share/help/ka/mate-netspeed-applet/figures/ethernet.png share/help/ka/mate-netspeed-applet/figures/loopback.png share/help/ka/mate-netspeed-applet/figures/netspeed_applet.png share/help/ka/mate-netspeed-applet/figures/plip.png share/help/ka/mate-netspeed-applet/figures/ppp.png share/help/ka/mate-netspeed-applet/figures/settings.png share/help/ka/mate-netspeed-applet/figures/wavelan.png share/help/ka/mate-netspeed-applet/index.docbook share/help/ka/mate-netspeed-applet/legal.xml share/help/ka/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/ka/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/ka/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/ka/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/ka/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/ka/mate-stickynotes-applet/index.docbook share/help/ka/mate-stickynotes-applet/legal.xml share/help/ka/mate-trashapplet/figures/trash-applet.png share/help/ka/mate-trashapplet/index.docbook share/help/ka/mate-trashapplet/legal.xml share/help/ka/mateweather/figures/mateweather-details.png share/help/ka/mateweather/figures/mateweather-menu-prefs.png share/help/ka/mateweather/figures/mateweather-prefs-general.png share/help/ka/mateweather/figures/mateweather-prefs-locations.png share/help/ka/mateweather/figures/mateweather_applet.png share/help/ka/mateweather/figures/stock_weather-cloudy.png share/help/ka/mateweather/figures/stock_weather-few-clouds.png share/help/ka/mateweather/figures/stock_weather-fog.png share/help/ka/mateweather/figures/stock_weather-night-clear.png share/help/ka/mateweather/figures/stock_weather-night-few-clouds.png share/help/ka/mateweather/figures/stock_weather-showers.png share/help/ka/mateweather/figures/stock_weather-snow.png share/help/ka/mateweather/figures/stock_weather-storm.png share/help/ka/mateweather/figures/stock_weather-sunny.png share/help/ka/mateweather/index.docbook share/help/ka/mateweather/legal.xml share/help/kab/mate-accessx-status/figures/accessx-status-applet.png share/help/kab/mate-accessx-status/figures/accessx-status-disabled.png share/help/kab/mate-accessx-status/figures/accessx_bounce-keys.png share/help/kab/mate-accessx-status/figures/accessx_mouse-keys.png share/help/kab/mate-accessx-status/figures/accessx_slow-keys.png share/help/kab/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/kab/mate-accessx-status/figures/accessx_sticky-keys.png share/help/kab/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/kab/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/kab/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/kab/mate-accessx-status/index.docbook share/help/kab/mate-accessx-status/legal.xml %%BATTERY%%share/help/kab/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/kab/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/kab/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/kab/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/kab/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/kab/mate-battstat/index.docbook %%BATTERY%%share/help/kab/mate-battstat/legal.xml share/help/kab/mate-char-palette/figures/charpalette_applet.png share/help/kab/mate-char-palette/figures/charpick-preferences.png share/help/kab/mate-char-palette/figures/charpick_characters.png share/help/kab/mate-char-palette/index.docbook share/help/kab/mate-char-palette/legal.xml share/help/kab/mate-drivemount/figures/drivemount-applet_eject.png share/help/kab/mate-drivemount/figures/drivemount-applet_example.png share/help/kab/mate-drivemount/figures/drivemount-applet_mount.png share/help/kab/mate-drivemount/figures/drivemount-applet_open.png share/help/kab/mate-drivemount/figures/drivemount-applet_status.png share/help/kab/mate-drivemount/index.docbook share/help/kab/mate-drivemount/legal.xml share/help/kab/mate-geyes/figures/geyes_applet.png share/help/kab/mate-geyes/index.docbook share/help/kab/mate-geyes/legal.xml share/help/kab/mate-multiload/figures/multiload-preferences.png share/help/kab/mate-multiload/figures/system-monitor-applet_window.png share/help/kab/mate-multiload/index.docbook share/help/kab/mate-multiload/legal.xml share/help/kab/mate-netspeed-applet/figures/details.png share/help/kab/mate-netspeed-applet/figures/eth_sum_48.png share/help/kab/mate-netspeed-applet/figures/ethernet.png share/help/kab/mate-netspeed-applet/figures/loopback.png share/help/kab/mate-netspeed-applet/figures/netspeed_applet.png share/help/kab/mate-netspeed-applet/figures/plip.png share/help/kab/mate-netspeed-applet/figures/ppp.png share/help/kab/mate-netspeed-applet/figures/settings.png share/help/kab/mate-netspeed-applet/figures/wavelan.png share/help/kab/mate-netspeed-applet/index.docbook share/help/kab/mate-netspeed-applet/legal.xml share/help/kab/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/kab/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/kab/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/kab/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/kab/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/kab/mate-stickynotes-applet/index.docbook share/help/kab/mate-stickynotes-applet/legal.xml share/help/kab/mate-trashapplet/figures/trash-applet.png share/help/kab/mate-trashapplet/index.docbook share/help/kab/mate-trashapplet/legal.xml share/help/kab/mateweather/figures/mateweather-details.png share/help/kab/mateweather/figures/mateweather-menu-prefs.png share/help/kab/mateweather/figures/mateweather-prefs-general.png share/help/kab/mateweather/figures/mateweather-prefs-locations.png share/help/kab/mateweather/figures/mateweather_applet.png share/help/kab/mateweather/figures/stock_weather-cloudy.png share/help/kab/mateweather/figures/stock_weather-few-clouds.png share/help/kab/mateweather/figures/stock_weather-fog.png share/help/kab/mateweather/figures/stock_weather-night-clear.png share/help/kab/mateweather/figures/stock_weather-night-few-clouds.png share/help/kab/mateweather/figures/stock_weather-showers.png share/help/kab/mateweather/figures/stock_weather-snow.png share/help/kab/mateweather/figures/stock_weather-storm.png share/help/kab/mateweather/figures/stock_weather-sunny.png share/help/kab/mateweather/index.docbook share/help/kab/mateweather/legal.xml share/help/kk/mate-accessx-status/figures/accessx-status-applet.png share/help/kk/mate-accessx-status/figures/accessx-status-disabled.png share/help/kk/mate-accessx-status/figures/accessx_bounce-keys.png share/help/kk/mate-accessx-status/figures/accessx_mouse-keys.png share/help/kk/mate-accessx-status/figures/accessx_slow-keys.png share/help/kk/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/kk/mate-accessx-status/figures/accessx_sticky-keys.png share/help/kk/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/kk/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/kk/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/kk/mate-accessx-status/index.docbook share/help/kk/mate-accessx-status/legal.xml %%BATTERY%%share/help/kk/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/kk/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/kk/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/kk/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/kk/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/kk/mate-battstat/index.docbook %%BATTERY%%share/help/kk/mate-battstat/legal.xml share/help/kk/mate-char-palette/figures/charpalette_applet.png share/help/kk/mate-char-palette/figures/charpick-preferences.png share/help/kk/mate-char-palette/figures/charpick_characters.png share/help/kk/mate-char-palette/index.docbook share/help/kk/mate-char-palette/legal.xml share/help/kk/mate-drivemount/figures/drivemount-applet_eject.png share/help/kk/mate-drivemount/figures/drivemount-applet_example.png share/help/kk/mate-drivemount/figures/drivemount-applet_mount.png share/help/kk/mate-drivemount/figures/drivemount-applet_open.png share/help/kk/mate-drivemount/figures/drivemount-applet_status.png share/help/kk/mate-drivemount/index.docbook share/help/kk/mate-drivemount/legal.xml share/help/kk/mate-geyes/figures/geyes_applet.png share/help/kk/mate-geyes/index.docbook share/help/kk/mate-geyes/legal.xml share/help/kk/mate-multiload/figures/multiload-preferences.png share/help/kk/mate-multiload/figures/system-monitor-applet_window.png share/help/kk/mate-multiload/index.docbook share/help/kk/mate-multiload/legal.xml share/help/kk/mate-netspeed-applet/figures/details.png share/help/kk/mate-netspeed-applet/figures/eth_sum_48.png share/help/kk/mate-netspeed-applet/figures/ethernet.png share/help/kk/mate-netspeed-applet/figures/loopback.png share/help/kk/mate-netspeed-applet/figures/netspeed_applet.png share/help/kk/mate-netspeed-applet/figures/plip.png share/help/kk/mate-netspeed-applet/figures/ppp.png share/help/kk/mate-netspeed-applet/figures/settings.png share/help/kk/mate-netspeed-applet/figures/wavelan.png share/help/kk/mate-netspeed-applet/index.docbook share/help/kk/mate-netspeed-applet/legal.xml share/help/kk/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/kk/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/kk/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/kk/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/kk/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/kk/mate-stickynotes-applet/index.docbook share/help/kk/mate-stickynotes-applet/legal.xml share/help/kk/mate-trashapplet/figures/trash-applet.png share/help/kk/mate-trashapplet/index.docbook share/help/kk/mate-trashapplet/legal.xml share/help/kk/mateweather/figures/mateweather-details.png share/help/kk/mateweather/figures/mateweather-menu-prefs.png share/help/kk/mateweather/figures/mateweather-prefs-general.png share/help/kk/mateweather/figures/mateweather-prefs-locations.png share/help/kk/mateweather/figures/mateweather_applet.png share/help/kk/mateweather/figures/stock_weather-cloudy.png share/help/kk/mateweather/figures/stock_weather-few-clouds.png share/help/kk/mateweather/figures/stock_weather-fog.png share/help/kk/mateweather/figures/stock_weather-night-clear.png share/help/kk/mateweather/figures/stock_weather-night-few-clouds.png share/help/kk/mateweather/figures/stock_weather-showers.png share/help/kk/mateweather/figures/stock_weather-snow.png share/help/kk/mateweather/figures/stock_weather-storm.png share/help/kk/mateweather/figures/stock_weather-sunny.png share/help/kk/mateweather/index.docbook share/help/kk/mateweather/legal.xml %%BATTERY%%share/help/km/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/km/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/km/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/km/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/km/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/km/mate-battstat/index.docbook %%BATTERY%%share/help/km/mate-battstat/legal.xml share/help/km/mate-geyes/figures/geyes_applet.png share/help/km/mate-geyes/index.docbook share/help/km/mate-geyes/legal.xml share/help/km/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/km/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/km/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/km/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/km/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/km/mate-stickynotes-applet/index.docbook share/help/km/mate-stickynotes-applet/legal.xml share/help/km/mate-trashapplet/figures/trash-applet.png share/help/km/mate-trashapplet/index.docbook share/help/km/mate-trashapplet/legal.xml share/help/km/mateweather/figures/mateweather-details.png share/help/km/mateweather/figures/mateweather-menu-prefs.png share/help/km/mateweather/figures/mateweather-prefs-general.png share/help/km/mateweather/figures/mateweather-prefs-locations.png share/help/km/mateweather/figures/mateweather_applet.png share/help/km/mateweather/figures/stock_weather-cloudy.png share/help/km/mateweather/figures/stock_weather-few-clouds.png share/help/km/mateweather/figures/stock_weather-fog.png share/help/km/mateweather/figures/stock_weather-night-clear.png share/help/km/mateweather/figures/stock_weather-night-few-clouds.png share/help/km/mateweather/figures/stock_weather-showers.png share/help/km/mateweather/figures/stock_weather-snow.png share/help/km/mateweather/figures/stock_weather-storm.png share/help/km/mateweather/figures/stock_weather-sunny.png share/help/km/mateweather/index.docbook share/help/km/mateweather/legal.xml share/help/kn/mate-accessx-status/figures/accessx-status-applet.png share/help/kn/mate-accessx-status/figures/accessx-status-disabled.png share/help/kn/mate-accessx-status/figures/accessx_bounce-keys.png share/help/kn/mate-accessx-status/figures/accessx_mouse-keys.png share/help/kn/mate-accessx-status/figures/accessx_slow-keys.png share/help/kn/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/kn/mate-accessx-status/figures/accessx_sticky-keys.png share/help/kn/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/kn/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/kn/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/kn/mate-accessx-status/index.docbook share/help/kn/mate-accessx-status/legal.xml %%BATTERY%%share/help/kn/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/kn/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/kn/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/kn/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/kn/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/kn/mate-battstat/index.docbook %%BATTERY%%share/help/kn/mate-battstat/legal.xml share/help/kn/mate-char-palette/figures/charpalette_applet.png share/help/kn/mate-char-palette/figures/charpick-preferences.png share/help/kn/mate-char-palette/figures/charpick_characters.png share/help/kn/mate-char-palette/index.docbook share/help/kn/mate-char-palette/legal.xml share/help/kn/mate-drivemount/figures/drivemount-applet_eject.png share/help/kn/mate-drivemount/figures/drivemount-applet_example.png share/help/kn/mate-drivemount/figures/drivemount-applet_mount.png share/help/kn/mate-drivemount/figures/drivemount-applet_open.png share/help/kn/mate-drivemount/figures/drivemount-applet_status.png share/help/kn/mate-drivemount/index.docbook share/help/kn/mate-drivemount/legal.xml share/help/kn/mate-geyes/figures/geyes_applet.png share/help/kn/mate-geyes/index.docbook share/help/kn/mate-geyes/legal.xml share/help/kn/mate-multiload/figures/multiload-preferences.png share/help/kn/mate-multiload/figures/system-monitor-applet_window.png share/help/kn/mate-multiload/index.docbook share/help/kn/mate-multiload/legal.xml share/help/kn/mate-netspeed-applet/figures/details.png share/help/kn/mate-netspeed-applet/figures/eth_sum_48.png share/help/kn/mate-netspeed-applet/figures/ethernet.png share/help/kn/mate-netspeed-applet/figures/loopback.png share/help/kn/mate-netspeed-applet/figures/netspeed_applet.png share/help/kn/mate-netspeed-applet/figures/plip.png share/help/kn/mate-netspeed-applet/figures/ppp.png share/help/kn/mate-netspeed-applet/figures/settings.png share/help/kn/mate-netspeed-applet/figures/wavelan.png share/help/kn/mate-netspeed-applet/index.docbook share/help/kn/mate-netspeed-applet/legal.xml share/help/kn/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/kn/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/kn/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/kn/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/kn/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/kn/mate-stickynotes-applet/index.docbook share/help/kn/mate-stickynotes-applet/legal.xml share/help/kn/mate-trashapplet/figures/trash-applet.png share/help/kn/mate-trashapplet/index.docbook share/help/kn/mate-trashapplet/legal.xml share/help/kn/mateweather/figures/mateweather-details.png share/help/kn/mateweather/figures/mateweather-menu-prefs.png share/help/kn/mateweather/figures/mateweather-prefs-general.png share/help/kn/mateweather/figures/mateweather-prefs-locations.png share/help/kn/mateweather/figures/mateweather_applet.png share/help/kn/mateweather/figures/stock_weather-cloudy.png share/help/kn/mateweather/figures/stock_weather-few-clouds.png share/help/kn/mateweather/figures/stock_weather-fog.png share/help/kn/mateweather/figures/stock_weather-night-clear.png share/help/kn/mateweather/figures/stock_weather-night-few-clouds.png share/help/kn/mateweather/figures/stock_weather-showers.png share/help/kn/mateweather/figures/stock_weather-snow.png share/help/kn/mateweather/figures/stock_weather-storm.png share/help/kn/mateweather/figures/stock_weather-sunny.png share/help/kn/mateweather/index.docbook share/help/kn/mateweather/legal.xml share/help/ko/mate-accessx-status/figures/accessx-status-applet.png share/help/ko/mate-accessx-status/figures/accessx-status-disabled.png share/help/ko/mate-accessx-status/figures/accessx_bounce-keys.png share/help/ko/mate-accessx-status/figures/accessx_mouse-keys.png share/help/ko/mate-accessx-status/figures/accessx_slow-keys.png share/help/ko/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/ko/mate-accessx-status/figures/accessx_sticky-keys.png share/help/ko/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/ko/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/ko/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/ko/mate-accessx-status/index.docbook share/help/ko/mate-accessx-status/legal.xml %%BATTERY%%share/help/ko/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/ko/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/ko/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/ko/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/ko/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/ko/mate-battstat/index.docbook %%BATTERY%%share/help/ko/mate-battstat/legal.xml share/help/ko/mate-char-palette/figures/charpalette_applet.png share/help/ko/mate-char-palette/figures/charpick-preferences.png share/help/ko/mate-char-palette/figures/charpick_characters.png share/help/ko/mate-char-palette/index.docbook share/help/ko/mate-char-palette/legal.xml share/help/ko/mate-drivemount/figures/drivemount-applet_eject.png share/help/ko/mate-drivemount/figures/drivemount-applet_example.png share/help/ko/mate-drivemount/figures/drivemount-applet_mount.png share/help/ko/mate-drivemount/figures/drivemount-applet_open.png share/help/ko/mate-drivemount/figures/drivemount-applet_status.png share/help/ko/mate-drivemount/index.docbook share/help/ko/mate-drivemount/legal.xml share/help/ko/mate-geyes/figures/geyes_applet.png share/help/ko/mate-geyes/index.docbook share/help/ko/mate-geyes/legal.xml share/help/ko/mate-multiload/figures/multiload-preferences.png share/help/ko/mate-multiload/figures/system-monitor-applet_window.png share/help/ko/mate-multiload/index.docbook share/help/ko/mate-multiload/legal.xml share/help/ko/mate-netspeed-applet/figures/details.png share/help/ko/mate-netspeed-applet/figures/eth_sum_48.png share/help/ko/mate-netspeed-applet/figures/ethernet.png share/help/ko/mate-netspeed-applet/figures/loopback.png share/help/ko/mate-netspeed-applet/figures/netspeed_applet.png share/help/ko/mate-netspeed-applet/figures/plip.png share/help/ko/mate-netspeed-applet/figures/ppp.png share/help/ko/mate-netspeed-applet/figures/settings.png share/help/ko/mate-netspeed-applet/figures/wavelan.png share/help/ko/mate-netspeed-applet/index.docbook share/help/ko/mate-netspeed-applet/legal.xml share/help/ko/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/ko/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/ko/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/ko/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/ko/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/ko/mate-stickynotes-applet/index.docbook share/help/ko/mate-stickynotes-applet/legal.xml share/help/ko/mate-trashapplet/figures/trash-applet.png share/help/ko/mate-trashapplet/index.docbook share/help/ko/mate-trashapplet/legal.xml share/help/ko/mateweather/figures/mateweather-details.png share/help/ko/mateweather/figures/mateweather-menu-prefs.png share/help/ko/mateweather/figures/mateweather-prefs-general.png share/help/ko/mateweather/figures/mateweather-prefs-locations.png share/help/ko/mateweather/figures/mateweather_applet.png share/help/ko/mateweather/figures/stock_weather-cloudy.png share/help/ko/mateweather/figures/stock_weather-few-clouds.png share/help/ko/mateweather/figures/stock_weather-fog.png share/help/ko/mateweather/figures/stock_weather-night-clear.png share/help/ko/mateweather/figures/stock_weather-night-few-clouds.png share/help/ko/mateweather/figures/stock_weather-showers.png share/help/ko/mateweather/figures/stock_weather-snow.png share/help/ko/mateweather/figures/stock_weather-storm.png share/help/ko/mateweather/figures/stock_weather-sunny.png share/help/ko/mateweather/index.docbook share/help/ko/mateweather/legal.xml share/help/ks/mate-geyes/figures/geyes_applet.png share/help/ks/mate-geyes/index.docbook share/help/ks/mate-geyes/legal.xml share/help/ks/mate-trashapplet/figures/trash-applet.png share/help/ks/mate-trashapplet/index.docbook share/help/ks/mate-trashapplet/legal.xml share/help/ku/mate-accessx-status/figures/accessx-status-applet.png share/help/ku/mate-accessx-status/figures/accessx-status-disabled.png share/help/ku/mate-accessx-status/figures/accessx_bounce-keys.png share/help/ku/mate-accessx-status/figures/accessx_mouse-keys.png share/help/ku/mate-accessx-status/figures/accessx_slow-keys.png share/help/ku/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/ku/mate-accessx-status/figures/accessx_sticky-keys.png share/help/ku/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/ku/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/ku/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/ku/mate-accessx-status/index.docbook share/help/ku/mate-accessx-status/legal.xml %%BATTERY%%share/help/ku/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/ku/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/ku/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/ku/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/ku/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/ku/mate-battstat/index.docbook %%BATTERY%%share/help/ku/mate-battstat/legal.xml share/help/ku/mate-char-palette/figures/charpalette_applet.png share/help/ku/mate-char-palette/figures/charpick-preferences.png share/help/ku/mate-char-palette/figures/charpick_characters.png share/help/ku/mate-char-palette/index.docbook share/help/ku/mate-char-palette/legal.xml share/help/ku/mate-drivemount/figures/drivemount-applet_eject.png share/help/ku/mate-drivemount/figures/drivemount-applet_example.png share/help/ku/mate-drivemount/figures/drivemount-applet_mount.png share/help/ku/mate-drivemount/figures/drivemount-applet_open.png share/help/ku/mate-drivemount/figures/drivemount-applet_status.png share/help/ku/mate-drivemount/index.docbook share/help/ku/mate-drivemount/legal.xml share/help/ku/mate-geyes/figures/geyes_applet.png share/help/ku/mate-geyes/index.docbook share/help/ku/mate-geyes/legal.xml share/help/ku/mate-multiload/figures/multiload-preferences.png share/help/ku/mate-multiload/figures/system-monitor-applet_window.png share/help/ku/mate-multiload/index.docbook share/help/ku/mate-multiload/legal.xml share/help/ku/mate-netspeed-applet/figures/details.png share/help/ku/mate-netspeed-applet/figures/eth_sum_48.png share/help/ku/mate-netspeed-applet/figures/ethernet.png share/help/ku/mate-netspeed-applet/figures/loopback.png share/help/ku/mate-netspeed-applet/figures/netspeed_applet.png share/help/ku/mate-netspeed-applet/figures/plip.png share/help/ku/mate-netspeed-applet/figures/ppp.png share/help/ku/mate-netspeed-applet/figures/settings.png share/help/ku/mate-netspeed-applet/figures/wavelan.png share/help/ku/mate-netspeed-applet/index.docbook share/help/ku/mate-netspeed-applet/legal.xml share/help/ku/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/ku/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/ku/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/ku/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/ku/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/ku/mate-stickynotes-applet/index.docbook share/help/ku/mate-stickynotes-applet/legal.xml share/help/ku/mate-trashapplet/figures/trash-applet.png share/help/ku/mate-trashapplet/index.docbook share/help/ku/mate-trashapplet/legal.xml share/help/ku/mateweather/figures/mateweather-details.png share/help/ku/mateweather/figures/mateweather-menu-prefs.png share/help/ku/mateweather/figures/mateweather-prefs-general.png share/help/ku/mateweather/figures/mateweather-prefs-locations.png share/help/ku/mateweather/figures/mateweather_applet.png share/help/ku/mateweather/figures/stock_weather-cloudy.png share/help/ku/mateweather/figures/stock_weather-few-clouds.png share/help/ku/mateweather/figures/stock_weather-fog.png share/help/ku/mateweather/figures/stock_weather-night-clear.png share/help/ku/mateweather/figures/stock_weather-night-few-clouds.png share/help/ku/mateweather/figures/stock_weather-showers.png share/help/ku/mateweather/figures/stock_weather-snow.png share/help/ku/mateweather/figures/stock_weather-storm.png share/help/ku/mateweather/figures/stock_weather-sunny.png share/help/ku/mateweather/index.docbook share/help/ku/mateweather/legal.xml +share/help/ku_IQ/mate-accessx-status/figures/accessx-status-applet.png +share/help/ku_IQ/mate-accessx-status/figures/accessx-status-disabled.png +share/help/ku_IQ/mate-accessx-status/figures/accessx_bounce-keys.png +share/help/ku_IQ/mate-accessx-status/figures/accessx_mouse-keys.png +share/help/ku_IQ/mate-accessx-status/figures/accessx_slow-keys.png +share/help/ku_IQ/mate-accessx-status/figures/accessx_sticky-altGr-key.png +share/help/ku_IQ/mate-accessx-status/figures/accessx_sticky-keys.png +share/help/ku_IQ/mate-accessx-status/figures/accessx_sticky-meta-key.png +share/help/ku_IQ/mate-accessx-status/figures/accessx_sticky-shift-key.png +share/help/ku_IQ/mate-accessx-status/figures/accessx_sticky-windows-key.png +share/help/ku_IQ/mate-accessx-status/index.docbook +share/help/ku_IQ/mate-accessx-status/legal.xml %%BATTERY%%share/help/ku_IQ/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/ku_IQ/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/ku_IQ/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/ku_IQ/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/ku_IQ/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/ku_IQ/mate-battstat/index.docbook %%BATTERY%%share/help/ku_IQ/mate-battstat/legal.xml +share/help/ku_IQ/mate-char-palette/figures/charpalette_applet.png +share/help/ku_IQ/mate-char-palette/figures/charpick-preferences.png +share/help/ku_IQ/mate-char-palette/figures/charpick_characters.png +share/help/ku_IQ/mate-char-palette/index.docbook +share/help/ku_IQ/mate-char-palette/legal.xml +share/help/ku_IQ/mate-drivemount/figures/drivemount-applet_eject.png +share/help/ku_IQ/mate-drivemount/figures/drivemount-applet_example.png +share/help/ku_IQ/mate-drivemount/figures/drivemount-applet_mount.png +share/help/ku_IQ/mate-drivemount/figures/drivemount-applet_open.png +share/help/ku_IQ/mate-drivemount/figures/drivemount-applet_status.png +share/help/ku_IQ/mate-drivemount/index.docbook +share/help/ku_IQ/mate-drivemount/legal.xml share/help/ku_IQ/mate-geyes/figures/geyes_applet.png share/help/ku_IQ/mate-geyes/index.docbook share/help/ku_IQ/mate-geyes/legal.xml +share/help/ku_IQ/mate-multiload/figures/multiload-preferences.png +share/help/ku_IQ/mate-multiload/figures/system-monitor-applet_window.png +share/help/ku_IQ/mate-multiload/index.docbook +share/help/ku_IQ/mate-multiload/legal.xml share/help/ku_IQ/mate-netspeed-applet/figures/details.png share/help/ku_IQ/mate-netspeed-applet/figures/eth_sum_48.png share/help/ku_IQ/mate-netspeed-applet/figures/ethernet.png share/help/ku_IQ/mate-netspeed-applet/figures/loopback.png share/help/ku_IQ/mate-netspeed-applet/figures/netspeed_applet.png share/help/ku_IQ/mate-netspeed-applet/figures/plip.png share/help/ku_IQ/mate-netspeed-applet/figures/ppp.png share/help/ku_IQ/mate-netspeed-applet/figures/settings.png share/help/ku_IQ/mate-netspeed-applet/figures/wavelan.png share/help/ku_IQ/mate-netspeed-applet/index.docbook share/help/ku_IQ/mate-netspeed-applet/legal.xml share/help/ku_IQ/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/ku_IQ/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/ku_IQ/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/ku_IQ/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/ku_IQ/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/ku_IQ/mate-stickynotes-applet/index.docbook share/help/ku_IQ/mate-stickynotes-applet/legal.xml share/help/ku_IQ/mate-trashapplet/figures/trash-applet.png share/help/ku_IQ/mate-trashapplet/index.docbook share/help/ku_IQ/mate-trashapplet/legal.xml share/help/ku_IQ/mateweather/figures/mateweather-details.png share/help/ku_IQ/mateweather/figures/mateweather-menu-prefs.png share/help/ku_IQ/mateweather/figures/mateweather-prefs-general.png share/help/ku_IQ/mateweather/figures/mateweather-prefs-locations.png share/help/ku_IQ/mateweather/figures/mateweather_applet.png share/help/ku_IQ/mateweather/figures/stock_weather-cloudy.png share/help/ku_IQ/mateweather/figures/stock_weather-few-clouds.png share/help/ku_IQ/mateweather/figures/stock_weather-fog.png share/help/ku_IQ/mateweather/figures/stock_weather-night-clear.png share/help/ku_IQ/mateweather/figures/stock_weather-night-few-clouds.png share/help/ku_IQ/mateweather/figures/stock_weather-showers.png share/help/ku_IQ/mateweather/figures/stock_weather-snow.png share/help/ku_IQ/mateweather/figures/stock_weather-storm.png share/help/ku_IQ/mateweather/figures/stock_weather-sunny.png share/help/ku_IQ/mateweather/index.docbook share/help/ku_IQ/mateweather/legal.xml share/help/ky/mate-accessx-status/figures/accessx-status-applet.png share/help/ky/mate-accessx-status/figures/accessx-status-disabled.png share/help/ky/mate-accessx-status/figures/accessx_bounce-keys.png share/help/ky/mate-accessx-status/figures/accessx_mouse-keys.png share/help/ky/mate-accessx-status/figures/accessx_slow-keys.png share/help/ky/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/ky/mate-accessx-status/figures/accessx_sticky-keys.png share/help/ky/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/ky/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/ky/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/ky/mate-accessx-status/index.docbook share/help/ky/mate-accessx-status/legal.xml %%BATTERY%%share/help/ky/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/ky/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/ky/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/ky/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/ky/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/ky/mate-battstat/index.docbook %%BATTERY%%share/help/ky/mate-battstat/legal.xml share/help/ky/mate-char-palette/figures/charpalette_applet.png share/help/ky/mate-char-palette/figures/charpick-preferences.png share/help/ky/mate-char-palette/figures/charpick_characters.png share/help/ky/mate-char-palette/index.docbook share/help/ky/mate-char-palette/legal.xml share/help/ky/mate-drivemount/figures/drivemount-applet_eject.png share/help/ky/mate-drivemount/figures/drivemount-applet_example.png share/help/ky/mate-drivemount/figures/drivemount-applet_mount.png share/help/ky/mate-drivemount/figures/drivemount-applet_open.png share/help/ky/mate-drivemount/figures/drivemount-applet_status.png share/help/ky/mate-drivemount/index.docbook share/help/ky/mate-drivemount/legal.xml share/help/ky/mate-geyes/figures/geyes_applet.png share/help/ky/mate-geyes/index.docbook share/help/ky/mate-geyes/legal.xml share/help/ky/mate-multiload/figures/multiload-preferences.png share/help/ky/mate-multiload/figures/system-monitor-applet_window.png share/help/ky/mate-multiload/index.docbook share/help/ky/mate-multiload/legal.xml share/help/ky/mate-netspeed-applet/figures/details.png share/help/ky/mate-netspeed-applet/figures/eth_sum_48.png share/help/ky/mate-netspeed-applet/figures/ethernet.png share/help/ky/mate-netspeed-applet/figures/loopback.png share/help/ky/mate-netspeed-applet/figures/netspeed_applet.png share/help/ky/mate-netspeed-applet/figures/plip.png share/help/ky/mate-netspeed-applet/figures/ppp.png share/help/ky/mate-netspeed-applet/figures/settings.png share/help/ky/mate-netspeed-applet/figures/wavelan.png share/help/ky/mate-netspeed-applet/index.docbook share/help/ky/mate-netspeed-applet/legal.xml share/help/ky/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/ky/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/ky/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/ky/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/ky/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/ky/mate-stickynotes-applet/index.docbook share/help/ky/mate-stickynotes-applet/legal.xml share/help/ky/mate-trashapplet/figures/trash-applet.png share/help/ky/mate-trashapplet/index.docbook share/help/ky/mate-trashapplet/legal.xml share/help/ky/mateweather/figures/mateweather-details.png share/help/ky/mateweather/figures/mateweather-menu-prefs.png share/help/ky/mateweather/figures/mateweather-prefs-general.png share/help/ky/mateweather/figures/mateweather-prefs-locations.png share/help/ky/mateweather/figures/mateweather_applet.png share/help/ky/mateweather/figures/stock_weather-cloudy.png share/help/ky/mateweather/figures/stock_weather-few-clouds.png share/help/ky/mateweather/figures/stock_weather-fog.png share/help/ky/mateweather/figures/stock_weather-night-clear.png share/help/ky/mateweather/figures/stock_weather-night-few-clouds.png share/help/ky/mateweather/figures/stock_weather-showers.png share/help/ky/mateweather/figures/stock_weather-snow.png share/help/ky/mateweather/figures/stock_weather-storm.png share/help/ky/mateweather/figures/stock_weather-sunny.png share/help/ky/mateweather/index.docbook share/help/ky/mateweather/legal.xml +share/help/la/mate-accessx-status/figures/accessx-status-applet.png +share/help/la/mate-accessx-status/figures/accessx-status-disabled.png +share/help/la/mate-accessx-status/figures/accessx_bounce-keys.png +share/help/la/mate-accessx-status/figures/accessx_mouse-keys.png +share/help/la/mate-accessx-status/figures/accessx_slow-keys.png +share/help/la/mate-accessx-status/figures/accessx_sticky-altGr-key.png +share/help/la/mate-accessx-status/figures/accessx_sticky-keys.png +share/help/la/mate-accessx-status/figures/accessx_sticky-meta-key.png +share/help/la/mate-accessx-status/figures/accessx_sticky-shift-key.png +share/help/la/mate-accessx-status/figures/accessx_sticky-windows-key.png +share/help/la/mate-accessx-status/index.docbook +share/help/la/mate-accessx-status/legal.xml %%BATTERY%%share/help/la/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/la/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/la/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/la/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/la/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/la/mate-battstat/index.docbook %%BATTERY%%share/help/la/mate-battstat/legal.xml share/help/la/mate-char-palette/figures/charpalette_applet.png share/help/la/mate-char-palette/figures/charpick-preferences.png share/help/la/mate-char-palette/figures/charpick_characters.png share/help/la/mate-char-palette/index.docbook share/help/la/mate-char-palette/legal.xml share/help/la/mate-drivemount/figures/drivemount-applet_eject.png share/help/la/mate-drivemount/figures/drivemount-applet_example.png share/help/la/mate-drivemount/figures/drivemount-applet_mount.png share/help/la/mate-drivemount/figures/drivemount-applet_open.png share/help/la/mate-drivemount/figures/drivemount-applet_status.png share/help/la/mate-drivemount/index.docbook share/help/la/mate-drivemount/legal.xml share/help/la/mate-geyes/figures/geyes_applet.png share/help/la/mate-geyes/index.docbook share/help/la/mate-geyes/legal.xml share/help/la/mate-multiload/figures/multiload-preferences.png share/help/la/mate-multiload/figures/system-monitor-applet_window.png share/help/la/mate-multiload/index.docbook share/help/la/mate-multiload/legal.xml +share/help/la/mate-netspeed-applet/figures/details.png +share/help/la/mate-netspeed-applet/figures/eth_sum_48.png +share/help/la/mate-netspeed-applet/figures/ethernet.png +share/help/la/mate-netspeed-applet/figures/loopback.png +share/help/la/mate-netspeed-applet/figures/netspeed_applet.png +share/help/la/mate-netspeed-applet/figures/plip.png +share/help/la/mate-netspeed-applet/figures/ppp.png +share/help/la/mate-netspeed-applet/figures/settings.png +share/help/la/mate-netspeed-applet/figures/wavelan.png +share/help/la/mate-netspeed-applet/index.docbook +share/help/la/mate-netspeed-applet/legal.xml share/help/la/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/la/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/la/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/la/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/la/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/la/mate-stickynotes-applet/index.docbook share/help/la/mate-stickynotes-applet/legal.xml share/help/la/mate-trashapplet/figures/trash-applet.png share/help/la/mate-trashapplet/index.docbook share/help/la/mate-trashapplet/legal.xml share/help/la/mateweather/figures/mateweather-details.png share/help/la/mateweather/figures/mateweather-menu-prefs.png share/help/la/mateweather/figures/mateweather-prefs-general.png share/help/la/mateweather/figures/mateweather-prefs-locations.png share/help/la/mateweather/figures/mateweather_applet.png share/help/la/mateweather/figures/stock_weather-cloudy.png share/help/la/mateweather/figures/stock_weather-few-clouds.png share/help/la/mateweather/figures/stock_weather-fog.png share/help/la/mateweather/figures/stock_weather-night-clear.png share/help/la/mateweather/figures/stock_weather-night-few-clouds.png share/help/la/mateweather/figures/stock_weather-showers.png share/help/la/mateweather/figures/stock_weather-snow.png share/help/la/mateweather/figures/stock_weather-storm.png share/help/la/mateweather/figures/stock_weather-sunny.png share/help/la/mateweather/index.docbook share/help/la/mateweather/legal.xml share/help/lb/mate-geyes/figures/geyes_applet.png share/help/lb/mate-geyes/index.docbook share/help/lb/mate-geyes/legal.xml share/help/lb/mate-trashapplet/figures/trash-applet.png share/help/lb/mate-trashapplet/index.docbook share/help/lb/mate-trashapplet/legal.xml share/help/li/mate-geyes/figures/geyes_applet.png share/help/li/mate-geyes/index.docbook share/help/li/mate-geyes/legal.xml share/help/li/mate-multiload/figures/multiload-preferences.png share/help/li/mate-multiload/figures/system-monitor-applet_window.png share/help/li/mate-multiload/index.docbook share/help/li/mate-multiload/legal.xml share/help/li/mate-netspeed-applet/figures/details.png share/help/li/mate-netspeed-applet/figures/eth_sum_48.png share/help/li/mate-netspeed-applet/figures/ethernet.png share/help/li/mate-netspeed-applet/figures/loopback.png share/help/li/mate-netspeed-applet/figures/netspeed_applet.png share/help/li/mate-netspeed-applet/figures/plip.png share/help/li/mate-netspeed-applet/figures/ppp.png share/help/li/mate-netspeed-applet/figures/settings.png share/help/li/mate-netspeed-applet/figures/wavelan.png share/help/li/mate-netspeed-applet/index.docbook share/help/li/mate-netspeed-applet/legal.xml share/help/li/mate-trashapplet/figures/trash-applet.png share/help/li/mate-trashapplet/index.docbook share/help/li/mate-trashapplet/legal.xml share/help/li/mateweather/figures/mateweather-details.png share/help/li/mateweather/figures/mateweather-menu-prefs.png share/help/li/mateweather/figures/mateweather-prefs-general.png share/help/li/mateweather/figures/mateweather-prefs-locations.png share/help/li/mateweather/figures/mateweather_applet.png share/help/li/mateweather/figures/stock_weather-cloudy.png share/help/li/mateweather/figures/stock_weather-few-clouds.png share/help/li/mateweather/figures/stock_weather-fog.png share/help/li/mateweather/figures/stock_weather-night-clear.png share/help/li/mateweather/figures/stock_weather-night-few-clouds.png share/help/li/mateweather/figures/stock_weather-showers.png share/help/li/mateweather/figures/stock_weather-snow.png share/help/li/mateweather/figures/stock_weather-storm.png share/help/li/mateweather/figures/stock_weather-sunny.png share/help/li/mateweather/index.docbook share/help/li/mateweather/legal.xml share/help/lt/mate-accessx-status/figures/accessx-status-applet.png share/help/lt/mate-accessx-status/figures/accessx-status-disabled.png share/help/lt/mate-accessx-status/figures/accessx_bounce-keys.png share/help/lt/mate-accessx-status/figures/accessx_mouse-keys.png share/help/lt/mate-accessx-status/figures/accessx_slow-keys.png share/help/lt/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/lt/mate-accessx-status/figures/accessx_sticky-keys.png share/help/lt/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/lt/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/lt/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/lt/mate-accessx-status/index.docbook share/help/lt/mate-accessx-status/legal.xml %%BATTERY%%share/help/lt/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/lt/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/lt/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/lt/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/lt/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/lt/mate-battstat/index.docbook %%BATTERY%%share/help/lt/mate-battstat/legal.xml share/help/lt/mate-char-palette/figures/charpalette_applet.png share/help/lt/mate-char-palette/figures/charpick-preferences.png share/help/lt/mate-char-palette/figures/charpick_characters.png share/help/lt/mate-char-palette/index.docbook share/help/lt/mate-char-palette/legal.xml share/help/lt/mate-drivemount/figures/drivemount-applet_eject.png share/help/lt/mate-drivemount/figures/drivemount-applet_example.png share/help/lt/mate-drivemount/figures/drivemount-applet_mount.png share/help/lt/mate-drivemount/figures/drivemount-applet_open.png share/help/lt/mate-drivemount/figures/drivemount-applet_status.png share/help/lt/mate-drivemount/index.docbook share/help/lt/mate-drivemount/legal.xml share/help/lt/mate-geyes/figures/geyes_applet.png share/help/lt/mate-geyes/index.docbook share/help/lt/mate-geyes/legal.xml share/help/lt/mate-multiload/figures/multiload-preferences.png share/help/lt/mate-multiload/figures/system-monitor-applet_window.png share/help/lt/mate-multiload/index.docbook share/help/lt/mate-multiload/legal.xml share/help/lt/mate-netspeed-applet/figures/details.png share/help/lt/mate-netspeed-applet/figures/eth_sum_48.png share/help/lt/mate-netspeed-applet/figures/ethernet.png share/help/lt/mate-netspeed-applet/figures/loopback.png share/help/lt/mate-netspeed-applet/figures/netspeed_applet.png share/help/lt/mate-netspeed-applet/figures/plip.png share/help/lt/mate-netspeed-applet/figures/ppp.png share/help/lt/mate-netspeed-applet/figures/settings.png share/help/lt/mate-netspeed-applet/figures/wavelan.png share/help/lt/mate-netspeed-applet/index.docbook share/help/lt/mate-netspeed-applet/legal.xml share/help/lt/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/lt/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/lt/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/lt/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/lt/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/lt/mate-stickynotes-applet/index.docbook share/help/lt/mate-stickynotes-applet/legal.xml share/help/lt/mate-trashapplet/figures/trash-applet.png share/help/lt/mate-trashapplet/index.docbook share/help/lt/mate-trashapplet/legal.xml share/help/lt/mateweather/figures/mateweather-details.png share/help/lt/mateweather/figures/mateweather-menu-prefs.png share/help/lt/mateweather/figures/mateweather-prefs-general.png share/help/lt/mateweather/figures/mateweather-prefs-locations.png share/help/lt/mateweather/figures/mateweather_applet.png share/help/lt/mateweather/figures/stock_weather-cloudy.png share/help/lt/mateweather/figures/stock_weather-few-clouds.png share/help/lt/mateweather/figures/stock_weather-fog.png share/help/lt/mateweather/figures/stock_weather-night-clear.png share/help/lt/mateweather/figures/stock_weather-night-few-clouds.png share/help/lt/mateweather/figures/stock_weather-showers.png share/help/lt/mateweather/figures/stock_weather-snow.png share/help/lt/mateweather/figures/stock_weather-storm.png share/help/lt/mateweather/figures/stock_weather-sunny.png share/help/lt/mateweather/index.docbook share/help/lt/mateweather/legal.xml share/help/lv/mate-accessx-status/figures/accessx-status-applet.png share/help/lv/mate-accessx-status/figures/accessx-status-disabled.png share/help/lv/mate-accessx-status/figures/accessx_bounce-keys.png share/help/lv/mate-accessx-status/figures/accessx_mouse-keys.png share/help/lv/mate-accessx-status/figures/accessx_slow-keys.png share/help/lv/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/lv/mate-accessx-status/figures/accessx_sticky-keys.png share/help/lv/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/lv/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/lv/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/lv/mate-accessx-status/index.docbook share/help/lv/mate-accessx-status/legal.xml %%BATTERY%%share/help/lv/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/lv/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/lv/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/lv/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/lv/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/lv/mate-battstat/index.docbook %%BATTERY%%share/help/lv/mate-battstat/legal.xml share/help/lv/mate-char-palette/figures/charpalette_applet.png share/help/lv/mate-char-palette/figures/charpick-preferences.png share/help/lv/mate-char-palette/figures/charpick_characters.png share/help/lv/mate-char-palette/index.docbook share/help/lv/mate-char-palette/legal.xml share/help/lv/mate-drivemount/figures/drivemount-applet_eject.png share/help/lv/mate-drivemount/figures/drivemount-applet_example.png share/help/lv/mate-drivemount/figures/drivemount-applet_mount.png share/help/lv/mate-drivemount/figures/drivemount-applet_open.png share/help/lv/mate-drivemount/figures/drivemount-applet_status.png share/help/lv/mate-drivemount/index.docbook share/help/lv/mate-drivemount/legal.xml share/help/lv/mate-geyes/figures/geyes_applet.png share/help/lv/mate-geyes/index.docbook share/help/lv/mate-geyes/legal.xml share/help/lv/mate-multiload/figures/multiload-preferences.png share/help/lv/mate-multiload/figures/system-monitor-applet_window.png share/help/lv/mate-multiload/index.docbook share/help/lv/mate-multiload/legal.xml share/help/lv/mate-netspeed-applet/figures/details.png share/help/lv/mate-netspeed-applet/figures/eth_sum_48.png share/help/lv/mate-netspeed-applet/figures/ethernet.png share/help/lv/mate-netspeed-applet/figures/loopback.png share/help/lv/mate-netspeed-applet/figures/netspeed_applet.png share/help/lv/mate-netspeed-applet/figures/plip.png share/help/lv/mate-netspeed-applet/figures/ppp.png share/help/lv/mate-netspeed-applet/figures/settings.png share/help/lv/mate-netspeed-applet/figures/wavelan.png share/help/lv/mate-netspeed-applet/index.docbook share/help/lv/mate-netspeed-applet/legal.xml share/help/lv/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/lv/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/lv/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/lv/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/lv/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/lv/mate-stickynotes-applet/index.docbook share/help/lv/mate-stickynotes-applet/legal.xml share/help/lv/mate-trashapplet/figures/trash-applet.png share/help/lv/mate-trashapplet/index.docbook share/help/lv/mate-trashapplet/legal.xml share/help/lv/mateweather/figures/mateweather-details.png share/help/lv/mateweather/figures/mateweather-menu-prefs.png share/help/lv/mateweather/figures/mateweather-prefs-general.png share/help/lv/mateweather/figures/mateweather-prefs-locations.png share/help/lv/mateweather/figures/mateweather_applet.png share/help/lv/mateweather/figures/stock_weather-cloudy.png share/help/lv/mateweather/figures/stock_weather-few-clouds.png share/help/lv/mateweather/figures/stock_weather-fog.png share/help/lv/mateweather/figures/stock_weather-night-clear.png share/help/lv/mateweather/figures/stock_weather-night-few-clouds.png share/help/lv/mateweather/figures/stock_weather-showers.png share/help/lv/mateweather/figures/stock_weather-snow.png share/help/lv/mateweather/figures/stock_weather-storm.png share/help/lv/mateweather/figures/stock_weather-sunny.png share/help/lv/mateweather/index.docbook share/help/lv/mateweather/legal.xml share/help/mai/mate-accessx-status/figures/accessx-status-applet.png share/help/mai/mate-accessx-status/figures/accessx-status-disabled.png share/help/mai/mate-accessx-status/figures/accessx_bounce-keys.png share/help/mai/mate-accessx-status/figures/accessx_mouse-keys.png share/help/mai/mate-accessx-status/figures/accessx_slow-keys.png share/help/mai/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/mai/mate-accessx-status/figures/accessx_sticky-keys.png share/help/mai/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/mai/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/mai/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/mai/mate-accessx-status/index.docbook share/help/mai/mate-accessx-status/legal.xml %%BATTERY%%share/help/mai/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/mai/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/mai/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/mai/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/mai/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/mai/mate-battstat/index.docbook %%BATTERY%%share/help/mai/mate-battstat/legal.xml share/help/mai/mate-char-palette/figures/charpalette_applet.png share/help/mai/mate-char-palette/figures/charpick-preferences.png share/help/mai/mate-char-palette/figures/charpick_characters.png share/help/mai/mate-char-palette/index.docbook share/help/mai/mate-char-palette/legal.xml share/help/mai/mate-drivemount/figures/drivemount-applet_eject.png share/help/mai/mate-drivemount/figures/drivemount-applet_example.png share/help/mai/mate-drivemount/figures/drivemount-applet_mount.png share/help/mai/mate-drivemount/figures/drivemount-applet_open.png share/help/mai/mate-drivemount/figures/drivemount-applet_status.png share/help/mai/mate-drivemount/index.docbook share/help/mai/mate-drivemount/legal.xml share/help/mai/mate-geyes/figures/geyes_applet.png share/help/mai/mate-geyes/index.docbook share/help/mai/mate-geyes/legal.xml share/help/mai/mate-multiload/figures/multiload-preferences.png share/help/mai/mate-multiload/figures/system-monitor-applet_window.png share/help/mai/mate-multiload/index.docbook share/help/mai/mate-multiload/legal.xml share/help/mai/mate-netspeed-applet/figures/details.png share/help/mai/mate-netspeed-applet/figures/eth_sum_48.png share/help/mai/mate-netspeed-applet/figures/ethernet.png share/help/mai/mate-netspeed-applet/figures/loopback.png share/help/mai/mate-netspeed-applet/figures/netspeed_applet.png share/help/mai/mate-netspeed-applet/figures/plip.png share/help/mai/mate-netspeed-applet/figures/ppp.png share/help/mai/mate-netspeed-applet/figures/settings.png share/help/mai/mate-netspeed-applet/figures/wavelan.png share/help/mai/mate-netspeed-applet/index.docbook share/help/mai/mate-netspeed-applet/legal.xml share/help/mai/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/mai/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/mai/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/mai/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/mai/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/mai/mate-stickynotes-applet/index.docbook share/help/mai/mate-stickynotes-applet/legal.xml share/help/mai/mate-trashapplet/figures/trash-applet.png share/help/mai/mate-trashapplet/index.docbook share/help/mai/mate-trashapplet/legal.xml share/help/mai/mateweather/figures/mateweather-details.png share/help/mai/mateweather/figures/mateweather-menu-prefs.png share/help/mai/mateweather/figures/mateweather-prefs-general.png share/help/mai/mateweather/figures/mateweather-prefs-locations.png share/help/mai/mateweather/figures/mateweather_applet.png share/help/mai/mateweather/figures/stock_weather-cloudy.png share/help/mai/mateweather/figures/stock_weather-few-clouds.png share/help/mai/mateweather/figures/stock_weather-fog.png share/help/mai/mateweather/figures/stock_weather-night-clear.png share/help/mai/mateweather/figures/stock_weather-night-few-clouds.png share/help/mai/mateweather/figures/stock_weather-showers.png share/help/mai/mateweather/figures/stock_weather-snow.png share/help/mai/mateweather/figures/stock_weather-storm.png share/help/mai/mateweather/figures/stock_weather-sunny.png share/help/mai/mateweather/index.docbook share/help/mai/mateweather/legal.xml share/help/mg/mate-accessx-status/figures/accessx-status-applet.png share/help/mg/mate-accessx-status/figures/accessx-status-disabled.png share/help/mg/mate-accessx-status/figures/accessx_bounce-keys.png share/help/mg/mate-accessx-status/figures/accessx_mouse-keys.png share/help/mg/mate-accessx-status/figures/accessx_slow-keys.png share/help/mg/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/mg/mate-accessx-status/figures/accessx_sticky-keys.png share/help/mg/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/mg/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/mg/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/mg/mate-accessx-status/index.docbook share/help/mg/mate-accessx-status/legal.xml %%BATTERY%%share/help/mg/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/mg/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/mg/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/mg/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/mg/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/mg/mate-battstat/index.docbook %%BATTERY%%share/help/mg/mate-battstat/legal.xml share/help/mg/mate-char-palette/figures/charpalette_applet.png share/help/mg/mate-char-palette/figures/charpick-preferences.png share/help/mg/mate-char-palette/figures/charpick_characters.png share/help/mg/mate-char-palette/index.docbook share/help/mg/mate-char-palette/legal.xml share/help/mg/mate-drivemount/figures/drivemount-applet_eject.png share/help/mg/mate-drivemount/figures/drivemount-applet_example.png share/help/mg/mate-drivemount/figures/drivemount-applet_mount.png share/help/mg/mate-drivemount/figures/drivemount-applet_open.png share/help/mg/mate-drivemount/figures/drivemount-applet_status.png share/help/mg/mate-drivemount/index.docbook share/help/mg/mate-drivemount/legal.xml share/help/mg/mate-geyes/figures/geyes_applet.png share/help/mg/mate-geyes/index.docbook share/help/mg/mate-geyes/legal.xml share/help/mg/mate-multiload/figures/multiload-preferences.png share/help/mg/mate-multiload/figures/system-monitor-applet_window.png share/help/mg/mate-multiload/index.docbook share/help/mg/mate-multiload/legal.xml share/help/mg/mate-netspeed-applet/figures/details.png share/help/mg/mate-netspeed-applet/figures/eth_sum_48.png share/help/mg/mate-netspeed-applet/figures/ethernet.png share/help/mg/mate-netspeed-applet/figures/loopback.png share/help/mg/mate-netspeed-applet/figures/netspeed_applet.png share/help/mg/mate-netspeed-applet/figures/plip.png share/help/mg/mate-netspeed-applet/figures/ppp.png share/help/mg/mate-netspeed-applet/figures/settings.png share/help/mg/mate-netspeed-applet/figures/wavelan.png share/help/mg/mate-netspeed-applet/index.docbook share/help/mg/mate-netspeed-applet/legal.xml share/help/mg/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/mg/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/mg/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/mg/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/mg/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/mg/mate-stickynotes-applet/index.docbook share/help/mg/mate-stickynotes-applet/legal.xml share/help/mg/mate-trashapplet/figures/trash-applet.png share/help/mg/mate-trashapplet/index.docbook share/help/mg/mate-trashapplet/legal.xml share/help/mg/mateweather/figures/mateweather-details.png share/help/mg/mateweather/figures/mateweather-menu-prefs.png share/help/mg/mateweather/figures/mateweather-prefs-general.png share/help/mg/mateweather/figures/mateweather-prefs-locations.png share/help/mg/mateweather/figures/mateweather_applet.png share/help/mg/mateweather/figures/stock_weather-cloudy.png share/help/mg/mateweather/figures/stock_weather-few-clouds.png share/help/mg/mateweather/figures/stock_weather-fog.png share/help/mg/mateweather/figures/stock_weather-night-clear.png share/help/mg/mateweather/figures/stock_weather-night-few-clouds.png share/help/mg/mateweather/figures/stock_weather-showers.png share/help/mg/mateweather/figures/stock_weather-snow.png share/help/mg/mateweather/figures/stock_weather-storm.png share/help/mg/mateweather/figures/stock_weather-sunny.png share/help/mg/mateweather/index.docbook share/help/mg/mateweather/legal.xml %%BATTERY%%share/help/mi/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/mi/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/mi/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/mi/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/mi/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/mi/mate-battstat/index.docbook %%BATTERY%%share/help/mi/mate-battstat/legal.xml share/help/mi/mate-geyes/figures/geyes_applet.png share/help/mi/mate-geyes/index.docbook share/help/mi/mate-geyes/legal.xml share/help/mi/mate-netspeed-applet/figures/details.png share/help/mi/mate-netspeed-applet/figures/eth_sum_48.png share/help/mi/mate-netspeed-applet/figures/ethernet.png share/help/mi/mate-netspeed-applet/figures/loopback.png share/help/mi/mate-netspeed-applet/figures/netspeed_applet.png share/help/mi/mate-netspeed-applet/figures/plip.png share/help/mi/mate-netspeed-applet/figures/ppp.png share/help/mi/mate-netspeed-applet/figures/settings.png share/help/mi/mate-netspeed-applet/figures/wavelan.png share/help/mi/mate-netspeed-applet/index.docbook share/help/mi/mate-netspeed-applet/legal.xml share/help/mi/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/mi/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/mi/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/mi/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/mi/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/mi/mate-stickynotes-applet/index.docbook share/help/mi/mate-stickynotes-applet/legal.xml share/help/mi/mate-trashapplet/figures/trash-applet.png share/help/mi/mate-trashapplet/index.docbook share/help/mi/mate-trashapplet/legal.xml share/help/mi/mateweather/figures/mateweather-details.png share/help/mi/mateweather/figures/mateweather-menu-prefs.png share/help/mi/mateweather/figures/mateweather-prefs-general.png share/help/mi/mateweather/figures/mateweather-prefs-locations.png share/help/mi/mateweather/figures/mateweather_applet.png share/help/mi/mateweather/figures/stock_weather-cloudy.png share/help/mi/mateweather/figures/stock_weather-few-clouds.png share/help/mi/mateweather/figures/stock_weather-fog.png share/help/mi/mateweather/figures/stock_weather-night-clear.png share/help/mi/mateweather/figures/stock_weather-night-few-clouds.png share/help/mi/mateweather/figures/stock_weather-showers.png share/help/mi/mateweather/figures/stock_weather-snow.png share/help/mi/mateweather/figures/stock_weather-storm.png share/help/mi/mateweather/figures/stock_weather-sunny.png share/help/mi/mateweather/index.docbook share/help/mi/mateweather/legal.xml share/help/mk/mate-accessx-status/figures/accessx-status-applet.png share/help/mk/mate-accessx-status/figures/accessx-status-disabled.png share/help/mk/mate-accessx-status/figures/accessx_bounce-keys.png share/help/mk/mate-accessx-status/figures/accessx_mouse-keys.png share/help/mk/mate-accessx-status/figures/accessx_slow-keys.png share/help/mk/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/mk/mate-accessx-status/figures/accessx_sticky-keys.png share/help/mk/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/mk/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/mk/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/mk/mate-accessx-status/index.docbook share/help/mk/mate-accessx-status/legal.xml %%BATTERY%%share/help/mk/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/mk/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/mk/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/mk/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/mk/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/mk/mate-battstat/index.docbook %%BATTERY%%share/help/mk/mate-battstat/legal.xml share/help/mk/mate-char-palette/figures/charpalette_applet.png share/help/mk/mate-char-palette/figures/charpick-preferences.png share/help/mk/mate-char-palette/figures/charpick_characters.png share/help/mk/mate-char-palette/index.docbook share/help/mk/mate-char-palette/legal.xml share/help/mk/mate-drivemount/figures/drivemount-applet_eject.png share/help/mk/mate-drivemount/figures/drivemount-applet_example.png share/help/mk/mate-drivemount/figures/drivemount-applet_mount.png share/help/mk/mate-drivemount/figures/drivemount-applet_open.png share/help/mk/mate-drivemount/figures/drivemount-applet_status.png share/help/mk/mate-drivemount/index.docbook share/help/mk/mate-drivemount/legal.xml share/help/mk/mate-geyes/figures/geyes_applet.png share/help/mk/mate-geyes/index.docbook share/help/mk/mate-geyes/legal.xml share/help/mk/mate-multiload/figures/multiload-preferences.png share/help/mk/mate-multiload/figures/system-monitor-applet_window.png share/help/mk/mate-multiload/index.docbook share/help/mk/mate-multiload/legal.xml share/help/mk/mate-netspeed-applet/figures/details.png share/help/mk/mate-netspeed-applet/figures/eth_sum_48.png share/help/mk/mate-netspeed-applet/figures/ethernet.png share/help/mk/mate-netspeed-applet/figures/loopback.png share/help/mk/mate-netspeed-applet/figures/netspeed_applet.png share/help/mk/mate-netspeed-applet/figures/plip.png share/help/mk/mate-netspeed-applet/figures/ppp.png share/help/mk/mate-netspeed-applet/figures/settings.png share/help/mk/mate-netspeed-applet/figures/wavelan.png share/help/mk/mate-netspeed-applet/index.docbook share/help/mk/mate-netspeed-applet/legal.xml share/help/mk/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/mk/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/mk/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/mk/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/mk/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/mk/mate-stickynotes-applet/index.docbook share/help/mk/mate-stickynotes-applet/legal.xml share/help/mk/mate-trashapplet/figures/trash-applet.png share/help/mk/mate-trashapplet/index.docbook share/help/mk/mate-trashapplet/legal.xml share/help/mk/mateweather/figures/mateweather-details.png share/help/mk/mateweather/figures/mateweather-menu-prefs.png share/help/mk/mateweather/figures/mateweather-prefs-general.png share/help/mk/mateweather/figures/mateweather-prefs-locations.png share/help/mk/mateweather/figures/mateweather_applet.png share/help/mk/mateweather/figures/stock_weather-cloudy.png share/help/mk/mateweather/figures/stock_weather-few-clouds.png share/help/mk/mateweather/figures/stock_weather-fog.png share/help/mk/mateweather/figures/stock_weather-night-clear.png share/help/mk/mateweather/figures/stock_weather-night-few-clouds.png share/help/mk/mateweather/figures/stock_weather-showers.png share/help/mk/mateweather/figures/stock_weather-snow.png share/help/mk/mateweather/figures/stock_weather-storm.png share/help/mk/mateweather/figures/stock_weather-sunny.png share/help/mk/mateweather/index.docbook share/help/mk/mateweather/legal.xml share/help/ml/mate-accessx-status/figures/accessx-status-applet.png share/help/ml/mate-accessx-status/figures/accessx-status-disabled.png share/help/ml/mate-accessx-status/figures/accessx_bounce-keys.png share/help/ml/mate-accessx-status/figures/accessx_mouse-keys.png share/help/ml/mate-accessx-status/figures/accessx_slow-keys.png share/help/ml/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/ml/mate-accessx-status/figures/accessx_sticky-keys.png share/help/ml/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/ml/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/ml/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/ml/mate-accessx-status/index.docbook share/help/ml/mate-accessx-status/legal.xml %%BATTERY%%share/help/ml/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/ml/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/ml/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/ml/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/ml/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/ml/mate-battstat/index.docbook %%BATTERY%%share/help/ml/mate-battstat/legal.xml share/help/ml/mate-char-palette/figures/charpalette_applet.png share/help/ml/mate-char-palette/figures/charpick-preferences.png share/help/ml/mate-char-palette/figures/charpick_characters.png share/help/ml/mate-char-palette/index.docbook share/help/ml/mate-char-palette/legal.xml share/help/ml/mate-drivemount/figures/drivemount-applet_eject.png share/help/ml/mate-drivemount/figures/drivemount-applet_example.png share/help/ml/mate-drivemount/figures/drivemount-applet_mount.png share/help/ml/mate-drivemount/figures/drivemount-applet_open.png share/help/ml/mate-drivemount/figures/drivemount-applet_status.png share/help/ml/mate-drivemount/index.docbook share/help/ml/mate-drivemount/legal.xml share/help/ml/mate-geyes/figures/geyes_applet.png share/help/ml/mate-geyes/index.docbook share/help/ml/mate-geyes/legal.xml share/help/ml/mate-multiload/figures/multiload-preferences.png share/help/ml/mate-multiload/figures/system-monitor-applet_window.png share/help/ml/mate-multiload/index.docbook share/help/ml/mate-multiload/legal.xml share/help/ml/mate-netspeed-applet/figures/details.png share/help/ml/mate-netspeed-applet/figures/eth_sum_48.png share/help/ml/mate-netspeed-applet/figures/ethernet.png share/help/ml/mate-netspeed-applet/figures/loopback.png share/help/ml/mate-netspeed-applet/figures/netspeed_applet.png share/help/ml/mate-netspeed-applet/figures/plip.png share/help/ml/mate-netspeed-applet/figures/ppp.png share/help/ml/mate-netspeed-applet/figures/settings.png share/help/ml/mate-netspeed-applet/figures/wavelan.png share/help/ml/mate-netspeed-applet/index.docbook share/help/ml/mate-netspeed-applet/legal.xml share/help/ml/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/ml/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/ml/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/ml/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/ml/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/ml/mate-stickynotes-applet/index.docbook share/help/ml/mate-stickynotes-applet/legal.xml share/help/ml/mate-trashapplet/figures/trash-applet.png share/help/ml/mate-trashapplet/index.docbook share/help/ml/mate-trashapplet/legal.xml share/help/ml/mateweather/figures/mateweather-details.png share/help/ml/mateweather/figures/mateweather-menu-prefs.png share/help/ml/mateweather/figures/mateweather-prefs-general.png share/help/ml/mateweather/figures/mateweather-prefs-locations.png share/help/ml/mateweather/figures/mateweather_applet.png share/help/ml/mateweather/figures/stock_weather-cloudy.png share/help/ml/mateweather/figures/stock_weather-few-clouds.png share/help/ml/mateweather/figures/stock_weather-fog.png share/help/ml/mateweather/figures/stock_weather-night-clear.png share/help/ml/mateweather/figures/stock_weather-night-few-clouds.png share/help/ml/mateweather/figures/stock_weather-showers.png share/help/ml/mateweather/figures/stock_weather-snow.png share/help/ml/mateweather/figures/stock_weather-storm.png share/help/ml/mateweather/figures/stock_weather-sunny.png share/help/ml/mateweather/index.docbook share/help/ml/mateweather/legal.xml share/help/mn/mate-accessx-status/figures/accessx-status-applet.png share/help/mn/mate-accessx-status/figures/accessx-status-disabled.png share/help/mn/mate-accessx-status/figures/accessx_bounce-keys.png share/help/mn/mate-accessx-status/figures/accessx_mouse-keys.png share/help/mn/mate-accessx-status/figures/accessx_slow-keys.png share/help/mn/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/mn/mate-accessx-status/figures/accessx_sticky-keys.png share/help/mn/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/mn/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/mn/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/mn/mate-accessx-status/index.docbook share/help/mn/mate-accessx-status/legal.xml %%BATTERY%%share/help/mn/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/mn/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/mn/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/mn/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/mn/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/mn/mate-battstat/index.docbook %%BATTERY%%share/help/mn/mate-battstat/legal.xml share/help/mn/mate-char-palette/figures/charpalette_applet.png share/help/mn/mate-char-palette/figures/charpick-preferences.png share/help/mn/mate-char-palette/figures/charpick_characters.png share/help/mn/mate-char-palette/index.docbook share/help/mn/mate-char-palette/legal.xml share/help/mn/mate-drivemount/figures/drivemount-applet_eject.png share/help/mn/mate-drivemount/figures/drivemount-applet_example.png share/help/mn/mate-drivemount/figures/drivemount-applet_mount.png share/help/mn/mate-drivemount/figures/drivemount-applet_open.png share/help/mn/mate-drivemount/figures/drivemount-applet_status.png share/help/mn/mate-drivemount/index.docbook share/help/mn/mate-drivemount/legal.xml share/help/mn/mate-geyes/figures/geyes_applet.png share/help/mn/mate-geyes/index.docbook share/help/mn/mate-geyes/legal.xml share/help/mn/mate-multiload/figures/multiload-preferences.png share/help/mn/mate-multiload/figures/system-monitor-applet_window.png share/help/mn/mate-multiload/index.docbook share/help/mn/mate-multiload/legal.xml share/help/mn/mate-netspeed-applet/figures/details.png share/help/mn/mate-netspeed-applet/figures/eth_sum_48.png share/help/mn/mate-netspeed-applet/figures/ethernet.png share/help/mn/mate-netspeed-applet/figures/loopback.png share/help/mn/mate-netspeed-applet/figures/netspeed_applet.png share/help/mn/mate-netspeed-applet/figures/plip.png share/help/mn/mate-netspeed-applet/figures/ppp.png share/help/mn/mate-netspeed-applet/figures/settings.png share/help/mn/mate-netspeed-applet/figures/wavelan.png share/help/mn/mate-netspeed-applet/index.docbook share/help/mn/mate-netspeed-applet/legal.xml share/help/mn/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/mn/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/mn/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/mn/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/mn/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/mn/mate-stickynotes-applet/index.docbook share/help/mn/mate-stickynotes-applet/legal.xml share/help/mn/mate-trashapplet/figures/trash-applet.png share/help/mn/mate-trashapplet/index.docbook share/help/mn/mate-trashapplet/legal.xml share/help/mn/mateweather/figures/mateweather-details.png share/help/mn/mateweather/figures/mateweather-menu-prefs.png share/help/mn/mateweather/figures/mateweather-prefs-general.png share/help/mn/mateweather/figures/mateweather-prefs-locations.png share/help/mn/mateweather/figures/mateweather_applet.png share/help/mn/mateweather/figures/stock_weather-cloudy.png share/help/mn/mateweather/figures/stock_weather-few-clouds.png share/help/mn/mateweather/figures/stock_weather-fog.png share/help/mn/mateweather/figures/stock_weather-night-clear.png share/help/mn/mateweather/figures/stock_weather-night-few-clouds.png share/help/mn/mateweather/figures/stock_weather-showers.png share/help/mn/mateweather/figures/stock_weather-snow.png share/help/mn/mateweather/figures/stock_weather-storm.png share/help/mn/mateweather/figures/stock_weather-sunny.png share/help/mn/mateweather/index.docbook share/help/mn/mateweather/legal.xml share/help/mr/mate-accessx-status/figures/accessx-status-applet.png share/help/mr/mate-accessx-status/figures/accessx-status-disabled.png share/help/mr/mate-accessx-status/figures/accessx_bounce-keys.png share/help/mr/mate-accessx-status/figures/accessx_mouse-keys.png share/help/mr/mate-accessx-status/figures/accessx_slow-keys.png share/help/mr/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/mr/mate-accessx-status/figures/accessx_sticky-keys.png share/help/mr/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/mr/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/mr/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/mr/mate-accessx-status/index.docbook share/help/mr/mate-accessx-status/legal.xml %%BATTERY%%share/help/mr/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/mr/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/mr/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/mr/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/mr/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/mr/mate-battstat/index.docbook %%BATTERY%%share/help/mr/mate-battstat/legal.xml share/help/mr/mate-char-palette/figures/charpalette_applet.png share/help/mr/mate-char-palette/figures/charpick-preferences.png share/help/mr/mate-char-palette/figures/charpick_characters.png share/help/mr/mate-char-palette/index.docbook share/help/mr/mate-char-palette/legal.xml share/help/mr/mate-drivemount/figures/drivemount-applet_eject.png share/help/mr/mate-drivemount/figures/drivemount-applet_example.png share/help/mr/mate-drivemount/figures/drivemount-applet_mount.png share/help/mr/mate-drivemount/figures/drivemount-applet_open.png share/help/mr/mate-drivemount/figures/drivemount-applet_status.png share/help/mr/mate-drivemount/index.docbook share/help/mr/mate-drivemount/legal.xml share/help/mr/mate-geyes/figures/geyes_applet.png share/help/mr/mate-geyes/index.docbook share/help/mr/mate-geyes/legal.xml share/help/mr/mate-multiload/figures/multiload-preferences.png share/help/mr/mate-multiload/figures/system-monitor-applet_window.png share/help/mr/mate-multiload/index.docbook share/help/mr/mate-multiload/legal.xml share/help/mr/mate-netspeed-applet/figures/details.png share/help/mr/mate-netspeed-applet/figures/eth_sum_48.png share/help/mr/mate-netspeed-applet/figures/ethernet.png share/help/mr/mate-netspeed-applet/figures/loopback.png share/help/mr/mate-netspeed-applet/figures/netspeed_applet.png share/help/mr/mate-netspeed-applet/figures/plip.png share/help/mr/mate-netspeed-applet/figures/ppp.png share/help/mr/mate-netspeed-applet/figures/settings.png share/help/mr/mate-netspeed-applet/figures/wavelan.png share/help/mr/mate-netspeed-applet/index.docbook share/help/mr/mate-netspeed-applet/legal.xml share/help/mr/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/mr/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/mr/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/mr/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/mr/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/mr/mate-stickynotes-applet/index.docbook share/help/mr/mate-stickynotes-applet/legal.xml share/help/mr/mate-trashapplet/figures/trash-applet.png share/help/mr/mate-trashapplet/index.docbook share/help/mr/mate-trashapplet/legal.xml share/help/mr/mateweather/figures/mateweather-details.png share/help/mr/mateweather/figures/mateweather-menu-prefs.png share/help/mr/mateweather/figures/mateweather-prefs-general.png share/help/mr/mateweather/figures/mateweather-prefs-locations.png share/help/mr/mateweather/figures/mateweather_applet.png share/help/mr/mateweather/figures/stock_weather-cloudy.png share/help/mr/mateweather/figures/stock_weather-few-clouds.png share/help/mr/mateweather/figures/stock_weather-fog.png share/help/mr/mateweather/figures/stock_weather-night-clear.png share/help/mr/mateweather/figures/stock_weather-night-few-clouds.png share/help/mr/mateweather/figures/stock_weather-showers.png share/help/mr/mateweather/figures/stock_weather-snow.png share/help/mr/mateweather/figures/stock_weather-storm.png share/help/mr/mateweather/figures/stock_weather-sunny.png share/help/mr/mateweather/index.docbook share/help/mr/mateweather/legal.xml share/help/ms/mate-accessx-status/figures/accessx-status-applet.png share/help/ms/mate-accessx-status/figures/accessx-status-disabled.png share/help/ms/mate-accessx-status/figures/accessx_bounce-keys.png share/help/ms/mate-accessx-status/figures/accessx_mouse-keys.png share/help/ms/mate-accessx-status/figures/accessx_slow-keys.png share/help/ms/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/ms/mate-accessx-status/figures/accessx_sticky-keys.png share/help/ms/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/ms/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/ms/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/ms/mate-accessx-status/index.docbook share/help/ms/mate-accessx-status/legal.xml %%BATTERY%%share/help/ms/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/ms/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/ms/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/ms/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/ms/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/ms/mate-battstat/index.docbook %%BATTERY%%share/help/ms/mate-battstat/legal.xml share/help/ms/mate-char-palette/figures/charpalette_applet.png share/help/ms/mate-char-palette/figures/charpick-preferences.png share/help/ms/mate-char-palette/figures/charpick_characters.png share/help/ms/mate-char-palette/index.docbook share/help/ms/mate-char-palette/legal.xml share/help/ms/mate-drivemount/figures/drivemount-applet_eject.png share/help/ms/mate-drivemount/figures/drivemount-applet_example.png share/help/ms/mate-drivemount/figures/drivemount-applet_mount.png share/help/ms/mate-drivemount/figures/drivemount-applet_open.png share/help/ms/mate-drivemount/figures/drivemount-applet_status.png share/help/ms/mate-drivemount/index.docbook share/help/ms/mate-drivemount/legal.xml share/help/ms/mate-geyes/figures/geyes_applet.png share/help/ms/mate-geyes/index.docbook share/help/ms/mate-geyes/legal.xml share/help/ms/mate-multiload/figures/multiload-preferences.png share/help/ms/mate-multiload/figures/system-monitor-applet_window.png share/help/ms/mate-multiload/index.docbook share/help/ms/mate-multiload/legal.xml share/help/ms/mate-netspeed-applet/figures/details.png share/help/ms/mate-netspeed-applet/figures/eth_sum_48.png share/help/ms/mate-netspeed-applet/figures/ethernet.png share/help/ms/mate-netspeed-applet/figures/loopback.png share/help/ms/mate-netspeed-applet/figures/netspeed_applet.png share/help/ms/mate-netspeed-applet/figures/plip.png share/help/ms/mate-netspeed-applet/figures/ppp.png share/help/ms/mate-netspeed-applet/figures/settings.png share/help/ms/mate-netspeed-applet/figures/wavelan.png share/help/ms/mate-netspeed-applet/index.docbook share/help/ms/mate-netspeed-applet/legal.xml share/help/ms/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/ms/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/ms/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/ms/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/ms/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/ms/mate-stickynotes-applet/index.docbook share/help/ms/mate-stickynotes-applet/legal.xml share/help/ms/mate-trashapplet/figures/trash-applet.png share/help/ms/mate-trashapplet/index.docbook share/help/ms/mate-trashapplet/legal.xml share/help/ms/mateweather/figures/mateweather-details.png share/help/ms/mateweather/figures/mateweather-menu-prefs.png share/help/ms/mateweather/figures/mateweather-prefs-general.png share/help/ms/mateweather/figures/mateweather-prefs-locations.png share/help/ms/mateweather/figures/mateweather_applet.png share/help/ms/mateweather/figures/stock_weather-cloudy.png share/help/ms/mateweather/figures/stock_weather-few-clouds.png share/help/ms/mateweather/figures/stock_weather-fog.png share/help/ms/mateweather/figures/stock_weather-night-clear.png share/help/ms/mateweather/figures/stock_weather-night-few-clouds.png share/help/ms/mateweather/figures/stock_weather-showers.png share/help/ms/mateweather/figures/stock_weather-snow.png share/help/ms/mateweather/figures/stock_weather-storm.png share/help/ms/mateweather/figures/stock_weather-sunny.png share/help/ms/mateweather/index.docbook share/help/ms/mateweather/legal.xml share/help/my/mate-geyes/figures/geyes_applet.png share/help/my/mate-geyes/index.docbook share/help/my/mate-geyes/legal.xml +share/help/nan/mate-accessx-status/figures/accessx-status-applet.png +share/help/nan/mate-accessx-status/figures/accessx-status-disabled.png +share/help/nan/mate-accessx-status/figures/accessx_bounce-keys.png +share/help/nan/mate-accessx-status/figures/accessx_mouse-keys.png +share/help/nan/mate-accessx-status/figures/accessx_slow-keys.png +share/help/nan/mate-accessx-status/figures/accessx_sticky-altGr-key.png +share/help/nan/mate-accessx-status/figures/accessx_sticky-keys.png +share/help/nan/mate-accessx-status/figures/accessx_sticky-meta-key.png +share/help/nan/mate-accessx-status/figures/accessx_sticky-shift-key.png +share/help/nan/mate-accessx-status/figures/accessx_sticky-windows-key.png +share/help/nan/mate-accessx-status/index.docbook +share/help/nan/mate-accessx-status/legal.xml +share/help/nan/mate-char-palette/figures/charpalette_applet.png +share/help/nan/mate-char-palette/figures/charpick-preferences.png +share/help/nan/mate-char-palette/figures/charpick_characters.png +share/help/nan/mate-char-palette/index.docbook +share/help/nan/mate-char-palette/legal.xml +share/help/nan/mate-drivemount/figures/drivemount-applet_eject.png +share/help/nan/mate-drivemount/figures/drivemount-applet_example.png +share/help/nan/mate-drivemount/figures/drivemount-applet_mount.png +share/help/nan/mate-drivemount/figures/drivemount-applet_open.png +share/help/nan/mate-drivemount/figures/drivemount-applet_status.png +share/help/nan/mate-drivemount/index.docbook +share/help/nan/mate-drivemount/legal.xml +share/help/nan/mate-geyes/figures/geyes_applet.png +share/help/nan/mate-geyes/index.docbook +share/help/nan/mate-geyes/legal.xml +share/help/nan/mate-netspeed-applet/figures/details.png +share/help/nan/mate-netspeed-applet/figures/eth_sum_48.png +share/help/nan/mate-netspeed-applet/figures/ethernet.png +share/help/nan/mate-netspeed-applet/figures/loopback.png +share/help/nan/mate-netspeed-applet/figures/netspeed_applet.png +share/help/nan/mate-netspeed-applet/figures/plip.png +share/help/nan/mate-netspeed-applet/figures/ppp.png +share/help/nan/mate-netspeed-applet/figures/settings.png +share/help/nan/mate-netspeed-applet/figures/wavelan.png +share/help/nan/mate-netspeed-applet/index.docbook +share/help/nan/mate-netspeed-applet/legal.xml +share/help/nan/mate-trashapplet/figures/trash-applet.png +share/help/nan/mate-trashapplet/index.docbook +share/help/nan/mate-trashapplet/legal.xml +share/help/nan/mateweather/figures/mateweather-details.png +share/help/nan/mateweather/figures/mateweather-menu-prefs.png +share/help/nan/mateweather/figures/mateweather-prefs-general.png +share/help/nan/mateweather/figures/mateweather-prefs-locations.png +share/help/nan/mateweather/figures/mateweather_applet.png +share/help/nan/mateweather/figures/stock_weather-cloudy.png +share/help/nan/mateweather/figures/stock_weather-few-clouds.png +share/help/nan/mateweather/figures/stock_weather-fog.png +share/help/nan/mateweather/figures/stock_weather-night-clear.png +share/help/nan/mateweather/figures/stock_weather-night-few-clouds.png +share/help/nan/mateweather/figures/stock_weather-showers.png +share/help/nan/mateweather/figures/stock_weather-snow.png +share/help/nan/mateweather/figures/stock_weather-storm.png +share/help/nan/mateweather/figures/stock_weather-sunny.png +share/help/nan/mateweather/index.docbook +share/help/nan/mateweather/legal.xml share/help/nb/mate-accessx-status/figures/accessx-status-applet.png share/help/nb/mate-accessx-status/figures/accessx-status-disabled.png share/help/nb/mate-accessx-status/figures/accessx_bounce-keys.png share/help/nb/mate-accessx-status/figures/accessx_mouse-keys.png share/help/nb/mate-accessx-status/figures/accessx_slow-keys.png share/help/nb/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/nb/mate-accessx-status/figures/accessx_sticky-keys.png share/help/nb/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/nb/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/nb/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/nb/mate-accessx-status/index.docbook share/help/nb/mate-accessx-status/legal.xml %%BATTERY%%share/help/nb/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/nb/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/nb/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/nb/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/nb/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/nb/mate-battstat/index.docbook %%BATTERY%%share/help/nb/mate-battstat/legal.xml share/help/nb/mate-char-palette/figures/charpalette_applet.png share/help/nb/mate-char-palette/figures/charpick-preferences.png share/help/nb/mate-char-palette/figures/charpick_characters.png share/help/nb/mate-char-palette/index.docbook share/help/nb/mate-char-palette/legal.xml share/help/nb/mate-drivemount/figures/drivemount-applet_eject.png share/help/nb/mate-drivemount/figures/drivemount-applet_example.png share/help/nb/mate-drivemount/figures/drivemount-applet_mount.png share/help/nb/mate-drivemount/figures/drivemount-applet_open.png share/help/nb/mate-drivemount/figures/drivemount-applet_status.png share/help/nb/mate-drivemount/index.docbook share/help/nb/mate-drivemount/legal.xml share/help/nb/mate-geyes/figures/geyes_applet.png share/help/nb/mate-geyes/index.docbook share/help/nb/mate-geyes/legal.xml share/help/nb/mate-multiload/figures/multiload-preferences.png share/help/nb/mate-multiload/figures/system-monitor-applet_window.png share/help/nb/mate-multiload/index.docbook share/help/nb/mate-multiload/legal.xml share/help/nb/mate-netspeed-applet/figures/details.png share/help/nb/mate-netspeed-applet/figures/eth_sum_48.png share/help/nb/mate-netspeed-applet/figures/ethernet.png share/help/nb/mate-netspeed-applet/figures/loopback.png share/help/nb/mate-netspeed-applet/figures/netspeed_applet.png share/help/nb/mate-netspeed-applet/figures/plip.png share/help/nb/mate-netspeed-applet/figures/ppp.png share/help/nb/mate-netspeed-applet/figures/settings.png share/help/nb/mate-netspeed-applet/figures/wavelan.png share/help/nb/mate-netspeed-applet/index.docbook share/help/nb/mate-netspeed-applet/legal.xml share/help/nb/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/nb/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/nb/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/nb/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/nb/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/nb/mate-stickynotes-applet/index.docbook share/help/nb/mate-stickynotes-applet/legal.xml share/help/nb/mate-trashapplet/figures/trash-applet.png share/help/nb/mate-trashapplet/index.docbook share/help/nb/mate-trashapplet/legal.xml share/help/nb/mateweather/figures/mateweather-details.png share/help/nb/mateweather/figures/mateweather-menu-prefs.png share/help/nb/mateweather/figures/mateweather-prefs-general.png share/help/nb/mateweather/figures/mateweather-prefs-locations.png share/help/nb/mateweather/figures/mateweather_applet.png share/help/nb/mateweather/figures/stock_weather-cloudy.png share/help/nb/mateweather/figures/stock_weather-few-clouds.png share/help/nb/mateweather/figures/stock_weather-fog.png share/help/nb/mateweather/figures/stock_weather-night-clear.png share/help/nb/mateweather/figures/stock_weather-night-few-clouds.png share/help/nb/mateweather/figures/stock_weather-showers.png share/help/nb/mateweather/figures/stock_weather-snow.png share/help/nb/mateweather/figures/stock_weather-storm.png share/help/nb/mateweather/figures/stock_weather-sunny.png share/help/nb/mateweather/index.docbook share/help/nb/mateweather/legal.xml share/help/nds/mate-accessx-status/figures/accessx-status-applet.png share/help/nds/mate-accessx-status/figures/accessx-status-disabled.png share/help/nds/mate-accessx-status/figures/accessx_bounce-keys.png share/help/nds/mate-accessx-status/figures/accessx_mouse-keys.png share/help/nds/mate-accessx-status/figures/accessx_slow-keys.png share/help/nds/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/nds/mate-accessx-status/figures/accessx_sticky-keys.png share/help/nds/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/nds/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/nds/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/nds/mate-accessx-status/index.docbook share/help/nds/mate-accessx-status/legal.xml %%BATTERY%%share/help/nds/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/nds/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/nds/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/nds/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/nds/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/nds/mate-battstat/index.docbook %%BATTERY%%share/help/nds/mate-battstat/legal.xml share/help/nds/mate-char-palette/figures/charpalette_applet.png share/help/nds/mate-char-palette/figures/charpick-preferences.png share/help/nds/mate-char-palette/figures/charpick_characters.png share/help/nds/mate-char-palette/index.docbook share/help/nds/mate-char-palette/legal.xml share/help/nds/mate-drivemount/figures/drivemount-applet_eject.png share/help/nds/mate-drivemount/figures/drivemount-applet_example.png share/help/nds/mate-drivemount/figures/drivemount-applet_mount.png share/help/nds/mate-drivemount/figures/drivemount-applet_open.png share/help/nds/mate-drivemount/figures/drivemount-applet_status.png share/help/nds/mate-drivemount/index.docbook share/help/nds/mate-drivemount/legal.xml share/help/nds/mate-geyes/figures/geyes_applet.png share/help/nds/mate-geyes/index.docbook share/help/nds/mate-geyes/legal.xml share/help/nds/mate-multiload/figures/multiload-preferences.png share/help/nds/mate-multiload/figures/system-monitor-applet_window.png share/help/nds/mate-multiload/index.docbook share/help/nds/mate-multiload/legal.xml share/help/nds/mate-netspeed-applet/figures/details.png share/help/nds/mate-netspeed-applet/figures/eth_sum_48.png share/help/nds/mate-netspeed-applet/figures/ethernet.png share/help/nds/mate-netspeed-applet/figures/loopback.png share/help/nds/mate-netspeed-applet/figures/netspeed_applet.png share/help/nds/mate-netspeed-applet/figures/plip.png share/help/nds/mate-netspeed-applet/figures/ppp.png share/help/nds/mate-netspeed-applet/figures/settings.png share/help/nds/mate-netspeed-applet/figures/wavelan.png share/help/nds/mate-netspeed-applet/index.docbook share/help/nds/mate-netspeed-applet/legal.xml share/help/nds/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/nds/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/nds/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/nds/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/nds/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/nds/mate-stickynotes-applet/index.docbook share/help/nds/mate-stickynotes-applet/legal.xml share/help/nds/mate-trashapplet/figures/trash-applet.png share/help/nds/mate-trashapplet/index.docbook share/help/nds/mate-trashapplet/legal.xml share/help/nds/mateweather/figures/mateweather-details.png share/help/nds/mateweather/figures/mateweather-menu-prefs.png share/help/nds/mateweather/figures/mateweather-prefs-general.png share/help/nds/mateweather/figures/mateweather-prefs-locations.png share/help/nds/mateweather/figures/mateweather_applet.png share/help/nds/mateweather/figures/stock_weather-cloudy.png share/help/nds/mateweather/figures/stock_weather-few-clouds.png share/help/nds/mateweather/figures/stock_weather-fog.png share/help/nds/mateweather/figures/stock_weather-night-clear.png share/help/nds/mateweather/figures/stock_weather-night-few-clouds.png share/help/nds/mateweather/figures/stock_weather-showers.png share/help/nds/mateweather/figures/stock_weather-snow.png share/help/nds/mateweather/figures/stock_weather-storm.png share/help/nds/mateweather/figures/stock_weather-sunny.png share/help/nds/mateweather/index.docbook share/help/nds/mateweather/legal.xml share/help/ne/mate-accessx-status/figures/accessx-status-applet.png share/help/ne/mate-accessx-status/figures/accessx-status-disabled.png share/help/ne/mate-accessx-status/figures/accessx_bounce-keys.png share/help/ne/mate-accessx-status/figures/accessx_mouse-keys.png share/help/ne/mate-accessx-status/figures/accessx_slow-keys.png share/help/ne/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/ne/mate-accessx-status/figures/accessx_sticky-keys.png share/help/ne/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/ne/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/ne/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/ne/mate-accessx-status/index.docbook share/help/ne/mate-accessx-status/legal.xml %%BATTERY%%share/help/ne/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/ne/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/ne/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/ne/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/ne/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/ne/mate-battstat/index.docbook %%BATTERY%%share/help/ne/mate-battstat/legal.xml share/help/ne/mate-char-palette/figures/charpalette_applet.png share/help/ne/mate-char-palette/figures/charpick-preferences.png share/help/ne/mate-char-palette/figures/charpick_characters.png share/help/ne/mate-char-palette/index.docbook share/help/ne/mate-char-palette/legal.xml share/help/ne/mate-drivemount/figures/drivemount-applet_eject.png share/help/ne/mate-drivemount/figures/drivemount-applet_example.png share/help/ne/mate-drivemount/figures/drivemount-applet_mount.png share/help/ne/mate-drivemount/figures/drivemount-applet_open.png share/help/ne/mate-drivemount/figures/drivemount-applet_status.png share/help/ne/mate-drivemount/index.docbook share/help/ne/mate-drivemount/legal.xml share/help/ne/mate-geyes/figures/geyes_applet.png share/help/ne/mate-geyes/index.docbook share/help/ne/mate-geyes/legal.xml share/help/ne/mate-multiload/figures/multiload-preferences.png share/help/ne/mate-multiload/figures/system-monitor-applet_window.png share/help/ne/mate-multiload/index.docbook share/help/ne/mate-multiload/legal.xml share/help/ne/mate-netspeed-applet/figures/details.png share/help/ne/mate-netspeed-applet/figures/eth_sum_48.png share/help/ne/mate-netspeed-applet/figures/ethernet.png share/help/ne/mate-netspeed-applet/figures/loopback.png share/help/ne/mate-netspeed-applet/figures/netspeed_applet.png share/help/ne/mate-netspeed-applet/figures/plip.png share/help/ne/mate-netspeed-applet/figures/ppp.png share/help/ne/mate-netspeed-applet/figures/settings.png share/help/ne/mate-netspeed-applet/figures/wavelan.png share/help/ne/mate-netspeed-applet/index.docbook share/help/ne/mate-netspeed-applet/legal.xml share/help/ne/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/ne/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/ne/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/ne/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/ne/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/ne/mate-stickynotes-applet/index.docbook share/help/ne/mate-stickynotes-applet/legal.xml share/help/ne/mate-trashapplet/figures/trash-applet.png share/help/ne/mate-trashapplet/index.docbook share/help/ne/mate-trashapplet/legal.xml share/help/ne/mateweather/figures/mateweather-details.png share/help/ne/mateweather/figures/mateweather-menu-prefs.png share/help/ne/mateweather/figures/mateweather-prefs-general.png share/help/ne/mateweather/figures/mateweather-prefs-locations.png share/help/ne/mateweather/figures/mateweather_applet.png share/help/ne/mateweather/figures/stock_weather-cloudy.png share/help/ne/mateweather/figures/stock_weather-few-clouds.png share/help/ne/mateweather/figures/stock_weather-fog.png share/help/ne/mateweather/figures/stock_weather-night-clear.png share/help/ne/mateweather/figures/stock_weather-night-few-clouds.png share/help/ne/mateweather/figures/stock_weather-showers.png share/help/ne/mateweather/figures/stock_weather-snow.png share/help/ne/mateweather/figures/stock_weather-storm.png share/help/ne/mateweather/figures/stock_weather-sunny.png share/help/ne/mateweather/index.docbook share/help/ne/mateweather/legal.xml share/help/nl/mate-accessx-status/figures/accessx-status-applet.png share/help/nl/mate-accessx-status/figures/accessx-status-disabled.png share/help/nl/mate-accessx-status/figures/accessx_bounce-keys.png share/help/nl/mate-accessx-status/figures/accessx_mouse-keys.png share/help/nl/mate-accessx-status/figures/accessx_slow-keys.png share/help/nl/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/nl/mate-accessx-status/figures/accessx_sticky-keys.png share/help/nl/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/nl/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/nl/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/nl/mate-accessx-status/index.docbook share/help/nl/mate-accessx-status/legal.xml %%BATTERY%%share/help/nl/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/nl/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/nl/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/nl/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/nl/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/nl/mate-battstat/index.docbook %%BATTERY%%share/help/nl/mate-battstat/legal.xml share/help/nl/mate-char-palette/figures/charpalette_applet.png share/help/nl/mate-char-palette/figures/charpick-preferences.png share/help/nl/mate-char-palette/figures/charpick_characters.png share/help/nl/mate-char-palette/index.docbook share/help/nl/mate-char-palette/legal.xml share/help/nl/mate-drivemount/figures/drivemount-applet_eject.png share/help/nl/mate-drivemount/figures/drivemount-applet_example.png share/help/nl/mate-drivemount/figures/drivemount-applet_mount.png share/help/nl/mate-drivemount/figures/drivemount-applet_open.png share/help/nl/mate-drivemount/figures/drivemount-applet_status.png share/help/nl/mate-drivemount/index.docbook share/help/nl/mate-drivemount/legal.xml share/help/nl/mate-geyes/figures/geyes_applet.png share/help/nl/mate-geyes/index.docbook share/help/nl/mate-geyes/legal.xml share/help/nl/mate-multiload/figures/multiload-preferences.png share/help/nl/mate-multiload/figures/system-monitor-applet_window.png share/help/nl/mate-multiload/index.docbook share/help/nl/mate-multiload/legal.xml share/help/nl/mate-netspeed-applet/figures/details.png share/help/nl/mate-netspeed-applet/figures/eth_sum_48.png share/help/nl/mate-netspeed-applet/figures/ethernet.png share/help/nl/mate-netspeed-applet/figures/loopback.png share/help/nl/mate-netspeed-applet/figures/netspeed_applet.png share/help/nl/mate-netspeed-applet/figures/plip.png share/help/nl/mate-netspeed-applet/figures/ppp.png share/help/nl/mate-netspeed-applet/figures/settings.png share/help/nl/mate-netspeed-applet/figures/wavelan.png share/help/nl/mate-netspeed-applet/index.docbook share/help/nl/mate-netspeed-applet/legal.xml share/help/nl/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/nl/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/nl/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/nl/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/nl/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/nl/mate-stickynotes-applet/index.docbook share/help/nl/mate-stickynotes-applet/legal.xml share/help/nl/mate-trashapplet/figures/trash-applet.png share/help/nl/mate-trashapplet/index.docbook share/help/nl/mate-trashapplet/legal.xml share/help/nl/mateweather/figures/mateweather-details.png share/help/nl/mateweather/figures/mateweather-menu-prefs.png share/help/nl/mateweather/figures/mateweather-prefs-general.png share/help/nl/mateweather/figures/mateweather-prefs-locations.png share/help/nl/mateweather/figures/mateweather_applet.png share/help/nl/mateweather/figures/stock_weather-cloudy.png share/help/nl/mateweather/figures/stock_weather-few-clouds.png share/help/nl/mateweather/figures/stock_weather-fog.png share/help/nl/mateweather/figures/stock_weather-night-clear.png share/help/nl/mateweather/figures/stock_weather-night-few-clouds.png share/help/nl/mateweather/figures/stock_weather-showers.png share/help/nl/mateweather/figures/stock_weather-snow.png share/help/nl/mateweather/figures/stock_weather-storm.png share/help/nl/mateweather/figures/stock_weather-sunny.png share/help/nl/mateweather/index.docbook share/help/nl/mateweather/legal.xml share/help/nn/mate-accessx-status/figures/accessx-status-applet.png share/help/nn/mate-accessx-status/figures/accessx-status-disabled.png share/help/nn/mate-accessx-status/figures/accessx_bounce-keys.png share/help/nn/mate-accessx-status/figures/accessx_mouse-keys.png share/help/nn/mate-accessx-status/figures/accessx_slow-keys.png share/help/nn/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/nn/mate-accessx-status/figures/accessx_sticky-keys.png share/help/nn/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/nn/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/nn/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/nn/mate-accessx-status/index.docbook share/help/nn/mate-accessx-status/legal.xml %%BATTERY%%share/help/nn/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/nn/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/nn/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/nn/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/nn/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/nn/mate-battstat/index.docbook %%BATTERY%%share/help/nn/mate-battstat/legal.xml share/help/nn/mate-char-palette/figures/charpalette_applet.png share/help/nn/mate-char-palette/figures/charpick-preferences.png share/help/nn/mate-char-palette/figures/charpick_characters.png share/help/nn/mate-char-palette/index.docbook share/help/nn/mate-char-palette/legal.xml share/help/nn/mate-drivemount/figures/drivemount-applet_eject.png share/help/nn/mate-drivemount/figures/drivemount-applet_example.png share/help/nn/mate-drivemount/figures/drivemount-applet_mount.png share/help/nn/mate-drivemount/figures/drivemount-applet_open.png share/help/nn/mate-drivemount/figures/drivemount-applet_status.png share/help/nn/mate-drivemount/index.docbook share/help/nn/mate-drivemount/legal.xml share/help/nn/mate-geyes/figures/geyes_applet.png share/help/nn/mate-geyes/index.docbook share/help/nn/mate-geyes/legal.xml share/help/nn/mate-multiload/figures/multiload-preferences.png share/help/nn/mate-multiload/figures/system-monitor-applet_window.png share/help/nn/mate-multiload/index.docbook share/help/nn/mate-multiload/legal.xml share/help/nn/mate-netspeed-applet/figures/details.png share/help/nn/mate-netspeed-applet/figures/eth_sum_48.png share/help/nn/mate-netspeed-applet/figures/ethernet.png share/help/nn/mate-netspeed-applet/figures/loopback.png share/help/nn/mate-netspeed-applet/figures/netspeed_applet.png share/help/nn/mate-netspeed-applet/figures/plip.png share/help/nn/mate-netspeed-applet/figures/ppp.png share/help/nn/mate-netspeed-applet/figures/settings.png share/help/nn/mate-netspeed-applet/figures/wavelan.png share/help/nn/mate-netspeed-applet/index.docbook share/help/nn/mate-netspeed-applet/legal.xml share/help/nn/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/nn/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/nn/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/nn/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/nn/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/nn/mate-stickynotes-applet/index.docbook share/help/nn/mate-stickynotes-applet/legal.xml share/help/nn/mate-trashapplet/figures/trash-applet.png share/help/nn/mate-trashapplet/index.docbook share/help/nn/mate-trashapplet/legal.xml share/help/nn/mateweather/figures/mateweather-details.png share/help/nn/mateweather/figures/mateweather-menu-prefs.png share/help/nn/mateweather/figures/mateweather-prefs-general.png share/help/nn/mateweather/figures/mateweather-prefs-locations.png share/help/nn/mateweather/figures/mateweather_applet.png share/help/nn/mateweather/figures/stock_weather-cloudy.png share/help/nn/mateweather/figures/stock_weather-few-clouds.png share/help/nn/mateweather/figures/stock_weather-fog.png share/help/nn/mateweather/figures/stock_weather-night-clear.png share/help/nn/mateweather/figures/stock_weather-night-few-clouds.png share/help/nn/mateweather/figures/stock_weather-showers.png share/help/nn/mateweather/figures/stock_weather-snow.png share/help/nn/mateweather/figures/stock_weather-storm.png share/help/nn/mateweather/figures/stock_weather-sunny.png share/help/nn/mateweather/index.docbook share/help/nn/mateweather/legal.xml share/help/nso/mate-accessx-status/figures/accessx-status-applet.png share/help/nso/mate-accessx-status/figures/accessx-status-disabled.png share/help/nso/mate-accessx-status/figures/accessx_bounce-keys.png share/help/nso/mate-accessx-status/figures/accessx_mouse-keys.png share/help/nso/mate-accessx-status/figures/accessx_slow-keys.png share/help/nso/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/nso/mate-accessx-status/figures/accessx_sticky-keys.png share/help/nso/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/nso/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/nso/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/nso/mate-accessx-status/index.docbook share/help/nso/mate-accessx-status/legal.xml %%BATTERY%%share/help/nso/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/nso/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/nso/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/nso/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/nso/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/nso/mate-battstat/index.docbook %%BATTERY%%share/help/nso/mate-battstat/legal.xml share/help/nso/mate-char-palette/figures/charpalette_applet.png share/help/nso/mate-char-palette/figures/charpick-preferences.png share/help/nso/mate-char-palette/figures/charpick_characters.png share/help/nso/mate-char-palette/index.docbook share/help/nso/mate-char-palette/legal.xml share/help/nso/mate-drivemount/figures/drivemount-applet_eject.png share/help/nso/mate-drivemount/figures/drivemount-applet_example.png share/help/nso/mate-drivemount/figures/drivemount-applet_mount.png share/help/nso/mate-drivemount/figures/drivemount-applet_open.png share/help/nso/mate-drivemount/figures/drivemount-applet_status.png share/help/nso/mate-drivemount/index.docbook share/help/nso/mate-drivemount/legal.xml share/help/nso/mate-geyes/figures/geyes_applet.png share/help/nso/mate-geyes/index.docbook share/help/nso/mate-geyes/legal.xml share/help/nso/mate-multiload/figures/multiload-preferences.png share/help/nso/mate-multiload/figures/system-monitor-applet_window.png share/help/nso/mate-multiload/index.docbook share/help/nso/mate-multiload/legal.xml share/help/nso/mate-netspeed-applet/figures/details.png share/help/nso/mate-netspeed-applet/figures/eth_sum_48.png share/help/nso/mate-netspeed-applet/figures/ethernet.png share/help/nso/mate-netspeed-applet/figures/loopback.png share/help/nso/mate-netspeed-applet/figures/netspeed_applet.png share/help/nso/mate-netspeed-applet/figures/plip.png share/help/nso/mate-netspeed-applet/figures/ppp.png share/help/nso/mate-netspeed-applet/figures/settings.png share/help/nso/mate-netspeed-applet/figures/wavelan.png share/help/nso/mate-netspeed-applet/index.docbook share/help/nso/mate-netspeed-applet/legal.xml share/help/nso/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/nso/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/nso/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/nso/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/nso/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/nso/mate-stickynotes-applet/index.docbook share/help/nso/mate-stickynotes-applet/legal.xml share/help/nso/mate-trashapplet/figures/trash-applet.png share/help/nso/mate-trashapplet/index.docbook share/help/nso/mate-trashapplet/legal.xml share/help/nso/mateweather/figures/mateweather-details.png share/help/nso/mateweather/figures/mateweather-menu-prefs.png share/help/nso/mateweather/figures/mateweather-prefs-general.png share/help/nso/mateweather/figures/mateweather-prefs-locations.png share/help/nso/mateweather/figures/mateweather_applet.png share/help/nso/mateweather/figures/stock_weather-cloudy.png share/help/nso/mateweather/figures/stock_weather-few-clouds.png share/help/nso/mateweather/figures/stock_weather-fog.png share/help/nso/mateweather/figures/stock_weather-night-clear.png share/help/nso/mateweather/figures/stock_weather-night-few-clouds.png share/help/nso/mateweather/figures/stock_weather-showers.png share/help/nso/mateweather/figures/stock_weather-snow.png share/help/nso/mateweather/figures/stock_weather-storm.png share/help/nso/mateweather/figures/stock_weather-sunny.png share/help/nso/mateweather/index.docbook share/help/nso/mateweather/legal.xml share/help/oc/mate-accessx-status/figures/accessx-status-applet.png share/help/oc/mate-accessx-status/figures/accessx-status-disabled.png share/help/oc/mate-accessx-status/figures/accessx_bounce-keys.png share/help/oc/mate-accessx-status/figures/accessx_mouse-keys.png share/help/oc/mate-accessx-status/figures/accessx_slow-keys.png share/help/oc/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/oc/mate-accessx-status/figures/accessx_sticky-keys.png share/help/oc/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/oc/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/oc/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/oc/mate-accessx-status/index.docbook share/help/oc/mate-accessx-status/legal.xml %%BATTERY%%share/help/oc/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/oc/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/oc/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/oc/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/oc/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/oc/mate-battstat/index.docbook %%BATTERY%%share/help/oc/mate-battstat/legal.xml share/help/oc/mate-char-palette/figures/charpalette_applet.png share/help/oc/mate-char-palette/figures/charpick-preferences.png share/help/oc/mate-char-palette/figures/charpick_characters.png share/help/oc/mate-char-palette/index.docbook share/help/oc/mate-char-palette/legal.xml share/help/oc/mate-drivemount/figures/drivemount-applet_eject.png share/help/oc/mate-drivemount/figures/drivemount-applet_example.png share/help/oc/mate-drivemount/figures/drivemount-applet_mount.png share/help/oc/mate-drivemount/figures/drivemount-applet_open.png share/help/oc/mate-drivemount/figures/drivemount-applet_status.png share/help/oc/mate-drivemount/index.docbook share/help/oc/mate-drivemount/legal.xml share/help/oc/mate-geyes/figures/geyes_applet.png share/help/oc/mate-geyes/index.docbook share/help/oc/mate-geyes/legal.xml share/help/oc/mate-multiload/figures/multiload-preferences.png share/help/oc/mate-multiload/figures/system-monitor-applet_window.png share/help/oc/mate-multiload/index.docbook share/help/oc/mate-multiload/legal.xml share/help/oc/mate-netspeed-applet/figures/details.png share/help/oc/mate-netspeed-applet/figures/eth_sum_48.png share/help/oc/mate-netspeed-applet/figures/ethernet.png share/help/oc/mate-netspeed-applet/figures/loopback.png share/help/oc/mate-netspeed-applet/figures/netspeed_applet.png share/help/oc/mate-netspeed-applet/figures/plip.png share/help/oc/mate-netspeed-applet/figures/ppp.png share/help/oc/mate-netspeed-applet/figures/settings.png share/help/oc/mate-netspeed-applet/figures/wavelan.png share/help/oc/mate-netspeed-applet/index.docbook share/help/oc/mate-netspeed-applet/legal.xml share/help/oc/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/oc/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/oc/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/oc/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/oc/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/oc/mate-stickynotes-applet/index.docbook share/help/oc/mate-stickynotes-applet/legal.xml share/help/oc/mate-trashapplet/figures/trash-applet.png share/help/oc/mate-trashapplet/index.docbook share/help/oc/mate-trashapplet/legal.xml share/help/oc/mateweather/figures/mateweather-details.png share/help/oc/mateweather/figures/mateweather-menu-prefs.png share/help/oc/mateweather/figures/mateweather-prefs-general.png share/help/oc/mateweather/figures/mateweather-prefs-locations.png share/help/oc/mateweather/figures/mateweather_applet.png share/help/oc/mateweather/figures/stock_weather-cloudy.png share/help/oc/mateweather/figures/stock_weather-few-clouds.png share/help/oc/mateweather/figures/stock_weather-fog.png share/help/oc/mateweather/figures/stock_weather-night-clear.png share/help/oc/mateweather/figures/stock_weather-night-few-clouds.png share/help/oc/mateweather/figures/stock_weather-showers.png share/help/oc/mateweather/figures/stock_weather-snow.png share/help/oc/mateweather/figures/stock_weather-storm.png share/help/oc/mateweather/figures/stock_weather-sunny.png share/help/oc/mateweather/index.docbook share/help/oc/mateweather/legal.xml share/help/or/mate-accessx-status/figures/accessx-status-applet.png share/help/or/mate-accessx-status/figures/accessx-status-disabled.png share/help/or/mate-accessx-status/figures/accessx_bounce-keys.png share/help/or/mate-accessx-status/figures/accessx_mouse-keys.png share/help/or/mate-accessx-status/figures/accessx_slow-keys.png share/help/or/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/or/mate-accessx-status/figures/accessx_sticky-keys.png share/help/or/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/or/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/or/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/or/mate-accessx-status/index.docbook share/help/or/mate-accessx-status/legal.xml %%BATTERY%%share/help/or/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/or/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/or/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/or/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/or/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/or/mate-battstat/index.docbook %%BATTERY%%share/help/or/mate-battstat/legal.xml share/help/or/mate-char-palette/figures/charpalette_applet.png share/help/or/mate-char-palette/figures/charpick-preferences.png share/help/or/mate-char-palette/figures/charpick_characters.png share/help/or/mate-char-palette/index.docbook share/help/or/mate-char-palette/legal.xml share/help/or/mate-drivemount/figures/drivemount-applet_eject.png share/help/or/mate-drivemount/figures/drivemount-applet_example.png share/help/or/mate-drivemount/figures/drivemount-applet_mount.png share/help/or/mate-drivemount/figures/drivemount-applet_open.png share/help/or/mate-drivemount/figures/drivemount-applet_status.png share/help/or/mate-drivemount/index.docbook share/help/or/mate-drivemount/legal.xml share/help/or/mate-geyes/figures/geyes_applet.png share/help/or/mate-geyes/index.docbook share/help/or/mate-geyes/legal.xml share/help/or/mate-multiload/figures/multiload-preferences.png share/help/or/mate-multiload/figures/system-monitor-applet_window.png share/help/or/mate-multiload/index.docbook share/help/or/mate-multiload/legal.xml share/help/or/mate-netspeed-applet/figures/details.png share/help/or/mate-netspeed-applet/figures/eth_sum_48.png share/help/or/mate-netspeed-applet/figures/ethernet.png share/help/or/mate-netspeed-applet/figures/loopback.png share/help/or/mate-netspeed-applet/figures/netspeed_applet.png share/help/or/mate-netspeed-applet/figures/plip.png share/help/or/mate-netspeed-applet/figures/ppp.png share/help/or/mate-netspeed-applet/figures/settings.png share/help/or/mate-netspeed-applet/figures/wavelan.png share/help/or/mate-netspeed-applet/index.docbook share/help/or/mate-netspeed-applet/legal.xml share/help/or/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/or/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/or/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/or/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/or/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/or/mate-stickynotes-applet/index.docbook share/help/or/mate-stickynotes-applet/legal.xml share/help/or/mate-trashapplet/figures/trash-applet.png share/help/or/mate-trashapplet/index.docbook share/help/or/mate-trashapplet/legal.xml share/help/or/mateweather/figures/mateweather-details.png share/help/or/mateweather/figures/mateweather-menu-prefs.png share/help/or/mateweather/figures/mateweather-prefs-general.png share/help/or/mateweather/figures/mateweather-prefs-locations.png share/help/or/mateweather/figures/mateweather_applet.png share/help/or/mateweather/figures/stock_weather-cloudy.png share/help/or/mateweather/figures/stock_weather-few-clouds.png share/help/or/mateweather/figures/stock_weather-fog.png share/help/or/mateweather/figures/stock_weather-night-clear.png share/help/or/mateweather/figures/stock_weather-night-few-clouds.png share/help/or/mateweather/figures/stock_weather-showers.png share/help/or/mateweather/figures/stock_weather-snow.png share/help/or/mateweather/figures/stock_weather-storm.png share/help/or/mateweather/figures/stock_weather-sunny.png share/help/or/mateweather/index.docbook share/help/or/mateweather/legal.xml share/help/pa/mate-accessx-status/figures/accessx-status-applet.png share/help/pa/mate-accessx-status/figures/accessx-status-disabled.png share/help/pa/mate-accessx-status/figures/accessx_bounce-keys.png share/help/pa/mate-accessx-status/figures/accessx_mouse-keys.png share/help/pa/mate-accessx-status/figures/accessx_slow-keys.png share/help/pa/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/pa/mate-accessx-status/figures/accessx_sticky-keys.png share/help/pa/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/pa/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/pa/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/pa/mate-accessx-status/index.docbook share/help/pa/mate-accessx-status/legal.xml %%BATTERY%%share/help/pa/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/pa/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/pa/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/pa/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/pa/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/pa/mate-battstat/index.docbook %%BATTERY%%share/help/pa/mate-battstat/legal.xml share/help/pa/mate-char-palette/figures/charpalette_applet.png share/help/pa/mate-char-palette/figures/charpick-preferences.png share/help/pa/mate-char-palette/figures/charpick_characters.png share/help/pa/mate-char-palette/index.docbook share/help/pa/mate-char-palette/legal.xml share/help/pa/mate-drivemount/figures/drivemount-applet_eject.png share/help/pa/mate-drivemount/figures/drivemount-applet_example.png share/help/pa/mate-drivemount/figures/drivemount-applet_mount.png share/help/pa/mate-drivemount/figures/drivemount-applet_open.png share/help/pa/mate-drivemount/figures/drivemount-applet_status.png share/help/pa/mate-drivemount/index.docbook share/help/pa/mate-drivemount/legal.xml share/help/pa/mate-geyes/figures/geyes_applet.png share/help/pa/mate-geyes/index.docbook share/help/pa/mate-geyes/legal.xml share/help/pa/mate-multiload/figures/multiload-preferences.png share/help/pa/mate-multiload/figures/system-monitor-applet_window.png share/help/pa/mate-multiload/index.docbook share/help/pa/mate-multiload/legal.xml share/help/pa/mate-netspeed-applet/figures/details.png share/help/pa/mate-netspeed-applet/figures/eth_sum_48.png share/help/pa/mate-netspeed-applet/figures/ethernet.png share/help/pa/mate-netspeed-applet/figures/loopback.png share/help/pa/mate-netspeed-applet/figures/netspeed_applet.png share/help/pa/mate-netspeed-applet/figures/plip.png share/help/pa/mate-netspeed-applet/figures/ppp.png share/help/pa/mate-netspeed-applet/figures/settings.png share/help/pa/mate-netspeed-applet/figures/wavelan.png share/help/pa/mate-netspeed-applet/index.docbook share/help/pa/mate-netspeed-applet/legal.xml share/help/pa/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/pa/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/pa/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/pa/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/pa/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/pa/mate-stickynotes-applet/index.docbook share/help/pa/mate-stickynotes-applet/legal.xml share/help/pa/mate-trashapplet/figures/trash-applet.png share/help/pa/mate-trashapplet/index.docbook share/help/pa/mate-trashapplet/legal.xml share/help/pa/mateweather/figures/mateweather-details.png share/help/pa/mateweather/figures/mateweather-menu-prefs.png share/help/pa/mateweather/figures/mateweather-prefs-general.png share/help/pa/mateweather/figures/mateweather-prefs-locations.png share/help/pa/mateweather/figures/mateweather_applet.png share/help/pa/mateweather/figures/stock_weather-cloudy.png share/help/pa/mateweather/figures/stock_weather-few-clouds.png share/help/pa/mateweather/figures/stock_weather-fog.png share/help/pa/mateweather/figures/stock_weather-night-clear.png share/help/pa/mateweather/figures/stock_weather-night-few-clouds.png share/help/pa/mateweather/figures/stock_weather-showers.png share/help/pa/mateweather/figures/stock_weather-snow.png share/help/pa/mateweather/figures/stock_weather-storm.png share/help/pa/mateweather/figures/stock_weather-sunny.png share/help/pa/mateweather/index.docbook share/help/pa/mateweather/legal.xml share/help/pl/mate-accessx-status/figures/accessx-status-applet.png share/help/pl/mate-accessx-status/figures/accessx-status-disabled.png share/help/pl/mate-accessx-status/figures/accessx_bounce-keys.png share/help/pl/mate-accessx-status/figures/accessx_mouse-keys.png share/help/pl/mate-accessx-status/figures/accessx_slow-keys.png share/help/pl/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/pl/mate-accessx-status/figures/accessx_sticky-keys.png share/help/pl/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/pl/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/pl/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/pl/mate-accessx-status/index.docbook share/help/pl/mate-accessx-status/legal.xml %%BATTERY%%share/help/pl/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/pl/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/pl/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/pl/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/pl/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/pl/mate-battstat/index.docbook %%BATTERY%%share/help/pl/mate-battstat/legal.xml share/help/pl/mate-char-palette/figures/charpalette_applet.png share/help/pl/mate-char-palette/figures/charpick-preferences.png share/help/pl/mate-char-palette/figures/charpick_characters.png share/help/pl/mate-char-palette/index.docbook share/help/pl/mate-char-palette/legal.xml share/help/pl/mate-drivemount/figures/drivemount-applet_eject.png share/help/pl/mate-drivemount/figures/drivemount-applet_example.png share/help/pl/mate-drivemount/figures/drivemount-applet_mount.png share/help/pl/mate-drivemount/figures/drivemount-applet_open.png share/help/pl/mate-drivemount/figures/drivemount-applet_status.png share/help/pl/mate-drivemount/index.docbook share/help/pl/mate-drivemount/legal.xml share/help/pl/mate-geyes/figures/geyes_applet.png share/help/pl/mate-geyes/index.docbook share/help/pl/mate-geyes/legal.xml share/help/pl/mate-multiload/figures/multiload-preferences.png share/help/pl/mate-multiload/figures/system-monitor-applet_window.png share/help/pl/mate-multiload/index.docbook share/help/pl/mate-multiload/legal.xml share/help/pl/mate-netspeed-applet/figures/details.png share/help/pl/mate-netspeed-applet/figures/eth_sum_48.png share/help/pl/mate-netspeed-applet/figures/ethernet.png share/help/pl/mate-netspeed-applet/figures/loopback.png share/help/pl/mate-netspeed-applet/figures/netspeed_applet.png share/help/pl/mate-netspeed-applet/figures/plip.png share/help/pl/mate-netspeed-applet/figures/ppp.png share/help/pl/mate-netspeed-applet/figures/settings.png share/help/pl/mate-netspeed-applet/figures/wavelan.png share/help/pl/mate-netspeed-applet/index.docbook share/help/pl/mate-netspeed-applet/legal.xml share/help/pl/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/pl/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/pl/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/pl/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/pl/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/pl/mate-stickynotes-applet/index.docbook share/help/pl/mate-stickynotes-applet/legal.xml share/help/pl/mate-trashapplet/figures/trash-applet.png share/help/pl/mate-trashapplet/index.docbook share/help/pl/mate-trashapplet/legal.xml share/help/pl/mateweather/figures/mateweather-details.png share/help/pl/mateweather/figures/mateweather-menu-prefs.png share/help/pl/mateweather/figures/mateweather-prefs-general.png share/help/pl/mateweather/figures/mateweather-prefs-locations.png share/help/pl/mateweather/figures/mateweather_applet.png share/help/pl/mateweather/figures/stock_weather-cloudy.png share/help/pl/mateweather/figures/stock_weather-few-clouds.png share/help/pl/mateweather/figures/stock_weather-fog.png share/help/pl/mateweather/figures/stock_weather-night-clear.png share/help/pl/mateweather/figures/stock_weather-night-few-clouds.png share/help/pl/mateweather/figures/stock_weather-showers.png share/help/pl/mateweather/figures/stock_weather-snow.png share/help/pl/mateweather/figures/stock_weather-storm.png share/help/pl/mateweather/figures/stock_weather-sunny.png share/help/pl/mateweather/index.docbook share/help/pl/mateweather/legal.xml share/help/pms/mate-geyes/figures/geyes_applet.png share/help/pms/mate-geyes/index.docbook share/help/pms/mate-geyes/legal.xml share/help/ps/mate-accessx-status/figures/accessx-status-applet.png share/help/ps/mate-accessx-status/figures/accessx-status-disabled.png share/help/ps/mate-accessx-status/figures/accessx_bounce-keys.png share/help/ps/mate-accessx-status/figures/accessx_mouse-keys.png share/help/ps/mate-accessx-status/figures/accessx_slow-keys.png share/help/ps/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/ps/mate-accessx-status/figures/accessx_sticky-keys.png share/help/ps/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/ps/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/ps/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/ps/mate-accessx-status/index.docbook share/help/ps/mate-accessx-status/legal.xml %%BATTERY%%share/help/ps/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/ps/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/ps/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/ps/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/ps/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/ps/mate-battstat/index.docbook %%BATTERY%%share/help/ps/mate-battstat/legal.xml share/help/ps/mate-char-palette/figures/charpalette_applet.png share/help/ps/mate-char-palette/figures/charpick-preferences.png share/help/ps/mate-char-palette/figures/charpick_characters.png share/help/ps/mate-char-palette/index.docbook share/help/ps/mate-char-palette/legal.xml share/help/ps/mate-drivemount/figures/drivemount-applet_eject.png share/help/ps/mate-drivemount/figures/drivemount-applet_example.png share/help/ps/mate-drivemount/figures/drivemount-applet_mount.png share/help/ps/mate-drivemount/figures/drivemount-applet_open.png share/help/ps/mate-drivemount/figures/drivemount-applet_status.png share/help/ps/mate-drivemount/index.docbook share/help/ps/mate-drivemount/legal.xml share/help/ps/mate-geyes/figures/geyes_applet.png share/help/ps/mate-geyes/index.docbook share/help/ps/mate-geyes/legal.xml share/help/ps/mate-multiload/figures/multiload-preferences.png share/help/ps/mate-multiload/figures/system-monitor-applet_window.png share/help/ps/mate-multiload/index.docbook share/help/ps/mate-multiload/legal.xml share/help/ps/mate-netspeed-applet/figures/details.png share/help/ps/mate-netspeed-applet/figures/eth_sum_48.png share/help/ps/mate-netspeed-applet/figures/ethernet.png share/help/ps/mate-netspeed-applet/figures/loopback.png share/help/ps/mate-netspeed-applet/figures/netspeed_applet.png share/help/ps/mate-netspeed-applet/figures/plip.png share/help/ps/mate-netspeed-applet/figures/ppp.png share/help/ps/mate-netspeed-applet/figures/settings.png share/help/ps/mate-netspeed-applet/figures/wavelan.png share/help/ps/mate-netspeed-applet/index.docbook share/help/ps/mate-netspeed-applet/legal.xml share/help/ps/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/ps/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/ps/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/ps/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/ps/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/ps/mate-stickynotes-applet/index.docbook share/help/ps/mate-stickynotes-applet/legal.xml share/help/ps/mate-trashapplet/figures/trash-applet.png share/help/ps/mate-trashapplet/index.docbook share/help/ps/mate-trashapplet/legal.xml share/help/ps/mateweather/figures/mateweather-details.png share/help/ps/mateweather/figures/mateweather-menu-prefs.png share/help/ps/mateweather/figures/mateweather-prefs-general.png share/help/ps/mateweather/figures/mateweather-prefs-locations.png share/help/ps/mateweather/figures/mateweather_applet.png share/help/ps/mateweather/figures/stock_weather-cloudy.png share/help/ps/mateweather/figures/stock_weather-few-clouds.png share/help/ps/mateweather/figures/stock_weather-fog.png share/help/ps/mateweather/figures/stock_weather-night-clear.png share/help/ps/mateweather/figures/stock_weather-night-few-clouds.png share/help/ps/mateweather/figures/stock_weather-showers.png share/help/ps/mateweather/figures/stock_weather-snow.png share/help/ps/mateweather/figures/stock_weather-storm.png share/help/ps/mateweather/figures/stock_weather-sunny.png share/help/ps/mateweather/index.docbook share/help/ps/mateweather/legal.xml share/help/pt/mate-accessx-status/figures/accessx-status-applet.png share/help/pt/mate-accessx-status/figures/accessx-status-disabled.png share/help/pt/mate-accessx-status/figures/accessx_bounce-keys.png share/help/pt/mate-accessx-status/figures/accessx_mouse-keys.png share/help/pt/mate-accessx-status/figures/accessx_slow-keys.png share/help/pt/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/pt/mate-accessx-status/figures/accessx_sticky-keys.png share/help/pt/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/pt/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/pt/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/pt/mate-accessx-status/index.docbook share/help/pt/mate-accessx-status/legal.xml %%BATTERY%%share/help/pt/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/pt/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/pt/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/pt/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/pt/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/pt/mate-battstat/index.docbook %%BATTERY%%share/help/pt/mate-battstat/legal.xml share/help/pt/mate-char-palette/figures/charpalette_applet.png share/help/pt/mate-char-palette/figures/charpick-preferences.png share/help/pt/mate-char-palette/figures/charpick_characters.png share/help/pt/mate-char-palette/index.docbook share/help/pt/mate-char-palette/legal.xml share/help/pt/mate-drivemount/figures/drivemount-applet_eject.png share/help/pt/mate-drivemount/figures/drivemount-applet_example.png share/help/pt/mate-drivemount/figures/drivemount-applet_mount.png share/help/pt/mate-drivemount/figures/drivemount-applet_open.png share/help/pt/mate-drivemount/figures/drivemount-applet_status.png share/help/pt/mate-drivemount/index.docbook share/help/pt/mate-drivemount/legal.xml share/help/pt/mate-geyes/figures/geyes_applet.png share/help/pt/mate-geyes/index.docbook share/help/pt/mate-geyes/legal.xml share/help/pt/mate-multiload/figures/multiload-preferences.png share/help/pt/mate-multiload/figures/system-monitor-applet_window.png share/help/pt/mate-multiload/index.docbook share/help/pt/mate-multiload/legal.xml share/help/pt/mate-netspeed-applet/figures/details.png share/help/pt/mate-netspeed-applet/figures/eth_sum_48.png share/help/pt/mate-netspeed-applet/figures/ethernet.png share/help/pt/mate-netspeed-applet/figures/loopback.png share/help/pt/mate-netspeed-applet/figures/netspeed_applet.png share/help/pt/mate-netspeed-applet/figures/plip.png share/help/pt/mate-netspeed-applet/figures/ppp.png share/help/pt/mate-netspeed-applet/figures/settings.png share/help/pt/mate-netspeed-applet/figures/wavelan.png share/help/pt/mate-netspeed-applet/index.docbook share/help/pt/mate-netspeed-applet/legal.xml share/help/pt/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/pt/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/pt/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/pt/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/pt/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/pt/mate-stickynotes-applet/index.docbook share/help/pt/mate-stickynotes-applet/legal.xml share/help/pt/mate-trashapplet/figures/trash-applet.png share/help/pt/mate-trashapplet/index.docbook share/help/pt/mate-trashapplet/legal.xml share/help/pt/mateweather/figures/mateweather-details.png share/help/pt/mateweather/figures/mateweather-menu-prefs.png share/help/pt/mateweather/figures/mateweather-prefs-general.png share/help/pt/mateweather/figures/mateweather-prefs-locations.png share/help/pt/mateweather/figures/mateweather_applet.png share/help/pt/mateweather/figures/stock_weather-cloudy.png share/help/pt/mateweather/figures/stock_weather-few-clouds.png share/help/pt/mateweather/figures/stock_weather-fog.png share/help/pt/mateweather/figures/stock_weather-night-clear.png share/help/pt/mateweather/figures/stock_weather-night-few-clouds.png share/help/pt/mateweather/figures/stock_weather-showers.png share/help/pt/mateweather/figures/stock_weather-snow.png share/help/pt/mateweather/figures/stock_weather-storm.png share/help/pt/mateweather/figures/stock_weather-sunny.png share/help/pt/mateweather/index.docbook share/help/pt/mateweather/legal.xml share/help/pt_BR/mate-accessx-status/figures/accessx-status-applet.png share/help/pt_BR/mate-accessx-status/figures/accessx-status-disabled.png share/help/pt_BR/mate-accessx-status/figures/accessx_bounce-keys.png share/help/pt_BR/mate-accessx-status/figures/accessx_mouse-keys.png share/help/pt_BR/mate-accessx-status/figures/accessx_slow-keys.png share/help/pt_BR/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/pt_BR/mate-accessx-status/figures/accessx_sticky-keys.png share/help/pt_BR/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/pt_BR/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/pt_BR/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/pt_BR/mate-accessx-status/index.docbook share/help/pt_BR/mate-accessx-status/legal.xml %%BATTERY%%share/help/pt_BR/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/pt_BR/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/pt_BR/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/pt_BR/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/pt_BR/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/pt_BR/mate-battstat/index.docbook %%BATTERY%%share/help/pt_BR/mate-battstat/legal.xml share/help/pt_BR/mate-char-palette/figures/charpalette_applet.png share/help/pt_BR/mate-char-palette/figures/charpick-preferences.png share/help/pt_BR/mate-char-palette/figures/charpick_characters.png share/help/pt_BR/mate-char-palette/index.docbook share/help/pt_BR/mate-char-palette/legal.xml share/help/pt_BR/mate-drivemount/figures/drivemount-applet_eject.png share/help/pt_BR/mate-drivemount/figures/drivemount-applet_example.png share/help/pt_BR/mate-drivemount/figures/drivemount-applet_mount.png share/help/pt_BR/mate-drivemount/figures/drivemount-applet_open.png share/help/pt_BR/mate-drivemount/figures/drivemount-applet_status.png share/help/pt_BR/mate-drivemount/index.docbook share/help/pt_BR/mate-drivemount/legal.xml share/help/pt_BR/mate-geyes/figures/geyes_applet.png share/help/pt_BR/mate-geyes/index.docbook share/help/pt_BR/mate-geyes/legal.xml share/help/pt_BR/mate-multiload/figures/multiload-preferences.png share/help/pt_BR/mate-multiload/figures/system-monitor-applet_window.png share/help/pt_BR/mate-multiload/index.docbook share/help/pt_BR/mate-multiload/legal.xml share/help/pt_BR/mate-netspeed-applet/figures/details.png share/help/pt_BR/mate-netspeed-applet/figures/eth_sum_48.png share/help/pt_BR/mate-netspeed-applet/figures/ethernet.png share/help/pt_BR/mate-netspeed-applet/figures/loopback.png share/help/pt_BR/mate-netspeed-applet/figures/netspeed_applet.png share/help/pt_BR/mate-netspeed-applet/figures/plip.png share/help/pt_BR/mate-netspeed-applet/figures/ppp.png share/help/pt_BR/mate-netspeed-applet/figures/settings.png share/help/pt_BR/mate-netspeed-applet/figures/wavelan.png share/help/pt_BR/mate-netspeed-applet/index.docbook share/help/pt_BR/mate-netspeed-applet/legal.xml share/help/pt_BR/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/pt_BR/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/pt_BR/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/pt_BR/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/pt_BR/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/pt_BR/mate-stickynotes-applet/index.docbook share/help/pt_BR/mate-stickynotes-applet/legal.xml share/help/pt_BR/mate-trashapplet/figures/trash-applet.png share/help/pt_BR/mate-trashapplet/index.docbook share/help/pt_BR/mate-trashapplet/legal.xml share/help/pt_BR/mateweather/figures/mateweather-details.png share/help/pt_BR/mateweather/figures/mateweather-menu-prefs.png share/help/pt_BR/mateweather/figures/mateweather-prefs-general.png share/help/pt_BR/mateweather/figures/mateweather-prefs-locations.png share/help/pt_BR/mateweather/figures/mateweather_applet.png share/help/pt_BR/mateweather/figures/stock_weather-cloudy.png share/help/pt_BR/mateweather/figures/stock_weather-few-clouds.png share/help/pt_BR/mateweather/figures/stock_weather-fog.png share/help/pt_BR/mateweather/figures/stock_weather-night-clear.png share/help/pt_BR/mateweather/figures/stock_weather-night-few-clouds.png share/help/pt_BR/mateweather/figures/stock_weather-showers.png share/help/pt_BR/mateweather/figures/stock_weather-snow.png share/help/pt_BR/mateweather/figures/stock_weather-storm.png share/help/pt_BR/mateweather/figures/stock_weather-sunny.png share/help/pt_BR/mateweather/index.docbook share/help/pt_BR/mateweather/legal.xml share/help/ro/mate-accessx-status/figures/accessx-status-applet.png share/help/ro/mate-accessx-status/figures/accessx-status-disabled.png share/help/ro/mate-accessx-status/figures/accessx_bounce-keys.png share/help/ro/mate-accessx-status/figures/accessx_mouse-keys.png share/help/ro/mate-accessx-status/figures/accessx_slow-keys.png share/help/ro/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/ro/mate-accessx-status/figures/accessx_sticky-keys.png share/help/ro/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/ro/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/ro/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/ro/mate-accessx-status/index.docbook share/help/ro/mate-accessx-status/legal.xml %%BATTERY%%share/help/ro/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/ro/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/ro/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/ro/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/ro/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/ro/mate-battstat/index.docbook %%BATTERY%%share/help/ro/mate-battstat/legal.xml share/help/ro/mate-char-palette/figures/charpalette_applet.png share/help/ro/mate-char-palette/figures/charpick-preferences.png share/help/ro/mate-char-palette/figures/charpick_characters.png share/help/ro/mate-char-palette/index.docbook share/help/ro/mate-char-palette/legal.xml share/help/ro/mate-drivemount/figures/drivemount-applet_eject.png share/help/ro/mate-drivemount/figures/drivemount-applet_example.png share/help/ro/mate-drivemount/figures/drivemount-applet_mount.png share/help/ro/mate-drivemount/figures/drivemount-applet_open.png share/help/ro/mate-drivemount/figures/drivemount-applet_status.png share/help/ro/mate-drivemount/index.docbook share/help/ro/mate-drivemount/legal.xml share/help/ro/mate-geyes/figures/geyes_applet.png share/help/ro/mate-geyes/index.docbook share/help/ro/mate-geyes/legal.xml share/help/ro/mate-multiload/figures/multiload-preferences.png share/help/ro/mate-multiload/figures/system-monitor-applet_window.png share/help/ro/mate-multiload/index.docbook share/help/ro/mate-multiload/legal.xml share/help/ro/mate-netspeed-applet/figures/details.png share/help/ro/mate-netspeed-applet/figures/eth_sum_48.png share/help/ro/mate-netspeed-applet/figures/ethernet.png share/help/ro/mate-netspeed-applet/figures/loopback.png share/help/ro/mate-netspeed-applet/figures/netspeed_applet.png share/help/ro/mate-netspeed-applet/figures/plip.png share/help/ro/mate-netspeed-applet/figures/ppp.png share/help/ro/mate-netspeed-applet/figures/settings.png share/help/ro/mate-netspeed-applet/figures/wavelan.png share/help/ro/mate-netspeed-applet/index.docbook share/help/ro/mate-netspeed-applet/legal.xml share/help/ro/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/ro/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/ro/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/ro/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/ro/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/ro/mate-stickynotes-applet/index.docbook share/help/ro/mate-stickynotes-applet/legal.xml share/help/ro/mate-trashapplet/figures/trash-applet.png share/help/ro/mate-trashapplet/index.docbook share/help/ro/mate-trashapplet/legal.xml share/help/ro/mateweather/figures/mateweather-details.png share/help/ro/mateweather/figures/mateweather-menu-prefs.png share/help/ro/mateweather/figures/mateweather-prefs-general.png share/help/ro/mateweather/figures/mateweather-prefs-locations.png share/help/ro/mateweather/figures/mateweather_applet.png share/help/ro/mateweather/figures/stock_weather-cloudy.png share/help/ro/mateweather/figures/stock_weather-few-clouds.png share/help/ro/mateweather/figures/stock_weather-fog.png share/help/ro/mateweather/figures/stock_weather-night-clear.png share/help/ro/mateweather/figures/stock_weather-night-few-clouds.png share/help/ro/mateweather/figures/stock_weather-showers.png share/help/ro/mateweather/figures/stock_weather-snow.png share/help/ro/mateweather/figures/stock_weather-storm.png share/help/ro/mateweather/figures/stock_weather-sunny.png share/help/ro/mateweather/index.docbook share/help/ro/mateweather/legal.xml share/help/ru/mate-accessx-status/figures/accessx-status-applet.png share/help/ru/mate-accessx-status/figures/accessx-status-disabled.png share/help/ru/mate-accessx-status/figures/accessx_bounce-keys.png share/help/ru/mate-accessx-status/figures/accessx_mouse-keys.png share/help/ru/mate-accessx-status/figures/accessx_slow-keys.png share/help/ru/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/ru/mate-accessx-status/figures/accessx_sticky-keys.png share/help/ru/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/ru/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/ru/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/ru/mate-accessx-status/index.docbook share/help/ru/mate-accessx-status/legal.xml %%BATTERY%%share/help/ru/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/ru/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/ru/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/ru/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/ru/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/ru/mate-battstat/index.docbook %%BATTERY%%share/help/ru/mate-battstat/legal.xml share/help/ru/mate-char-palette/figures/charpalette_applet.png share/help/ru/mate-char-palette/figures/charpick-preferences.png share/help/ru/mate-char-palette/figures/charpick_characters.png share/help/ru/mate-char-palette/index.docbook share/help/ru/mate-char-palette/legal.xml share/help/ru/mate-drivemount/figures/drivemount-applet_eject.png share/help/ru/mate-drivemount/figures/drivemount-applet_example.png share/help/ru/mate-drivemount/figures/drivemount-applet_mount.png share/help/ru/mate-drivemount/figures/drivemount-applet_open.png share/help/ru/mate-drivemount/figures/drivemount-applet_status.png share/help/ru/mate-drivemount/index.docbook share/help/ru/mate-drivemount/legal.xml share/help/ru/mate-geyes/figures/geyes_applet.png share/help/ru/mate-geyes/index.docbook share/help/ru/mate-geyes/legal.xml share/help/ru/mate-multiload/figures/multiload-preferences.png share/help/ru/mate-multiload/figures/system-monitor-applet_window.png share/help/ru/mate-multiload/index.docbook share/help/ru/mate-multiload/legal.xml share/help/ru/mate-netspeed-applet/figures/details.png share/help/ru/mate-netspeed-applet/figures/eth_sum_48.png share/help/ru/mate-netspeed-applet/figures/ethernet.png share/help/ru/mate-netspeed-applet/figures/loopback.png share/help/ru/mate-netspeed-applet/figures/netspeed_applet.png share/help/ru/mate-netspeed-applet/figures/plip.png share/help/ru/mate-netspeed-applet/figures/ppp.png share/help/ru/mate-netspeed-applet/figures/settings.png share/help/ru/mate-netspeed-applet/figures/wavelan.png share/help/ru/mate-netspeed-applet/index.docbook share/help/ru/mate-netspeed-applet/legal.xml share/help/ru/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/ru/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/ru/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/ru/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/ru/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/ru/mate-stickynotes-applet/index.docbook share/help/ru/mate-stickynotes-applet/legal.xml share/help/ru/mate-trashapplet/figures/trash-applet.png share/help/ru/mate-trashapplet/index.docbook share/help/ru/mate-trashapplet/legal.xml share/help/ru/mateweather/figures/mateweather-details.png share/help/ru/mateweather/figures/mateweather-menu-prefs.png share/help/ru/mateweather/figures/mateweather-prefs-general.png share/help/ru/mateweather/figures/mateweather-prefs-locations.png share/help/ru/mateweather/figures/mateweather_applet.png share/help/ru/mateweather/figures/stock_weather-cloudy.png share/help/ru/mateweather/figures/stock_weather-few-clouds.png share/help/ru/mateweather/figures/stock_weather-fog.png share/help/ru/mateweather/figures/stock_weather-night-clear.png share/help/ru/mateweather/figures/stock_weather-night-few-clouds.png share/help/ru/mateweather/figures/stock_weather-showers.png share/help/ru/mateweather/figures/stock_weather-snow.png share/help/ru/mateweather/figures/stock_weather-storm.png share/help/ru/mateweather/figures/stock_weather-sunny.png share/help/ru/mateweather/index.docbook share/help/ru/mateweather/legal.xml share/help/rw/mate-geyes/figures/geyes_applet.png share/help/rw/mate-geyes/index.docbook share/help/rw/mate-geyes/legal.xml share/help/rw/mate-netspeed-applet/figures/details.png share/help/rw/mate-netspeed-applet/figures/eth_sum_48.png share/help/rw/mate-netspeed-applet/figures/ethernet.png share/help/rw/mate-netspeed-applet/figures/loopback.png share/help/rw/mate-netspeed-applet/figures/netspeed_applet.png share/help/rw/mate-netspeed-applet/figures/plip.png share/help/rw/mate-netspeed-applet/figures/ppp.png share/help/rw/mate-netspeed-applet/figures/settings.png share/help/rw/mate-netspeed-applet/figures/wavelan.png share/help/rw/mate-netspeed-applet/index.docbook share/help/rw/mate-netspeed-applet/legal.xml share/help/rw/mateweather/figures/mateweather-details.png share/help/rw/mateweather/figures/mateweather-menu-prefs.png share/help/rw/mateweather/figures/mateweather-prefs-general.png share/help/rw/mateweather/figures/mateweather-prefs-locations.png share/help/rw/mateweather/figures/mateweather_applet.png share/help/rw/mateweather/figures/stock_weather-cloudy.png share/help/rw/mateweather/figures/stock_weather-few-clouds.png share/help/rw/mateweather/figures/stock_weather-fog.png share/help/rw/mateweather/figures/stock_weather-night-clear.png share/help/rw/mateweather/figures/stock_weather-night-few-clouds.png share/help/rw/mateweather/figures/stock_weather-showers.png share/help/rw/mateweather/figures/stock_weather-snow.png share/help/rw/mateweather/figures/stock_weather-storm.png share/help/rw/mateweather/figures/stock_weather-sunny.png share/help/rw/mateweather/index.docbook share/help/rw/mateweather/legal.xml share/help/sc/mate-geyes/figures/geyes_applet.png share/help/sc/mate-geyes/index.docbook share/help/sc/mate-geyes/legal.xml share/help/sc/mate-trashapplet/figures/trash-applet.png share/help/sc/mate-trashapplet/index.docbook share/help/sc/mate-trashapplet/legal.xml share/help/si/mate-accessx-status/figures/accessx-status-applet.png share/help/si/mate-accessx-status/figures/accessx-status-disabled.png share/help/si/mate-accessx-status/figures/accessx_bounce-keys.png share/help/si/mate-accessx-status/figures/accessx_mouse-keys.png share/help/si/mate-accessx-status/figures/accessx_slow-keys.png share/help/si/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/si/mate-accessx-status/figures/accessx_sticky-keys.png share/help/si/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/si/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/si/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/si/mate-accessx-status/index.docbook share/help/si/mate-accessx-status/legal.xml %%BATTERY%%share/help/si/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/si/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/si/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/si/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/si/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/si/mate-battstat/index.docbook %%BATTERY%%share/help/si/mate-battstat/legal.xml share/help/si/mate-char-palette/figures/charpalette_applet.png share/help/si/mate-char-palette/figures/charpick-preferences.png share/help/si/mate-char-palette/figures/charpick_characters.png share/help/si/mate-char-palette/index.docbook share/help/si/mate-char-palette/legal.xml share/help/si/mate-drivemount/figures/drivemount-applet_eject.png share/help/si/mate-drivemount/figures/drivemount-applet_example.png share/help/si/mate-drivemount/figures/drivemount-applet_mount.png share/help/si/mate-drivemount/figures/drivemount-applet_open.png share/help/si/mate-drivemount/figures/drivemount-applet_status.png share/help/si/mate-drivemount/index.docbook share/help/si/mate-drivemount/legal.xml share/help/si/mate-geyes/figures/geyes_applet.png share/help/si/mate-geyes/index.docbook share/help/si/mate-geyes/legal.xml share/help/si/mate-multiload/figures/multiload-preferences.png share/help/si/mate-multiload/figures/system-monitor-applet_window.png share/help/si/mate-multiload/index.docbook share/help/si/mate-multiload/legal.xml share/help/si/mate-netspeed-applet/figures/details.png share/help/si/mate-netspeed-applet/figures/eth_sum_48.png share/help/si/mate-netspeed-applet/figures/ethernet.png share/help/si/mate-netspeed-applet/figures/loopback.png share/help/si/mate-netspeed-applet/figures/netspeed_applet.png share/help/si/mate-netspeed-applet/figures/plip.png share/help/si/mate-netspeed-applet/figures/ppp.png share/help/si/mate-netspeed-applet/figures/settings.png share/help/si/mate-netspeed-applet/figures/wavelan.png share/help/si/mate-netspeed-applet/index.docbook share/help/si/mate-netspeed-applet/legal.xml share/help/si/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/si/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/si/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/si/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/si/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/si/mate-stickynotes-applet/index.docbook share/help/si/mate-stickynotes-applet/legal.xml share/help/si/mate-trashapplet/figures/trash-applet.png share/help/si/mate-trashapplet/index.docbook share/help/si/mate-trashapplet/legal.xml share/help/si/mateweather/figures/mateweather-details.png share/help/si/mateweather/figures/mateweather-menu-prefs.png share/help/si/mateweather/figures/mateweather-prefs-general.png share/help/si/mateweather/figures/mateweather-prefs-locations.png share/help/si/mateweather/figures/mateweather_applet.png share/help/si/mateweather/figures/stock_weather-cloudy.png share/help/si/mateweather/figures/stock_weather-few-clouds.png share/help/si/mateweather/figures/stock_weather-fog.png share/help/si/mateweather/figures/stock_weather-night-clear.png share/help/si/mateweather/figures/stock_weather-night-few-clouds.png share/help/si/mateweather/figures/stock_weather-showers.png share/help/si/mateweather/figures/stock_weather-snow.png share/help/si/mateweather/figures/stock_weather-storm.png share/help/si/mateweather/figures/stock_weather-sunny.png share/help/si/mateweather/index.docbook share/help/si/mateweather/legal.xml share/help/sk/mate-accessx-status/figures/accessx-status-applet.png share/help/sk/mate-accessx-status/figures/accessx-status-disabled.png share/help/sk/mate-accessx-status/figures/accessx_bounce-keys.png share/help/sk/mate-accessx-status/figures/accessx_mouse-keys.png share/help/sk/mate-accessx-status/figures/accessx_slow-keys.png share/help/sk/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/sk/mate-accessx-status/figures/accessx_sticky-keys.png share/help/sk/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/sk/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/sk/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/sk/mate-accessx-status/index.docbook share/help/sk/mate-accessx-status/legal.xml %%BATTERY%%share/help/sk/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/sk/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/sk/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/sk/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/sk/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/sk/mate-battstat/index.docbook %%BATTERY%%share/help/sk/mate-battstat/legal.xml share/help/sk/mate-char-palette/figures/charpalette_applet.png share/help/sk/mate-char-palette/figures/charpick-preferences.png share/help/sk/mate-char-palette/figures/charpick_characters.png share/help/sk/mate-char-palette/index.docbook share/help/sk/mate-char-palette/legal.xml share/help/sk/mate-drivemount/figures/drivemount-applet_eject.png share/help/sk/mate-drivemount/figures/drivemount-applet_example.png share/help/sk/mate-drivemount/figures/drivemount-applet_mount.png share/help/sk/mate-drivemount/figures/drivemount-applet_open.png share/help/sk/mate-drivemount/figures/drivemount-applet_status.png share/help/sk/mate-drivemount/index.docbook share/help/sk/mate-drivemount/legal.xml share/help/sk/mate-geyes/figures/geyes_applet.png share/help/sk/mate-geyes/index.docbook share/help/sk/mate-geyes/legal.xml share/help/sk/mate-multiload/figures/multiload-preferences.png share/help/sk/mate-multiload/figures/system-monitor-applet_window.png share/help/sk/mate-multiload/index.docbook share/help/sk/mate-multiload/legal.xml share/help/sk/mate-netspeed-applet/figures/details.png share/help/sk/mate-netspeed-applet/figures/eth_sum_48.png share/help/sk/mate-netspeed-applet/figures/ethernet.png share/help/sk/mate-netspeed-applet/figures/loopback.png share/help/sk/mate-netspeed-applet/figures/netspeed_applet.png share/help/sk/mate-netspeed-applet/figures/plip.png share/help/sk/mate-netspeed-applet/figures/ppp.png share/help/sk/mate-netspeed-applet/figures/settings.png share/help/sk/mate-netspeed-applet/figures/wavelan.png share/help/sk/mate-netspeed-applet/index.docbook share/help/sk/mate-netspeed-applet/legal.xml share/help/sk/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/sk/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/sk/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/sk/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/sk/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/sk/mate-stickynotes-applet/index.docbook share/help/sk/mate-stickynotes-applet/legal.xml share/help/sk/mate-trashapplet/figures/trash-applet.png share/help/sk/mate-trashapplet/index.docbook share/help/sk/mate-trashapplet/legal.xml share/help/sk/mateweather/figures/mateweather-details.png share/help/sk/mateweather/figures/mateweather-menu-prefs.png share/help/sk/mateweather/figures/mateweather-prefs-general.png share/help/sk/mateweather/figures/mateweather-prefs-locations.png share/help/sk/mateweather/figures/mateweather_applet.png share/help/sk/mateweather/figures/stock_weather-cloudy.png share/help/sk/mateweather/figures/stock_weather-few-clouds.png share/help/sk/mateweather/figures/stock_weather-fog.png share/help/sk/mateweather/figures/stock_weather-night-clear.png share/help/sk/mateweather/figures/stock_weather-night-few-clouds.png share/help/sk/mateweather/figures/stock_weather-showers.png share/help/sk/mateweather/figures/stock_weather-snow.png share/help/sk/mateweather/figures/stock_weather-storm.png share/help/sk/mateweather/figures/stock_weather-sunny.png share/help/sk/mateweather/index.docbook share/help/sk/mateweather/legal.xml share/help/sl/mate-accessx-status/figures/accessx-status-applet.png share/help/sl/mate-accessx-status/figures/accessx-status-disabled.png share/help/sl/mate-accessx-status/figures/accessx_bounce-keys.png share/help/sl/mate-accessx-status/figures/accessx_mouse-keys.png share/help/sl/mate-accessx-status/figures/accessx_slow-keys.png share/help/sl/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/sl/mate-accessx-status/figures/accessx_sticky-keys.png share/help/sl/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/sl/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/sl/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/sl/mate-accessx-status/index.docbook share/help/sl/mate-accessx-status/legal.xml %%BATTERY%%share/help/sl/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/sl/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/sl/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/sl/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/sl/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/sl/mate-battstat/index.docbook %%BATTERY%%share/help/sl/mate-battstat/legal.xml share/help/sl/mate-char-palette/figures/charpalette_applet.png share/help/sl/mate-char-palette/figures/charpick-preferences.png share/help/sl/mate-char-palette/figures/charpick_characters.png share/help/sl/mate-char-palette/index.docbook share/help/sl/mate-char-palette/legal.xml share/help/sl/mate-drivemount/figures/drivemount-applet_eject.png share/help/sl/mate-drivemount/figures/drivemount-applet_example.png share/help/sl/mate-drivemount/figures/drivemount-applet_mount.png share/help/sl/mate-drivemount/figures/drivemount-applet_open.png share/help/sl/mate-drivemount/figures/drivemount-applet_status.png share/help/sl/mate-drivemount/index.docbook share/help/sl/mate-drivemount/legal.xml share/help/sl/mate-geyes/figures/geyes_applet.png share/help/sl/mate-geyes/index.docbook share/help/sl/mate-geyes/legal.xml share/help/sl/mate-multiload/figures/multiload-preferences.png share/help/sl/mate-multiload/figures/system-monitor-applet_window.png share/help/sl/mate-multiload/index.docbook share/help/sl/mate-multiload/legal.xml share/help/sl/mate-netspeed-applet/figures/details.png share/help/sl/mate-netspeed-applet/figures/eth_sum_48.png share/help/sl/mate-netspeed-applet/figures/ethernet.png share/help/sl/mate-netspeed-applet/figures/loopback.png share/help/sl/mate-netspeed-applet/figures/netspeed_applet.png share/help/sl/mate-netspeed-applet/figures/plip.png share/help/sl/mate-netspeed-applet/figures/ppp.png share/help/sl/mate-netspeed-applet/figures/settings.png share/help/sl/mate-netspeed-applet/figures/wavelan.png share/help/sl/mate-netspeed-applet/index.docbook share/help/sl/mate-netspeed-applet/legal.xml share/help/sl/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/sl/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/sl/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/sl/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/sl/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/sl/mate-stickynotes-applet/index.docbook share/help/sl/mate-stickynotes-applet/legal.xml share/help/sl/mate-trashapplet/figures/trash-applet.png share/help/sl/mate-trashapplet/index.docbook share/help/sl/mate-trashapplet/legal.xml share/help/sl/mateweather/figures/mateweather-details.png share/help/sl/mateweather/figures/mateweather-menu-prefs.png share/help/sl/mateweather/figures/mateweather-prefs-general.png share/help/sl/mateweather/figures/mateweather-prefs-locations.png share/help/sl/mateweather/figures/mateweather_applet.png share/help/sl/mateweather/figures/stock_weather-cloudy.png share/help/sl/mateweather/figures/stock_weather-few-clouds.png share/help/sl/mateweather/figures/stock_weather-fog.png share/help/sl/mateweather/figures/stock_weather-night-clear.png share/help/sl/mateweather/figures/stock_weather-night-few-clouds.png share/help/sl/mateweather/figures/stock_weather-showers.png share/help/sl/mateweather/figures/stock_weather-snow.png share/help/sl/mateweather/figures/stock_weather-storm.png share/help/sl/mateweather/figures/stock_weather-sunny.png share/help/sl/mateweather/index.docbook share/help/sl/mateweather/legal.xml share/help/sq/mate-accessx-status/figures/accessx-status-applet.png share/help/sq/mate-accessx-status/figures/accessx-status-disabled.png share/help/sq/mate-accessx-status/figures/accessx_bounce-keys.png share/help/sq/mate-accessx-status/figures/accessx_mouse-keys.png share/help/sq/mate-accessx-status/figures/accessx_slow-keys.png share/help/sq/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/sq/mate-accessx-status/figures/accessx_sticky-keys.png share/help/sq/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/sq/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/sq/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/sq/mate-accessx-status/index.docbook share/help/sq/mate-accessx-status/legal.xml %%BATTERY%%share/help/sq/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/sq/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/sq/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/sq/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/sq/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/sq/mate-battstat/index.docbook %%BATTERY%%share/help/sq/mate-battstat/legal.xml share/help/sq/mate-char-palette/figures/charpalette_applet.png share/help/sq/mate-char-palette/figures/charpick-preferences.png share/help/sq/mate-char-palette/figures/charpick_characters.png share/help/sq/mate-char-palette/index.docbook share/help/sq/mate-char-palette/legal.xml share/help/sq/mate-drivemount/figures/drivemount-applet_eject.png share/help/sq/mate-drivemount/figures/drivemount-applet_example.png share/help/sq/mate-drivemount/figures/drivemount-applet_mount.png share/help/sq/mate-drivemount/figures/drivemount-applet_open.png share/help/sq/mate-drivemount/figures/drivemount-applet_status.png share/help/sq/mate-drivemount/index.docbook share/help/sq/mate-drivemount/legal.xml share/help/sq/mate-geyes/figures/geyes_applet.png share/help/sq/mate-geyes/index.docbook share/help/sq/mate-geyes/legal.xml share/help/sq/mate-multiload/figures/multiload-preferences.png share/help/sq/mate-multiload/figures/system-monitor-applet_window.png share/help/sq/mate-multiload/index.docbook share/help/sq/mate-multiload/legal.xml share/help/sq/mate-netspeed-applet/figures/details.png share/help/sq/mate-netspeed-applet/figures/eth_sum_48.png share/help/sq/mate-netspeed-applet/figures/ethernet.png share/help/sq/mate-netspeed-applet/figures/loopback.png share/help/sq/mate-netspeed-applet/figures/netspeed_applet.png share/help/sq/mate-netspeed-applet/figures/plip.png share/help/sq/mate-netspeed-applet/figures/ppp.png share/help/sq/mate-netspeed-applet/figures/settings.png share/help/sq/mate-netspeed-applet/figures/wavelan.png share/help/sq/mate-netspeed-applet/index.docbook share/help/sq/mate-netspeed-applet/legal.xml share/help/sq/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/sq/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/sq/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/sq/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/sq/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/sq/mate-stickynotes-applet/index.docbook share/help/sq/mate-stickynotes-applet/legal.xml share/help/sq/mate-trashapplet/figures/trash-applet.png share/help/sq/mate-trashapplet/index.docbook share/help/sq/mate-trashapplet/legal.xml share/help/sq/mateweather/figures/mateweather-details.png share/help/sq/mateweather/figures/mateweather-menu-prefs.png share/help/sq/mateweather/figures/mateweather-prefs-general.png share/help/sq/mateweather/figures/mateweather-prefs-locations.png share/help/sq/mateweather/figures/mateweather_applet.png share/help/sq/mateweather/figures/stock_weather-cloudy.png share/help/sq/mateweather/figures/stock_weather-few-clouds.png share/help/sq/mateweather/figures/stock_weather-fog.png share/help/sq/mateweather/figures/stock_weather-night-clear.png share/help/sq/mateweather/figures/stock_weather-night-few-clouds.png share/help/sq/mateweather/figures/stock_weather-showers.png share/help/sq/mateweather/figures/stock_weather-snow.png share/help/sq/mateweather/figures/stock_weather-storm.png share/help/sq/mateweather/figures/stock_weather-sunny.png share/help/sq/mateweather/index.docbook share/help/sq/mateweather/legal.xml share/help/sr/mate-accessx-status/figures/accessx-status-applet.png share/help/sr/mate-accessx-status/figures/accessx-status-disabled.png share/help/sr/mate-accessx-status/figures/accessx_bounce-keys.png share/help/sr/mate-accessx-status/figures/accessx_mouse-keys.png share/help/sr/mate-accessx-status/figures/accessx_slow-keys.png share/help/sr/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/sr/mate-accessx-status/figures/accessx_sticky-keys.png share/help/sr/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/sr/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/sr/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/sr/mate-accessx-status/index.docbook share/help/sr/mate-accessx-status/legal.xml %%BATTERY%%share/help/sr/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/sr/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/sr/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/sr/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/sr/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/sr/mate-battstat/index.docbook %%BATTERY%%share/help/sr/mate-battstat/legal.xml share/help/sr/mate-char-palette/figures/charpalette_applet.png share/help/sr/mate-char-palette/figures/charpick-preferences.png share/help/sr/mate-char-palette/figures/charpick_characters.png share/help/sr/mate-char-palette/index.docbook share/help/sr/mate-char-palette/legal.xml share/help/sr/mate-drivemount/figures/drivemount-applet_eject.png share/help/sr/mate-drivemount/figures/drivemount-applet_example.png share/help/sr/mate-drivemount/figures/drivemount-applet_mount.png share/help/sr/mate-drivemount/figures/drivemount-applet_open.png share/help/sr/mate-drivemount/figures/drivemount-applet_status.png share/help/sr/mate-drivemount/index.docbook share/help/sr/mate-drivemount/legal.xml share/help/sr/mate-geyes/figures/geyes_applet.png share/help/sr/mate-geyes/index.docbook share/help/sr/mate-geyes/legal.xml share/help/sr/mate-multiload/figures/multiload-preferences.png share/help/sr/mate-multiload/figures/system-monitor-applet_window.png share/help/sr/mate-multiload/index.docbook share/help/sr/mate-multiload/legal.xml share/help/sr/mate-netspeed-applet/figures/details.png share/help/sr/mate-netspeed-applet/figures/eth_sum_48.png share/help/sr/mate-netspeed-applet/figures/ethernet.png share/help/sr/mate-netspeed-applet/figures/loopback.png share/help/sr/mate-netspeed-applet/figures/netspeed_applet.png share/help/sr/mate-netspeed-applet/figures/plip.png share/help/sr/mate-netspeed-applet/figures/ppp.png share/help/sr/mate-netspeed-applet/figures/settings.png share/help/sr/mate-netspeed-applet/figures/wavelan.png share/help/sr/mate-netspeed-applet/index.docbook share/help/sr/mate-netspeed-applet/legal.xml share/help/sr/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/sr/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/sr/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/sr/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/sr/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/sr/mate-stickynotes-applet/index.docbook share/help/sr/mate-stickynotes-applet/legal.xml share/help/sr/mate-trashapplet/figures/trash-applet.png share/help/sr/mate-trashapplet/index.docbook share/help/sr/mate-trashapplet/legal.xml share/help/sr/mateweather/figures/mateweather-details.png share/help/sr/mateweather/figures/mateweather-menu-prefs.png share/help/sr/mateweather/figures/mateweather-prefs-general.png share/help/sr/mateweather/figures/mateweather-prefs-locations.png share/help/sr/mateweather/figures/mateweather_applet.png share/help/sr/mateweather/figures/stock_weather-cloudy.png share/help/sr/mateweather/figures/stock_weather-few-clouds.png share/help/sr/mateweather/figures/stock_weather-fog.png share/help/sr/mateweather/figures/stock_weather-night-clear.png share/help/sr/mateweather/figures/stock_weather-night-few-clouds.png share/help/sr/mateweather/figures/stock_weather-showers.png share/help/sr/mateweather/figures/stock_weather-snow.png share/help/sr/mateweather/figures/stock_weather-storm.png share/help/sr/mateweather/figures/stock_weather-sunny.png share/help/sr/mateweather/index.docbook share/help/sr/mateweather/legal.xml share/help/sr@latin/mate-accessx-status/figures/accessx-status-applet.png share/help/sr@latin/mate-accessx-status/figures/accessx-status-disabled.png share/help/sr@latin/mate-accessx-status/figures/accessx_bounce-keys.png share/help/sr@latin/mate-accessx-status/figures/accessx_mouse-keys.png share/help/sr@latin/mate-accessx-status/figures/accessx_slow-keys.png share/help/sr@latin/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/sr@latin/mate-accessx-status/figures/accessx_sticky-keys.png share/help/sr@latin/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/sr@latin/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/sr@latin/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/sr@latin/mate-accessx-status/index.docbook share/help/sr@latin/mate-accessx-status/legal.xml %%BATTERY%%share/help/sr@latin/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/sr@latin/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/sr@latin/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/sr@latin/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/sr@latin/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/sr@latin/mate-battstat/index.docbook %%BATTERY%%share/help/sr@latin/mate-battstat/legal.xml share/help/sr@latin/mate-char-palette/figures/charpalette_applet.png share/help/sr@latin/mate-char-palette/figures/charpick-preferences.png share/help/sr@latin/mate-char-palette/figures/charpick_characters.png share/help/sr@latin/mate-char-palette/index.docbook share/help/sr@latin/mate-char-palette/legal.xml share/help/sr@latin/mate-drivemount/figures/drivemount-applet_eject.png share/help/sr@latin/mate-drivemount/figures/drivemount-applet_example.png share/help/sr@latin/mate-drivemount/figures/drivemount-applet_mount.png share/help/sr@latin/mate-drivemount/figures/drivemount-applet_open.png share/help/sr@latin/mate-drivemount/figures/drivemount-applet_status.png share/help/sr@latin/mate-drivemount/index.docbook share/help/sr@latin/mate-drivemount/legal.xml share/help/sr@latin/mate-geyes/figures/geyes_applet.png share/help/sr@latin/mate-geyes/index.docbook share/help/sr@latin/mate-geyes/legal.xml share/help/sr@latin/mate-multiload/figures/multiload-preferences.png share/help/sr@latin/mate-multiload/figures/system-monitor-applet_window.png share/help/sr@latin/mate-multiload/index.docbook share/help/sr@latin/mate-multiload/legal.xml share/help/sr@latin/mate-netspeed-applet/figures/details.png share/help/sr@latin/mate-netspeed-applet/figures/eth_sum_48.png share/help/sr@latin/mate-netspeed-applet/figures/ethernet.png share/help/sr@latin/mate-netspeed-applet/figures/loopback.png share/help/sr@latin/mate-netspeed-applet/figures/netspeed_applet.png share/help/sr@latin/mate-netspeed-applet/figures/plip.png share/help/sr@latin/mate-netspeed-applet/figures/ppp.png share/help/sr@latin/mate-netspeed-applet/figures/settings.png share/help/sr@latin/mate-netspeed-applet/figures/wavelan.png share/help/sr@latin/mate-netspeed-applet/index.docbook share/help/sr@latin/mate-netspeed-applet/legal.xml share/help/sr@latin/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/sr@latin/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/sr@latin/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/sr@latin/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/sr@latin/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/sr@latin/mate-stickynotes-applet/index.docbook share/help/sr@latin/mate-stickynotes-applet/legal.xml share/help/sr@latin/mate-trashapplet/figures/trash-applet.png share/help/sr@latin/mate-trashapplet/index.docbook share/help/sr@latin/mate-trashapplet/legal.xml share/help/sr@latin/mateweather/figures/mateweather-details.png share/help/sr@latin/mateweather/figures/mateweather-menu-prefs.png share/help/sr@latin/mateweather/figures/mateweather-prefs-general.png share/help/sr@latin/mateweather/figures/mateweather-prefs-locations.png share/help/sr@latin/mateweather/figures/mateweather_applet.png share/help/sr@latin/mateweather/figures/stock_weather-cloudy.png share/help/sr@latin/mateweather/figures/stock_weather-few-clouds.png share/help/sr@latin/mateweather/figures/stock_weather-fog.png share/help/sr@latin/mateweather/figures/stock_weather-night-clear.png share/help/sr@latin/mateweather/figures/stock_weather-night-few-clouds.png share/help/sr@latin/mateweather/figures/stock_weather-showers.png share/help/sr@latin/mateweather/figures/stock_weather-snow.png share/help/sr@latin/mateweather/figures/stock_weather-storm.png share/help/sr@latin/mateweather/figures/stock_weather-sunny.png share/help/sr@latin/mateweather/index.docbook share/help/sr@latin/mateweather/legal.xml share/help/sv/mate-accessx-status/figures/accessx-status-applet.png share/help/sv/mate-accessx-status/figures/accessx-status-disabled.png share/help/sv/mate-accessx-status/figures/accessx_bounce-keys.png share/help/sv/mate-accessx-status/figures/accessx_mouse-keys.png share/help/sv/mate-accessx-status/figures/accessx_slow-keys.png share/help/sv/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/sv/mate-accessx-status/figures/accessx_sticky-keys.png share/help/sv/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/sv/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/sv/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/sv/mate-accessx-status/index.docbook share/help/sv/mate-accessx-status/legal.xml %%BATTERY%%share/help/sv/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/sv/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/sv/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/sv/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/sv/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/sv/mate-battstat/index.docbook %%BATTERY%%share/help/sv/mate-battstat/legal.xml share/help/sv/mate-char-palette/figures/charpalette_applet.png share/help/sv/mate-char-palette/figures/charpick-preferences.png share/help/sv/mate-char-palette/figures/charpick_characters.png share/help/sv/mate-char-palette/index.docbook share/help/sv/mate-char-palette/legal.xml share/help/sv/mate-drivemount/figures/drivemount-applet_eject.png share/help/sv/mate-drivemount/figures/drivemount-applet_example.png share/help/sv/mate-drivemount/figures/drivemount-applet_mount.png share/help/sv/mate-drivemount/figures/drivemount-applet_open.png share/help/sv/mate-drivemount/figures/drivemount-applet_status.png share/help/sv/mate-drivemount/index.docbook share/help/sv/mate-drivemount/legal.xml share/help/sv/mate-geyes/figures/geyes_applet.png share/help/sv/mate-geyes/index.docbook share/help/sv/mate-geyes/legal.xml share/help/sv/mate-multiload/figures/multiload-preferences.png share/help/sv/mate-multiload/figures/system-monitor-applet_window.png share/help/sv/mate-multiload/index.docbook share/help/sv/mate-multiload/legal.xml share/help/sv/mate-netspeed-applet/figures/details.png share/help/sv/mate-netspeed-applet/figures/eth_sum_48.png share/help/sv/mate-netspeed-applet/figures/ethernet.png share/help/sv/mate-netspeed-applet/figures/loopback.png share/help/sv/mate-netspeed-applet/figures/netspeed_applet.png share/help/sv/mate-netspeed-applet/figures/plip.png share/help/sv/mate-netspeed-applet/figures/ppp.png share/help/sv/mate-netspeed-applet/figures/settings.png share/help/sv/mate-netspeed-applet/figures/wavelan.png share/help/sv/mate-netspeed-applet/index.docbook share/help/sv/mate-netspeed-applet/legal.xml share/help/sv/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/sv/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/sv/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/sv/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/sv/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/sv/mate-stickynotes-applet/index.docbook share/help/sv/mate-stickynotes-applet/legal.xml share/help/sv/mate-trashapplet/figures/trash-applet.png share/help/sv/mate-trashapplet/index.docbook share/help/sv/mate-trashapplet/legal.xml share/help/sv/mateweather/figures/mateweather-details.png share/help/sv/mateweather/figures/mateweather-menu-prefs.png share/help/sv/mateweather/figures/mateweather-prefs-general.png share/help/sv/mateweather/figures/mateweather-prefs-locations.png share/help/sv/mateweather/figures/mateweather_applet.png share/help/sv/mateweather/figures/stock_weather-cloudy.png share/help/sv/mateweather/figures/stock_weather-few-clouds.png share/help/sv/mateweather/figures/stock_weather-fog.png share/help/sv/mateweather/figures/stock_weather-night-clear.png share/help/sv/mateweather/figures/stock_weather-night-few-clouds.png share/help/sv/mateweather/figures/stock_weather-showers.png share/help/sv/mateweather/figures/stock_weather-snow.png share/help/sv/mateweather/figures/stock_weather-storm.png share/help/sv/mateweather/figures/stock_weather-sunny.png share/help/sv/mateweather/index.docbook share/help/sv/mateweather/legal.xml share/help/sw/mate-geyes/figures/geyes_applet.png share/help/sw/mate-geyes/index.docbook share/help/sw/mate-geyes/legal.xml share/help/sw/mate-trashapplet/figures/trash-applet.png share/help/sw/mate-trashapplet/index.docbook share/help/sw/mate-trashapplet/legal.xml share/help/ta/mate-accessx-status/figures/accessx-status-applet.png share/help/ta/mate-accessx-status/figures/accessx-status-disabled.png share/help/ta/mate-accessx-status/figures/accessx_bounce-keys.png share/help/ta/mate-accessx-status/figures/accessx_mouse-keys.png share/help/ta/mate-accessx-status/figures/accessx_slow-keys.png share/help/ta/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/ta/mate-accessx-status/figures/accessx_sticky-keys.png share/help/ta/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/ta/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/ta/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/ta/mate-accessx-status/index.docbook share/help/ta/mate-accessx-status/legal.xml %%BATTERY%%share/help/ta/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/ta/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/ta/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/ta/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/ta/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/ta/mate-battstat/index.docbook %%BATTERY%%share/help/ta/mate-battstat/legal.xml share/help/ta/mate-char-palette/figures/charpalette_applet.png share/help/ta/mate-char-palette/figures/charpick-preferences.png share/help/ta/mate-char-palette/figures/charpick_characters.png share/help/ta/mate-char-palette/index.docbook share/help/ta/mate-char-palette/legal.xml share/help/ta/mate-drivemount/figures/drivemount-applet_eject.png share/help/ta/mate-drivemount/figures/drivemount-applet_example.png share/help/ta/mate-drivemount/figures/drivemount-applet_mount.png share/help/ta/mate-drivemount/figures/drivemount-applet_open.png share/help/ta/mate-drivemount/figures/drivemount-applet_status.png share/help/ta/mate-drivemount/index.docbook share/help/ta/mate-drivemount/legal.xml share/help/ta/mate-geyes/figures/geyes_applet.png share/help/ta/mate-geyes/index.docbook share/help/ta/mate-geyes/legal.xml share/help/ta/mate-multiload/figures/multiload-preferences.png share/help/ta/mate-multiload/figures/system-monitor-applet_window.png share/help/ta/mate-multiload/index.docbook share/help/ta/mate-multiload/legal.xml share/help/ta/mate-netspeed-applet/figures/details.png share/help/ta/mate-netspeed-applet/figures/eth_sum_48.png share/help/ta/mate-netspeed-applet/figures/ethernet.png share/help/ta/mate-netspeed-applet/figures/loopback.png share/help/ta/mate-netspeed-applet/figures/netspeed_applet.png share/help/ta/mate-netspeed-applet/figures/plip.png share/help/ta/mate-netspeed-applet/figures/ppp.png share/help/ta/mate-netspeed-applet/figures/settings.png share/help/ta/mate-netspeed-applet/figures/wavelan.png share/help/ta/mate-netspeed-applet/index.docbook share/help/ta/mate-netspeed-applet/legal.xml share/help/ta/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/ta/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/ta/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/ta/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/ta/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/ta/mate-stickynotes-applet/index.docbook share/help/ta/mate-stickynotes-applet/legal.xml share/help/ta/mate-trashapplet/figures/trash-applet.png share/help/ta/mate-trashapplet/index.docbook share/help/ta/mate-trashapplet/legal.xml share/help/ta/mateweather/figures/mateweather-details.png share/help/ta/mateweather/figures/mateweather-menu-prefs.png share/help/ta/mateweather/figures/mateweather-prefs-general.png share/help/ta/mateweather/figures/mateweather-prefs-locations.png share/help/ta/mateweather/figures/mateweather_applet.png share/help/ta/mateweather/figures/stock_weather-cloudy.png share/help/ta/mateweather/figures/stock_weather-few-clouds.png share/help/ta/mateweather/figures/stock_weather-fog.png share/help/ta/mateweather/figures/stock_weather-night-clear.png share/help/ta/mateweather/figures/stock_weather-night-few-clouds.png share/help/ta/mateweather/figures/stock_weather-showers.png share/help/ta/mateweather/figures/stock_weather-snow.png share/help/ta/mateweather/figures/stock_weather-storm.png share/help/ta/mateweather/figures/stock_weather-sunny.png share/help/ta/mateweather/index.docbook share/help/ta/mateweather/legal.xml share/help/te/mate-accessx-status/figures/accessx-status-applet.png share/help/te/mate-accessx-status/figures/accessx-status-disabled.png share/help/te/mate-accessx-status/figures/accessx_bounce-keys.png share/help/te/mate-accessx-status/figures/accessx_mouse-keys.png share/help/te/mate-accessx-status/figures/accessx_slow-keys.png share/help/te/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/te/mate-accessx-status/figures/accessx_sticky-keys.png share/help/te/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/te/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/te/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/te/mate-accessx-status/index.docbook share/help/te/mate-accessx-status/legal.xml %%BATTERY%%share/help/te/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/te/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/te/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/te/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/te/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/te/mate-battstat/index.docbook %%BATTERY%%share/help/te/mate-battstat/legal.xml share/help/te/mate-char-palette/figures/charpalette_applet.png share/help/te/mate-char-palette/figures/charpick-preferences.png share/help/te/mate-char-palette/figures/charpick_characters.png share/help/te/mate-char-palette/index.docbook share/help/te/mate-char-palette/legal.xml share/help/te/mate-drivemount/figures/drivemount-applet_eject.png share/help/te/mate-drivemount/figures/drivemount-applet_example.png share/help/te/mate-drivemount/figures/drivemount-applet_mount.png share/help/te/mate-drivemount/figures/drivemount-applet_open.png share/help/te/mate-drivemount/figures/drivemount-applet_status.png share/help/te/mate-drivemount/index.docbook share/help/te/mate-drivemount/legal.xml share/help/te/mate-geyes/figures/geyes_applet.png share/help/te/mate-geyes/index.docbook share/help/te/mate-geyes/legal.xml share/help/te/mate-multiload/figures/multiload-preferences.png share/help/te/mate-multiload/figures/system-monitor-applet_window.png share/help/te/mate-multiload/index.docbook share/help/te/mate-multiload/legal.xml share/help/te/mate-netspeed-applet/figures/details.png share/help/te/mate-netspeed-applet/figures/eth_sum_48.png share/help/te/mate-netspeed-applet/figures/ethernet.png share/help/te/mate-netspeed-applet/figures/loopback.png share/help/te/mate-netspeed-applet/figures/netspeed_applet.png share/help/te/mate-netspeed-applet/figures/plip.png share/help/te/mate-netspeed-applet/figures/ppp.png share/help/te/mate-netspeed-applet/figures/settings.png share/help/te/mate-netspeed-applet/figures/wavelan.png share/help/te/mate-netspeed-applet/index.docbook share/help/te/mate-netspeed-applet/legal.xml share/help/te/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/te/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/te/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/te/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/te/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/te/mate-stickynotes-applet/index.docbook share/help/te/mate-stickynotes-applet/legal.xml share/help/te/mate-trashapplet/figures/trash-applet.png share/help/te/mate-trashapplet/index.docbook share/help/te/mate-trashapplet/legal.xml share/help/te/mateweather/figures/mateweather-details.png share/help/te/mateweather/figures/mateweather-menu-prefs.png share/help/te/mateweather/figures/mateweather-prefs-general.png share/help/te/mateweather/figures/mateweather-prefs-locations.png share/help/te/mateweather/figures/mateweather_applet.png share/help/te/mateweather/figures/stock_weather-cloudy.png share/help/te/mateweather/figures/stock_weather-few-clouds.png share/help/te/mateweather/figures/stock_weather-fog.png share/help/te/mateweather/figures/stock_weather-night-clear.png share/help/te/mateweather/figures/stock_weather-night-few-clouds.png share/help/te/mateweather/figures/stock_weather-showers.png share/help/te/mateweather/figures/stock_weather-snow.png share/help/te/mateweather/figures/stock_weather-storm.png share/help/te/mateweather/figures/stock_weather-sunny.png share/help/te/mateweather/index.docbook share/help/te/mateweather/legal.xml share/help/th/mate-accessx-status/figures/accessx-status-applet.png share/help/th/mate-accessx-status/figures/accessx-status-disabled.png share/help/th/mate-accessx-status/figures/accessx_bounce-keys.png share/help/th/mate-accessx-status/figures/accessx_mouse-keys.png share/help/th/mate-accessx-status/figures/accessx_slow-keys.png share/help/th/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/th/mate-accessx-status/figures/accessx_sticky-keys.png share/help/th/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/th/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/th/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/th/mate-accessx-status/index.docbook share/help/th/mate-accessx-status/legal.xml %%BATTERY%%share/help/th/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/th/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/th/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/th/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/th/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/th/mate-battstat/index.docbook %%BATTERY%%share/help/th/mate-battstat/legal.xml share/help/th/mate-char-palette/figures/charpalette_applet.png share/help/th/mate-char-palette/figures/charpick-preferences.png share/help/th/mate-char-palette/figures/charpick_characters.png share/help/th/mate-char-palette/index.docbook share/help/th/mate-char-palette/legal.xml share/help/th/mate-drivemount/figures/drivemount-applet_eject.png share/help/th/mate-drivemount/figures/drivemount-applet_example.png share/help/th/mate-drivemount/figures/drivemount-applet_mount.png share/help/th/mate-drivemount/figures/drivemount-applet_open.png share/help/th/mate-drivemount/figures/drivemount-applet_status.png share/help/th/mate-drivemount/index.docbook share/help/th/mate-drivemount/legal.xml share/help/th/mate-geyes/figures/geyes_applet.png share/help/th/mate-geyes/index.docbook share/help/th/mate-geyes/legal.xml share/help/th/mate-multiload/figures/multiload-preferences.png share/help/th/mate-multiload/figures/system-monitor-applet_window.png share/help/th/mate-multiload/index.docbook share/help/th/mate-multiload/legal.xml share/help/th/mate-netspeed-applet/figures/details.png share/help/th/mate-netspeed-applet/figures/eth_sum_48.png share/help/th/mate-netspeed-applet/figures/ethernet.png share/help/th/mate-netspeed-applet/figures/loopback.png share/help/th/mate-netspeed-applet/figures/netspeed_applet.png share/help/th/mate-netspeed-applet/figures/plip.png share/help/th/mate-netspeed-applet/figures/ppp.png share/help/th/mate-netspeed-applet/figures/settings.png share/help/th/mate-netspeed-applet/figures/wavelan.png share/help/th/mate-netspeed-applet/index.docbook share/help/th/mate-netspeed-applet/legal.xml share/help/th/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/th/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/th/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/th/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/th/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/th/mate-stickynotes-applet/index.docbook share/help/th/mate-stickynotes-applet/legal.xml share/help/th/mate-trashapplet/figures/trash-applet.png share/help/th/mate-trashapplet/index.docbook share/help/th/mate-trashapplet/legal.xml share/help/th/mateweather/figures/mateweather-details.png share/help/th/mateweather/figures/mateweather-menu-prefs.png share/help/th/mateweather/figures/mateweather-prefs-general.png share/help/th/mateweather/figures/mateweather-prefs-locations.png share/help/th/mateweather/figures/mateweather_applet.png share/help/th/mateweather/figures/stock_weather-cloudy.png share/help/th/mateweather/figures/stock_weather-few-clouds.png share/help/th/mateweather/figures/stock_weather-fog.png share/help/th/mateweather/figures/stock_weather-night-clear.png share/help/th/mateweather/figures/stock_weather-night-few-clouds.png share/help/th/mateweather/figures/stock_weather-showers.png share/help/th/mateweather/figures/stock_weather-snow.png share/help/th/mateweather/figures/stock_weather-storm.png share/help/th/mateweather/figures/stock_weather-sunny.png share/help/th/mateweather/index.docbook share/help/th/mateweather/legal.xml %%BATTERY%%share/help/tk/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/tk/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/tk/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/tk/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/tk/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/tk/mate-battstat/index.docbook %%BATTERY%%share/help/tk/mate-battstat/legal.xml share/help/tk/mate-geyes/figures/geyes_applet.png share/help/tk/mate-geyes/index.docbook share/help/tk/mate-geyes/legal.xml share/help/tk/mate-netspeed-applet/figures/details.png share/help/tk/mate-netspeed-applet/figures/eth_sum_48.png share/help/tk/mate-netspeed-applet/figures/ethernet.png share/help/tk/mate-netspeed-applet/figures/loopback.png share/help/tk/mate-netspeed-applet/figures/netspeed_applet.png share/help/tk/mate-netspeed-applet/figures/plip.png share/help/tk/mate-netspeed-applet/figures/ppp.png share/help/tk/mate-netspeed-applet/figures/settings.png share/help/tk/mate-netspeed-applet/figures/wavelan.png share/help/tk/mate-netspeed-applet/index.docbook share/help/tk/mate-netspeed-applet/legal.xml share/help/tk/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/tk/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/tk/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/tk/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/tk/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/tk/mate-stickynotes-applet/index.docbook share/help/tk/mate-stickynotes-applet/legal.xml share/help/tk/mate-trashapplet/figures/trash-applet.png share/help/tk/mate-trashapplet/index.docbook share/help/tk/mate-trashapplet/legal.xml share/help/tk/mateweather/figures/mateweather-details.png share/help/tk/mateweather/figures/mateweather-menu-prefs.png share/help/tk/mateweather/figures/mateweather-prefs-general.png share/help/tk/mateweather/figures/mateweather-prefs-locations.png share/help/tk/mateweather/figures/mateweather_applet.png share/help/tk/mateweather/figures/stock_weather-cloudy.png share/help/tk/mateweather/figures/stock_weather-few-clouds.png share/help/tk/mateweather/figures/stock_weather-fog.png share/help/tk/mateweather/figures/stock_weather-night-clear.png share/help/tk/mateweather/figures/stock_weather-night-few-clouds.png share/help/tk/mateweather/figures/stock_weather-showers.png share/help/tk/mateweather/figures/stock_weather-snow.png share/help/tk/mateweather/figures/stock_weather-storm.png share/help/tk/mateweather/figures/stock_weather-sunny.png share/help/tk/mateweather/index.docbook share/help/tk/mateweather/legal.xml share/help/tr/mate-accessx-status/figures/accessx-status-applet.png share/help/tr/mate-accessx-status/figures/accessx-status-disabled.png share/help/tr/mate-accessx-status/figures/accessx_bounce-keys.png share/help/tr/mate-accessx-status/figures/accessx_mouse-keys.png share/help/tr/mate-accessx-status/figures/accessx_slow-keys.png share/help/tr/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/tr/mate-accessx-status/figures/accessx_sticky-keys.png share/help/tr/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/tr/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/tr/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/tr/mate-accessx-status/index.docbook share/help/tr/mate-accessx-status/legal.xml %%BATTERY%%share/help/tr/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/tr/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/tr/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/tr/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/tr/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/tr/mate-battstat/index.docbook %%BATTERY%%share/help/tr/mate-battstat/legal.xml share/help/tr/mate-char-palette/figures/charpalette_applet.png share/help/tr/mate-char-palette/figures/charpick-preferences.png share/help/tr/mate-char-palette/figures/charpick_characters.png share/help/tr/mate-char-palette/index.docbook share/help/tr/mate-char-palette/legal.xml share/help/tr/mate-drivemount/figures/drivemount-applet_eject.png share/help/tr/mate-drivemount/figures/drivemount-applet_example.png share/help/tr/mate-drivemount/figures/drivemount-applet_mount.png share/help/tr/mate-drivemount/figures/drivemount-applet_open.png share/help/tr/mate-drivemount/figures/drivemount-applet_status.png share/help/tr/mate-drivemount/index.docbook share/help/tr/mate-drivemount/legal.xml share/help/tr/mate-geyes/figures/geyes_applet.png share/help/tr/mate-geyes/index.docbook share/help/tr/mate-geyes/legal.xml share/help/tr/mate-multiload/figures/multiload-preferences.png share/help/tr/mate-multiload/figures/system-monitor-applet_window.png share/help/tr/mate-multiload/index.docbook share/help/tr/mate-multiload/legal.xml share/help/tr/mate-netspeed-applet/figures/details.png share/help/tr/mate-netspeed-applet/figures/eth_sum_48.png share/help/tr/mate-netspeed-applet/figures/ethernet.png share/help/tr/mate-netspeed-applet/figures/loopback.png share/help/tr/mate-netspeed-applet/figures/netspeed_applet.png share/help/tr/mate-netspeed-applet/figures/plip.png share/help/tr/mate-netspeed-applet/figures/ppp.png share/help/tr/mate-netspeed-applet/figures/settings.png share/help/tr/mate-netspeed-applet/figures/wavelan.png share/help/tr/mate-netspeed-applet/index.docbook share/help/tr/mate-netspeed-applet/legal.xml share/help/tr/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/tr/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/tr/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/tr/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/tr/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/tr/mate-stickynotes-applet/index.docbook share/help/tr/mate-stickynotes-applet/legal.xml share/help/tr/mate-trashapplet/figures/trash-applet.png share/help/tr/mate-trashapplet/index.docbook share/help/tr/mate-trashapplet/legal.xml share/help/tr/mateweather/figures/mateweather-details.png share/help/tr/mateweather/figures/mateweather-menu-prefs.png share/help/tr/mateweather/figures/mateweather-prefs-general.png share/help/tr/mateweather/figures/mateweather-prefs-locations.png share/help/tr/mateweather/figures/mateweather_applet.png share/help/tr/mateweather/figures/stock_weather-cloudy.png share/help/tr/mateweather/figures/stock_weather-few-clouds.png share/help/tr/mateweather/figures/stock_weather-fog.png share/help/tr/mateweather/figures/stock_weather-night-clear.png share/help/tr/mateweather/figures/stock_weather-night-few-clouds.png share/help/tr/mateweather/figures/stock_weather-showers.png share/help/tr/mateweather/figures/stock_weather-snow.png share/help/tr/mateweather/figures/stock_weather-storm.png share/help/tr/mateweather/figures/stock_weather-sunny.png share/help/tr/mateweather/index.docbook share/help/tr/mateweather/legal.xml share/help/ts/mate-geyes/figures/geyes_applet.png share/help/ts/mate-geyes/index.docbook share/help/ts/mate-geyes/legal.xml share/help/ug/mate-accessx-status/figures/accessx-status-applet.png share/help/ug/mate-accessx-status/figures/accessx-status-disabled.png share/help/ug/mate-accessx-status/figures/accessx_bounce-keys.png share/help/ug/mate-accessx-status/figures/accessx_mouse-keys.png share/help/ug/mate-accessx-status/figures/accessx_slow-keys.png share/help/ug/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/ug/mate-accessx-status/figures/accessx_sticky-keys.png share/help/ug/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/ug/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/ug/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/ug/mate-accessx-status/index.docbook share/help/ug/mate-accessx-status/legal.xml %%BATTERY%%share/help/ug/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/ug/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/ug/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/ug/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/ug/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/ug/mate-battstat/index.docbook %%BATTERY%%share/help/ug/mate-battstat/legal.xml share/help/ug/mate-char-palette/figures/charpalette_applet.png share/help/ug/mate-char-palette/figures/charpick-preferences.png share/help/ug/mate-char-palette/figures/charpick_characters.png share/help/ug/mate-char-palette/index.docbook share/help/ug/mate-char-palette/legal.xml share/help/ug/mate-drivemount/figures/drivemount-applet_eject.png share/help/ug/mate-drivemount/figures/drivemount-applet_example.png share/help/ug/mate-drivemount/figures/drivemount-applet_mount.png share/help/ug/mate-drivemount/figures/drivemount-applet_open.png share/help/ug/mate-drivemount/figures/drivemount-applet_status.png share/help/ug/mate-drivemount/index.docbook share/help/ug/mate-drivemount/legal.xml share/help/ug/mate-geyes/figures/geyes_applet.png share/help/ug/mate-geyes/index.docbook share/help/ug/mate-geyes/legal.xml share/help/ug/mate-multiload/figures/multiload-preferences.png share/help/ug/mate-multiload/figures/system-monitor-applet_window.png share/help/ug/mate-multiload/index.docbook share/help/ug/mate-multiload/legal.xml share/help/ug/mate-netspeed-applet/figures/details.png share/help/ug/mate-netspeed-applet/figures/eth_sum_48.png share/help/ug/mate-netspeed-applet/figures/ethernet.png share/help/ug/mate-netspeed-applet/figures/loopback.png share/help/ug/mate-netspeed-applet/figures/netspeed_applet.png share/help/ug/mate-netspeed-applet/figures/plip.png share/help/ug/mate-netspeed-applet/figures/ppp.png share/help/ug/mate-netspeed-applet/figures/settings.png share/help/ug/mate-netspeed-applet/figures/wavelan.png share/help/ug/mate-netspeed-applet/index.docbook share/help/ug/mate-netspeed-applet/legal.xml share/help/ug/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/ug/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/ug/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/ug/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/ug/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/ug/mate-stickynotes-applet/index.docbook share/help/ug/mate-stickynotes-applet/legal.xml share/help/ug/mate-trashapplet/figures/trash-applet.png share/help/ug/mate-trashapplet/index.docbook share/help/ug/mate-trashapplet/legal.xml share/help/ug/mateweather/figures/mateweather-details.png share/help/ug/mateweather/figures/mateweather-menu-prefs.png share/help/ug/mateweather/figures/mateweather-prefs-general.png share/help/ug/mateweather/figures/mateweather-prefs-locations.png share/help/ug/mateweather/figures/mateweather_applet.png share/help/ug/mateweather/figures/stock_weather-cloudy.png share/help/ug/mateweather/figures/stock_weather-few-clouds.png share/help/ug/mateweather/figures/stock_weather-fog.png share/help/ug/mateweather/figures/stock_weather-night-clear.png share/help/ug/mateweather/figures/stock_weather-night-few-clouds.png share/help/ug/mateweather/figures/stock_weather-showers.png share/help/ug/mateweather/figures/stock_weather-snow.png share/help/ug/mateweather/figures/stock_weather-storm.png share/help/ug/mateweather/figures/stock_weather-sunny.png share/help/ug/mateweather/index.docbook share/help/ug/mateweather/legal.xml share/help/uk/mate-accessx-status/figures/accessx-status-applet.png share/help/uk/mate-accessx-status/figures/accessx-status-disabled.png share/help/uk/mate-accessx-status/figures/accessx_bounce-keys.png share/help/uk/mate-accessx-status/figures/accessx_mouse-keys.png share/help/uk/mate-accessx-status/figures/accessx_slow-keys.png share/help/uk/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/uk/mate-accessx-status/figures/accessx_sticky-keys.png share/help/uk/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/uk/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/uk/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/uk/mate-accessx-status/index.docbook share/help/uk/mate-accessx-status/legal.xml %%BATTERY%%share/help/uk/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/uk/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/uk/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/uk/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/uk/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/uk/mate-battstat/index.docbook %%BATTERY%%share/help/uk/mate-battstat/legal.xml share/help/uk/mate-char-palette/figures/charpalette_applet.png share/help/uk/mate-char-palette/figures/charpick-preferences.png share/help/uk/mate-char-palette/figures/charpick_characters.png share/help/uk/mate-char-palette/index.docbook share/help/uk/mate-char-palette/legal.xml share/help/uk/mate-drivemount/figures/drivemount-applet_eject.png share/help/uk/mate-drivemount/figures/drivemount-applet_example.png share/help/uk/mate-drivemount/figures/drivemount-applet_mount.png share/help/uk/mate-drivemount/figures/drivemount-applet_open.png share/help/uk/mate-drivemount/figures/drivemount-applet_status.png share/help/uk/mate-drivemount/index.docbook share/help/uk/mate-drivemount/legal.xml share/help/uk/mate-geyes/figures/geyes_applet.png share/help/uk/mate-geyes/index.docbook share/help/uk/mate-geyes/legal.xml share/help/uk/mate-multiload/figures/multiload-preferences.png share/help/uk/mate-multiload/figures/system-monitor-applet_window.png share/help/uk/mate-multiload/index.docbook share/help/uk/mate-multiload/legal.xml share/help/uk/mate-netspeed-applet/figures/details.png share/help/uk/mate-netspeed-applet/figures/eth_sum_48.png share/help/uk/mate-netspeed-applet/figures/ethernet.png share/help/uk/mate-netspeed-applet/figures/loopback.png share/help/uk/mate-netspeed-applet/figures/netspeed_applet.png share/help/uk/mate-netspeed-applet/figures/plip.png share/help/uk/mate-netspeed-applet/figures/ppp.png share/help/uk/mate-netspeed-applet/figures/settings.png share/help/uk/mate-netspeed-applet/figures/wavelan.png share/help/uk/mate-netspeed-applet/index.docbook share/help/uk/mate-netspeed-applet/legal.xml share/help/uk/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/uk/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/uk/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/uk/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/uk/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/uk/mate-stickynotes-applet/index.docbook share/help/uk/mate-stickynotes-applet/legal.xml share/help/uk/mate-trashapplet/figures/trash-applet.png share/help/uk/mate-trashapplet/index.docbook share/help/uk/mate-trashapplet/legal.xml share/help/uk/mateweather/figures/mateweather-details.png share/help/uk/mateweather/figures/mateweather-menu-prefs.png share/help/uk/mateweather/figures/mateweather-prefs-general.png share/help/uk/mateweather/figures/mateweather-prefs-locations.png share/help/uk/mateweather/figures/mateweather_applet.png share/help/uk/mateweather/figures/stock_weather-cloudy.png share/help/uk/mateweather/figures/stock_weather-few-clouds.png share/help/uk/mateweather/figures/stock_weather-fog.png share/help/uk/mateweather/figures/stock_weather-night-clear.png share/help/uk/mateweather/figures/stock_weather-night-few-clouds.png share/help/uk/mateweather/figures/stock_weather-showers.png share/help/uk/mateweather/figures/stock_weather-snow.png share/help/uk/mateweather/figures/stock_weather-storm.png share/help/uk/mateweather/figures/stock_weather-sunny.png share/help/uk/mateweather/index.docbook share/help/uk/mateweather/legal.xml share/help/ur/mate-accessx-status/figures/accessx-status-applet.png share/help/ur/mate-accessx-status/figures/accessx-status-disabled.png share/help/ur/mate-accessx-status/figures/accessx_bounce-keys.png share/help/ur/mate-accessx-status/figures/accessx_mouse-keys.png share/help/ur/mate-accessx-status/figures/accessx_slow-keys.png share/help/ur/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/ur/mate-accessx-status/figures/accessx_sticky-keys.png share/help/ur/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/ur/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/ur/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/ur/mate-accessx-status/index.docbook share/help/ur/mate-accessx-status/legal.xml %%BATTERY%%share/help/ur/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/ur/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/ur/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/ur/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/ur/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/ur/mate-battstat/index.docbook %%BATTERY%%share/help/ur/mate-battstat/legal.xml share/help/ur/mate-char-palette/figures/charpalette_applet.png share/help/ur/mate-char-palette/figures/charpick-preferences.png share/help/ur/mate-char-palette/figures/charpick_characters.png share/help/ur/mate-char-palette/index.docbook share/help/ur/mate-char-palette/legal.xml share/help/ur/mate-drivemount/figures/drivemount-applet_eject.png share/help/ur/mate-drivemount/figures/drivemount-applet_example.png share/help/ur/mate-drivemount/figures/drivemount-applet_mount.png share/help/ur/mate-drivemount/figures/drivemount-applet_open.png share/help/ur/mate-drivemount/figures/drivemount-applet_status.png share/help/ur/mate-drivemount/index.docbook share/help/ur/mate-drivemount/legal.xml share/help/ur/mate-geyes/figures/geyes_applet.png share/help/ur/mate-geyes/index.docbook share/help/ur/mate-geyes/legal.xml share/help/ur/mate-multiload/figures/multiload-preferences.png share/help/ur/mate-multiload/figures/system-monitor-applet_window.png share/help/ur/mate-multiload/index.docbook share/help/ur/mate-multiload/legal.xml share/help/ur/mate-netspeed-applet/figures/details.png share/help/ur/mate-netspeed-applet/figures/eth_sum_48.png share/help/ur/mate-netspeed-applet/figures/ethernet.png share/help/ur/mate-netspeed-applet/figures/loopback.png share/help/ur/mate-netspeed-applet/figures/netspeed_applet.png share/help/ur/mate-netspeed-applet/figures/plip.png share/help/ur/mate-netspeed-applet/figures/ppp.png share/help/ur/mate-netspeed-applet/figures/settings.png share/help/ur/mate-netspeed-applet/figures/wavelan.png share/help/ur/mate-netspeed-applet/index.docbook share/help/ur/mate-netspeed-applet/legal.xml share/help/ur/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/ur/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/ur/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/ur/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/ur/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/ur/mate-stickynotes-applet/index.docbook share/help/ur/mate-stickynotes-applet/legal.xml share/help/ur/mate-trashapplet/figures/trash-applet.png share/help/ur/mate-trashapplet/index.docbook share/help/ur/mate-trashapplet/legal.xml share/help/ur/mateweather/figures/mateweather-details.png share/help/ur/mateweather/figures/mateweather-menu-prefs.png share/help/ur/mateweather/figures/mateweather-prefs-general.png share/help/ur/mateweather/figures/mateweather-prefs-locations.png share/help/ur/mateweather/figures/mateweather_applet.png share/help/ur/mateweather/figures/stock_weather-cloudy.png share/help/ur/mateweather/figures/stock_weather-few-clouds.png share/help/ur/mateweather/figures/stock_weather-fog.png share/help/ur/mateweather/figures/stock_weather-night-clear.png share/help/ur/mateweather/figures/stock_weather-night-few-clouds.png share/help/ur/mateweather/figures/stock_weather-showers.png share/help/ur/mateweather/figures/stock_weather-snow.png share/help/ur/mateweather/figures/stock_weather-storm.png share/help/ur/mateweather/figures/stock_weather-sunny.png share/help/ur/mateweather/index.docbook share/help/ur/mateweather/legal.xml share/help/ur_PK/mate-geyes/figures/geyes_applet.png share/help/ur_PK/mate-geyes/index.docbook share/help/ur_PK/mate-geyes/legal.xml share/help/ur_PK/mate-trashapplet/figures/trash-applet.png share/help/ur_PK/mate-trashapplet/index.docbook share/help/ur_PK/mate-trashapplet/legal.xml share/help/uz/mate-accessx-status/figures/accessx-status-applet.png share/help/uz/mate-accessx-status/figures/accessx-status-disabled.png share/help/uz/mate-accessx-status/figures/accessx_bounce-keys.png share/help/uz/mate-accessx-status/figures/accessx_mouse-keys.png share/help/uz/mate-accessx-status/figures/accessx_slow-keys.png share/help/uz/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/uz/mate-accessx-status/figures/accessx_sticky-keys.png share/help/uz/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/uz/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/uz/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/uz/mate-accessx-status/index.docbook share/help/uz/mate-accessx-status/legal.xml %%BATTERY%%share/help/uz/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/uz/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/uz/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/uz/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/uz/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/uz/mate-battstat/index.docbook %%BATTERY%%share/help/uz/mate-battstat/legal.xml share/help/uz/mate-char-palette/figures/charpalette_applet.png share/help/uz/mate-char-palette/figures/charpick-preferences.png share/help/uz/mate-char-palette/figures/charpick_characters.png share/help/uz/mate-char-palette/index.docbook share/help/uz/mate-char-palette/legal.xml share/help/uz/mate-drivemount/figures/drivemount-applet_eject.png share/help/uz/mate-drivemount/figures/drivemount-applet_example.png share/help/uz/mate-drivemount/figures/drivemount-applet_mount.png share/help/uz/mate-drivemount/figures/drivemount-applet_open.png share/help/uz/mate-drivemount/figures/drivemount-applet_status.png share/help/uz/mate-drivemount/index.docbook share/help/uz/mate-drivemount/legal.xml share/help/uz/mate-geyes/figures/geyes_applet.png share/help/uz/mate-geyes/index.docbook share/help/uz/mate-geyes/legal.xml share/help/uz/mate-multiload/figures/multiload-preferences.png share/help/uz/mate-multiload/figures/system-monitor-applet_window.png share/help/uz/mate-multiload/index.docbook share/help/uz/mate-multiload/legal.xml share/help/uz/mate-netspeed-applet/figures/details.png share/help/uz/mate-netspeed-applet/figures/eth_sum_48.png share/help/uz/mate-netspeed-applet/figures/ethernet.png share/help/uz/mate-netspeed-applet/figures/loopback.png share/help/uz/mate-netspeed-applet/figures/netspeed_applet.png share/help/uz/mate-netspeed-applet/figures/plip.png share/help/uz/mate-netspeed-applet/figures/ppp.png share/help/uz/mate-netspeed-applet/figures/settings.png share/help/uz/mate-netspeed-applet/figures/wavelan.png share/help/uz/mate-netspeed-applet/index.docbook share/help/uz/mate-netspeed-applet/legal.xml share/help/uz/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/uz/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/uz/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/uz/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/uz/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/uz/mate-stickynotes-applet/index.docbook share/help/uz/mate-stickynotes-applet/legal.xml share/help/uz/mate-trashapplet/figures/trash-applet.png share/help/uz/mate-trashapplet/index.docbook share/help/uz/mate-trashapplet/legal.xml share/help/uz/mateweather/figures/mateweather-details.png share/help/uz/mateweather/figures/mateweather-menu-prefs.png share/help/uz/mateweather/figures/mateweather-prefs-general.png share/help/uz/mateweather/figures/mateweather-prefs-locations.png share/help/uz/mateweather/figures/mateweather_applet.png share/help/uz/mateweather/figures/stock_weather-cloudy.png share/help/uz/mateweather/figures/stock_weather-few-clouds.png share/help/uz/mateweather/figures/stock_weather-fog.png share/help/uz/mateweather/figures/stock_weather-night-clear.png share/help/uz/mateweather/figures/stock_weather-night-few-clouds.png share/help/uz/mateweather/figures/stock_weather-showers.png share/help/uz/mateweather/figures/stock_weather-snow.png share/help/uz/mateweather/figures/stock_weather-storm.png share/help/uz/mateweather/figures/stock_weather-sunny.png share/help/uz/mateweather/index.docbook share/help/uz/mateweather/legal.xml share/help/vi/mate-accessx-status/figures/accessx-status-applet.png share/help/vi/mate-accessx-status/figures/accessx-status-disabled.png share/help/vi/mate-accessx-status/figures/accessx_bounce-keys.png share/help/vi/mate-accessx-status/figures/accessx_mouse-keys.png share/help/vi/mate-accessx-status/figures/accessx_slow-keys.png share/help/vi/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/vi/mate-accessx-status/figures/accessx_sticky-keys.png share/help/vi/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/vi/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/vi/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/vi/mate-accessx-status/index.docbook share/help/vi/mate-accessx-status/legal.xml %%BATTERY%%share/help/vi/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/vi/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/vi/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/vi/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/vi/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/vi/mate-battstat/index.docbook %%BATTERY%%share/help/vi/mate-battstat/legal.xml share/help/vi/mate-char-palette/figures/charpalette_applet.png share/help/vi/mate-char-palette/figures/charpick-preferences.png share/help/vi/mate-char-palette/figures/charpick_characters.png share/help/vi/mate-char-palette/index.docbook share/help/vi/mate-char-palette/legal.xml share/help/vi/mate-drivemount/figures/drivemount-applet_eject.png share/help/vi/mate-drivemount/figures/drivemount-applet_example.png share/help/vi/mate-drivemount/figures/drivemount-applet_mount.png share/help/vi/mate-drivemount/figures/drivemount-applet_open.png share/help/vi/mate-drivemount/figures/drivemount-applet_status.png share/help/vi/mate-drivemount/index.docbook share/help/vi/mate-drivemount/legal.xml share/help/vi/mate-geyes/figures/geyes_applet.png share/help/vi/mate-geyes/index.docbook share/help/vi/mate-geyes/legal.xml share/help/vi/mate-multiload/figures/multiload-preferences.png share/help/vi/mate-multiload/figures/system-monitor-applet_window.png share/help/vi/mate-multiload/index.docbook share/help/vi/mate-multiload/legal.xml share/help/vi/mate-netspeed-applet/figures/details.png share/help/vi/mate-netspeed-applet/figures/eth_sum_48.png share/help/vi/mate-netspeed-applet/figures/ethernet.png share/help/vi/mate-netspeed-applet/figures/loopback.png share/help/vi/mate-netspeed-applet/figures/netspeed_applet.png share/help/vi/mate-netspeed-applet/figures/plip.png share/help/vi/mate-netspeed-applet/figures/ppp.png share/help/vi/mate-netspeed-applet/figures/settings.png share/help/vi/mate-netspeed-applet/figures/wavelan.png share/help/vi/mate-netspeed-applet/index.docbook share/help/vi/mate-netspeed-applet/legal.xml share/help/vi/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/vi/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/vi/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/vi/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/vi/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/vi/mate-stickynotes-applet/index.docbook share/help/vi/mate-stickynotes-applet/legal.xml share/help/vi/mate-trashapplet/figures/trash-applet.png share/help/vi/mate-trashapplet/index.docbook share/help/vi/mate-trashapplet/legal.xml share/help/vi/mateweather/figures/mateweather-details.png share/help/vi/mateweather/figures/mateweather-menu-prefs.png share/help/vi/mateweather/figures/mateweather-prefs-general.png share/help/vi/mateweather/figures/mateweather-prefs-locations.png share/help/vi/mateweather/figures/mateweather_applet.png share/help/vi/mateweather/figures/stock_weather-cloudy.png share/help/vi/mateweather/figures/stock_weather-few-clouds.png share/help/vi/mateweather/figures/stock_weather-fog.png share/help/vi/mateweather/figures/stock_weather-night-clear.png share/help/vi/mateweather/figures/stock_weather-night-few-clouds.png share/help/vi/mateweather/figures/stock_weather-showers.png share/help/vi/mateweather/figures/stock_weather-snow.png share/help/vi/mateweather/figures/stock_weather-storm.png share/help/vi/mateweather/figures/stock_weather-sunny.png share/help/vi/mateweather/index.docbook share/help/vi/mateweather/legal.xml share/help/wa/mate-accessx-status/figures/accessx-status-applet.png share/help/wa/mate-accessx-status/figures/accessx-status-disabled.png share/help/wa/mate-accessx-status/figures/accessx_bounce-keys.png share/help/wa/mate-accessx-status/figures/accessx_mouse-keys.png share/help/wa/mate-accessx-status/figures/accessx_slow-keys.png share/help/wa/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/wa/mate-accessx-status/figures/accessx_sticky-keys.png share/help/wa/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/wa/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/wa/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/wa/mate-accessx-status/index.docbook share/help/wa/mate-accessx-status/legal.xml %%BATTERY%%share/help/wa/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/wa/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/wa/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/wa/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/wa/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/wa/mate-battstat/index.docbook %%BATTERY%%share/help/wa/mate-battstat/legal.xml share/help/wa/mate-char-palette/figures/charpalette_applet.png share/help/wa/mate-char-palette/figures/charpick-preferences.png share/help/wa/mate-char-palette/figures/charpick_characters.png share/help/wa/mate-char-palette/index.docbook share/help/wa/mate-char-palette/legal.xml share/help/wa/mate-drivemount/figures/drivemount-applet_eject.png share/help/wa/mate-drivemount/figures/drivemount-applet_example.png share/help/wa/mate-drivemount/figures/drivemount-applet_mount.png share/help/wa/mate-drivemount/figures/drivemount-applet_open.png share/help/wa/mate-drivemount/figures/drivemount-applet_status.png share/help/wa/mate-drivemount/index.docbook share/help/wa/mate-drivemount/legal.xml share/help/wa/mate-geyes/figures/geyes_applet.png share/help/wa/mate-geyes/index.docbook share/help/wa/mate-geyes/legal.xml share/help/wa/mate-multiload/figures/multiload-preferences.png share/help/wa/mate-multiload/figures/system-monitor-applet_window.png share/help/wa/mate-multiload/index.docbook share/help/wa/mate-multiload/legal.xml share/help/wa/mate-netspeed-applet/figures/details.png share/help/wa/mate-netspeed-applet/figures/eth_sum_48.png share/help/wa/mate-netspeed-applet/figures/ethernet.png share/help/wa/mate-netspeed-applet/figures/loopback.png share/help/wa/mate-netspeed-applet/figures/netspeed_applet.png share/help/wa/mate-netspeed-applet/figures/plip.png share/help/wa/mate-netspeed-applet/figures/ppp.png share/help/wa/mate-netspeed-applet/figures/settings.png share/help/wa/mate-netspeed-applet/figures/wavelan.png share/help/wa/mate-netspeed-applet/index.docbook share/help/wa/mate-netspeed-applet/legal.xml share/help/wa/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/wa/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/wa/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/wa/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/wa/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/wa/mate-stickynotes-applet/index.docbook share/help/wa/mate-stickynotes-applet/legal.xml share/help/wa/mate-trashapplet/figures/trash-applet.png share/help/wa/mate-trashapplet/index.docbook share/help/wa/mate-trashapplet/legal.xml share/help/wa/mateweather/figures/mateweather-details.png share/help/wa/mateweather/figures/mateweather-menu-prefs.png share/help/wa/mateweather/figures/mateweather-prefs-general.png share/help/wa/mateweather/figures/mateweather-prefs-locations.png share/help/wa/mateweather/figures/mateweather_applet.png share/help/wa/mateweather/figures/stock_weather-cloudy.png share/help/wa/mateweather/figures/stock_weather-few-clouds.png share/help/wa/mateweather/figures/stock_weather-fog.png share/help/wa/mateweather/figures/stock_weather-night-clear.png share/help/wa/mateweather/figures/stock_weather-night-few-clouds.png share/help/wa/mateweather/figures/stock_weather-showers.png share/help/wa/mateweather/figures/stock_weather-snow.png share/help/wa/mateweather/figures/stock_weather-storm.png share/help/wa/mateweather/figures/stock_weather-sunny.png share/help/wa/mateweather/index.docbook share/help/wa/mateweather/legal.xml share/help/xh/mate-accessx-status/figures/accessx-status-applet.png share/help/xh/mate-accessx-status/figures/accessx-status-disabled.png share/help/xh/mate-accessx-status/figures/accessx_bounce-keys.png share/help/xh/mate-accessx-status/figures/accessx_mouse-keys.png share/help/xh/mate-accessx-status/figures/accessx_slow-keys.png share/help/xh/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/xh/mate-accessx-status/figures/accessx_sticky-keys.png share/help/xh/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/xh/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/xh/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/xh/mate-accessx-status/index.docbook share/help/xh/mate-accessx-status/legal.xml %%BATTERY%%share/help/xh/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/xh/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/xh/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/xh/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/xh/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/xh/mate-battstat/index.docbook %%BATTERY%%share/help/xh/mate-battstat/legal.xml share/help/xh/mate-char-palette/figures/charpalette_applet.png share/help/xh/mate-char-palette/figures/charpick-preferences.png share/help/xh/mate-char-palette/figures/charpick_characters.png share/help/xh/mate-char-palette/index.docbook share/help/xh/mate-char-palette/legal.xml share/help/xh/mate-drivemount/figures/drivemount-applet_eject.png share/help/xh/mate-drivemount/figures/drivemount-applet_example.png share/help/xh/mate-drivemount/figures/drivemount-applet_mount.png share/help/xh/mate-drivemount/figures/drivemount-applet_open.png share/help/xh/mate-drivemount/figures/drivemount-applet_status.png share/help/xh/mate-drivemount/index.docbook share/help/xh/mate-drivemount/legal.xml share/help/xh/mate-geyes/figures/geyes_applet.png share/help/xh/mate-geyes/index.docbook share/help/xh/mate-geyes/legal.xml share/help/xh/mate-multiload/figures/multiload-preferences.png share/help/xh/mate-multiload/figures/system-monitor-applet_window.png share/help/xh/mate-multiload/index.docbook share/help/xh/mate-multiload/legal.xml share/help/xh/mate-netspeed-applet/figures/details.png share/help/xh/mate-netspeed-applet/figures/eth_sum_48.png share/help/xh/mate-netspeed-applet/figures/ethernet.png share/help/xh/mate-netspeed-applet/figures/loopback.png share/help/xh/mate-netspeed-applet/figures/netspeed_applet.png share/help/xh/mate-netspeed-applet/figures/plip.png share/help/xh/mate-netspeed-applet/figures/ppp.png share/help/xh/mate-netspeed-applet/figures/settings.png share/help/xh/mate-netspeed-applet/figures/wavelan.png share/help/xh/mate-netspeed-applet/index.docbook share/help/xh/mate-netspeed-applet/legal.xml share/help/xh/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/xh/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/xh/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/xh/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/xh/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/xh/mate-stickynotes-applet/index.docbook share/help/xh/mate-stickynotes-applet/legal.xml share/help/xh/mate-trashapplet/figures/trash-applet.png share/help/xh/mate-trashapplet/index.docbook share/help/xh/mate-trashapplet/legal.xml share/help/xh/mateweather/figures/mateweather-details.png share/help/xh/mateweather/figures/mateweather-menu-prefs.png share/help/xh/mateweather/figures/mateweather-prefs-general.png share/help/xh/mateweather/figures/mateweather-prefs-locations.png share/help/xh/mateweather/figures/mateweather_applet.png share/help/xh/mateweather/figures/stock_weather-cloudy.png share/help/xh/mateweather/figures/stock_weather-few-clouds.png share/help/xh/mateweather/figures/stock_weather-fog.png share/help/xh/mateweather/figures/stock_weather-night-clear.png share/help/xh/mateweather/figures/stock_weather-night-few-clouds.png share/help/xh/mateweather/figures/stock_weather-showers.png share/help/xh/mateweather/figures/stock_weather-snow.png share/help/xh/mateweather/figures/stock_weather-storm.png share/help/xh/mateweather/figures/stock_weather-sunny.png share/help/xh/mateweather/index.docbook share/help/xh/mateweather/legal.xml share/help/yo/mate-accessx-status/figures/accessx-status-applet.png share/help/yo/mate-accessx-status/figures/accessx-status-disabled.png share/help/yo/mate-accessx-status/figures/accessx_bounce-keys.png share/help/yo/mate-accessx-status/figures/accessx_mouse-keys.png share/help/yo/mate-accessx-status/figures/accessx_slow-keys.png share/help/yo/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/yo/mate-accessx-status/figures/accessx_sticky-keys.png share/help/yo/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/yo/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/yo/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/yo/mate-accessx-status/index.docbook share/help/yo/mate-accessx-status/legal.xml %%BATTERY%%share/help/yo/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/yo/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/yo/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/yo/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/yo/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/yo/mate-battstat/index.docbook %%BATTERY%%share/help/yo/mate-battstat/legal.xml share/help/yo/mate-char-palette/figures/charpalette_applet.png share/help/yo/mate-char-palette/figures/charpick-preferences.png share/help/yo/mate-char-palette/figures/charpick_characters.png share/help/yo/mate-char-palette/index.docbook share/help/yo/mate-char-palette/legal.xml share/help/yo/mate-drivemount/figures/drivemount-applet_eject.png share/help/yo/mate-drivemount/figures/drivemount-applet_example.png share/help/yo/mate-drivemount/figures/drivemount-applet_mount.png share/help/yo/mate-drivemount/figures/drivemount-applet_open.png share/help/yo/mate-drivemount/figures/drivemount-applet_status.png share/help/yo/mate-drivemount/index.docbook share/help/yo/mate-drivemount/legal.xml share/help/yo/mate-geyes/figures/geyes_applet.png share/help/yo/mate-geyes/index.docbook share/help/yo/mate-geyes/legal.xml share/help/yo/mate-multiload/figures/multiload-preferences.png share/help/yo/mate-multiload/figures/system-monitor-applet_window.png share/help/yo/mate-multiload/index.docbook share/help/yo/mate-multiload/legal.xml share/help/yo/mate-netspeed-applet/figures/details.png share/help/yo/mate-netspeed-applet/figures/eth_sum_48.png share/help/yo/mate-netspeed-applet/figures/ethernet.png share/help/yo/mate-netspeed-applet/figures/loopback.png share/help/yo/mate-netspeed-applet/figures/netspeed_applet.png share/help/yo/mate-netspeed-applet/figures/plip.png share/help/yo/mate-netspeed-applet/figures/ppp.png share/help/yo/mate-netspeed-applet/figures/settings.png share/help/yo/mate-netspeed-applet/figures/wavelan.png share/help/yo/mate-netspeed-applet/index.docbook share/help/yo/mate-netspeed-applet/legal.xml share/help/yo/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/yo/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/yo/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/yo/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/yo/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/yo/mate-stickynotes-applet/index.docbook share/help/yo/mate-stickynotes-applet/legal.xml share/help/yo/mate-trashapplet/figures/trash-applet.png share/help/yo/mate-trashapplet/index.docbook share/help/yo/mate-trashapplet/legal.xml share/help/yo/mateweather/figures/mateweather-details.png share/help/yo/mateweather/figures/mateweather-menu-prefs.png share/help/yo/mateweather/figures/mateweather-prefs-general.png share/help/yo/mateweather/figures/mateweather-prefs-locations.png share/help/yo/mateweather/figures/mateweather_applet.png share/help/yo/mateweather/figures/stock_weather-cloudy.png share/help/yo/mateweather/figures/stock_weather-few-clouds.png share/help/yo/mateweather/figures/stock_weather-fog.png share/help/yo/mateweather/figures/stock_weather-night-clear.png share/help/yo/mateweather/figures/stock_weather-night-few-clouds.png share/help/yo/mateweather/figures/stock_weather-showers.png share/help/yo/mateweather/figures/stock_weather-snow.png share/help/yo/mateweather/figures/stock_weather-storm.png share/help/yo/mateweather/figures/stock_weather-sunny.png share/help/yo/mateweather/index.docbook share/help/yo/mateweather/legal.xml share/help/zh-Hans/mate-accessx-status/figures/accessx-status-applet.png share/help/zh-Hans/mate-accessx-status/figures/accessx-status-disabled.png share/help/zh-Hans/mate-accessx-status/figures/accessx_bounce-keys.png share/help/zh-Hans/mate-accessx-status/figures/accessx_mouse-keys.png share/help/zh-Hans/mate-accessx-status/figures/accessx_slow-keys.png share/help/zh-Hans/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/zh-Hans/mate-accessx-status/figures/accessx_sticky-keys.png share/help/zh-Hans/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/zh-Hans/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/zh-Hans/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/zh-Hans/mate-accessx-status/index.docbook share/help/zh-Hans/mate-accessx-status/legal.xml +%%BATTERY%%share/help/zh-Hans/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/zh-Hans/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/zh-Hans/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/zh-Hans/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/zh-Hans/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/zh-Hans/mate-battstat/index.docbook +%%BATTERY%%share/help/zh-Hans/mate-battstat/legal.xml share/help/zh-Hans/mate-char-palette/figures/charpalette_applet.png share/help/zh-Hans/mate-char-palette/figures/charpick-preferences.png share/help/zh-Hans/mate-char-palette/figures/charpick_characters.png share/help/zh-Hans/mate-char-palette/index.docbook share/help/zh-Hans/mate-char-palette/legal.xml share/help/zh-Hans/mate-drivemount/figures/drivemount-applet_eject.png share/help/zh-Hans/mate-drivemount/figures/drivemount-applet_example.png share/help/zh-Hans/mate-drivemount/figures/drivemount-applet_mount.png share/help/zh-Hans/mate-drivemount/figures/drivemount-applet_open.png share/help/zh-Hans/mate-drivemount/figures/drivemount-applet_status.png share/help/zh-Hans/mate-drivemount/index.docbook share/help/zh-Hans/mate-drivemount/legal.xml share/help/zh-Hans/mate-geyes/figures/geyes_applet.png share/help/zh-Hans/mate-geyes/index.docbook share/help/zh-Hans/mate-geyes/legal.xml +share/help/zh-Hans/mate-multiload/figures/multiload-preferences.png +share/help/zh-Hans/mate-multiload/figures/system-monitor-applet_window.png +share/help/zh-Hans/mate-multiload/index.docbook +share/help/zh-Hans/mate-multiload/legal.xml +share/help/zh-Hans/mate-netspeed-applet/figures/details.png +share/help/zh-Hans/mate-netspeed-applet/figures/eth_sum_48.png +share/help/zh-Hans/mate-netspeed-applet/figures/ethernet.png +share/help/zh-Hans/mate-netspeed-applet/figures/loopback.png +share/help/zh-Hans/mate-netspeed-applet/figures/netspeed_applet.png +share/help/zh-Hans/mate-netspeed-applet/figures/plip.png +share/help/zh-Hans/mate-netspeed-applet/figures/ppp.png +share/help/zh-Hans/mate-netspeed-applet/figures/settings.png +share/help/zh-Hans/mate-netspeed-applet/figures/wavelan.png +share/help/zh-Hans/mate-netspeed-applet/index.docbook +share/help/zh-Hans/mate-netspeed-applet/legal.xml +share/help/zh-Hans/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png +share/help/zh-Hans/mate-stickynotes-applet/figures/stickynote-right-menu-new.png +share/help/zh-Hans/mate-stickynotes-applet/figures/stickynotes-note-prefs.png +share/help/zh-Hans/mate-stickynotes-applet/figures/stickynotes-prefs.png +share/help/zh-Hans/mate-stickynotes-applet/figures/stickynotes_applet.png +share/help/zh-Hans/mate-stickynotes-applet/index.docbook +share/help/zh-Hans/mate-stickynotes-applet/legal.xml share/help/zh-Hans/mate-trashapplet/figures/trash-applet.png share/help/zh-Hans/mate-trashapplet/index.docbook share/help/zh-Hans/mate-trashapplet/legal.xml +share/help/zh-Hans/mateweather/figures/mateweather-details.png +share/help/zh-Hans/mateweather/figures/mateweather-menu-prefs.png +share/help/zh-Hans/mateweather/figures/mateweather-prefs-general.png +share/help/zh-Hans/mateweather/figures/mateweather-prefs-locations.png +share/help/zh-Hans/mateweather/figures/mateweather_applet.png +share/help/zh-Hans/mateweather/figures/stock_weather-cloudy.png +share/help/zh-Hans/mateweather/figures/stock_weather-few-clouds.png +share/help/zh-Hans/mateweather/figures/stock_weather-fog.png +share/help/zh-Hans/mateweather/figures/stock_weather-night-clear.png +share/help/zh-Hans/mateweather/figures/stock_weather-night-few-clouds.png +share/help/zh-Hans/mateweather/figures/stock_weather-showers.png +share/help/zh-Hans/mateweather/figures/stock_weather-snow.png +share/help/zh-Hans/mateweather/figures/stock_weather-storm.png +share/help/zh-Hans/mateweather/figures/stock_weather-sunny.png +share/help/zh-Hans/mateweather/index.docbook +share/help/zh-Hans/mateweather/legal.xml share/help/zh_CN/mate-accessx-status/figures/accessx-status-applet.png share/help/zh_CN/mate-accessx-status/figures/accessx-status-disabled.png share/help/zh_CN/mate-accessx-status/figures/accessx_bounce-keys.png share/help/zh_CN/mate-accessx-status/figures/accessx_mouse-keys.png share/help/zh_CN/mate-accessx-status/figures/accessx_slow-keys.png share/help/zh_CN/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/zh_CN/mate-accessx-status/figures/accessx_sticky-keys.png share/help/zh_CN/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/zh_CN/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/zh_CN/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/zh_CN/mate-accessx-status/index.docbook share/help/zh_CN/mate-accessx-status/legal.xml %%BATTERY%%share/help/zh_CN/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/zh_CN/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/zh_CN/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/zh_CN/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/zh_CN/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/zh_CN/mate-battstat/index.docbook %%BATTERY%%share/help/zh_CN/mate-battstat/legal.xml share/help/zh_CN/mate-char-palette/figures/charpalette_applet.png share/help/zh_CN/mate-char-palette/figures/charpick-preferences.png share/help/zh_CN/mate-char-palette/figures/charpick_characters.png share/help/zh_CN/mate-char-palette/index.docbook share/help/zh_CN/mate-char-palette/legal.xml share/help/zh_CN/mate-drivemount/figures/drivemount-applet_eject.png share/help/zh_CN/mate-drivemount/figures/drivemount-applet_example.png share/help/zh_CN/mate-drivemount/figures/drivemount-applet_mount.png share/help/zh_CN/mate-drivemount/figures/drivemount-applet_open.png share/help/zh_CN/mate-drivemount/figures/drivemount-applet_status.png share/help/zh_CN/mate-drivemount/index.docbook share/help/zh_CN/mate-drivemount/legal.xml share/help/zh_CN/mate-geyes/figures/geyes_applet.png share/help/zh_CN/mate-geyes/index.docbook share/help/zh_CN/mate-geyes/legal.xml share/help/zh_CN/mate-multiload/figures/multiload-preferences.png share/help/zh_CN/mate-multiload/figures/system-monitor-applet_window.png share/help/zh_CN/mate-multiload/index.docbook share/help/zh_CN/mate-multiload/legal.xml share/help/zh_CN/mate-netspeed-applet/figures/details.png share/help/zh_CN/mate-netspeed-applet/figures/eth_sum_48.png share/help/zh_CN/mate-netspeed-applet/figures/ethernet.png share/help/zh_CN/mate-netspeed-applet/figures/loopback.png share/help/zh_CN/mate-netspeed-applet/figures/netspeed_applet.png share/help/zh_CN/mate-netspeed-applet/figures/plip.png share/help/zh_CN/mate-netspeed-applet/figures/ppp.png share/help/zh_CN/mate-netspeed-applet/figures/settings.png share/help/zh_CN/mate-netspeed-applet/figures/wavelan.png share/help/zh_CN/mate-netspeed-applet/index.docbook share/help/zh_CN/mate-netspeed-applet/legal.xml share/help/zh_CN/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/zh_CN/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/zh_CN/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/zh_CN/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/zh_CN/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/zh_CN/mate-stickynotes-applet/index.docbook share/help/zh_CN/mate-stickynotes-applet/legal.xml share/help/zh_CN/mate-trashapplet/figures/trash-applet.png share/help/zh_CN/mate-trashapplet/index.docbook share/help/zh_CN/mate-trashapplet/legal.xml share/help/zh_CN/mateweather/figures/mateweather-details.png share/help/zh_CN/mateweather/figures/mateweather-menu-prefs.png share/help/zh_CN/mateweather/figures/mateweather-prefs-general.png share/help/zh_CN/mateweather/figures/mateweather-prefs-locations.png share/help/zh_CN/mateweather/figures/mateweather_applet.png share/help/zh_CN/mateweather/figures/stock_weather-cloudy.png share/help/zh_CN/mateweather/figures/stock_weather-few-clouds.png share/help/zh_CN/mateweather/figures/stock_weather-fog.png share/help/zh_CN/mateweather/figures/stock_weather-night-clear.png share/help/zh_CN/mateweather/figures/stock_weather-night-few-clouds.png share/help/zh_CN/mateweather/figures/stock_weather-showers.png share/help/zh_CN/mateweather/figures/stock_weather-snow.png share/help/zh_CN/mateweather/figures/stock_weather-storm.png share/help/zh_CN/mateweather/figures/stock_weather-sunny.png share/help/zh_CN/mateweather/index.docbook share/help/zh_CN/mateweather/legal.xml share/help/zh_HK/mate-accessx-status/figures/accessx-status-applet.png share/help/zh_HK/mate-accessx-status/figures/accessx-status-disabled.png share/help/zh_HK/mate-accessx-status/figures/accessx_bounce-keys.png share/help/zh_HK/mate-accessx-status/figures/accessx_mouse-keys.png share/help/zh_HK/mate-accessx-status/figures/accessx_slow-keys.png share/help/zh_HK/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/zh_HK/mate-accessx-status/figures/accessx_sticky-keys.png share/help/zh_HK/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/zh_HK/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/zh_HK/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/zh_HK/mate-accessx-status/index.docbook share/help/zh_HK/mate-accessx-status/legal.xml %%BATTERY%%share/help/zh_HK/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/zh_HK/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/zh_HK/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/zh_HK/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/zh_HK/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/zh_HK/mate-battstat/index.docbook %%BATTERY%%share/help/zh_HK/mate-battstat/legal.xml share/help/zh_HK/mate-char-palette/figures/charpalette_applet.png share/help/zh_HK/mate-char-palette/figures/charpick-preferences.png share/help/zh_HK/mate-char-palette/figures/charpick_characters.png share/help/zh_HK/mate-char-palette/index.docbook share/help/zh_HK/mate-char-palette/legal.xml share/help/zh_HK/mate-drivemount/figures/drivemount-applet_eject.png share/help/zh_HK/mate-drivemount/figures/drivemount-applet_example.png share/help/zh_HK/mate-drivemount/figures/drivemount-applet_mount.png share/help/zh_HK/mate-drivemount/figures/drivemount-applet_open.png share/help/zh_HK/mate-drivemount/figures/drivemount-applet_status.png share/help/zh_HK/mate-drivemount/index.docbook share/help/zh_HK/mate-drivemount/legal.xml share/help/zh_HK/mate-geyes/figures/geyes_applet.png share/help/zh_HK/mate-geyes/index.docbook share/help/zh_HK/mate-geyes/legal.xml share/help/zh_HK/mate-multiload/figures/multiload-preferences.png share/help/zh_HK/mate-multiload/figures/system-monitor-applet_window.png share/help/zh_HK/mate-multiload/index.docbook share/help/zh_HK/mate-multiload/legal.xml share/help/zh_HK/mate-netspeed-applet/figures/details.png share/help/zh_HK/mate-netspeed-applet/figures/eth_sum_48.png share/help/zh_HK/mate-netspeed-applet/figures/ethernet.png share/help/zh_HK/mate-netspeed-applet/figures/loopback.png share/help/zh_HK/mate-netspeed-applet/figures/netspeed_applet.png share/help/zh_HK/mate-netspeed-applet/figures/plip.png share/help/zh_HK/mate-netspeed-applet/figures/ppp.png share/help/zh_HK/mate-netspeed-applet/figures/settings.png share/help/zh_HK/mate-netspeed-applet/figures/wavelan.png share/help/zh_HK/mate-netspeed-applet/index.docbook share/help/zh_HK/mate-netspeed-applet/legal.xml share/help/zh_HK/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/zh_HK/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/zh_HK/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/zh_HK/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/zh_HK/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/zh_HK/mate-stickynotes-applet/index.docbook share/help/zh_HK/mate-stickynotes-applet/legal.xml share/help/zh_HK/mate-trashapplet/figures/trash-applet.png share/help/zh_HK/mate-trashapplet/index.docbook share/help/zh_HK/mate-trashapplet/legal.xml share/help/zh_HK/mateweather/figures/mateweather-details.png share/help/zh_HK/mateweather/figures/mateweather-menu-prefs.png share/help/zh_HK/mateweather/figures/mateweather-prefs-general.png share/help/zh_HK/mateweather/figures/mateweather-prefs-locations.png share/help/zh_HK/mateweather/figures/mateweather_applet.png share/help/zh_HK/mateweather/figures/stock_weather-cloudy.png share/help/zh_HK/mateweather/figures/stock_weather-few-clouds.png share/help/zh_HK/mateweather/figures/stock_weather-fog.png share/help/zh_HK/mateweather/figures/stock_weather-night-clear.png share/help/zh_HK/mateweather/figures/stock_weather-night-few-clouds.png share/help/zh_HK/mateweather/figures/stock_weather-showers.png share/help/zh_HK/mateweather/figures/stock_weather-snow.png share/help/zh_HK/mateweather/figures/stock_weather-storm.png share/help/zh_HK/mateweather/figures/stock_weather-sunny.png share/help/zh_HK/mateweather/index.docbook share/help/zh_HK/mateweather/legal.xml share/help/zh_TW/mate-accessx-status/figures/accessx-status-applet.png share/help/zh_TW/mate-accessx-status/figures/accessx-status-disabled.png share/help/zh_TW/mate-accessx-status/figures/accessx_bounce-keys.png share/help/zh_TW/mate-accessx-status/figures/accessx_mouse-keys.png share/help/zh_TW/mate-accessx-status/figures/accessx_slow-keys.png share/help/zh_TW/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/zh_TW/mate-accessx-status/figures/accessx_sticky-keys.png share/help/zh_TW/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/zh_TW/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/zh_TW/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/zh_TW/mate-accessx-status/index.docbook share/help/zh_TW/mate-accessx-status/legal.xml %%BATTERY%%share/help/zh_TW/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/zh_TW/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/zh_TW/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/zh_TW/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/zh_TW/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/zh_TW/mate-battstat/index.docbook %%BATTERY%%share/help/zh_TW/mate-battstat/legal.xml share/help/zh_TW/mate-char-palette/figures/charpalette_applet.png share/help/zh_TW/mate-char-palette/figures/charpick-preferences.png share/help/zh_TW/mate-char-palette/figures/charpick_characters.png share/help/zh_TW/mate-char-palette/index.docbook share/help/zh_TW/mate-char-palette/legal.xml share/help/zh_TW/mate-drivemount/figures/drivemount-applet_eject.png share/help/zh_TW/mate-drivemount/figures/drivemount-applet_example.png share/help/zh_TW/mate-drivemount/figures/drivemount-applet_mount.png share/help/zh_TW/mate-drivemount/figures/drivemount-applet_open.png share/help/zh_TW/mate-drivemount/figures/drivemount-applet_status.png share/help/zh_TW/mate-drivemount/index.docbook share/help/zh_TW/mate-drivemount/legal.xml share/help/zh_TW/mate-geyes/figures/geyes_applet.png share/help/zh_TW/mate-geyes/index.docbook share/help/zh_TW/mate-geyes/legal.xml share/help/zh_TW/mate-multiload/figures/multiload-preferences.png share/help/zh_TW/mate-multiload/figures/system-monitor-applet_window.png share/help/zh_TW/mate-multiload/index.docbook share/help/zh_TW/mate-multiload/legal.xml share/help/zh_TW/mate-netspeed-applet/figures/details.png share/help/zh_TW/mate-netspeed-applet/figures/eth_sum_48.png share/help/zh_TW/mate-netspeed-applet/figures/ethernet.png share/help/zh_TW/mate-netspeed-applet/figures/loopback.png share/help/zh_TW/mate-netspeed-applet/figures/netspeed_applet.png share/help/zh_TW/mate-netspeed-applet/figures/plip.png share/help/zh_TW/mate-netspeed-applet/figures/ppp.png share/help/zh_TW/mate-netspeed-applet/figures/settings.png share/help/zh_TW/mate-netspeed-applet/figures/wavelan.png share/help/zh_TW/mate-netspeed-applet/index.docbook share/help/zh_TW/mate-netspeed-applet/legal.xml share/help/zh_TW/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/zh_TW/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/zh_TW/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/zh_TW/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/zh_TW/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/zh_TW/mate-stickynotes-applet/index.docbook share/help/zh_TW/mate-stickynotes-applet/legal.xml share/help/zh_TW/mate-trashapplet/figures/trash-applet.png share/help/zh_TW/mate-trashapplet/index.docbook share/help/zh_TW/mate-trashapplet/legal.xml share/help/zh_TW/mateweather/figures/mateweather-details.png share/help/zh_TW/mateweather/figures/mateweather-menu-prefs.png share/help/zh_TW/mateweather/figures/mateweather-prefs-general.png share/help/zh_TW/mateweather/figures/mateweather-prefs-locations.png share/help/zh_TW/mateweather/figures/mateweather_applet.png share/help/zh_TW/mateweather/figures/stock_weather-cloudy.png share/help/zh_TW/mateweather/figures/stock_weather-few-clouds.png share/help/zh_TW/mateweather/figures/stock_weather-fog.png share/help/zh_TW/mateweather/figures/stock_weather-night-clear.png share/help/zh_TW/mateweather/figures/stock_weather-night-few-clouds.png share/help/zh_TW/mateweather/figures/stock_weather-showers.png share/help/zh_TW/mateweather/figures/stock_weather-snow.png share/help/zh_TW/mateweather/figures/stock_weather-storm.png share/help/zh_TW/mateweather/figures/stock_weather-sunny.png share/help/zh_TW/mateweather/index.docbook share/help/zh_TW/mateweather/legal.xml share/help/zu/mate-accessx-status/figures/accessx-status-applet.png share/help/zu/mate-accessx-status/figures/accessx-status-disabled.png share/help/zu/mate-accessx-status/figures/accessx_bounce-keys.png share/help/zu/mate-accessx-status/figures/accessx_mouse-keys.png share/help/zu/mate-accessx-status/figures/accessx_slow-keys.png share/help/zu/mate-accessx-status/figures/accessx_sticky-altGr-key.png share/help/zu/mate-accessx-status/figures/accessx_sticky-keys.png share/help/zu/mate-accessx-status/figures/accessx_sticky-meta-key.png share/help/zu/mate-accessx-status/figures/accessx_sticky-shift-key.png share/help/zu/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/zu/mate-accessx-status/index.docbook share/help/zu/mate-accessx-status/legal.xml %%BATTERY%%share/help/zu/mate-battstat/figures/battstat-applet-expanded.png %%BATTERY%%share/help/zu/mate-battstat/figures/battstat-applet.png %%BATTERY%%share/help/zu/mate-battstat/figures/battstat-credits-hal.png %%BATTERY%%share/help/zu/mate-battstat/figures/battstat-preferences.png %%BATTERY%%share/help/zu/mate-battstat/figures/context-menu.png %%BATTERY%%share/help/zu/mate-battstat/index.docbook %%BATTERY%%share/help/zu/mate-battstat/legal.xml share/help/zu/mate-char-palette/figures/charpalette_applet.png share/help/zu/mate-char-palette/figures/charpick-preferences.png share/help/zu/mate-char-palette/figures/charpick_characters.png share/help/zu/mate-char-palette/index.docbook share/help/zu/mate-char-palette/legal.xml share/help/zu/mate-drivemount/figures/drivemount-applet_eject.png share/help/zu/mate-drivemount/figures/drivemount-applet_example.png share/help/zu/mate-drivemount/figures/drivemount-applet_mount.png share/help/zu/mate-drivemount/figures/drivemount-applet_open.png share/help/zu/mate-drivemount/figures/drivemount-applet_status.png share/help/zu/mate-drivemount/index.docbook share/help/zu/mate-drivemount/legal.xml share/help/zu/mate-geyes/figures/geyes_applet.png share/help/zu/mate-geyes/index.docbook share/help/zu/mate-geyes/legal.xml share/help/zu/mate-multiload/figures/multiload-preferences.png share/help/zu/mate-multiload/figures/system-monitor-applet_window.png share/help/zu/mate-multiload/index.docbook share/help/zu/mate-multiload/legal.xml share/help/zu/mate-netspeed-applet/figures/details.png share/help/zu/mate-netspeed-applet/figures/eth_sum_48.png share/help/zu/mate-netspeed-applet/figures/ethernet.png share/help/zu/mate-netspeed-applet/figures/loopback.png share/help/zu/mate-netspeed-applet/figures/netspeed_applet.png share/help/zu/mate-netspeed-applet/figures/plip.png share/help/zu/mate-netspeed-applet/figures/ppp.png share/help/zu/mate-netspeed-applet/figures/settings.png share/help/zu/mate-netspeed-applet/figures/wavelan.png share/help/zu/mate-netspeed-applet/index.docbook share/help/zu/mate-netspeed-applet/legal.xml share/help/zu/mate-stickynotes-applet/figures/stickynote-right-menu-lock.png share/help/zu/mate-stickynotes-applet/figures/stickynote-right-menu-new.png share/help/zu/mate-stickynotes-applet/figures/stickynotes-note-prefs.png share/help/zu/mate-stickynotes-applet/figures/stickynotes-prefs.png share/help/zu/mate-stickynotes-applet/figures/stickynotes_applet.png share/help/zu/mate-stickynotes-applet/index.docbook share/help/zu/mate-stickynotes-applet/legal.xml share/help/zu/mate-trashapplet/figures/trash-applet.png share/help/zu/mate-trashapplet/index.docbook share/help/zu/mate-trashapplet/legal.xml share/help/zu/mateweather/figures/mateweather-details.png share/help/zu/mateweather/figures/mateweather-menu-prefs.png share/help/zu/mateweather/figures/mateweather-prefs-general.png share/help/zu/mateweather/figures/mateweather-prefs-locations.png share/help/zu/mateweather/figures/mateweather_applet.png share/help/zu/mateweather/figures/stock_weather-cloudy.png share/help/zu/mateweather/figures/stock_weather-few-clouds.png share/help/zu/mateweather/figures/stock_weather-fog.png share/help/zu/mateweather/figures/stock_weather-night-clear.png share/help/zu/mateweather/figures/stock_weather-night-few-clouds.png share/help/zu/mateweather/figures/stock_weather-showers.png share/help/zu/mateweather/figures/stock_weather-snow.png share/help/zu/mateweather/figures/stock_weather-storm.png share/help/zu/mateweather/figures/stock_weather-sunny.png share/help/zu/mateweather/index.docbook share/help/zu/mateweather/legal.xml share/icons/hicolor/16x16/apps/mate-ax-bouncekeys.png share/icons/hicolor/16x16/apps/mate-ax-key-base.png share/icons/hicolor/16x16/apps/mate-ax-key-inverse.png share/icons/hicolor/16x16/apps/mate-ax-key-no.png share/icons/hicolor/16x16/apps/mate-ax-key-none.png share/icons/hicolor/16x16/apps/mate-ax-key-yes.png share/icons/hicolor/16x16/apps/mate-ax-slowkeys-no.png share/icons/hicolor/16x16/apps/mate-ax-slowkeys-pending.png share/icons/hicolor/16x16/apps/mate-ax-slowkeys-yes.png share/icons/hicolor/16x16/apps/mate-ax-slowkeys.png share/icons/hicolor/16x16/apps/mate-eyes-applet.png share/icons/hicolor/16x16/apps/mate-mousekeys-base.png share/icons/hicolor/16x16/apps/mate-mousekeys-default-left.png share/icons/hicolor/16x16/apps/mate-mousekeys-default-middle.png share/icons/hicolor/16x16/apps/mate-mousekeys-default-right.png share/icons/hicolor/16x16/apps/mate-mousekeys-pressed-left.png share/icons/hicolor/16x16/apps/mate-mousekeys-pressed-middle.png share/icons/hicolor/16x16/apps/mate-mousekeys-pressed-right.png share/icons/hicolor/16x16/apps/mate-netspeed-applet.png share/icons/hicolor/16x16/apps/mate-sticky-alt-latched.png share/icons/hicolor/16x16/apps/mate-sticky-alt-locked.png share/icons/hicolor/16x16/apps/mate-sticky-alt-none.png share/icons/hicolor/16x16/apps/mate-sticky-ctrl-latched.png share/icons/hicolor/16x16/apps/mate-sticky-ctrl-locked.png share/icons/hicolor/16x16/apps/mate-sticky-ctrl-none.png share/icons/hicolor/16x16/apps/mate-sticky-hyper-latched.png share/icons/hicolor/16x16/apps/mate-sticky-hyper-locked.png share/icons/hicolor/16x16/apps/mate-sticky-hyper-none.png share/icons/hicolor/16x16/apps/mate-sticky-meta-latched.png share/icons/hicolor/16x16/apps/mate-sticky-meta-locked.png share/icons/hicolor/16x16/apps/mate-sticky-meta-none.png share/icons/hicolor/16x16/apps/mate-sticky-notes-applet.png share/icons/hicolor/16x16/apps/mate-sticky-shift-latched.png share/icons/hicolor/16x16/apps/mate-sticky-shift-locked.png share/icons/hicolor/16x16/apps/mate-sticky-shift-none.png share/icons/hicolor/16x16/apps/mate-sticky-super-latched.png share/icons/hicolor/16x16/apps/mate-sticky-super-locked.png share/icons/hicolor/16x16/apps/mate-sticky-super-none.png share/icons/hicolor/16x16/devices/mate-netspeed-plip.png share/icons/hicolor/22x22/apps/mate-eyes-applet.png share/icons/hicolor/22x22/apps/mate-netspeed-applet.png share/icons/hicolor/22x22/apps/mate-sticky-notes-applet.png share/icons/hicolor/22x22/devices/mate-netspeed-plip.png share/icons/hicolor/24x24/apps/mate-ax-bouncekeys.png share/icons/hicolor/24x24/apps/mate-ax-key-base.png share/icons/hicolor/24x24/apps/mate-ax-key-inverse.png share/icons/hicolor/24x24/apps/mate-ax-key-no.png share/icons/hicolor/24x24/apps/mate-ax-key-none.png share/icons/hicolor/24x24/apps/mate-ax-key-yes.png share/icons/hicolor/24x24/apps/mate-ax-slowkeys-no.png share/icons/hicolor/24x24/apps/mate-ax-slowkeys-pending.png share/icons/hicolor/24x24/apps/mate-ax-slowkeys-yes.png share/icons/hicolor/24x24/apps/mate-ax-slowkeys.png share/icons/hicolor/24x24/apps/mate-eyes-applet.png share/icons/hicolor/24x24/apps/mate-mousekeys-base.png share/icons/hicolor/24x24/apps/mate-mousekeys-default-left.png share/icons/hicolor/24x24/apps/mate-mousekeys-default-middle.png share/icons/hicolor/24x24/apps/mate-mousekeys-default-right.png share/icons/hicolor/24x24/apps/mate-mousekeys-pressed-left.png share/icons/hicolor/24x24/apps/mate-mousekeys-pressed-middle.png share/icons/hicolor/24x24/apps/mate-mousekeys-pressed-right.png share/icons/hicolor/24x24/apps/mate-netspeed-applet.png share/icons/hicolor/24x24/apps/mate-sticky-alt-latched.png share/icons/hicolor/24x24/apps/mate-sticky-alt-locked.png share/icons/hicolor/24x24/apps/mate-sticky-alt-none.png share/icons/hicolor/24x24/apps/mate-sticky-ctrl-latched.png share/icons/hicolor/24x24/apps/mate-sticky-ctrl-locked.png share/icons/hicolor/24x24/apps/mate-sticky-ctrl-none.png share/icons/hicolor/24x24/apps/mate-sticky-hyper-latched.png share/icons/hicolor/24x24/apps/mate-sticky-hyper-locked.png share/icons/hicolor/24x24/apps/mate-sticky-hyper-none.png share/icons/hicolor/24x24/apps/mate-sticky-meta-latched.png share/icons/hicolor/24x24/apps/mate-sticky-meta-locked.png share/icons/hicolor/24x24/apps/mate-sticky-meta-none.png share/icons/hicolor/24x24/apps/mate-sticky-notes-applet.png share/icons/hicolor/24x24/apps/mate-sticky-shift-latched.png share/icons/hicolor/24x24/apps/mate-sticky-shift-locked.png share/icons/hicolor/24x24/apps/mate-sticky-shift-none.png share/icons/hicolor/24x24/apps/mate-sticky-super-latched.png share/icons/hicolor/24x24/apps/mate-sticky-super-locked.png share/icons/hicolor/24x24/apps/mate-sticky-super-none.png share/icons/hicolor/24x24/devices/mate-netspeed-plip.png share/icons/hicolor/24x24/status/mate-netspeed-wireless-100.png share/icons/hicolor/24x24/status/mate-netspeed-wireless-25.png share/icons/hicolor/24x24/status/mate-netspeed-wireless-50.png share/icons/hicolor/24x24/status/mate-netspeed-wireless-75.png share/icons/hicolor/256x256/apps/mate-eyes-applet.png share/icons/hicolor/32x32/apps/mate-ax-bouncekeys.png share/icons/hicolor/32x32/apps/mate-ax-key-base.png share/icons/hicolor/32x32/apps/mate-ax-key-inverse.png share/icons/hicolor/32x32/apps/mate-ax-key-no.png share/icons/hicolor/32x32/apps/mate-ax-key-none.png share/icons/hicolor/32x32/apps/mate-ax-key-yes.png share/icons/hicolor/32x32/apps/mate-ax-slowkeys-no.png share/icons/hicolor/32x32/apps/mate-ax-slowkeys-pending.png share/icons/hicolor/32x32/apps/mate-ax-slowkeys-yes.png share/icons/hicolor/32x32/apps/mate-ax-slowkeys.png share/icons/hicolor/32x32/apps/mate-eyes-applet.png share/icons/hicolor/32x32/apps/mate-mousekeys-base.png share/icons/hicolor/32x32/apps/mate-mousekeys-default-left.png share/icons/hicolor/32x32/apps/mate-mousekeys-default-middle.png share/icons/hicolor/32x32/apps/mate-mousekeys-default-right.png share/icons/hicolor/32x32/apps/mate-mousekeys-pressed-left.png share/icons/hicolor/32x32/apps/mate-mousekeys-pressed-middle.png share/icons/hicolor/32x32/apps/mate-mousekeys-pressed-right.png share/icons/hicolor/32x32/apps/mate-netspeed-applet.png share/icons/hicolor/32x32/apps/mate-sticky-alt-latched.png share/icons/hicolor/32x32/apps/mate-sticky-alt-locked.png share/icons/hicolor/32x32/apps/mate-sticky-alt-none.png share/icons/hicolor/32x32/apps/mate-sticky-ctrl-latched.png share/icons/hicolor/32x32/apps/mate-sticky-ctrl-locked.png share/icons/hicolor/32x32/apps/mate-sticky-ctrl-none.png share/icons/hicolor/32x32/apps/mate-sticky-hyper-latched.png share/icons/hicolor/32x32/apps/mate-sticky-hyper-locked.png share/icons/hicolor/32x32/apps/mate-sticky-hyper-none.png share/icons/hicolor/32x32/apps/mate-sticky-meta-latched.png share/icons/hicolor/32x32/apps/mate-sticky-meta-locked.png share/icons/hicolor/32x32/apps/mate-sticky-meta-none.png share/icons/hicolor/32x32/apps/mate-sticky-notes-applet.png share/icons/hicolor/32x32/apps/mate-sticky-shift-latched.png share/icons/hicolor/32x32/apps/mate-sticky-shift-locked.png share/icons/hicolor/32x32/apps/mate-sticky-shift-none.png share/icons/hicolor/32x32/apps/mate-sticky-super-latched.png share/icons/hicolor/32x32/apps/mate-sticky-super-locked.png share/icons/hicolor/32x32/apps/mate-sticky-super-none.png share/icons/hicolor/32x32/devices/mate-netspeed-plip.png share/icons/hicolor/48x48/apps/mate-ax-bouncekeys.png share/icons/hicolor/48x48/apps/mate-ax-key-base.png share/icons/hicolor/48x48/apps/mate-ax-key-inverse.png share/icons/hicolor/48x48/apps/mate-ax-key-no.png share/icons/hicolor/48x48/apps/mate-ax-key-none.png share/icons/hicolor/48x48/apps/mate-ax-key-yes.png share/icons/hicolor/48x48/apps/mate-ax-slowkeys-no.png share/icons/hicolor/48x48/apps/mate-ax-slowkeys-pending.png share/icons/hicolor/48x48/apps/mate-ax-slowkeys-yes.png share/icons/hicolor/48x48/apps/mate-ax-slowkeys.png share/icons/hicolor/48x48/apps/mate-mousekeys-base.png share/icons/hicolor/48x48/apps/mate-mousekeys-default-left.png share/icons/hicolor/48x48/apps/mate-mousekeys-default-middle.png share/icons/hicolor/48x48/apps/mate-mousekeys-default-right.png share/icons/hicolor/48x48/apps/mate-mousekeys-pressed-left.png share/icons/hicolor/48x48/apps/mate-mousekeys-pressed-middle.png share/icons/hicolor/48x48/apps/mate-mousekeys-pressed-right.png share/icons/hicolor/48x48/apps/mate-netspeed-applet.png share/icons/hicolor/48x48/apps/mate-sticky-alt-latched.png share/icons/hicolor/48x48/apps/mate-sticky-alt-locked.png share/icons/hicolor/48x48/apps/mate-sticky-alt-none.png share/icons/hicolor/48x48/apps/mate-sticky-ctrl-latched.png share/icons/hicolor/48x48/apps/mate-sticky-ctrl-locked.png share/icons/hicolor/48x48/apps/mate-sticky-ctrl-none.png share/icons/hicolor/48x48/apps/mate-sticky-hyper-latched.png share/icons/hicolor/48x48/apps/mate-sticky-hyper-locked.png share/icons/hicolor/48x48/apps/mate-sticky-hyper-none.png share/icons/hicolor/48x48/apps/mate-sticky-meta-latched.png share/icons/hicolor/48x48/apps/mate-sticky-meta-locked.png share/icons/hicolor/48x48/apps/mate-sticky-meta-none.png share/icons/hicolor/48x48/apps/mate-sticky-shift-latched.png share/icons/hicolor/48x48/apps/mate-sticky-shift-locked.png share/icons/hicolor/48x48/apps/mate-sticky-shift-none.png share/icons/hicolor/48x48/apps/mate-sticky-super-latched.png share/icons/hicolor/48x48/apps/mate-sticky-super-locked.png share/icons/hicolor/48x48/apps/mate-sticky-super-none.png share/icons/hicolor/48x48/devices/mate-netspeed-plip.png share/icons/hicolor/64x64/apps/mate-eyes-applet.png share/icons/hicolor/scalable/apps/mate-eyes-applet.svg share/icons/hicolor/scalable/apps/mate-netspeed-applet.svg share/icons/hicolor/scalable/apps/mate-sticky-notes-applet.svg share/locale/af/LC_MESSAGES/mate-applets.mo share/locale/am/LC_MESSAGES/mate-applets.mo share/locale/ar/LC_MESSAGES/mate-applets.mo share/locale/as/LC_MESSAGES/mate-applets.mo share/locale/ast/LC_MESSAGES/mate-applets.mo share/locale/az/LC_MESSAGES/mate-applets.mo share/locale/be/LC_MESSAGES/mate-applets.mo share/locale/bg/LC_MESSAGES/mate-applets.mo share/locale/bn/LC_MESSAGES/mate-applets.mo share/locale/bn_IN/LC_MESSAGES/mate-applets.mo share/locale/br/LC_MESSAGES/mate-applets.mo share/locale/bs/LC_MESSAGES/mate-applets.mo share/locale/ca/LC_MESSAGES/mate-applets.mo share/locale/ca@valencia/LC_MESSAGES/mate-applets.mo share/locale/cmn/LC_MESSAGES/mate-applets.mo share/locale/crh/LC_MESSAGES/mate-applets.mo share/locale/cs/LC_MESSAGES/mate-applets.mo share/locale/cy/LC_MESSAGES/mate-applets.mo share/locale/da/LC_MESSAGES/mate-applets.mo share/locale/de/LC_MESSAGES/mate-applets.mo share/locale/dz/LC_MESSAGES/mate-applets.mo share/locale/el/LC_MESSAGES/mate-applets.mo share/locale/en_AU/LC_MESSAGES/mate-applets.mo share/locale/en_CA/LC_MESSAGES/mate-applets.mo share/locale/en_GB/LC_MESSAGES/mate-applets.mo share/locale/eo/LC_MESSAGES/mate-applets.mo share/locale/es/LC_MESSAGES/mate-applets.mo share/locale/es_AR/LC_MESSAGES/mate-applets.mo share/locale/es_CL/LC_MESSAGES/mate-applets.mo share/locale/es_CO/LC_MESSAGES/mate-applets.mo share/locale/es_CR/LC_MESSAGES/mate-applets.mo share/locale/es_DO/LC_MESSAGES/mate-applets.mo share/locale/es_EC/LC_MESSAGES/mate-applets.mo share/locale/es_ES/LC_MESSAGES/mate-applets.mo share/locale/es_MX/LC_MESSAGES/mate-applets.mo share/locale/es_NI/LC_MESSAGES/mate-applets.mo share/locale/es_PA/LC_MESSAGES/mate-applets.mo share/locale/es_PE/LC_MESSAGES/mate-applets.mo share/locale/es_PR/LC_MESSAGES/mate-applets.mo share/locale/es_SV/LC_MESSAGES/mate-applets.mo share/locale/es_UY/LC_MESSAGES/mate-applets.mo share/locale/es_VE/LC_MESSAGES/mate-applets.mo share/locale/et/LC_MESSAGES/mate-applets.mo share/locale/eu/LC_MESSAGES/mate-applets.mo share/locale/fa/LC_MESSAGES/mate-applets.mo share/locale/fi/LC_MESSAGES/mate-applets.mo share/locale/fr/LC_MESSAGES/mate-applets.mo share/locale/fr_CA/LC_MESSAGES/mate-applets.mo share/locale/frp/LC_MESSAGES/mate-applets.mo share/locale/fur/LC_MESSAGES/mate-applets.mo share/locale/fy/LC_MESSAGES/mate-applets.mo share/locale/ga/LC_MESSAGES/mate-applets.mo share/locale/gl/LC_MESSAGES/mate-applets.mo share/locale/gu/LC_MESSAGES/mate-applets.mo share/locale/ha/LC_MESSAGES/mate-applets.mo share/locale/he/LC_MESSAGES/mate-applets.mo share/locale/hi/LC_MESSAGES/mate-applets.mo share/locale/hr/LC_MESSAGES/mate-applets.mo share/locale/hu/LC_MESSAGES/mate-applets.mo share/locale/hy/LC_MESSAGES/mate-applets.mo share/locale/id/LC_MESSAGES/mate-applets.mo share/locale/ie/LC_MESSAGES/mate-applets.mo share/locale/ig/LC_MESSAGES/mate-applets.mo share/locale/is/LC_MESSAGES/mate-applets.mo share/locale/it/LC_MESSAGES/mate-applets.mo share/locale/ja/LC_MESSAGES/mate-applets.mo share/locale/jv/LC_MESSAGES/mate-applets.mo share/locale/ka/LC_MESSAGES/mate-applets.mo share/locale/kab/LC_MESSAGES/mate-applets.mo share/locale/kk/LC_MESSAGES/mate-applets.mo share/locale/km/LC_MESSAGES/mate-applets.mo share/locale/kn/LC_MESSAGES/mate-applets.mo share/locale/ko/LC_MESSAGES/mate-applets.mo share/locale/ku/LC_MESSAGES/mate-applets.mo share/locale/ku_IQ/LC_MESSAGES/mate-applets.mo share/locale/ky/LC_MESSAGES/mate-applets.mo share/locale/li/LC_MESSAGES/mate-applets.mo share/locale/lt/LC_MESSAGES/mate-applets.mo share/locale/lv/LC_MESSAGES/mate-applets.mo share/locale/mai/LC_MESSAGES/mate-applets.mo share/locale/mg/LC_MESSAGES/mate-applets.mo share/locale/mi/LC_MESSAGES/mate-applets.mo share/locale/mk/LC_MESSAGES/mate-applets.mo share/locale/ml/LC_MESSAGES/mate-applets.mo share/locale/mn/LC_MESSAGES/mate-applets.mo share/locale/mr/LC_MESSAGES/mate-applets.mo share/locale/ms/LC_MESSAGES/mate-applets.mo share/locale/nb/LC_MESSAGES/mate-applets.mo share/locale/nds/LC_MESSAGES/mate-applets.mo share/locale/ne/LC_MESSAGES/mate-applets.mo share/locale/nl/LC_MESSAGES/mate-applets.mo share/locale/nn/LC_MESSAGES/mate-applets.mo share/locale/nso/LC_MESSAGES/mate-applets.mo share/locale/oc/LC_MESSAGES/mate-applets.mo share/locale/or/LC_MESSAGES/mate-applets.mo share/locale/pa/LC_MESSAGES/mate-applets.mo share/locale/pl/LC_MESSAGES/mate-applets.mo share/locale/pms/LC_MESSAGES/mate-applets.mo share/locale/ps/LC_MESSAGES/mate-applets.mo share/locale/pt/LC_MESSAGES/mate-applets.mo share/locale/pt_BR/LC_MESSAGES/mate-applets.mo share/locale/ro/LC_MESSAGES/mate-applets.mo share/locale/ru/LC_MESSAGES/mate-applets.mo share/locale/rw/LC_MESSAGES/mate-applets.mo share/locale/si/LC_MESSAGES/mate-applets.mo share/locale/sk/LC_MESSAGES/mate-applets.mo share/locale/sl/LC_MESSAGES/mate-applets.mo share/locale/sq/LC_MESSAGES/mate-applets.mo share/locale/sr/LC_MESSAGES/mate-applets.mo share/locale/sr@latin/LC_MESSAGES/mate-applets.mo share/locale/sv/LC_MESSAGES/mate-applets.mo share/locale/ta/LC_MESSAGES/mate-applets.mo share/locale/te/LC_MESSAGES/mate-applets.mo share/locale/th/LC_MESSAGES/mate-applets.mo share/locale/tk/LC_MESSAGES/mate-applets.mo share/locale/tr/LC_MESSAGES/mate-applets.mo share/locale/ug/LC_MESSAGES/mate-applets.mo share/locale/uk/LC_MESSAGES/mate-applets.mo share/locale/ur/LC_MESSAGES/mate-applets.mo share/locale/uz/LC_MESSAGES/mate-applets.mo share/locale/vi/LC_MESSAGES/mate-applets.mo share/locale/wa/LC_MESSAGES/mate-applets.mo share/locale/xh/LC_MESSAGES/mate-applets.mo share/locale/yi/LC_MESSAGES/mate-applets.mo share/locale/yo/LC_MESSAGES/mate-applets.mo share/locale/zh_CN/LC_MESSAGES/mate-applets.mo share/locale/zh_HK/LC_MESSAGES/mate-applets.mo share/locale/zh_TW/LC_MESSAGES/mate-applets.mo share/locale/zu/LC_MESSAGES/mate-applets.mo +share/man/man1/mate-charpick-applet.1.gz +share/man/man1/mate-cpufreq-selector.1.gz +share/man/man1/mate-drivemount-applet.1.gz +share/man/man1/mate-geyes-applet.1.gz +share/man/man1/mate-multiload-applet.1.gz +share/man/man1/mateweather.1.gz %%DATADIR%%/geyes/Bizarre/Bizarre-eye.png %%DATADIR%%/geyes/Bizarre/Bizarre-pupil.png %%DATADIR%%/geyes/Bizarre/config %%DATADIR%%/geyes/Bloodshot/Bloodshot-eye.png %%DATADIR%%/geyes/Bloodshot/Bloodshot-pupil.png %%DATADIR%%/geyes/Bloodshot/config %%DATADIR%%/geyes/Default-tiny/Default-tiny-eye.png %%DATADIR%%/geyes/Default-tiny/Default-tiny-pupil.png %%DATADIR%%/geyes/Default-tiny/config %%DATADIR%%/geyes/Default/Default-eye.png %%DATADIR%%/geyes/Default/Default-pupil.png %%DATADIR%%/geyes/Default/config %%DATADIR%%/geyes/Digital/Digital-eye.png %%DATADIR%%/geyes/Digital/Digital-pupil.png %%DATADIR%%/geyes/Digital/config %%DATADIR%%/geyes/Horrid/config %%DATADIR%%/geyes/Horrid/horrid_eye.png %%DATADIR%%/geyes/Horrid/horrid_pupil.png %%DATADIR%%/geyes/Tango/config %%DATADIR%%/geyes/Tango/tango-eye.png %%DATADIR%%/geyes/Tango/tango-pupil.png %%DATADIR%%/icons/hicolor/48x48/apps/stickynotes-stock-close.png %%DATADIR%%/icons/hicolor/48x48/apps/stickynotes-stock-locked.png %%DATADIR%%/icons/hicolor/48x48/apps/stickynotes-stock-resize-se.png %%DATADIR%%/icons/hicolor/48x48/apps/stickynotes-stock-resize-sw.png %%DATADIR%%/icons/hicolor/48x48/apps/stickynotes-stock-unlocked.png share/mate-panel/applets/org.mate.applets.AccessxStatusApplet.mate-panel-applet %%BATTERY%%share/mate-panel/applets/org.mate.applets.BattstatApplet.mate-panel-applet share/mate-panel/applets/org.mate.applets.CharpickerApplet.mate-panel-applet share/mate-panel/applets/org.mate.applets.CommandApplet.mate-panel-applet share/mate-panel/applets/org.mate.applets.DriveMountApplet.mate-panel-applet share/mate-panel/applets/org.mate.applets.GeyesApplet.mate-panel-applet share/mate-panel/applets/org.mate.applets.MateWeatherApplet.mate-panel-applet share/mate-panel/applets/org.mate.applets.MultiLoadApplet.mate-panel-applet share/mate-panel/applets/org.mate.applets.NetspeedApplet.mate-panel-applet share/mate-panel/applets/org.mate.applets.StickyNotesApplet.mate-panel-applet share/mate-panel/applets/org.mate.applets.TimerApplet.mate-panel-applet share/mate-panel/applets/org.mate.applets.TrashApplet.mate-panel-applet