aboutsummaryrefslogtreecommitdiff
path: root/x11
diff options
context:
space:
mode:
Diffstat (limited to 'x11')
-rw-r--r--x11/mate-applets/Makefile16
-rw-r--r--x11/mate-applets/distinfo6
-rw-r--r--x11/mate-applets/files/patch-battstat_power-management.c35
-rw-r--r--x11/mate-applets/files/patch-configure114
-rw-r--r--x11/mate-applets/files/patch-cpufreq-freebsd364
-rw-r--r--x11/mate-applets/files/patch-cpufreq-selector-freebsd207
-rw-r--r--x11/mate-applets/files/patch-cpufreq_src_cpufreq-applet.c18
-rw-r--r--x11/mate-applets/pkg-plist1687
8 files changed, 1251 insertions, 1196 deletions
diff --git a/x11/mate-applets/Makefile b/x11/mate-applets/Makefile
index 3d2701c27188..e68270761f6b 100644
--- a/x11/mate-applets/Makefile
+++ b/x11/mate-applets/Makefile
@@ -1,5 +1,5 @@
PORTNAME= mate-applets
-PORTVERSION= 1.24.1
+PORTVERSION= 1.26.0
CATEGORIES= x11 mate
MASTER_SITES= MATE
DIST_SUBDIR= mate
@@ -32,6 +32,8 @@ USE_GNOME= cairo gtk30 gtksourceview3 intltool libwnck3 libxml2
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
CONFIGURE_ENV= OS_SYS="/usr/include"
+CONFIGURE_ARGS= --without-nl
+
INSTALL_TARGET= install-strip
GLIB_SCHEMAS= org.mate.drivemount.gschema.xml \
@@ -56,13 +58,13 @@ PLIST_SUB+= BATTERY=""
.endif
# requires linux libcpufreq library
-#.if ${ARCH} != "i386" && ${ARCH} != "amd64"
+# .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
+# .else
+# CONFIGURE_ARGS+=--enable-cpufreq
+# PLIST_SUB+= CPUFREQ=""
+# GLIB_SCHEMAS+= org.mate.panel.applet.cpufreq.gschema.xml
+# .endif
.include <bsd.port.post.mk>
diff --git a/x11/mate-applets/distinfo b/x11/mate-applets/distinfo
index 4160b8479b8a..fbcbe452642b 100644
--- a/x11/mate-applets/distinfo
+++ b/x11/mate-applets/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1601840518
-SHA256 (mate/mate-applets-1.24.1.tar.xz) = d76f6be9aa19451b52b4f354d9f846a572810c40c27eb2df3d01cc353a89e040
-SIZE (mate/mate-applets-1.24.1.tar.xz) = 8222540
+TIMESTAMP = 1633998272
+SHA256 (mate/mate-applets-1.26.0.tar.xz) = b7e0439b4e0c754233c2988644faa3f6ab6270970061b7a0c635d68d236fc977
+SIZE (mate/mate-applets-1.26.0.tar.xz) = 8442720
diff --git a/x11/mate-applets/files/patch-battstat_power-management.c b/x11/mate-applets/files/patch-battstat_power-management.c
index 256365e2add2..c99254f7c28a 100644
--- a/x11/mate-applets/files/patch-battstat_power-management.c
+++ b/x11/mate-applets/files/patch-battstat_power-management.c
@@ -1,6 +1,6 @@
---- battstat/power-management.c.orig 2015-01-22 10:16:53.000000000 +0100
-+++ battstat/power-management.c 2015-01-22 17:29:57.507849366 +0100
-@@ -67,6 +67,10 @@
+--- battstat/power-management.c.orig 2021-08-07 11:25:17 UTC
++++ battstat/power-management.c
+@@ -63,6 +63,10 @@
static const char *apm_readinfo (BatteryStatus *status);
static int pm_initialised;
@@ -11,7 +11,7 @@
#ifdef HAVE_UPOWER
static int using_upower;
#endif
-@@ -178,16 +182,40 @@
+@@ -174,38 +178,69 @@ apm_readinfo (BatteryStatus *status)
#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
@@ -52,19 +52,22 @@
static const char *
apm_readinfo (BatteryStatus *status)
{
-@@ -195,21 +223,27 @@
-
- if (DEBUG) g_print("apm_readinfo() (FreeBSD)\n");
+ 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);
+- 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)
++ if (acpi_freebsd_read(&apminfo, &acpiinfo) == FALSE)
return ERR_FREEBSD_ACPI;
}
acpi_count--;
@@ -79,18 +82,18 @@
+ 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_callback, NULL);
+ acpi_freebsd_read(&apminfo, &acpiinfo);
+ }
+ }
+ else {
+#if defined(__i386__)
- fd = open(APMDEVICE, O_RDONLY);
+ fd = open (APMDEVICE, O_RDONLY);
if (fd == -1) {
return ERR_OPEN_APMDEV;
-@@ -222,6 +256,9 @@
+@@ -218,6 +253,9 @@ apm_readinfo (BatteryStatus *status)
- if(apminfo.ai_status == 0)
+ if (apminfo.ai_status == 0)
return ERR_APM_E;
+#else
+ return ERR_OPEN_APMDEV;
@@ -98,7 +101,7 @@
}
status->present = TRUE;
-@@ -483,6 +520,12 @@
+@@ -484,6 +522,12 @@ power_management_initialise (void (*callback) (void))
}
else
using_acpi = FALSE;
@@ -111,13 +114,13 @@
#endif
pm_initialised = 1;
-@@ -516,6 +559,9 @@
+@@ -517,6 +561,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);
+ acpi_freebsd_cleanup (&acpiinfo);
}
#endif
diff --git a/x11/mate-applets/files/patch-configure b/x11/mate-applets/files/patch-configure
index a1e27fb886e6..eec0292184ca 100644
--- a/x11/mate-applets/files/patch-configure
+++ b/x11/mate-applets/files/patch-configure
@@ -1,6 +1,78 @@
---- configure.orig 2016-02-01 10:05:32.777229000 +0100
-+++ configure 2016-02-01 10:05:56.624276000 +0100
-@@ -16587,7 +16587,7 @@
+--- configure.orig 2021-08-07 11:28:45 UTC
++++ configure
+@@ -9534,7 +9534,7 @@ $as_echo_n "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
+ 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
+ _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
+ 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
+ *)
+ 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; }
+ 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*)
+ 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
test "x$prefix" = xNONE && prefix="$ac_default_prefix"
test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
@@ -9,7 +81,7 @@
ac_define_dir=`eval echo $ac_define_dir`
MATELOCALEDIR="$ac_define_dir"
-@@ -17434,7 +17434,7 @@
+@@ -17595,7 +17595,7 @@ fi
;;
# list of supported OS cores that do not use libapm
@@ -18,16 +90,7 @@
if test -n "${OS_SYS}"; then
ACPIINC="-I${OS_SYS}"
else
-@@ -17949,7 +17952,7 @@
-
- test "x$prefix" = xNONE && prefix="$ac_default_prefix"
- test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
-- ac_define_dir=`eval echo $"${iconsdir}"`
-+ ac_define_dir=`eval echo $iconsdir`
- ac_define_dir=`eval echo $ac_define_dir`
- MATE_ICONDIR="$ac_define_dir"
-
-@@ -17962,7 +17965,7 @@
+@@ -18421,7 +18421,7 @@ pkgdatadir="${datadir}/mate-applets"
test "x$prefix" = xNONE && prefix="$ac_default_prefix"
test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
@@ -36,7 +99,7 @@
ac_define_dir=`eval echo $ac_define_dir`
MATE_PIXMAPSDIR="$ac_define_dir"
-@@ -17975,7 +17978,7 @@
+@@ -18434,7 +18434,7 @@ _ACEOF
test "x$prefix" = xNONE && prefix="$ac_default_prefix"
test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
@@ -45,16 +108,7 @@
ac_define_dir=`eval echo $ac_define_dir`
PKGDATADIR="$ac_define_dir"
-@@ -17988,7 +17991,7 @@
-
- test "x$prefix" = xNONE && prefix="$ac_default_prefix"
- test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
-- ac_define_dir=`eval echo $"${builderdir}"`
-+ ac_define_dir=`eval echo $builderdir`
- ac_define_dir=`eval echo $ac_define_dir`
- GTK_BUILDERDIR="$ac_define_dir"
-
-@@ -18001,7 +18004,7 @@
+@@ -18447,7 +18447,7 @@ _ACEOF
test "x$prefix" = xNONE && prefix="$ac_default_prefix"
test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
@@ -63,7 +117,7 @@
ac_define_dir=`eval echo $ac_define_dir`
DATADIR="$ac_define_dir"
-@@ -18014,7 +18017,7 @@
+@@ -18460,7 +18460,7 @@ _ACEOF
test "x$prefix" = xNONE && prefix="$ac_default_prefix"
test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
@@ -72,7 +126,7 @@
ac_define_dir=`eval echo $ac_define_dir`
PKG_DATA_DIR="$ac_define_dir"
-@@ -18027,7 +18030,7 @@
+@@ -18473,7 +18473,7 @@ _ACEOF
test "x$prefix" = xNONE && prefix="$ac_default_prefix"
test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
@@ -81,7 +135,7 @@
ac_define_dir=`eval echo $ac_define_dir`
SYSCONFDIR="$ac_define_dir"
-@@ -18040,7 +18043,7 @@
+@@ -18486,7 +18486,7 @@ _ACEOF
test "x$prefix" = xNONE && prefix="$ac_default_prefix"
test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
@@ -90,7 +144,7 @@
ac_define_dir=`eval echo $ac_define_dir`
LIBDIR="$ac_define_dir"
-@@ -18053,7 +18056,7 @@
+@@ -18499,7 +18499,7 @@ _ACEOF
test "x$prefix" = xNONE && prefix="$ac_default_prefix"
test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
@@ -99,7 +153,7 @@
ac_define_dir=`eval echo $ac_define_dir`
PREFIX="$ac_define_dir"
-@@ -18066,7 +18069,7 @@
+@@ -18512,7 +18512,7 @@ _ACEOF
EXP_VAR=DATADIR
diff --git a/x11/mate-applets/files/patch-cpufreq-freebsd b/x11/mate-applets/files/patch-cpufreq-freebsd
index d10859f40719..7380792d9f7f 100644
--- a/x11/mate-applets/files/patch-cpufreq-freebsd
+++ b/x11/mate-applets/files/patch-cpufreq-freebsd
@@ -1,6 +1,26 @@
---- cpufreq/src/cpufreq-monitor-cpuinfo.c.orig Thu Jun 15 01:01:54 2006
-+++ cpufreq/src/cpufreq-monitor-cpuinfo.c Sat Jun 17 13:48:19 2006
-@@ -22,6 +22,10 @@
+--- 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 <carlosgc@gnome.org>
++ * Authors : Carlos Garcia Campos <carlosgc@gnome.org>
+ */
+
+ #ifdef HAVE_CONFIG_H
+@@ -26,6 +26,10 @@
#include <glib.h>
#include <glib/gi18n.h>
@@ -11,214 +31,98 @@
#include <string.h>
#include <stdio.h>
-@@ -59,15 +63,20 @@ cpufreq_monitor_cpuinfo_new (guint cpu)
+@@ -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;
+ gchar *file;
+ gchar **lines;
+ gchar *buffer = NULL;
+ gchar *p;
+#else
-+ size_t len;
++ size_t len;
+#endif /* __FreeBSD__ */
- gint cpu, i;
- gint cur_freq, max_freq;
- gchar *governor;
- GError *error = NULL;
-
+ gint cpu, i;
+ gint cur_freq, max_freq;
+ gchar *governor;
+ GError *error = NULL;
+-
+#ifndef __FreeBSD__
- file = g_strdup ("/proc/cpuinfo");
- if (!g_file_get_contents (file, &buffer, NULL, &error)) {
- g_warning (error->message);
-@@ -112,6 +121,12 @@ cpufreq_monitor_cpuinfo_run (CPUFreqMoni
+ 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);
+ g_strfreev (lines);
+ g_free (buffer);
+#else
-+ len = sizeof (cpu);
-+
-+ if (sysctlbyname ("hw.clockrate", &cpu, &len, NULL, 0) == -1)
-+ return FALSE;
++ 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;
---- cpufreq/src/cpufreq-applet.c.orig 2016-04-01 10:54:10.000000000 +0200
-+++ cpufreq/src/cpufreq-applet.c 2016-04-19 13:56:00.550008000 +0200
+ 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 <carlosgc@gnome.org>
-+ * Joe Marcus Clarke <marcus@FreeBSD.org>
- */
-
- #ifdef HAVE_CONFIG_H
-@@ -678,6 +679,7 @@
- {
- static const gchar *const authors[] = {
- "Carlos Garcia Campos <carlosgc@gnome.org>",
-+ "Joe Marcus Clarke <marcus@FreeBSD.org> (FreeBSD support)",
- NULL
- };
- static const gchar *const documenters[] = {
---- cpufreq/src/cpufreq-monitor-sysctl.h.orig Sat Jun 17 14:05:37 2006
-+++ cpufreq/src/cpufreq-monitor-sysctl.h Sat Jun 17 14:14:13 2006
-@@ -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 <marcus@FreeBSD.org>
-+ */
-+
-+#ifndef __CPUFREQ_MONITOR_SYSCTL_H__
-+#define __CPUFREQ_MONITOR_SYSCTL_H__
-+
-+#include <glib-object.h>
-+
-+#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-monitor-factory.c.orig Sat Jun 17 06:28:02 2006
-+++ cpufreq/src/cpufreq-monitor-factory.c Sat Jun 24 01:45:54 2006
-@@ -17,6 +17,7 @@
- * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- *
* Authors : Carlos García Campos <carlosgc@gnome.org>
+ * Joe Marcus Clarke <marcus@FreeBSD.org>
*/
#ifdef HAVE_CONFIG_H
-@@ -25,11 +26,18 @@
-
+@@ -26,8 +27,16 @@
#include <glib.h>
#include <glib/gi18n.h>
+
+#ifdef __FreeBSD__
+#include <sys/types.h>
+#include <sys/sysctl.h>
+#endif /* __FreeBSD__ */
-
++
#include "cpufreq-applet.h"
#include "cpufreq-utils.h"
- #include "cpufreq-monitor-sysfs.h"
- #include "cpufreq-monitor-procfs.h"
+#ifdef __FreeBSD__
+#include "cpufreq-monitor-sysctl.h"
+#endif /* __FreeBSD__ */
- #include "cpufreq-monitor-cpuinfo.h"
+ #include "cpufreq-monitor-factory.h"
#ifdef HAVE_LIBCPUFREQ
#include "cpufreq-monitor-libcpufreq.h"
-@@ -40,6 +48,7 @@ CPUFreqMonitor *
- cpufreq_monitor_factory_create_monitor (guint cpu)
- {
- CPUFreqMonitor *monitor = NULL;
+@@ -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)
- #ifdef HAVE_LIBCPUFREQ
- monitor = cpufreq_monitor_libcpufreq_new (cpu);
-@@ -63,6 +72,19 @@ cpufreq_monitor_factory_create_monitor (
-
- monitor = cpufreq_monitor_cpuinfo_new (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;
- }
---- cpufreq/src/cpufreq-utils.c.orig Sat Aug 12 21:26:50 2006
-+++ cpufreq/src/cpufreq-utils.c Tue Aug 22 11:07:32 2006
-@@ -22,6 +22,9 @@
- #include <glib.h>
- #include <gtk/gtkmessagedialog.h>
- #include <sys/types.h>
-+#ifdef __FreeBSD__
-+#include <sys/sysctl.h>
-+#endif
- #include <sys/stat.h>
- #include <fcntl.h>
- #include <unistd.h>
-@@ -30,6 +33,24 @@
-
- #include "cpufreq-utils.h"
++ size_t len;
-+#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)
- {
-@@ -72,6 +93,7 @@ cpufreq_utils_get_n_cpus (void)
-
- return 1;
- }
++ 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__ */
-
- void
- cpufreq_utils_display_error (const gchar *message,
---- cpufreq/src/cpufreq-monitor-sysctl.c.orig 2010-05-13 11:27:57.000000000 +0200
-+++ cpufreq/src/cpufreq-monitor-sysctl.c 2010-05-13 11:36:13.000000000 +0200
+ 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
@@ -404,15 +308,103 @@
+ return list;
+}
+#endif /* __FreeBSD__ */
---- cpufreq/src/Makefile.am.orig 2012-07-29 15:37:51.000000000 -0500
-+++ cpufreq/src/Makefile.am 2012-07-29 15:40:00.000000000 -0500
-@@ -27,7 +27,8 @@
- cpufreq-monitor-procfs.c cpufreq-monitor-procfs.h \
- cpufreq-monitor-sysfs.c cpufreq-monitor-sysfs.h \
- $(cpufreq_files) \
-- cpufreq-monitor-cpuinfo.c cpufreq-monitor-cpuinfo.h
-+ cpufreq-monitor-cpuinfo.c cpufreq-monitor-cpuinfo.h \
-+ cpufreq-monitor-sysctl.c cpufreq-monitor-sysctl.h
+--- 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 <marcus@FreeBSD.org>
++ */
++
++#ifndef __CPUFREQ_MONITOR_SYSCTL_H__
++#define __CPUFREQ_MONITOR_SYSCTL_H__
++
++#include <glib-object.h>
++
++#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 <glib.h>
+ #include <gtk/gtk.h>
+ #include <sys/types.h>
++#ifdef __FreeBSD__
++#include <sys/sysctl.h>
++#endif
+ #include <sys/stat.h>
+ #include <fcntl.h>
+ #include <unistd.h>
+@@ -36,9 +39,27 @@
+ #include <gio/gio.h>
+ #endif /* HAVE_POLKIT */
- cpufreq_applet_LDADD = \
- $(MATE_APPLETS3_LIBS) \
++#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/files/patch-cpufreq-selector-freebsd b/x11/mate-applets/files/patch-cpufreq-selector-freebsd
index 1ab5faa0542b..f625994ebf07 100644
--- a/x11/mate-applets/files/patch-cpufreq-selector-freebsd
+++ b/x11/mate-applets/files/patch-cpufreq-selector-freebsd
@@ -1,61 +1,50 @@
---- cpufreq/src/cpufreq-selector/cpufreq-selector-sysctl.h.orig Sat Jun 24 01:52:35 2006
-+++ cpufreq/src/cpufreq-selector/cpufreq-selector-sysctl.h Sat Jun 24 02:13:05 2006
-@@ -0,0 +1,53 @@
-+/*
-+ * 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 <marcus@FreeBSD.org>
-+ */
-+
-+#ifndef __CPUFREQ_SELECTOR_SYSCTL_H__
-+#define __CPUFREQ_SELECTOR_SYSCTL_H__
-+
-+#include <glib-object.h>
-+
-+#include "cpufreq-selector.h"
-+
-+G_BEGIN_DECLS
-+
-+#define CPUFREQ_TYPE_SELECTOR_SYSCTL (cpufreq_selector_sysctl_get_type ())
-+#define CPUFREQ_SELECTOR_SYSCTL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), CPUFREQ_TYPE_SELECTOR_SYSCTL, CPUFreqSelectorProcfs))
-+#define CPUFREQ_SELECTOR_SYSCTL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), CPUFREQ_TYPE_SELECTOR_SYSCTL, CPUFreqSelectorProcfsClass))
-+#define CPUFREQ_IS_SELECTOR_SYSCTL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CPUFREQ_TYPE_SELECTOR_SYSCTL))
-+#define CPUFREQ_IS_SELECTOR_SYSCTL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CPUFREQ_TYPE_SELECTOR_SYSCTL))
-+#define CPUFREQ_SELECTOR_SYSCTL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), CPUFREQ_TYPE_SELECTOR_SYSCTL, CPUFreqSelectorProcfsClass))
-+
-+typedef struct _CPUFreqSelectorSysctl CPUFreqSelectorSysctl;
-+typedef struct _CPUFreqSelectorSysctlClass CPUFreqSelectorSysctlClass;
-+
-+struct _CPUFreqSelectorSysctl {
-+ CPUFreqSelector parent;
-+};
-+
-+struct _CPUFreqSelectorSysctlClass {
-+ CPUFreqSelectorClass parent_class;
-+};
-+
-+GType cpufreq_selector_sysctl_get_type (void) G_GNUC_CONST;
-+CPUFreqSelector *cpufreq_selector_sysctl_new (guint cpu);
-+
-+G_END_DECLS
-+
-+#endif /* __CPUFREQ_SELECTOR_SYSCTL_H__ */
---- cpufreq/src/cpufreq-selector/cpufreq-selector-sysctl.c.orig Wed Jul 26 01:34:18 2006
-+++ cpufreq/src/cpufreq-selector/cpufreq-selector-sysctl.c Wed Jul 26 01:42:00 2006
+--- cpufreq/src/cpufreq-selector/Makefile.am.orig 2021-08-07 11:25:17 UTC
++++ cpufreq/src/cpufreq-selector/Makefile.am
+@@ -24,7 +24,7 @@ mate_cpufreq_selector_SOURCES = \
+ $(service_files) \
+ cpufreq-selector-factory.c cpufreq-selector-factory.h \
+ $(BUILT_SOURCES) \
+- main.c
++ main.c cpufreq-selector-sysctl.c cpufreq-selector-sysctl.h
+
+ if HAVE_LIBCPUFREQ
+ mate_cpufreq_selector_SOURCES += \
+--- cpufreq/src/cpufreq-selector/cpufreq-selector-factory.c.orig 2021-08-07 11:25:17 UTC
++++ cpufreq/src/cpufreq-selector/cpufreq-selector-factory.c
+@@ -27,19 +27,29 @@
+ #else
+ #include "cpufreq-selector-sysfs.h"
+ #endif
++#ifdef __FreeBSD__
++#include "cpufreq-selector-sysctl.h"
++#endif /* __FreeBSD__ */
+
+ CPUFreqSelector *
+ cpufreq_selector_factory_create_selector (guint cpu)
+ {
++#ifdef __FreeBSD__
++ size_t len;
++#endif
+ #ifdef HAVE_LIBCPUFREQ
+ return cpufreq_selector_libcpufreq_new (cpu);
+ #else
+ CPUFreqSelector *selector = NULL;
+-
++#ifndef __FreeBSD__
+ if (g_file_test ("/sys/devices/system/cpu/cpu0/cpufreq", G_FILE_TEST_EXISTS)) {
+ selector = cpufreq_selector_sysfs_new (cpu);
+ }
+-
++#else
++ if (sysctlbyname ("dev.cpu.0.freq", NULL, &len, NULL, 0) == 0) {
++ selector = cpufreq_selector_sysctl_new (cpu);
++ }
++#endif /* __FreeBSD__ */
+ return selector;
+ #endif /* HAVE_LIBCPUFREQ */
+ }
+--- cpufreq/src/cpufreq-selector/cpufreq-selector-sysctl.c.orig 2021-10-12 01:37:36 UTC
++++ cpufreq/src/cpufreq-selector/cpufreq-selector-sysctl.c
@@ -0,0 +1,87 @@
+/*
+ * Copyright (C) 2001, 2002 Free Software Foundation
@@ -144,49 +133,59 @@
+
+ return TRUE;
+}
---- cpufreq/src/cpufreq-selector/cpufreq-selector-factory.c.orig 2008-06-16 14:33:25.000000000 -0400
-+++ cpufreq/src/cpufreq-selector/cpufreq-selector-factory.c 2008-06-16 14:35:28.000000000 -0400
-@@ -27,20 +27,32 @@
- #ifdef HAVE_LIBCPUFREQ
- #include "cpufreq-selector-libcpufreq.h"
- #endif
-+#ifdef __FreeBSD__
-+#include "cpufreq-selector-sysctl.h"
-+#endif /* __FreeBSD__ */
-
- CPUFreqSelector *
- cpufreq_selector_factory_create_selector (guint cpu)
- {
- CPUFreqSelector *selector = NULL;
-+#ifdef __FreeBSD__
-+ size_t len;
-+#endif
-
- #ifdef HAVE_LIBCPUFREQ
- selector = cpufreq_selector_libcpufreq_new (cpu);
- #else
-+#ifndef __FreeBSD__
- if (g_file_test ("/sys/devices/system/cpu/cpu0/cpufreq", G_FILE_TEST_EXISTS)) { /* 2.6 kernel */
- selector = cpufreq_selector_sysfs_new (cpu);
- } else if (g_file_test ("/proc/cpufreq", G_FILE_TEST_EXISTS)) { /* 2.4 kernel */
- selector = cpufreq_selector_procfs_new (cpu);
- }
-+#else
-+ if (sysctlbyname ("dev.cpu.0.freq", NULL, &len, NULL, 0) == 0) {
-+ selector = cpufreq_selector_sysctl_new (cpu);
-+ }
-+#endif /* __FreeBSD__ */
- #endif /* HAVE_LIBCPUFREQ */
-
- return selector;
---- cpufreq/src/cpufreq-selector/Makefile.am.orig 2012-07-29 15:41:47.000000000 -0500
-+++ cpufreq/src/cpufreq-selector/Makefile.am 2012-07-29 15:42:08.000000000 -0500
-@@ -32,7 +32,7 @@
- $(service_files) \
- cpufreq-selector-factory.c cpufreq-selector-factory.h \
- $(BUILT_SOURCES) \
-- main.c
-+ main.c cpufreq-selector-sysctl.c cpufreq-selector-sysctl.h
-
- mate_cpufreq_selector_LDADD = \
- $(CPUFREQ_SELECTOR_LIBS) \
+--- cpufreq/src/cpufreq-selector/cpufreq-selector-sysctl.h.orig 2021-10-12 01:37:36 UTC
++++ cpufreq/src/cpufreq-selector/cpufreq-selector-sysctl.h
+@@ -0,0 +1,53 @@
++/*
++ * 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 <marcus@FreeBSD.org>
++ */
++
++#ifndef __CPUFREQ_SELECTOR_SYSCTL_H__
++#define __CPUFREQ_SELECTOR_SYSCTL_H__
++
++#include <glib-object.h>
++
++#include "cpufreq-selector.h"
++
++G_BEGIN_DECLS
++
++#define CPUFREQ_TYPE_SELECTOR_SYSCTL (cpufreq_selector_sysctl_get_type ())
++#define CPUFREQ_SELECTOR_SYSCTL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), CPUFREQ_TYPE_SELECTOR_SYSCTL, CPUFreqSelectorProcfs))
++#define CPUFREQ_SELECTOR_SYSCTL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), CPUFREQ_TYPE_SELECTOR_SYSCTL, CPUFreqSelectorProcfsClass))
++#define CPUFREQ_IS_SELECTOR_SYSCTL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CPUFREQ_TYPE_SELECTOR_SYSCTL))
++#define CPUFREQ_IS_SELECTOR_SYSCTL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CPUFREQ_TYPE_SELECTOR_SYSCTL))
++#define CPUFREQ_SELECTOR_SYSCTL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), CPUFREQ_TYPE_SELECTOR_SYSCTL, CPUFreqSelectorProcfsClass))
++
++typedef struct _CPUFreqSelectorSysctl CPUFreqSelectorSysctl;
++typedef struct _CPUFreqSelectorSysctlClass CPUFreqSelectorSysctlClass;
++
++struct _CPUFreqSelectorSysctl {
++ CPUFreqSelector parent;
++};
++
++struct _CPUFreqSelectorSysctlClass {
++ CPUFreqSelectorClass parent_class;
++};
++
++GType cpufreq_selector_sysctl_get_type (void) G_GNUC_CONST;
++CPUFreqSelector *cpufreq_selector_sysctl_new (guint cpu);
++
++G_END_DECLS
++
++#endif /* __CPUFREQ_SELECTOR_SYSCTL_H__ */
diff --git a/x11/mate-applets/files/patch-cpufreq_src_cpufreq-applet.c b/x11/mate-applets/files/patch-cpufreq_src_cpufreq-applet.c
new file mode 100644
index 000000000000..8c01aed2b4cb
--- /dev/null
+++ b/x11/mate-applets/files/patch-cpufreq_src_cpufreq-applet.c
@@ -0,0 +1,18 @@
+--- cpufreq/src/cpufreq-applet.c.orig 2021-08-07 11:25:17 UTC
++++ cpufreq/src/cpufreq-applet.c
+@@ -17,6 +17,7 @@
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ * Authors : Carlos García Campos <carlosgc@gnome.org>
++ * Joe Marcus Clarke <marcus@FreeBSD.org>
+ */
+
+ #ifdef HAVE_CONFIG_H
+@@ -455,6 +456,7 @@ cpufreq_applet_about_cb (GtkAction *action,
+ {
+ static const gchar *const authors[] = {
+ "Carlos Garcia Campos <carlosgc@gnome.org>",
++ "Joe Marcus Clarke <marcus@FreeBSD.org> (FreeBSD support)",
+ NULL
+ };
+ static const gchar* documenters[] = {
diff --git a/x11/mate-applets/pkg-plist b/x11/mate-applets/pkg-plist
index 7e1c93f435e6..54ebff8bf893 100644
--- a/x11/mate-applets/pkg-plist
+++ b/x11/mate-applets/pkg-plist
@@ -1,6 +1,6 @@
-%%BATTERY%%etc/sound/events/mate-battstat_applet.soundlist
+etc/sound/events/mate-battstat_applet.soundlist
libexec/accessx-status-applet
-%%BATTERY%%libexec/battstat-applet
+libexec/battstat-applet
libexec/command-applet
libexec/mate-charpick-applet
libexec/mate-drivemount-applet
@@ -18,7 +18,7 @@ man/man1/mate-geyes-applet.1.gz
man/man1/mate-multiload-applet.1.gz
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.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
@@ -41,13 +41,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/C/mate-battstat/figures/battstat-applet.png
+share/help/C/mate-battstat/figures/battstat-credits-hal.png
+share/help/C/mate-battstat/figures/battstat-preferences.png
+share/help/C/mate-battstat/figures/context-menu.png
+share/help/C/mate-battstat/index.docbook
+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
@@ -116,13 +116,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/af/mate-battstat/figures/battstat-applet.png
+share/help/af/mate-battstat/figures/battstat-credits-hal.png
+share/help/af/mate-battstat/figures/battstat-preferences.png
+share/help/af/mate-battstat/figures/context-menu.png
+share/help/af/mate-battstat/index.docbook
+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
@@ -191,13 +191,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/am/mate-battstat/figures/battstat-applet.png
+share/help/am/mate-battstat/figures/battstat-credits-hal.png
+share/help/am/mate-battstat/figures/battstat-preferences.png
+share/help/am/mate-battstat/figures/context-menu.png
+share/help/am/mate-battstat/index.docbook
+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
@@ -254,13 +254,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/an/mate-battstat/figures/battstat-applet.png
+share/help/an/mate-battstat/figures/battstat-credits-hal.png
+share/help/an/mate-battstat/figures/battstat-preferences.png
+share/help/an/mate-battstat/figures/context-menu.png
+share/help/an/mate-battstat/index.docbook
+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
@@ -286,13 +286,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/ar/mate-battstat/figures/battstat-applet.png
+share/help/ar/mate-battstat/figures/battstat-credits-hal.png
+share/help/ar/mate-battstat/figures/battstat-preferences.png
+share/help/ar/mate-battstat/figures/context-menu.png
+share/help/ar/mate-battstat/index.docbook
+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
@@ -361,13 +361,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/as/mate-battstat/figures/battstat-applet.png
+share/help/as/mate-battstat/figures/battstat-credits-hal.png
+share/help/as/mate-battstat/figures/battstat-preferences.png
+share/help/as/mate-battstat/figures/context-menu.png
+share/help/as/mate-battstat/index.docbook
+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
@@ -436,13 +436,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/ast/mate-battstat/figures/battstat-applet.png
+share/help/ast/mate-battstat/figures/battstat-credits-hal.png
+share/help/ast/mate-battstat/figures/battstat-preferences.png
+share/help/ast/mate-battstat/figures/context-menu.png
+share/help/ast/mate-battstat/index.docbook
+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
@@ -511,13 +511,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/az/mate-battstat/figures/battstat-applet.png
+share/help/az/mate-battstat/figures/battstat-credits-hal.png
+share/help/az/mate-battstat/figures/battstat-preferences.png
+share/help/az/mate-battstat/figures/context-menu.png
+share/help/az/mate-battstat/index.docbook
+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
@@ -586,13 +586,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/be/mate-battstat/figures/battstat-applet.png
+share/help/be/mate-battstat/figures/battstat-credits-hal.png
+share/help/be/mate-battstat/figures/battstat-preferences.png
+share/help/be/mate-battstat/figures/context-menu.png
+share/help/be/mate-battstat/index.docbook
+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
@@ -661,13 +661,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/bg/mate-battstat/figures/battstat-applet.png
+share/help/bg/mate-battstat/figures/battstat-credits-hal.png
+share/help/bg/mate-battstat/figures/battstat-preferences.png
+share/help/bg/mate-battstat/figures/context-menu.png
+share/help/bg/mate-battstat/index.docbook
+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
@@ -736,13 +736,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/bn/mate-battstat/figures/battstat-applet.png
+share/help/bn/mate-battstat/figures/battstat-credits-hal.png
+share/help/bn/mate-battstat/figures/battstat-preferences.png
+share/help/bn/mate-battstat/figures/context-menu.png
+share/help/bn/mate-battstat/index.docbook
+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
@@ -811,13 +811,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/bn_IN/mate-battstat/figures/battstat-applet.png
+share/help/bn_IN/mate-battstat/figures/battstat-credits-hal.png
+share/help/bn_IN/mate-battstat/figures/battstat-preferences.png
+share/help/bn_IN/mate-battstat/figures/context-menu.png
+share/help/bn_IN/mate-battstat/index.docbook
+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
@@ -886,13 +886,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/br/mate-battstat/figures/battstat-applet.png
+share/help/br/mate-battstat/figures/battstat-credits-hal.png
+share/help/br/mate-battstat/figures/battstat-preferences.png
+share/help/br/mate-battstat/figures/context-menu.png
+share/help/br/mate-battstat/index.docbook
+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
@@ -961,13 +961,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/bs/mate-battstat/figures/battstat-applet.png
+share/help/bs/mate-battstat/figures/battstat-credits-hal.png
+share/help/bs/mate-battstat/figures/battstat-preferences.png
+share/help/bs/mate-battstat/figures/context-menu.png
+share/help/bs/mate-battstat/index.docbook
+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
@@ -1036,13 +1036,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/ca/mate-battstat/figures/battstat-applet.png
+share/help/ca/mate-battstat/figures/battstat-credits-hal.png
+share/help/ca/mate-battstat/figures/battstat-preferences.png
+share/help/ca/mate-battstat/figures/context-menu.png
+share/help/ca/mate-battstat/index.docbook
+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
@@ -1111,13 +1111,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/ca@valencia/mate-battstat/figures/battstat-applet.png
+share/help/ca@valencia/mate-battstat/figures/battstat-credits-hal.png
+share/help/ca@valencia/mate-battstat/figures/battstat-preferences.png
+share/help/ca@valencia/mate-battstat/figures/context-menu.png
+share/help/ca@valencia/mate-battstat/index.docbook
+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
@@ -1186,13 +1186,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/cmn/mate-battstat/figures/battstat-applet.png
+share/help/cmn/mate-battstat/figures/battstat-credits-hal.png
+share/help/cmn/mate-battstat/figures/battstat-preferences.png
+share/help/cmn/mate-battstat/figures/context-menu.png
+share/help/cmn/mate-battstat/index.docbook
+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
@@ -1261,13 +1261,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/crh/mate-battstat/figures/battstat-applet.png
+share/help/crh/mate-battstat/figures/battstat-credits-hal.png
+share/help/crh/mate-battstat/figures/battstat-preferences.png
+share/help/crh/mate-battstat/figures/context-menu.png
+share/help/crh/mate-battstat/index.docbook
+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
@@ -1336,13 +1336,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/cs/mate-battstat/figures/battstat-applet.png
+share/help/cs/mate-battstat/figures/battstat-credits-hal.png
+share/help/cs/mate-battstat/figures/battstat-preferences.png
+share/help/cs/mate-battstat/figures/context-menu.png
+share/help/cs/mate-battstat/index.docbook
+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
@@ -1417,13 +1417,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/cy/mate-battstat/figures/battstat-applet.png
+share/help/cy/mate-battstat/figures/battstat-credits-hal.png
+share/help/cy/mate-battstat/figures/battstat-preferences.png
+share/help/cy/mate-battstat/figures/context-menu.png
+share/help/cy/mate-battstat/index.docbook
+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
@@ -1492,13 +1492,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/da/mate-battstat/figures/battstat-applet.png
+share/help/da/mate-battstat/figures/battstat-credits-hal.png
+share/help/da/mate-battstat/figures/battstat-preferences.png
+share/help/da/mate-battstat/figures/context-menu.png
+share/help/da/mate-battstat/index.docbook
+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
@@ -1567,13 +1567,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/de/mate-battstat/figures/battstat-applet.png
+share/help/de/mate-battstat/figures/battstat-credits-hal.png
+share/help/de/mate-battstat/figures/battstat-preferences.png
+share/help/de/mate-battstat/figures/context-menu.png
+share/help/de/mate-battstat/index.docbook
+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
@@ -1642,13 +1642,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/dz/mate-battstat/figures/battstat-applet.png
+share/help/dz/mate-battstat/figures/battstat-credits-hal.png
+share/help/dz/mate-battstat/figures/battstat-preferences.png
+share/help/dz/mate-battstat/figures/context-menu.png
+share/help/dz/mate-battstat/index.docbook
+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
@@ -1717,13 +1717,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/el/mate-battstat/figures/battstat-applet.png
+share/help/el/mate-battstat/figures/battstat-credits-hal.png
+share/help/el/mate-battstat/figures/battstat-preferences.png
+share/help/el/mate-battstat/figures/context-menu.png
+share/help/el/mate-battstat/index.docbook
+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
@@ -1792,13 +1792,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/en_AU/mate-battstat/figures/battstat-applet.png
+share/help/en_AU/mate-battstat/figures/battstat-credits-hal.png
+share/help/en_AU/mate-battstat/figures/battstat-preferences.png
+share/help/en_AU/mate-battstat/figures/context-menu.png
+share/help/en_AU/mate-battstat/index.docbook
+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
@@ -1867,13 +1867,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/en_CA/mate-battstat/figures/battstat-applet.png
+share/help/en_CA/mate-battstat/figures/battstat-credits-hal.png
+share/help/en_CA/mate-battstat/figures/battstat-preferences.png
+share/help/en_CA/mate-battstat/figures/context-menu.png
+share/help/en_CA/mate-battstat/index.docbook
+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
@@ -1942,13 +1942,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/en_GB/mate-battstat/figures/battstat-applet.png
+share/help/en_GB/mate-battstat/figures/battstat-credits-hal.png
+share/help/en_GB/mate-battstat/figures/battstat-preferences.png
+share/help/en_GB/mate-battstat/figures/context-menu.png
+share/help/en_GB/mate-battstat/index.docbook
+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
@@ -2017,13 +2017,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/eo/mate-battstat/figures/battstat-applet.png
+share/help/eo/mate-battstat/figures/battstat-credits-hal.png
+share/help/eo/mate-battstat/figures/battstat-preferences.png
+share/help/eo/mate-battstat/figures/context-menu.png
+share/help/eo/mate-battstat/index.docbook
+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
@@ -2092,13 +2092,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/es/mate-battstat/figures/battstat-applet.png
+share/help/es/mate-battstat/figures/battstat-credits-hal.png
+share/help/es/mate-battstat/figures/battstat-preferences.png
+share/help/es/mate-battstat/figures/context-menu.png
+share/help/es/mate-battstat/index.docbook
+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
@@ -2167,13 +2167,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/es_AR/mate-battstat/figures/battstat-applet.png
+share/help/es_AR/mate-battstat/figures/battstat-credits-hal.png
+share/help/es_AR/mate-battstat/figures/battstat-preferences.png
+share/help/es_AR/mate-battstat/figures/context-menu.png
+share/help/es_AR/mate-battstat/index.docbook
+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
@@ -2242,13 +2242,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/es_CL/mate-battstat/figures/battstat-applet.png
+share/help/es_CL/mate-battstat/figures/battstat-credits-hal.png
+share/help/es_CL/mate-battstat/figures/battstat-preferences.png
+share/help/es_CL/mate-battstat/figures/context-menu.png
+share/help/es_CL/mate-battstat/index.docbook
+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
@@ -2306,13 +2306,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/es_CO/mate-battstat/figures/battstat-applet.png
+share/help/es_CO/mate-battstat/figures/battstat-credits-hal.png
+share/help/es_CO/mate-battstat/figures/battstat-preferences.png
+share/help/es_CO/mate-battstat/figures/context-menu.png
+share/help/es_CO/mate-battstat/index.docbook
+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
@@ -2540,13 +2540,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/es_ES/mate-battstat/figures/battstat-applet.png
+share/help/es_ES/mate-battstat/figures/battstat-credits-hal.png
+share/help/es_ES/mate-battstat/figures/battstat-preferences.png
+share/help/es_ES/mate-battstat/figures/context-menu.png
+share/help/es_ES/mate-battstat/index.docbook
+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
@@ -2615,13 +2615,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/es_MX/mate-battstat/figures/battstat-applet.png
+share/help/es_MX/mate-battstat/figures/battstat-credits-hal.png
+share/help/es_MX/mate-battstat/figures/battstat-preferences.png
+share/help/es_MX/mate-battstat/figures/context-menu.png
+share/help/es_MX/mate-battstat/index.docbook
+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
@@ -2845,13 +2845,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/es_PR/mate-battstat/figures/battstat-applet.png
+share/help/es_PR/mate-battstat/figures/battstat-credits-hal.png
+share/help/es_PR/mate-battstat/figures/battstat-preferences.png
+share/help/es_PR/mate-battstat/figures/context-menu.png
+share/help/es_PR/mate-battstat/index.docbook
+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
@@ -3064,13 +3064,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/et/mate-battstat/figures/battstat-applet.png
+share/help/et/mate-battstat/figures/battstat-credits-hal.png
+share/help/et/mate-battstat/figures/battstat-preferences.png
+share/help/et/mate-battstat/figures/context-menu.png
+share/help/et/mate-battstat/index.docbook
+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
@@ -3139,13 +3139,13 @@ 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
+share/help/eu/mate-battstat/figures/battstat-applet-expanded.png
+share/help/eu/mate-battstat/figures/battstat-applet.png
+share/help/eu/mate-battstat/figures/battstat-credits-hal.png
+share/help/eu/mate-battstat/figures/battstat-preferences.png
+share/help/eu/mate-battstat/figures/context-menu.png
+share/help/eu/mate-battstat/index.docbook
+share/help/eu/mate-battstat/legal.xml
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
@@ -3214,13 +3214,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/fa/mate-battstat/figures/battstat-applet.png
+share/help/fa/mate-battstat/figures/battstat-credits-hal.png
+share/help/fa/mate-battstat/figures/battstat-preferences.png
+share/help/fa/mate-battstat/figures/context-menu.png
+share/help/fa/mate-battstat/index.docbook
+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
@@ -3289,13 +3289,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/fi/mate-battstat/figures/battstat-applet.png
+share/help/fi/mate-battstat/figures/battstat-credits-hal.png
+share/help/fi/mate-battstat/figures/battstat-preferences.png
+share/help/fi/mate-battstat/figures/context-menu.png
+share/help/fi/mate-battstat/index.docbook
+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
@@ -3370,13 +3370,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/fr/mate-battstat/figures/battstat-applet.png
+share/help/fr/mate-battstat/figures/battstat-credits-hal.png
+share/help/fr/mate-battstat/figures/battstat-preferences.png
+share/help/fr/mate-battstat/figures/context-menu.png
+share/help/fr/mate-battstat/index.docbook
+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
@@ -3436,13 +3436,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/frp/mate-battstat/figures/battstat-applet.png
+share/help/frp/mate-battstat/figures/battstat-credits-hal.png
+share/help/frp/mate-battstat/figures/battstat-preferences.png
+share/help/frp/mate-battstat/figures/context-menu.png
+share/help/frp/mate-battstat/index.docbook
+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
@@ -3495,13 +3495,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/fur/mate-battstat/figures/battstat-applet.png
+share/help/fur/mate-battstat/figures/battstat-credits-hal.png
+share/help/fur/mate-battstat/figures/battstat-preferences.png
+share/help/fur/mate-battstat/figures/context-menu.png
+share/help/fur/mate-battstat/index.docbook
+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
@@ -3570,13 +3570,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/fy/mate-battstat/figures/battstat-applet.png
+share/help/fy/mate-battstat/figures/battstat-credits-hal.png
+share/help/fy/mate-battstat/figures/battstat-preferences.png
+share/help/fy/mate-battstat/figures/context-menu.png
+share/help/fy/mate-battstat/index.docbook
+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
@@ -3645,13 +3645,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/ga/mate-battstat/figures/battstat-applet.png
+share/help/ga/mate-battstat/figures/battstat-credits-hal.png
+share/help/ga/mate-battstat/figures/battstat-preferences.png
+share/help/ga/mate-battstat/figures/context-menu.png
+share/help/ga/mate-battstat/index.docbook
+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
@@ -3720,13 +3720,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/gl/mate-battstat/figures/battstat-applet.png
+share/help/gl/mate-battstat/figures/battstat-credits-hal.png
+share/help/gl/mate-battstat/figures/battstat-preferences.png
+share/help/gl/mate-battstat/figures/context-menu.png
+share/help/gl/mate-battstat/index.docbook
+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
@@ -3795,13 +3795,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/gu/mate-battstat/figures/battstat-applet.png
+share/help/gu/mate-battstat/figures/battstat-credits-hal.png
+share/help/gu/mate-battstat/figures/battstat-preferences.png
+share/help/gu/mate-battstat/figures/context-menu.png
+share/help/gu/mate-battstat/index.docbook
+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
@@ -3870,13 +3870,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/ha/mate-battstat/figures/battstat-applet.png
+share/help/ha/mate-battstat/figures/battstat-credits-hal.png
+share/help/ha/mate-battstat/figures/battstat-preferences.png
+share/help/ha/mate-battstat/figures/context-menu.png
+share/help/ha/mate-battstat/index.docbook
+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
@@ -3945,13 +3945,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/he/mate-battstat/figures/battstat-applet.png
+share/help/he/mate-battstat/figures/battstat-credits-hal.png
+share/help/he/mate-battstat/figures/battstat-preferences.png
+share/help/he/mate-battstat/figures/context-menu.png
+share/help/he/mate-battstat/index.docbook
+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
@@ -4020,13 +4020,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/hi/mate-battstat/figures/battstat-applet.png
+share/help/hi/mate-battstat/figures/battstat-credits-hal.png
+share/help/hi/mate-battstat/figures/battstat-preferences.png
+share/help/hi/mate-battstat/figures/context-menu.png
+share/help/hi/mate-battstat/index.docbook
+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
@@ -4095,13 +4095,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/hr/mate-battstat/figures/battstat-applet.png
+share/help/hr/mate-battstat/figures/battstat-credits-hal.png
+share/help/hr/mate-battstat/figures/battstat-preferences.png
+share/help/hr/mate-battstat/figures/context-menu.png
+share/help/hr/mate-battstat/index.docbook
+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
@@ -4170,13 +4170,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/hu/mate-battstat/figures/battstat-applet.png
+share/help/hu/mate-battstat/figures/battstat-credits-hal.png
+share/help/hu/mate-battstat/figures/battstat-preferences.png
+share/help/hu/mate-battstat/figures/context-menu.png
+share/help/hu/mate-battstat/index.docbook
+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
@@ -4245,13 +4245,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/hy/mate-battstat/figures/battstat-applet.png
+share/help/hy/mate-battstat/figures/battstat-credits-hal.png
+share/help/hy/mate-battstat/figures/battstat-preferences.png
+share/help/hy/mate-battstat/figures/context-menu.png
+share/help/hy/mate-battstat/index.docbook
+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
@@ -4320,13 +4320,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/ia/mate-battstat/figures/battstat-applet.png
+share/help/ia/mate-battstat/figures/battstat-credits-hal.png
+share/help/ia/mate-battstat/figures/battstat-preferences.png
+share/help/ia/mate-battstat/figures/context-menu.png
+share/help/ia/mate-battstat/index.docbook
+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
@@ -4375,13 +4375,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/id/mate-battstat/figures/battstat-applet.png
+share/help/id/mate-battstat/figures/battstat-credits-hal.png
+share/help/id/mate-battstat/figures/battstat-preferences.png
+share/help/id/mate-battstat/figures/context-menu.png
+share/help/id/mate-battstat/index.docbook
+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
@@ -4450,13 +4450,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/ie/mate-battstat/figures/battstat-applet.png
+share/help/ie/mate-battstat/figures/battstat-credits-hal.png
+share/help/ie/mate-battstat/figures/battstat-preferences.png
+share/help/ie/mate-battstat/figures/context-menu.png
+share/help/ie/mate-battstat/index.docbook
+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
@@ -4525,13 +4525,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/ig/mate-battstat/figures/battstat-applet.png
+share/help/ig/mate-battstat/figures/battstat-credits-hal.png
+share/help/ig/mate-battstat/figures/battstat-preferences.png
+share/help/ig/mate-battstat/figures/context-menu.png
+share/help/ig/mate-battstat/index.docbook
+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
@@ -4600,13 +4600,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/is/mate-battstat/figures/battstat-applet.png
+share/help/is/mate-battstat/figures/battstat-credits-hal.png
+share/help/is/mate-battstat/figures/battstat-preferences.png
+share/help/is/mate-battstat/figures/context-menu.png
+share/help/is/mate-battstat/index.docbook
+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
@@ -4675,13 +4675,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/it/mate-battstat/figures/battstat-applet.png
+share/help/it/mate-battstat/figures/battstat-credits-hal.png
+share/help/it/mate-battstat/figures/battstat-preferences.png
+share/help/it/mate-battstat/figures/context-menu.png
+share/help/it/mate-battstat/index.docbook
+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
@@ -4750,13 +4750,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/ja/mate-battstat/figures/battstat-applet.png
+share/help/ja/mate-battstat/figures/battstat-credits-hal.png
+share/help/ja/mate-battstat/figures/battstat-preferences.png
+share/help/ja/mate-battstat/figures/context-menu.png
+share/help/ja/mate-battstat/index.docbook
+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
@@ -4813,13 +4813,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/jv/mate-battstat/figures/battstat-applet.png
+share/help/jv/mate-battstat/figures/battstat-credits-hal.png
+share/help/jv/mate-battstat/figures/battstat-preferences.png
+share/help/jv/mate-battstat/figures/context-menu.png
+share/help/jv/mate-battstat/index.docbook
+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
@@ -4845,13 +4845,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/ka/mate-battstat/figures/battstat-applet.png
+share/help/ka/mate-battstat/figures/battstat-credits-hal.png
+share/help/ka/mate-battstat/figures/battstat-preferences.png
+share/help/ka/mate-battstat/figures/context-menu.png
+share/help/ka/mate-battstat/index.docbook
+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
@@ -4920,13 +4920,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/kab/mate-battstat/figures/battstat-applet.png
+share/help/kab/mate-battstat/figures/battstat-credits-hal.png
+share/help/kab/mate-battstat/figures/battstat-preferences.png
+share/help/kab/mate-battstat/figures/context-menu.png
+share/help/kab/mate-battstat/index.docbook
+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
@@ -4995,13 +4995,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/kk/mate-battstat/figures/battstat-applet.png
+share/help/kk/mate-battstat/figures/battstat-credits-hal.png
+share/help/kk/mate-battstat/figures/battstat-preferences.png
+share/help/kk/mate-battstat/figures/context-menu.png
+share/help/kk/mate-battstat/index.docbook
+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
@@ -5058,13 +5058,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/km/mate-battstat/figures/battstat-applet.png
+share/help/km/mate-battstat/figures/battstat-credits-hal.png
+share/help/km/mate-battstat/figures/battstat-preferences.png
+share/help/km/mate-battstat/figures/context-menu.png
+share/help/km/mate-battstat/index.docbook
+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
@@ -5106,13 +5106,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/kn/mate-battstat/figures/battstat-applet.png
+share/help/kn/mate-battstat/figures/battstat-credits-hal.png
+share/help/kn/mate-battstat/figures/battstat-preferences.png
+share/help/kn/mate-battstat/figures/context-menu.png
+share/help/kn/mate-battstat/index.docbook
+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
@@ -5181,13 +5181,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/ko/mate-battstat/figures/battstat-applet.png
+share/help/ko/mate-battstat/figures/battstat-credits-hal.png
+share/help/ko/mate-battstat/figures/battstat-preferences.png
+share/help/ko/mate-battstat/figures/context-menu.png
+share/help/ko/mate-battstat/index.docbook
+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
@@ -5262,13 +5262,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/ku/mate-battstat/figures/battstat-applet.png
+share/help/ku/mate-battstat/figures/battstat-credits-hal.png
+share/help/ku/mate-battstat/figures/battstat-preferences.png
+share/help/ku/mate-battstat/figures/context-menu.png
+share/help/ku/mate-battstat/index.docbook
+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
@@ -5325,13 +5325,13 @@ 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
-%%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-battstat/figures/battstat-applet-expanded.png
+share/help/ku_IQ/mate-battstat/figures/battstat-applet.png
+share/help/ku_IQ/mate-battstat/figures/battstat-credits-hal.png
+share/help/ku_IQ/mate-battstat/figures/battstat-preferences.png
+share/help/ku_IQ/mate-battstat/figures/context-menu.png
+share/help/ku_IQ/mate-battstat/index.docbook
+share/help/ku_IQ/mate-battstat/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
@@ -5384,13 +5384,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/ky/mate-battstat/figures/battstat-applet.png
+share/help/ky/mate-battstat/figures/battstat-credits-hal.png
+share/help/ky/mate-battstat/figures/battstat-preferences.png
+share/help/ky/mate-battstat/figures/context-menu.png
+share/help/ky/mate-battstat/index.docbook
+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
@@ -5447,13 +5447,13 @@ 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
-%%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-battstat/figures/battstat-applet-expanded.png
+share/help/la/mate-battstat/figures/battstat-applet.png
+share/help/la/mate-battstat/figures/battstat-credits-hal.png
+share/help/la/mate-battstat/figures/battstat-preferences.png
+share/help/la/mate-battstat/figures/context-menu.png
+share/help/la/mate-battstat/index.docbook
+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
@@ -5554,13 +5554,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/lt/mate-battstat/figures/battstat-applet.png
+share/help/lt/mate-battstat/figures/battstat-credits-hal.png
+share/help/lt/mate-battstat/figures/battstat-preferences.png
+share/help/lt/mate-battstat/figures/context-menu.png
+share/help/lt/mate-battstat/index.docbook
+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
@@ -5629,13 +5629,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/lv/mate-battstat/figures/battstat-applet.png
+share/help/lv/mate-battstat/figures/battstat-credits-hal.png
+share/help/lv/mate-battstat/figures/battstat-preferences.png
+share/help/lv/mate-battstat/figures/context-menu.png
+share/help/lv/mate-battstat/index.docbook
+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
@@ -5704,13 +5704,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/mai/mate-battstat/figures/battstat-applet.png
+share/help/mai/mate-battstat/figures/battstat-credits-hal.png
+share/help/mai/mate-battstat/figures/battstat-preferences.png
+share/help/mai/mate-battstat/figures/context-menu.png
+share/help/mai/mate-battstat/index.docbook
+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
@@ -5779,13 +5779,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/mg/mate-battstat/figures/battstat-applet.png
+share/help/mg/mate-battstat/figures/battstat-credits-hal.png
+share/help/mg/mate-battstat/figures/battstat-preferences.png
+share/help/mg/mate-battstat/figures/context-menu.png
+share/help/mg/mate-battstat/index.docbook
+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
@@ -5842,13 +5842,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/mi/mate-battstat/figures/battstat-applet.png
+share/help/mi/mate-battstat/figures/battstat-credits-hal.png
+share/help/mi/mate-battstat/figures/battstat-preferences.png
+share/help/mi/mate-battstat/figures/context-menu.png
+share/help/mi/mate-battstat/index.docbook
+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
@@ -5901,13 +5901,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/mk/mate-battstat/figures/battstat-applet.png
+share/help/mk/mate-battstat/figures/battstat-credits-hal.png
+share/help/mk/mate-battstat/figures/battstat-preferences.png
+share/help/mk/mate-battstat/figures/context-menu.png
+share/help/mk/mate-battstat/index.docbook
+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
@@ -5976,13 +5976,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/ml/mate-battstat/figures/battstat-applet.png
+share/help/ml/mate-battstat/figures/battstat-credits-hal.png
+share/help/ml/mate-battstat/figures/battstat-preferences.png
+share/help/ml/mate-battstat/figures/context-menu.png
+share/help/ml/mate-battstat/index.docbook
+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
@@ -6051,13 +6051,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/mn/mate-battstat/figures/battstat-applet.png
+share/help/mn/mate-battstat/figures/battstat-credits-hal.png
+share/help/mn/mate-battstat/figures/battstat-preferences.png
+share/help/mn/mate-battstat/figures/context-menu.png
+share/help/mn/mate-battstat/index.docbook
+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
@@ -6126,13 +6126,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/mr/mate-battstat/figures/battstat-applet.png
+share/help/mr/mate-battstat/figures/battstat-credits-hal.png
+share/help/mr/mate-battstat/figures/battstat-preferences.png
+share/help/mr/mate-battstat/figures/context-menu.png
+share/help/mr/mate-battstat/index.docbook
+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
@@ -6201,13 +6201,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/ms/mate-battstat/figures/battstat-applet.png
+share/help/ms/mate-battstat/figures/battstat-credits-hal.png
+share/help/ms/mate-battstat/figures/battstat-preferences.png
+share/help/ms/mate-battstat/figures/context-menu.png
+share/help/ms/mate-battstat/index.docbook
+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
@@ -6279,13 +6279,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/nb/mate-battstat/figures/battstat-applet.png
+share/help/nb/mate-battstat/figures/battstat-credits-hal.png
+share/help/nb/mate-battstat/figures/battstat-preferences.png
+share/help/nb/mate-battstat/figures/context-menu.png
+share/help/nb/mate-battstat/index.docbook
+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
@@ -6354,13 +6354,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/nds/mate-battstat/figures/battstat-applet.png
+share/help/nds/mate-battstat/figures/battstat-credits-hal.png
+share/help/nds/mate-battstat/figures/battstat-preferences.png
+share/help/nds/mate-battstat/figures/context-menu.png
+share/help/nds/mate-battstat/index.docbook
+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
@@ -6429,13 +6429,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/ne/mate-battstat/figures/battstat-applet.png
+share/help/ne/mate-battstat/figures/battstat-credits-hal.png
+share/help/ne/mate-battstat/figures/battstat-preferences.png
+share/help/ne/mate-battstat/figures/context-menu.png
+share/help/ne/mate-battstat/index.docbook
+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
@@ -6504,13 +6504,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/nl/mate-battstat/figures/battstat-applet.png
+share/help/nl/mate-battstat/figures/battstat-credits-hal.png
+share/help/nl/mate-battstat/figures/battstat-preferences.png
+share/help/nl/mate-battstat/figures/context-menu.png
+share/help/nl/mate-battstat/index.docbook
+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
@@ -6579,13 +6579,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/nn/mate-battstat/figures/battstat-applet.png
+share/help/nn/mate-battstat/figures/battstat-credits-hal.png
+share/help/nn/mate-battstat/figures/battstat-preferences.png
+share/help/nn/mate-battstat/figures/context-menu.png
+share/help/nn/mate-battstat/index.docbook
+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
@@ -6654,13 +6654,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/nso/mate-battstat/figures/battstat-applet.png
+share/help/nso/mate-battstat/figures/battstat-credits-hal.png
+share/help/nso/mate-battstat/figures/battstat-preferences.png
+share/help/nso/mate-battstat/figures/context-menu.png
+share/help/nso/mate-battstat/index.docbook
+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
@@ -6729,13 +6729,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/oc/mate-battstat/figures/battstat-applet.png
+share/help/oc/mate-battstat/figures/battstat-credits-hal.png
+share/help/oc/mate-battstat/figures/battstat-preferences.png
+share/help/oc/mate-battstat/figures/context-menu.png
+share/help/oc/mate-battstat/index.docbook
+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
@@ -6804,13 +6804,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/or/mate-battstat/figures/battstat-applet.png
+share/help/or/mate-battstat/figures/battstat-credits-hal.png
+share/help/or/mate-battstat/figures/battstat-preferences.png
+share/help/or/mate-battstat/figures/context-menu.png
+share/help/or/mate-battstat/index.docbook
+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
@@ -6879,13 +6879,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/pa/mate-battstat/figures/battstat-applet.png
+share/help/pa/mate-battstat/figures/battstat-credits-hal.png
+share/help/pa/mate-battstat/figures/battstat-preferences.png
+share/help/pa/mate-battstat/figures/context-menu.png
+share/help/pa/mate-battstat/index.docbook
+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
@@ -6954,13 +6954,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/pl/mate-battstat/figures/battstat-applet.png
+share/help/pl/mate-battstat/figures/battstat-credits-hal.png
+share/help/pl/mate-battstat/figures/battstat-preferences.png
+share/help/pl/mate-battstat/figures/context-menu.png
+share/help/pl/mate-battstat/index.docbook
+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
@@ -7032,13 +7032,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/ps/mate-battstat/figures/battstat-applet.png
+share/help/ps/mate-battstat/figures/battstat-credits-hal.png
+share/help/ps/mate-battstat/figures/battstat-preferences.png
+share/help/ps/mate-battstat/figures/context-menu.png
+share/help/ps/mate-battstat/index.docbook
+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
@@ -7107,13 +7107,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/pt/mate-battstat/figures/battstat-applet.png
+share/help/pt/mate-battstat/figures/battstat-credits-hal.png
+share/help/pt/mate-battstat/figures/battstat-preferences.png
+share/help/pt/mate-battstat/figures/context-menu.png
+share/help/pt/mate-battstat/index.docbook
+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
@@ -7182,13 +7182,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/pt_BR/mate-battstat/figures/battstat-applet.png
+share/help/pt_BR/mate-battstat/figures/battstat-credits-hal.png
+share/help/pt_BR/mate-battstat/figures/battstat-preferences.png
+share/help/pt_BR/mate-battstat/figures/context-menu.png
+share/help/pt_BR/mate-battstat/index.docbook
+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
@@ -7257,13 +7257,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/ro/mate-battstat/figures/battstat-applet.png
+share/help/ro/mate-battstat/figures/battstat-credits-hal.png
+share/help/ro/mate-battstat/figures/battstat-preferences.png
+share/help/ro/mate-battstat/figures/context-menu.png
+share/help/ro/mate-battstat/index.docbook
+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
@@ -7332,13 +7332,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/ru/mate-battstat/figures/battstat-applet.png
+share/help/ru/mate-battstat/figures/battstat-credits-hal.png
+share/help/ru/mate-battstat/figures/battstat-preferences.png
+share/help/ru/mate-battstat/figures/context-menu.png
+share/help/ru/mate-battstat/index.docbook
+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
@@ -7443,13 +7443,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/si/mate-battstat/figures/battstat-applet.png
+share/help/si/mate-battstat/figures/battstat-credits-hal.png
+share/help/si/mate-battstat/figures/battstat-preferences.png
+share/help/si/mate-battstat/figures/context-menu.png
+share/help/si/mate-battstat/index.docbook
+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
@@ -7518,13 +7518,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/sk/mate-battstat/figures/battstat-applet.png
+share/help/sk/mate-battstat/figures/battstat-credits-hal.png
+share/help/sk/mate-battstat/figures/battstat-preferences.png
+share/help/sk/mate-battstat/figures/context-menu.png
+share/help/sk/mate-battstat/index.docbook
+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
@@ -7593,13 +7593,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/sl/mate-battstat/figures/battstat-applet.png
+share/help/sl/mate-battstat/figures/battstat-credits-hal.png
+share/help/sl/mate-battstat/figures/battstat-preferences.png
+share/help/sl/mate-battstat/figures/context-menu.png
+share/help/sl/mate-battstat/index.docbook
+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
@@ -7668,13 +7668,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/sq/mate-battstat/figures/battstat-applet.png
+share/help/sq/mate-battstat/figures/battstat-credits-hal.png
+share/help/sq/mate-battstat/figures/battstat-preferences.png
+share/help/sq/mate-battstat/figures/context-menu.png
+share/help/sq/mate-battstat/index.docbook
+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
@@ -7743,13 +7743,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/sr/mate-battstat/figures/battstat-applet.png
+share/help/sr/mate-battstat/figures/battstat-credits-hal.png
+share/help/sr/mate-battstat/figures/battstat-preferences.png
+share/help/sr/mate-battstat/figures/context-menu.png
+share/help/sr/mate-battstat/index.docbook
+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
@@ -7818,13 +7818,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/sr@latin/mate-battstat/figures/battstat-applet.png
+share/help/sr@latin/mate-battstat/figures/battstat-credits-hal.png
+share/help/sr@latin/mate-battstat/figures/battstat-preferences.png
+share/help/sr@latin/mate-battstat/figures/context-menu.png
+share/help/sr@latin/mate-battstat/index.docbook
+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
@@ -7893,13 +7893,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/sv/mate-battstat/figures/battstat-applet.png
+share/help/sv/mate-battstat/figures/battstat-credits-hal.png
+share/help/sv/mate-battstat/figures/battstat-preferences.png
+share/help/sv/mate-battstat/figures/context-menu.png
+share/help/sv/mate-battstat/index.docbook
+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
@@ -7974,13 +7974,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/ta/mate-battstat/figures/battstat-applet.png
+share/help/ta/mate-battstat/figures/battstat-credits-hal.png
+share/help/ta/mate-battstat/figures/battstat-preferences.png
+share/help/ta/mate-battstat/figures/context-menu.png
+share/help/ta/mate-battstat/index.docbook
+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
@@ -8049,13 +8049,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/te/mate-battstat/figures/battstat-applet.png
+share/help/te/mate-battstat/figures/battstat-credits-hal.png
+share/help/te/mate-battstat/figures/battstat-preferences.png
+share/help/te/mate-battstat/figures/context-menu.png
+share/help/te/mate-battstat/index.docbook
+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
@@ -8124,13 +8124,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/th/mate-battstat/figures/battstat-applet.png
+share/help/th/mate-battstat/figures/battstat-credits-hal.png
+share/help/th/mate-battstat/figures/battstat-preferences.png
+share/help/th/mate-battstat/figures/context-menu.png
+share/help/th/mate-battstat/index.docbook
+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
@@ -8187,13 +8187,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/tk/mate-battstat/figures/battstat-applet.png
+share/help/tk/mate-battstat/figures/battstat-credits-hal.png
+share/help/tk/mate-battstat/figures/battstat-preferences.png
+share/help/tk/mate-battstat/figures/context-menu.png
+share/help/tk/mate-battstat/index.docbook
+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
@@ -8246,13 +8246,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/tr/mate-battstat/figures/battstat-applet.png
+share/help/tr/mate-battstat/figures/battstat-credits-hal.png
+share/help/tr/mate-battstat/figures/battstat-preferences.png
+share/help/tr/mate-battstat/figures/context-menu.png
+share/help/tr/mate-battstat/index.docbook
+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
@@ -8324,13 +8324,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/ug/mate-battstat/figures/battstat-applet.png
+share/help/ug/mate-battstat/figures/battstat-credits-hal.png
+share/help/ug/mate-battstat/figures/battstat-preferences.png
+share/help/ug/mate-battstat/figures/context-menu.png
+share/help/ug/mate-battstat/index.docbook
+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
@@ -8399,13 +8399,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/uk/mate-battstat/figures/battstat-applet.png
+share/help/uk/mate-battstat/figures/battstat-credits-hal.png
+share/help/uk/mate-battstat/figures/battstat-preferences.png
+share/help/uk/mate-battstat/figures/context-menu.png
+share/help/uk/mate-battstat/index.docbook
+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
@@ -8474,13 +8474,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/ur/mate-battstat/figures/battstat-applet.png
+share/help/ur/mate-battstat/figures/battstat-credits-hal.png
+share/help/ur/mate-battstat/figures/battstat-preferences.png
+share/help/ur/mate-battstat/figures/context-menu.png
+share/help/ur/mate-battstat/index.docbook
+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
@@ -8555,13 +8555,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/uz/mate-battstat/figures/battstat-applet.png
+share/help/uz/mate-battstat/figures/battstat-credits-hal.png
+share/help/uz/mate-battstat/figures/battstat-preferences.png
+share/help/uz/mate-battstat/figures/context-menu.png
+share/help/uz/mate-battstat/index.docbook
+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
@@ -8630,13 +8630,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/vi/mate-battstat/figures/battstat-applet.png
+share/help/vi/mate-battstat/figures/battstat-credits-hal.png
+share/help/vi/mate-battstat/figures/battstat-preferences.png
+share/help/vi/mate-battstat/figures/context-menu.png
+share/help/vi/mate-battstat/index.docbook
+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
@@ -8705,13 +8705,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/wa/mate-battstat/figures/battstat-applet.png
+share/help/wa/mate-battstat/figures/battstat-credits-hal.png
+share/help/wa/mate-battstat/figures/battstat-preferences.png
+share/help/wa/mate-battstat/figures/context-menu.png
+share/help/wa/mate-battstat/index.docbook
+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
@@ -8780,13 +8780,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/xh/mate-battstat/figures/battstat-applet.png
+share/help/xh/mate-battstat/figures/battstat-credits-hal.png
+share/help/xh/mate-battstat/figures/battstat-preferences.png
+share/help/xh/mate-battstat/figures/context-menu.png
+share/help/xh/mate-battstat/index.docbook
+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
@@ -8855,13 +8855,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/yo/mate-battstat/figures/battstat-applet.png
+share/help/yo/mate-battstat/figures/battstat-credits-hal.png
+share/help/yo/mate-battstat/figures/battstat-preferences.png
+share/help/yo/mate-battstat/figures/context-menu.png
+share/help/yo/mate-battstat/index.docbook
+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
@@ -8960,13 +8960,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/zh_CN/mate-battstat/figures/battstat-applet.png
+share/help/zh_CN/mate-battstat/figures/battstat-credits-hal.png
+share/help/zh_CN/mate-battstat/figures/battstat-preferences.png
+share/help/zh_CN/mate-battstat/figures/context-menu.png
+share/help/zh_CN/mate-battstat/index.docbook
+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
@@ -9035,13 +9035,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/zh_HK/mate-battstat/figures/battstat-applet.png
+share/help/zh_HK/mate-battstat/figures/battstat-credits-hal.png
+share/help/zh_HK/mate-battstat/figures/battstat-preferences.png
+share/help/zh_HK/mate-battstat/figures/context-menu.png
+share/help/zh_HK/mate-battstat/index.docbook
+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
@@ -9110,13 +9110,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/zh_TW/mate-battstat/figures/battstat-applet.png
+share/help/zh_TW/mate-battstat/figures/battstat-credits-hal.png
+share/help/zh_TW/mate-battstat/figures/battstat-preferences.png
+share/help/zh_TW/mate-battstat/figures/context-menu.png
+share/help/zh_TW/mate-battstat/index.docbook
+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
@@ -9185,13 +9185,13 @@ 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-battstat/figures/battstat-applet-expanded.png
+share/help/zu/mate-battstat/figures/battstat-applet.png
+share/help/zu/mate-battstat/figures/battstat-credits-hal.png
+share/help/zu/mate-battstat/figures/battstat-preferences.png
+share/help/zu/mate-battstat/figures/context-menu.png
+share/help/zu/mate-battstat/index.docbook
+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
@@ -9544,9 +9544,6 @@ 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
-%%BATTERY%%%%DATADIR%%/builder/battstat_applet.ui
-%%DATADIR%%/builder/stickynotes.ui
-%%DATADIR%%/builder/trashapplet-empty-progress.ui
%%DATADIR%%/geyes/Bizarre/Bizarre-eye.png
%%DATADIR%%/geyes/Bizarre/Bizarre-pupil.png
%%DATADIR%%/geyes/Bizarre/config
@@ -9574,7 +9571,7 @@ share/locale/zu/LC_MESSAGES/mate-applets.mo
%%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.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
@@ -9585,13 +9582,3 @@ 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
-share/mate/ui/accessx-status-applet-menu.xml
-%%BATTERY%%share/mate/ui/battstat-applet-menu.xml
-share/mate/ui/charpick-applet-menu.xml
-share/mate/ui/drivemount-applet-menu.xml
-share/mate/ui/geyes-applet-menu.xml
-share/mate/ui/mateweather-applet-menu.xml
-share/mate/ui/multiload-applet-menu.xml
-share/mate/ui/netspeed-menu.xml
-share/mate/ui/stickynotes-applet-menu.xml
-share/mate/ui/trashapplet-menu.xml