diff options
Diffstat (limited to 'sysutils/gnome-power-manager')
14 files changed, 406 insertions, 228 deletions
diff --git a/sysutils/gnome-power-manager/Makefile b/sysutils/gnome-power-manager/Makefile index 76c35fcb8271..ce333ca769b3 100644 --- a/sysutils/gnome-power-manager/Makefile +++ b/sysutils/gnome-power-manager/Makefile @@ -3,12 +3,11 @@ # Whom: Joe Marcus Clarke <marcus@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/sysutils/gnome-power-manager/Makefile,v 1.54 2009/10/25 00:02:31 marcus Exp $ +# $MCom: ports/sysutils/gnome-power-manager/Makefile,v 1.63 2010/04/26 17:38:05 kwm Exp $ # PORTNAME= gnome-power-manager -PORTVERSION= 2.24.4 -PORTREVISION= 10 +PORTVERSION= 2.30.1 CATEGORIES= sysutils gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome2 @@ -16,12 +15,11 @@ DIST_SUBDIR= gnome2 MAINTAINER= gnome@FreeBSD.org COMMENT= Power management system for the GNOME Desktop -BUILD_DEPENDS= docbook2html:${PORTSDIR}/textproc/docbook-utils \ - ${LOCALBASE}/share/sgml/docbook/4.1/dtd/catalog:${PORTSDIR}/textproc/docbook-410 LIB_DEPENDS= hal.1:${PORTSDIR}/sysutils/hal \ + devkit-power-gobject.1:${PORTSDIR}/sysutils/upower \ + canberra-gtk.0:${PORTSDIR}/audio/libcanberra \ notify.1:${PORTSDIR}/devel/libnotify \ execinfo:${PORTSDIR}/devel/libexecinfo \ - polkit-gnome.0:${PORTSDIR}/sysutils/policykit-gnome \ unique-1.0.2:${PORTSDIR}/x11-toolkits/unique USE_GETTEXT= yes @@ -30,22 +28,29 @@ USE_GMAKE= yes INSTALLS_OMF= yes INSTALLS_ICONS= yes USE_AUTOTOOLS= libtool:22 -USE_GSTREAMER= good USE_GNOME= gnomeprefix gnomehack intlhack libgnomeui libwnck \ gnomedocutils gnomepanel CONFIGURE_ARGS= --with-doc-dir=${PREFIX}/share/doc \ --disable-docbook-docs \ - --enable-policykit + --enable-hal CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" GCONF_SCHEMAS= gnome-power-manager.schemas +.if !defined(NO_INSTALL_MANPAGES) +BUILD_DEPENDS+= docbook2html:${PORTSDIR}/textproc/docbook-utils \ + ${LOCALBASE}/share/sgml/docbook/4.1/dtd/catalog:${PORTSDIR}/textproc/docbook-410 MAN1= gnome-power-manager.1 gnome-power-preferences.1 \ gnome-power-statistics.1 +.endif post-patch: @${REINPLACE_CMD} -e 's|-lresolv|| ; s|-Werror||g' \ ${WRKSRC}/configure +.if defined(NO_INSTALL_MANPAGES) + @${REINPLACE_CMD} -e "s|2MAN_TRUE=$$|2MAN_TRUE='#'|g ; \ + s|2MAN_FALSE='#'|2MAN_FALSE=|g" ${WRKSRC}/configure +.endif .include <bsd.port.mk> diff --git a/sysutils/gnome-power-manager/distinfo b/sysutils/gnome-power-manager/distinfo index c3465ec86ed7..644f6020406d 100644 --- a/sysutils/gnome-power-manager/distinfo +++ b/sysutils/gnome-power-manager/distinfo @@ -1,3 +1,3 @@ -MD5 (gnome2/gnome-power-manager-2.24.4.tar.bz2) = bad8bba644d31f88d92a11d8880feada -SHA256 (gnome2/gnome-power-manager-2.24.4.tar.bz2) = 00da3aa929c444a600f7e5ccabd7a20f9b43710562b951c69cbe68ea4db37ef1 -SIZE (gnome2/gnome-power-manager-2.24.4.tar.bz2) = 2997032 +MD5 (gnome2/gnome-power-manager-2.30.1.tar.bz2) = b85178b8db77db5d22e185430549a295 +SHA256 (gnome2/gnome-power-manager-2.30.1.tar.bz2) = 47af6221ae83d329088abd8f5176f503fe5f81417a7c6766c95279b0af05021c +SIZE (gnome2/gnome-power-manager-2.30.1.tar.bz2) = 3854167 diff --git a/sysutils/gnome-power-manager/files/patch-applets_brightness_Makefile.in b/sysutils/gnome-power-manager/files/patch-applets_brightness_Makefile.in new file mode 100644 index 000000000000..9a5d2c5a5417 --- /dev/null +++ b/sysutils/gnome-power-manager/files/patch-applets_brightness_Makefile.in @@ -0,0 +1,10 @@ +--- applets/brightness/Makefile.in.orig 2010-01-01 20:51:42.000000000 +0800 ++++ applets/brightness/Makefile.in 2010-01-01 20:51:42.000000000 +0800 +@@ -344,6 +344,7 @@ + gnome_brightness_applet_LDADD = \ + $(DBUS_LIBS) \ + $(GNOME_LIBS) \ ++ -lexecinfo \ + $(PANEL_LIBS) + + serverdir = $(prefix)/libdata/bonobo/servers diff --git a/sysutils/gnome-power-manager/files/patch-applets_inhibit_Makefile.in b/sysutils/gnome-power-manager/files/patch-applets_inhibit_Makefile.in new file mode 100644 index 000000000000..4965221fe0e9 --- /dev/null +++ b/sysutils/gnome-power-manager/files/patch-applets_inhibit_Makefile.in @@ -0,0 +1,10 @@ +--- applets/inhibit/Makefile.in.orig 2010-01-01 20:53:23.000000000 +0800 ++++ applets/inhibit/Makefile.in 2010-01-01 20:53:36.000000000 +0800 +@@ -343,6 +343,7 @@ + gnome_inhibit_applet_LDADD = \ + $(DBUS_LIBS) \ + $(GNOME_LIBS) \ ++ -lexecinfo \ + $(PANEL_LIBS) + + serverdir = $(prefix)/libdata/bonobo/servers diff --git a/sysutils/gnome-power-manager/files/patch-configure b/sysutils/gnome-power-manager/files/patch-configure new file mode 100644 index 000000000000..69d50145e201 --- /dev/null +++ b/sysutils/gnome-power-manager/files/patch-configure @@ -0,0 +1,25 @@ +--- configure.orig 2010-01-30 18:17:55.000000000 -0500 ++++ configure 2010-01-30 18:18:23.000000000 -0500 +@@ -12822,21 +12822,15 @@ if test "$GCC" = "yes"; then + WARNINGFLAGS="$WARNINGFLAGS -Wreturn-type" + WARNINGFLAGS="$WARNINGFLAGS -Wformat-nonliteral" + WARNINGFLAGS="$WARNINGFLAGS -Wformat-security" +- WARNINGFLAGS="$WARNINGFLAGS -Wmissing-include-dirs" + WARNINGFLAGS="$WARNINGFLAGS -Wmissing-format-attribute" +- WARNINGFLAGS="$WARNINGFLAGS -Wclobbered" +- WARNINGFLAGS="$WARNINGFLAGS -Wempty-body" +- WARNINGFLAGS="$WARNINGFLAGS -Wignored-qualifiers" + # WARNINGFLAGS="$WARNINGFLAGS -Wsign-compare" +- WARNINGFLAGS="$WARNINGFLAGS -Wtype-limits" + # WARNINGFLAGS="$WARNINGFLAGS -Wuninitialized" + # WARNINGFLAGS="$WARNINGFLAGS -Waggregate-return" + WARNINGFLAGS="$WARNINGFLAGS -Wdeclaration-after-statement" + WARNINGFLAGS="$WARNINGFLAGS -Wshadow" + WARNINGFLAGS="$WARNINGFLAGS -Winline" + # WARNINGFLAGS="$WARNINGFLAGS -Wswitch-enum" +- WARNINGFLAGS="$WARNINGFLAGS -Wmissing-parameter-type" +- WARNINGFLAGS="$WARNINGFLAGS -Woverride-init" ++# WARNINGFLAGS="$WARNINGFLAGS -Woverride-init" + WARNINGFLAGS="$WARNINGFLAGS -Wno-strict-aliasing" + else + WARNINGFLAGS="" diff --git a/sysutils/gnome-power-manager/files/patch-libhal-glib_libhal-gdevice.c b/sysutils/gnome-power-manager/files/patch-libhal-glib_libhal-gdevice.c deleted file mode 100644 index 6d98cece2825..000000000000 --- a/sysutils/gnome-power-manager/files/patch-libhal-glib_libhal-gdevice.c +++ /dev/null @@ -1,11 +0,0 @@ ---- libhal-glib/libhal-gdevice.c.orig 2009-04-19 02:15:52.000000000 -0400 -+++ libhal-glib/libhal-gdevice.c 2009-04-19 02:16:09.000000000 -0400 -@@ -280,7 +280,7 @@ hal_gdevice_query_capability (HalGDevice - return FALSE; - } - ret = dbus_g_proxy_call (proxy, "QueryCapability", error, -- G_TYPE_STRING, device->priv->udi, -+ G_TYPE_STRING, capability, - G_TYPE_INVALID, - G_TYPE_BOOLEAN, has_capability, - G_TYPE_INVALID); diff --git a/sysutils/gnome-power-manager/files/patch-src_Makefile.in b/sysutils/gnome-power-manager/files/patch-src_Makefile.in index 8bbbfb172700..a161ee0fabad 100644 --- a/sysutils/gnome-power-manager/files/patch-src_Makefile.in +++ b/sysutils/gnome-power-manager/files/patch-src_Makefile.in @@ -1,29 +1,37 @@ ---- src/Makefile.in.orig 2008-09-29 17:30:53.000000000 -0400 -+++ src/Makefile.in 2008-09-29 17:35:03.000000000 -0400 -@@ -471,7 +471,7 @@ gnome_power_statistics_SOURCES = \ +--- src/Makefile.in.orig 2010-03-30 18:08:05.000000000 +0800 ++++ src/Makefile.in 2010-03-30 18:09:04.000000000 +0800 +@@ -497,6 +497,7 @@ + $(GNOME_LIBS) \ + $(UNIQUE_LIBS) \ + $(DBUS_LIBS) \ ++ -lexecinfo \ + -lm + + gnome_power_statistics_CFLAGS = \ +@@ -511,7 +512,7 @@ + + gnome_power_preferences_LDADD = libgpmshared.a $(GLIB_LIBS) \ + $(X11_LIBS) $(GNOME_LIBS) $(DBUS_LIBS) $(UNIQUE_LIBS) \ +- $(GPM_EXTRA_LIBS) $(DEVKIT_LIBS) -lm $(am__append_1) ++ $(GPM_EXTRA_LIBS) $(DEVKIT_LIBS) -lexecinfo -lm $(am__append_1) + gnome_power_preferences_CFLAGS = \ + $(WARNINGFLAGS) \ + $(NULL) +@@ -531,7 +532,7 @@ + gnome_power_manager_LDADD = libgpmshared.a $(GLIB_LIBS) $(X11_LIBS) \ + $(GSTREAMER_LIBS) $(GNOME_LIBS) $(DBUS_LIBS) $(X11_LIBS) \ + $(CANBERRA_LIBS) $(LIBNOTIFY_LIBS) $(GPM_EXTRA_LIBS) \ +- $(DEVKIT_LIBS) -lm $(am__append_3) ++ $(DEVKIT_LIBS) -lexecinfo -lm $(am__append_3) + gnome_power_manager_CFLAGS = \ + $(WARNINGFLAGS) \ $(NULL) +@@ -590,7 +591,7 @@ - gnome_power_statistics_LDADD = $(GLIB_LIBS) $(GNOME_LIBS) $(DBUS_LIBS) \ -- $(LOCAL_LIBDBUS_LIBS) $(LOCAL_LIBUNIQUE_LIBS) $(NULL) \ -+ $(LOCAL_LIBDBUS_LIBS) $(LOCAL_LIBUNIQUE_LIBS) -lexecinfo $(NULL) \ - $(am__append_1) - gnome_power_preferences_SOURCES = \ - egg-debug.h \ -@@ -499,7 +499,7 @@ gnome_power_preferences_SOURCES = \ - gnome_power_preferences_LDADD = $(GLIB_LIBS) $(GNOME_LIBS) $(HAL_LIBS) \ - $(DBUS_LIBS) $(POLKIT_GNOME_LIBS) $(GPM_EXTRA_LIBS) \ - $(LOCAL_LIBHAL_LIBS) $(LOCAL_LIBDBUS_LIBS) \ -- $(LOCAL_LIBUNIQUE_LIBS) $(NULL) $(am__append_2) -+ $(LOCAL_LIBUNIQUE_LIBS) -lexecinfo $(NULL) $(am__append_2) - gnome_power_manager_SOURCES = \ - egg-color.c \ - egg-color.h \ -@@ -588,7 +588,7 @@ gnome_power_manager_SOURCES = \ - gnome_power_manager_LDADD = $(GLIB_LIBS) $(GSTREAMER_LIBS) \ - $(GNOME_LIBS) $(HAL_LIBS) $(POLKIT_LIBS) $(DBUS_LIBS) \ - $(XRANDR_LIBS) $(GPM_EXTRA_LIBS) $(LOCAL_LIBHAL_LIBS) \ -- $(LOCAL_LIBDBUS_LIBS) $(NULL) $(am__append_3) -+ $(LOCAL_LIBDBUS_LIBS) -lexecinfo $(NULL) $(am__append_3) - gnome_power_self_test_SOURCES = \ - egg-color.c \ - egg-color.h \ + gnome_power_self_test_LDADD = $(GLIB_LIBS) $(X11_LIBS) $(GNOME_LIBS) \ + $(GSTREAMER_LIBS) $(DEVKIT_LIBS) $(DBUS_LIBS) $(X11_LIBS) \ +- $(LIBNOTIFY_LIBS) $(GPM_EXTRA_LIBS) -lm $(am__append_4) ++ $(LIBNOTIFY_LIBS) $(GPM_EXTRA_LIBS) -lexecinfo -lm $(am__append_4) + gnome_power_self_test_CFLAGS = -DEGG_TEST $(AM_CFLAGS) $(WARNINGFLAGS) + BUILT_SOURCES = \ + org.gnome.PowerManager.h \ diff --git a/sysutils/gnome-power-manager/files/patch-src_gpm-array-float.h b/sysutils/gnome-power-manager/files/patch-src_gpm-array-float.h deleted file mode 100644 index 8273665a522c..000000000000 --- a/sysutils/gnome-power-manager/files/patch-src_gpm-array-float.h +++ /dev/null @@ -1,14 +0,0 @@ ---- src/gpm-array-float.h.orig 2009-03-18 19:35:24.000000000 -0400 -+++ src/gpm-array-float.h 2009-03-18 19:35:42.000000000 -0400 -@@ -49,9 +49,9 @@ gfloat gpm_array_float_get_average (G - gboolean gpm_array_float_print (GArray *array); - GArray *gpm_array_float_convolve (GArray *data, - GArray *kernel); --inline gfloat gpm_array_float_get (GArray *array, -+gfloat gpm_array_float_get (GArray *array, - guint i); --inline void gpm_array_float_set (GArray *array, -+void gpm_array_float_set (GArray *array, - guint i, - gfloat value); - diff --git a/sysutils/gnome-power-manager/files/patch-src_gpm-button.c b/sysutils/gnome-power-manager/files/patch-src_gpm-button.c deleted file mode 100644 index 7960d9f22d74..000000000000 --- a/sysutils/gnome-power-manager/files/patch-src_gpm-button.c +++ /dev/null @@ -1,37 +0,0 @@ ---- src/gpm-button.c.orig 2009-04-19 02:17:58.000000000 -0400 -+++ src/gpm-button.c 2009-04-19 02:20:39.000000000 -0400 -@@ -494,6 +494,25 @@ hal_daemon_stop_cb (HalGManager *hal_man - } - } - -+/* -+ * hal_daemon_new_device_cb -+ **/ -+static void -+hal_daemon_new_device_cb (HalGManager *hal_manager, const gchar *udi, GpmButton *button) -+{ -+ gboolean is_button; -+ HalGDevice *device; -+ -+ device = hal_gdevice_new (); -+ hal_gdevice_set_udi (device, udi); -+ hal_gdevice_query_capability (device, "button", &is_button, NULL); -+ if (is_button == TRUE) { -+ egg_debug ("Watching %s", udi); -+ watch_add_button (button, udi); -+ } -+ g_object_unref (device); -+} -+ - /** - * gpm_button_init: - * @button: This class instance -@@ -543,6 +562,8 @@ gpm_button_init (GpmButton *button) - G_CALLBACK (hal_daemon_start_cb), button); - g_signal_connect (button->priv->hal_manager, "daemon-stop", - G_CALLBACK (hal_daemon_stop_cb), button); -+ g_signal_connect (button->priv->hal_manager, "device-added", -+ G_CALLBACK (hal_daemon_new_device_cb), button); - - button->priv->hal_devicestore = hal_gdevicestore_new (); - diff --git a/sysutils/gnome-power-manager/files/patch-src_gpm-cell-array.c b/sysutils/gnome-power-manager/files/patch-src_gpm-cell-array.c deleted file mode 100644 index ea8e92f03661..000000000000 --- a/sysutils/gnome-power-manager/files/patch-src_gpm-cell-array.c +++ /dev/null @@ -1,12 +0,0 @@ ---- src/gpm-cell-aray.c.orig 2009-10-24 19:59:07.000000000 -0400 -+++ src/gpm-cell-array.c 2009-10-24 19:59:50.000000000 -0400 -@@ -355,7 +355,8 @@ gpm_cell_array_update (GpmCellArray *cel - * get an with batteries which have a very small charge unit and consequently - * a very high charge. Fixes bug #327471 */ - if (unit->kind == GPM_CELL_UNIT_KIND_PRIMARY && -- unit->charge_current > 0 && unit->charge_last_full > 0) { -+ unit->charge_current > 0 && unit->charge_last_full > 0 && -+ unit->percentage > 1) { - gfloat pc = 100.0f * ((gfloat)unit->charge_current / - (gfloat)unit->charge_last_full); - if (pc < 0.0f) { diff --git a/sysutils/gnome-power-manager/files/patch-src_gpm-dpms.c b/sysutils/gnome-power-manager/files/patch-src_gpm-dpms.c deleted file mode 100644 index 2b62e06643dd..000000000000 --- a/sysutils/gnome-power-manager/files/patch-src_gpm-dpms.c +++ /dev/null @@ -1,11 +0,0 @@ ---- src/gpm-dpms.c.orig 2008-09-04 05:05:15.000000000 -0500 -+++ src/gpm-dpms.c 2010-05-07 08:36:53.000000000 -0500 -@@ -39,7 +39,7 @@ - #ifdef HAVE_DPMS_EXTENSION - #include <X11/Xproto.h> - #include <X11/extensions/dpms.h> --#include <X11/extensions/dpmsstr.h> -+#include <X11/extensions/dpmsproto.h> - #endif - - #include "gpm-conf.h" diff --git a/sysutils/gnome-power-manager/files/patch-src_gpm-load.c b/sysutils/gnome-power-manager/files/patch-src_gpm-load.c index b9e08c982b72..eaa8df1b22aa 100644 --- a/sysutils/gnome-power-manager/files/patch-src_gpm-load.c +++ b/sysutils/gnome-power-manager/files/patch-src_gpm-load.c @@ -1,5 +1,5 @@ ---- src/gpm-load.c.orig 2010-01-02 21:57:09.000000000 -0500 -+++ src/gpm-load.c 2010-01-02 21:59:16.000000000 -0500 +--- src/gpm-load.c.orig 2010-01-01 23:29:11.000000000 -0500 ++++ src/gpm-load.c 2010-01-01 23:46:31.000000000 -0500 @@ -33,6 +33,10 @@ #include <kstat.h> #include <sys/sysinfo.h> @@ -11,7 +11,7 @@ #ifdef HAVE_UNISTD_H #include <unistd.h> #endif /* HAVE_UNISTD_H */ -@@ -159,6 +163,32 @@ out: +@@ -151,6 +155,32 @@ out: return FALSE; } @@ -44,3 +44,12 @@ #else /** +@@ -192,7 +222,7 @@ gpm_load_get_cpu_values (long unsigned * + *cpu_total = cpu_user + cpu_nice + cpu_system + *cpu_idle; + ret = TRUE; + out: +- if (!fd) ++ if (fd) + fclose (fd); + return ret; + } diff --git a/sysutils/gnome-power-manager/pkg-descr b/sysutils/gnome-power-manager/pkg-descr index 5b789d06c24b..186c9ced498f 100644 --- a/sysutils/gnome-power-manager/pkg-descr +++ b/sysutils/gnome-power-manager/pkg-descr @@ -1,7 +1,7 @@ GNOME Power Manager is a GNOME session daemon that acts as a policy agent -on top of HAL (the Hardware Abstraction Layer). GNOME Power Manager listens +on top of HAL (the Hardware Abstraction Layer). GNOME Power Manager listens for HAL events and responds with user-configurable reactions. Currently it supports laptop batteries and AC adapters. Its goal is to be architecture neutral and free of polling and other hacks. -WWW: http://www.gnome.org/projects/gnome-power-manager/ +WWW: http://projects.gnome.org/gnome-power-manager/ diff --git a/sysutils/gnome-power-manager/pkg-plist b/sysutils/gnome-power-manager/pkg-plist index 9329befef483..47e2c200a9c6 100644 --- a/sysutils/gnome-power-manager/pkg-plist +++ b/sysutils/gnome-power-manager/pkg-plist @@ -1,8 +1,8 @@ bin/gnome-power-bugreport.sh -bin/gnome-power-cmd.sh bin/gnome-power-manager bin/gnome-power-preferences bin/gnome-power-statistics +etc/xdg/autostart/gnome-power-manager.desktop libdata/bonobo/servers/GNOME_BrightnessApplet.server libdata/bonobo/servers/GNOME_InhibitApplet.server libexec/gnome-brightness-applet @@ -12,16 +12,28 @@ share/applications/gnome-power-statistics.desktop share/dbus-1/services/gnome-power-manager.service share/gnome-2.0/ui/GNOME_BrightnessApplet.xml share/gnome-2.0/ui/GNOME_InhibitApplet.xml -%%DATADIR%%/gpm-critical-power.wav -%%DATADIR%%/gpm-feedback-widget.glade -%%DATADIR%%/gpm-graph.glade -%%DATADIR%%/gpm-inhibit-test.glade -%%DATADIR%%/gpm-prefs.glade -%%DATADIR%%/gpm-suspend-failure.wav -%%DATADIR%%/gpm-unplugged.wav +%%DATADIR%%/acme.ui +%%DATADIR%%/gpm-feedback-widget.ui +%%DATADIR%%/gpm-prefs.ui +%%DATADIR%%/gpm-statistics.ui %%DATADIR%%/icons/hicolor/16x16/actions/gpm-hibernate.png %%DATADIR%%/icons/hicolor/16x16/actions/gpm-suspend.png %%DATADIR%%/icons/hicolor/16x16/status/gpm-ac-adapter.png +%%DATADIR%%/icons/hicolor/16x16/status/gpm-battery-000-charging.png +%%DATADIR%%/icons/hicolor/16x16/status/gpm-battery-000.png +%%DATADIR%%/icons/hicolor/16x16/status/gpm-battery-020-charging.png +%%DATADIR%%/icons/hicolor/16x16/status/gpm-battery-020.png +%%DATADIR%%/icons/hicolor/16x16/status/gpm-battery-040-charging.png +%%DATADIR%%/icons/hicolor/16x16/status/gpm-battery-040.png +%%DATADIR%%/icons/hicolor/16x16/status/gpm-battery-060-charging.png +%%DATADIR%%/icons/hicolor/16x16/status/gpm-battery-060.png +%%DATADIR%%/icons/hicolor/16x16/status/gpm-battery-080-charging.png +%%DATADIR%%/icons/hicolor/16x16/status/gpm-battery-080.png +%%DATADIR%%/icons/hicolor/16x16/status/gpm-battery-100-charging.png +%%DATADIR%%/icons/hicolor/16x16/status/gpm-battery-100.png +%%DATADIR%%/icons/hicolor/16x16/status/gpm-battery-charged.png +%%DATADIR%%/icons/hicolor/16x16/status/gpm-battery-empty.png +%%DATADIR%%/icons/hicolor/16x16/status/gpm-battery-missing.png %%DATADIR%%/icons/hicolor/16x16/status/gpm-brightness-kbd-disabled.png %%DATADIR%%/icons/hicolor/16x16/status/gpm-brightness-kbd-invalid.png %%DATADIR%%/icons/hicolor/16x16/status/gpm-brightness-kbd.png @@ -31,31 +43,23 @@ share/gnome-2.0/ui/GNOME_InhibitApplet.xml %%DATADIR%%/icons/hicolor/16x16/status/gpm-inhibit-invalid.png %%DATADIR%%/icons/hicolor/16x16/status/gpm-inhibit.png %%DATADIR%%/icons/hicolor/16x16/status/gpm-keyboard-000.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-keyboard-030.png +%%DATADIR%%/icons/hicolor/16x16/status/gpm-keyboard-020.png +%%DATADIR%%/icons/hicolor/16x16/status/gpm-keyboard-040.png %%DATADIR%%/icons/hicolor/16x16/status/gpm-keyboard-060.png +%%DATADIR%%/icons/hicolor/16x16/status/gpm-keyboard-080.png %%DATADIR%%/icons/hicolor/16x16/status/gpm-keyboard-100.png %%DATADIR%%/icons/hicolor/16x16/status/gpm-mouse-000.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-mouse-030.png +%%DATADIR%%/icons/hicolor/16x16/status/gpm-mouse-020.png +%%DATADIR%%/icons/hicolor/16x16/status/gpm-mouse-040.png %%DATADIR%%/icons/hicolor/16x16/status/gpm-mouse-060.png +%%DATADIR%%/icons/hicolor/16x16/status/gpm-mouse-080.png %%DATADIR%%/icons/hicolor/16x16/status/gpm-mouse-100.png %%DATADIR%%/icons/hicolor/16x16/status/gpm-phone-000.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-phone-030.png +%%DATADIR%%/icons/hicolor/16x16/status/gpm-phone-020.png +%%DATADIR%%/icons/hicolor/16x16/status/gpm-phone-040.png %%DATADIR%%/icons/hicolor/16x16/status/gpm-phone-060.png +%%DATADIR%%/icons/hicolor/16x16/status/gpm-phone-080.png %%DATADIR%%/icons/hicolor/16x16/status/gpm-phone-100.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-primary-000-charging.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-primary-000.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-primary-020-charging.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-primary-020.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-primary-040-charging.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-primary-040.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-primary-060-charging.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-primary-060.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-primary-080-charging.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-primary-080.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-primary-100-charging.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-primary-100.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-primary-charged.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-primary-missing.png %%DATADIR%%/icons/hicolor/16x16/status/gpm-ups-000-charging.png %%DATADIR%%/icons/hicolor/16x16/status/gpm-ups-000.png %%DATADIR%%/icons/hicolor/16x16/status/gpm-ups-020-charging.png @@ -68,11 +72,25 @@ share/gnome-2.0/ui/GNOME_InhibitApplet.xml %%DATADIR%%/icons/hicolor/16x16/status/gpm-ups-080.png %%DATADIR%%/icons/hicolor/16x16/status/gpm-ups-100-charging.png %%DATADIR%%/icons/hicolor/16x16/status/gpm-ups-100.png -%%DATADIR%%/icons/hicolor/16x16/status/gpm-ups-charged.png %%DATADIR%%/icons/hicolor/16x16/status/gpm-ups-missing.png %%DATADIR%%/icons/hicolor/22x22/actions/gpm-hibernate.png %%DATADIR%%/icons/hicolor/22x22/actions/gpm-suspend.png %%DATADIR%%/icons/hicolor/22x22/status/gpm-ac-adapter.png +%%DATADIR%%/icons/hicolor/22x22/status/gpm-battery-000-charging.png +%%DATADIR%%/icons/hicolor/22x22/status/gpm-battery-000.png +%%DATADIR%%/icons/hicolor/22x22/status/gpm-battery-020-charging.png +%%DATADIR%%/icons/hicolor/22x22/status/gpm-battery-020.png +%%DATADIR%%/icons/hicolor/22x22/status/gpm-battery-040-charging.png +%%DATADIR%%/icons/hicolor/22x22/status/gpm-battery-040.png +%%DATADIR%%/icons/hicolor/22x22/status/gpm-battery-060-charging.png +%%DATADIR%%/icons/hicolor/22x22/status/gpm-battery-060.png +%%DATADIR%%/icons/hicolor/22x22/status/gpm-battery-080-charging.png +%%DATADIR%%/icons/hicolor/22x22/status/gpm-battery-080.png +%%DATADIR%%/icons/hicolor/22x22/status/gpm-battery-100-charging.png +%%DATADIR%%/icons/hicolor/22x22/status/gpm-battery-100.png +%%DATADIR%%/icons/hicolor/22x22/status/gpm-battery-charged.png +%%DATADIR%%/icons/hicolor/22x22/status/gpm-battery-empty.png +%%DATADIR%%/icons/hicolor/22x22/status/gpm-battery-missing.png %%DATADIR%%/icons/hicolor/22x22/status/gpm-brightness-kbd-disabled.png %%DATADIR%%/icons/hicolor/22x22/status/gpm-brightness-kbd-invalid.png %%DATADIR%%/icons/hicolor/22x22/status/gpm-brightness-kbd.png @@ -82,31 +100,23 @@ share/gnome-2.0/ui/GNOME_InhibitApplet.xml %%DATADIR%%/icons/hicolor/22x22/status/gpm-inhibit-invalid.png %%DATADIR%%/icons/hicolor/22x22/status/gpm-inhibit.png %%DATADIR%%/icons/hicolor/22x22/status/gpm-keyboard-000.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-keyboard-030.png +%%DATADIR%%/icons/hicolor/22x22/status/gpm-keyboard-020.png +%%DATADIR%%/icons/hicolor/22x22/status/gpm-keyboard-040.png %%DATADIR%%/icons/hicolor/22x22/status/gpm-keyboard-060.png +%%DATADIR%%/icons/hicolor/22x22/status/gpm-keyboard-080.png %%DATADIR%%/icons/hicolor/22x22/status/gpm-keyboard-100.png %%DATADIR%%/icons/hicolor/22x22/status/gpm-mouse-000.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-mouse-030.png +%%DATADIR%%/icons/hicolor/22x22/status/gpm-mouse-020.png +%%DATADIR%%/icons/hicolor/22x22/status/gpm-mouse-040.png %%DATADIR%%/icons/hicolor/22x22/status/gpm-mouse-060.png +%%DATADIR%%/icons/hicolor/22x22/status/gpm-mouse-080.png %%DATADIR%%/icons/hicolor/22x22/status/gpm-mouse-100.png %%DATADIR%%/icons/hicolor/22x22/status/gpm-phone-000.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-phone-030.png +%%DATADIR%%/icons/hicolor/22x22/status/gpm-phone-020.png +%%DATADIR%%/icons/hicolor/22x22/status/gpm-phone-040.png %%DATADIR%%/icons/hicolor/22x22/status/gpm-phone-060.png +%%DATADIR%%/icons/hicolor/22x22/status/gpm-phone-080.png %%DATADIR%%/icons/hicolor/22x22/status/gpm-phone-100.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-primary-000-charging.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-primary-000.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-primary-020-charging.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-primary-020.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-primary-040-charging.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-primary-040.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-primary-060-charging.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-primary-060.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-primary-080-charging.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-primary-080.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-primary-100-charging.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-primary-100.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-primary-charged.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-primary-missing.png %%DATADIR%%/icons/hicolor/22x22/status/gpm-ups-000-charging.png %%DATADIR%%/icons/hicolor/22x22/status/gpm-ups-000.png %%DATADIR%%/icons/hicolor/22x22/status/gpm-ups-020-charging.png @@ -119,11 +129,25 @@ share/gnome-2.0/ui/GNOME_InhibitApplet.xml %%DATADIR%%/icons/hicolor/22x22/status/gpm-ups-080.png %%DATADIR%%/icons/hicolor/22x22/status/gpm-ups-100-charging.png %%DATADIR%%/icons/hicolor/22x22/status/gpm-ups-100.png -%%DATADIR%%/icons/hicolor/22x22/status/gpm-ups-charged.png %%DATADIR%%/icons/hicolor/22x22/status/gpm-ups-missing.png %%DATADIR%%/icons/hicolor/24x24/actions/gpm-hibernate.png %%DATADIR%%/icons/hicolor/24x24/actions/gpm-suspend.png %%DATADIR%%/icons/hicolor/24x24/status/gpm-ac-adapter.png +%%DATADIR%%/icons/hicolor/24x24/status/gpm-battery-000-charging.png +%%DATADIR%%/icons/hicolor/24x24/status/gpm-battery-000.png +%%DATADIR%%/icons/hicolor/24x24/status/gpm-battery-020-charging.png +%%DATADIR%%/icons/hicolor/24x24/status/gpm-battery-020.png +%%DATADIR%%/icons/hicolor/24x24/status/gpm-battery-040-charging.png +%%DATADIR%%/icons/hicolor/24x24/status/gpm-battery-040.png +%%DATADIR%%/icons/hicolor/24x24/status/gpm-battery-060-charging.png +%%DATADIR%%/icons/hicolor/24x24/status/gpm-battery-060.png +%%DATADIR%%/icons/hicolor/24x24/status/gpm-battery-080-charging.png +%%DATADIR%%/icons/hicolor/24x24/status/gpm-battery-080.png +%%DATADIR%%/icons/hicolor/24x24/status/gpm-battery-100-charging.png +%%DATADIR%%/icons/hicolor/24x24/status/gpm-battery-100.png +%%DATADIR%%/icons/hicolor/24x24/status/gpm-battery-charged.png +%%DATADIR%%/icons/hicolor/24x24/status/gpm-battery-empty.png +%%DATADIR%%/icons/hicolor/24x24/status/gpm-battery-missing.png %%DATADIR%%/icons/hicolor/24x24/status/gpm-brightness-kbd-disabled.png %%DATADIR%%/icons/hicolor/24x24/status/gpm-brightness-kbd-invalid.png %%DATADIR%%/icons/hicolor/24x24/status/gpm-brightness-kbd.png @@ -133,31 +157,23 @@ share/gnome-2.0/ui/GNOME_InhibitApplet.xml %%DATADIR%%/icons/hicolor/24x24/status/gpm-inhibit-invalid.png %%DATADIR%%/icons/hicolor/24x24/status/gpm-inhibit.png %%DATADIR%%/icons/hicolor/24x24/status/gpm-keyboard-000.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-keyboard-030.png +%%DATADIR%%/icons/hicolor/24x24/status/gpm-keyboard-020.png +%%DATADIR%%/icons/hicolor/24x24/status/gpm-keyboard-040.png %%DATADIR%%/icons/hicolor/24x24/status/gpm-keyboard-060.png +%%DATADIR%%/icons/hicolor/24x24/status/gpm-keyboard-080.png %%DATADIR%%/icons/hicolor/24x24/status/gpm-keyboard-100.png %%DATADIR%%/icons/hicolor/24x24/status/gpm-mouse-000.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-mouse-030.png +%%DATADIR%%/icons/hicolor/24x24/status/gpm-mouse-020.png +%%DATADIR%%/icons/hicolor/24x24/status/gpm-mouse-040.png %%DATADIR%%/icons/hicolor/24x24/status/gpm-mouse-060.png +%%DATADIR%%/icons/hicolor/24x24/status/gpm-mouse-080.png %%DATADIR%%/icons/hicolor/24x24/status/gpm-mouse-100.png %%DATADIR%%/icons/hicolor/24x24/status/gpm-phone-000.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-phone-030.png +%%DATADIR%%/icons/hicolor/24x24/status/gpm-phone-020.png +%%DATADIR%%/icons/hicolor/24x24/status/gpm-phone-040.png %%DATADIR%%/icons/hicolor/24x24/status/gpm-phone-060.png +%%DATADIR%%/icons/hicolor/24x24/status/gpm-phone-080.png %%DATADIR%%/icons/hicolor/24x24/status/gpm-phone-100.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-primary-000-charging.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-primary-000.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-primary-020-charging.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-primary-020.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-primary-040-charging.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-primary-040.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-primary-060-charging.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-primary-060.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-primary-080-charging.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-primary-080.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-primary-100-charging.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-primary-100.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-primary-charged.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-primary-missing.png %%DATADIR%%/icons/hicolor/24x24/status/gpm-ups-000-charging.png %%DATADIR%%/icons/hicolor/24x24/status/gpm-ups-000.png %%DATADIR%%/icons/hicolor/24x24/status/gpm-ups-020-charging.png @@ -170,11 +186,82 @@ share/gnome-2.0/ui/GNOME_InhibitApplet.xml %%DATADIR%%/icons/hicolor/24x24/status/gpm-ups-080.png %%DATADIR%%/icons/hicolor/24x24/status/gpm-ups-100-charging.png %%DATADIR%%/icons/hicolor/24x24/status/gpm-ups-100.png -%%DATADIR%%/icons/hicolor/24x24/status/gpm-ups-charged.png %%DATADIR%%/icons/hicolor/24x24/status/gpm-ups-missing.png +%%DATADIR%%/icons/hicolor/32x32/actions/gpm-hibernate.png +%%DATADIR%%/icons/hicolor/32x32/actions/gpm-suspend.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-ac-adapter.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-battery-000-charging.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-battery-000.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-battery-020-charging.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-battery-020.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-battery-040-charging.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-battery-040.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-battery-060-charging.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-battery-060.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-battery-080-charging.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-battery-080.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-battery-100-charging.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-battery-100.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-battery-charged.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-battery-empty.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-battery-missing.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-brightness-kbd-disabled.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-brightness-kbd-invalid.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-brightness-kbd.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-brightness-lcd-disabled.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-brightness-lcd-invalid.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-brightness-lcd.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-inhibit-invalid.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-inhibit.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-keyboard-000.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-keyboard-020.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-keyboard-040.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-keyboard-060.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-keyboard-080.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-keyboard-100.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-mouse-000.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-mouse-020.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-mouse-040.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-mouse-060.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-mouse-080.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-mouse-100.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-phone-000.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-phone-020.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-phone-040.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-phone-060.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-phone-080.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-phone-100.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-ups-000-charging.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-ups-000.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-ups-020-charging.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-ups-020.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-ups-040-charging.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-ups-040.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-ups-060-charging.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-ups-060.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-ups-080-charging.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-ups-080.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-ups-100-charging.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-ups-100.png +%%DATADIR%%/icons/hicolor/32x32/status/gpm-ups-missing.png %%DATADIR%%/icons/hicolor/48x48/actions/gpm-hibernate.png %%DATADIR%%/icons/hicolor/48x48/actions/gpm-suspend.png %%DATADIR%%/icons/hicolor/48x48/status/gpm-ac-adapter.png +%%DATADIR%%/icons/hicolor/48x48/status/gpm-battery-000-charging.png +%%DATADIR%%/icons/hicolor/48x48/status/gpm-battery-000.png +%%DATADIR%%/icons/hicolor/48x48/status/gpm-battery-020-charging.png +%%DATADIR%%/icons/hicolor/48x48/status/gpm-battery-020.png +%%DATADIR%%/icons/hicolor/48x48/status/gpm-battery-040-charging.png +%%DATADIR%%/icons/hicolor/48x48/status/gpm-battery-040.png +%%DATADIR%%/icons/hicolor/48x48/status/gpm-battery-060-charging.png +%%DATADIR%%/icons/hicolor/48x48/status/gpm-battery-060.png +%%DATADIR%%/icons/hicolor/48x48/status/gpm-battery-080-charging.png +%%DATADIR%%/icons/hicolor/48x48/status/gpm-battery-080.png +%%DATADIR%%/icons/hicolor/48x48/status/gpm-battery-100-charging.png +%%DATADIR%%/icons/hicolor/48x48/status/gpm-battery-100.png +%%DATADIR%%/icons/hicolor/48x48/status/gpm-battery-charged.png +%%DATADIR%%/icons/hicolor/48x48/status/gpm-battery-empty.png +%%DATADIR%%/icons/hicolor/48x48/status/gpm-battery-missing.png %%DATADIR%%/icons/hicolor/48x48/status/gpm-brightness-kbd-disabled.png %%DATADIR%%/icons/hicolor/48x48/status/gpm-brightness-kbd-invalid.png %%DATADIR%%/icons/hicolor/48x48/status/gpm-brightness-kbd.png @@ -184,31 +271,24 @@ share/gnome-2.0/ui/GNOME_InhibitApplet.xml %%DATADIR%%/icons/hicolor/48x48/status/gpm-inhibit-invalid.png %%DATADIR%%/icons/hicolor/48x48/status/gpm-inhibit.png %%DATADIR%%/icons/hicolor/48x48/status/gpm-keyboard-000.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-keyboard-030.png +%%DATADIR%%/icons/hicolor/48x48/status/gpm-keyboard-020.png +%%DATADIR%%/icons/hicolor/48x48/status/gpm-keyboard-040.png %%DATADIR%%/icons/hicolor/48x48/status/gpm-keyboard-060.png +%%DATADIR%%/icons/hicolor/48x48/status/gpm-keyboard-080.png %%DATADIR%%/icons/hicolor/48x48/status/gpm-keyboard-100.png +%%DATADIR%%/icons/hicolor/48x48/status/gpm-monitor.png %%DATADIR%%/icons/hicolor/48x48/status/gpm-mouse-000.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-mouse-030.png +%%DATADIR%%/icons/hicolor/48x48/status/gpm-mouse-020.png +%%DATADIR%%/icons/hicolor/48x48/status/gpm-mouse-040.png %%DATADIR%%/icons/hicolor/48x48/status/gpm-mouse-060.png +%%DATADIR%%/icons/hicolor/48x48/status/gpm-mouse-080.png %%DATADIR%%/icons/hicolor/48x48/status/gpm-mouse-100.png %%DATADIR%%/icons/hicolor/48x48/status/gpm-phone-000.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-phone-030.png +%%DATADIR%%/icons/hicolor/48x48/status/gpm-phone-020.png +%%DATADIR%%/icons/hicolor/48x48/status/gpm-phone-040.png %%DATADIR%%/icons/hicolor/48x48/status/gpm-phone-060.png +%%DATADIR%%/icons/hicolor/48x48/status/gpm-phone-080.png %%DATADIR%%/icons/hicolor/48x48/status/gpm-phone-100.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-primary-000-charging.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-primary-000.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-primary-020-charging.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-primary-020.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-primary-040-charging.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-primary-040.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-primary-060-charging.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-primary-060.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-primary-080-charging.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-primary-080.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-primary-100-charging.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-primary-100.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-primary-charged.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-primary-missing.png %%DATADIR%%/icons/hicolor/48x48/status/gpm-ups-000-charging.png %%DATADIR%%/icons/hicolor/48x48/status/gpm-ups-000.png %%DATADIR%%/icons/hicolor/48x48/status/gpm-ups-020-charging.png @@ -221,11 +301,26 @@ share/gnome-2.0/ui/GNOME_InhibitApplet.xml %%DATADIR%%/icons/hicolor/48x48/status/gpm-ups-080.png %%DATADIR%%/icons/hicolor/48x48/status/gpm-ups-100-charging.png %%DATADIR%%/icons/hicolor/48x48/status/gpm-ups-100.png -%%DATADIR%%/icons/hicolor/48x48/status/gpm-ups-charged.png %%DATADIR%%/icons/hicolor/48x48/status/gpm-ups-missing.png +%%DATADIR%%/icons/hicolor/icon-theme.cache %%DATADIR%%/icons/hicolor/scalable/actions/gpm-hibernate.svg %%DATADIR%%/icons/hicolor/scalable/actions/gpm-suspend.svg %%DATADIR%%/icons/hicolor/scalable/status/gpm-ac-adapter.svg +%%DATADIR%%/icons/hicolor/scalable/status/gpm-battery-000-charging.svg +%%DATADIR%%/icons/hicolor/scalable/status/gpm-battery-000.svg +%%DATADIR%%/icons/hicolor/scalable/status/gpm-battery-020-charging.svg +%%DATADIR%%/icons/hicolor/scalable/status/gpm-battery-020.svg +%%DATADIR%%/icons/hicolor/scalable/status/gpm-battery-040-charging.svg +%%DATADIR%%/icons/hicolor/scalable/status/gpm-battery-040.svg +%%DATADIR%%/icons/hicolor/scalable/status/gpm-battery-060-charging.svg +%%DATADIR%%/icons/hicolor/scalable/status/gpm-battery-060.svg +%%DATADIR%%/icons/hicolor/scalable/status/gpm-battery-080-charging.svg +%%DATADIR%%/icons/hicolor/scalable/status/gpm-battery-080.svg +%%DATADIR%%/icons/hicolor/scalable/status/gpm-battery-100-charging.svg +%%DATADIR%%/icons/hicolor/scalable/status/gpm-battery-100.svg +%%DATADIR%%/icons/hicolor/scalable/status/gpm-battery-charged.svg +%%DATADIR%%/icons/hicolor/scalable/status/gpm-battery-empty.svg +%%DATADIR%%/icons/hicolor/scalable/status/gpm-battery-missing.svg %%DATADIR%%/icons/hicolor/scalable/status/gpm-brightness-kbd-disabled.svg %%DATADIR%%/icons/hicolor/scalable/status/gpm-brightness-kbd-invalid.svg %%DATADIR%%/icons/hicolor/scalable/status/gpm-brightness-kbd.svg @@ -235,31 +330,15 @@ share/gnome-2.0/ui/GNOME_InhibitApplet.xml %%DATADIR%%/icons/hicolor/scalable/status/gpm-inhibit-invalid.svg %%DATADIR%%/icons/hicolor/scalable/status/gpm-inhibit.svg %%DATADIR%%/icons/hicolor/scalable/status/gpm-keyboard-000.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-keyboard-030.svg %%DATADIR%%/icons/hicolor/scalable/status/gpm-keyboard-060.svg %%DATADIR%%/icons/hicolor/scalable/status/gpm-keyboard-100.svg +%%DATADIR%%/icons/hicolor/scalable/status/gpm-monitor.svg %%DATADIR%%/icons/hicolor/scalable/status/gpm-mouse-000.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-mouse-030.svg %%DATADIR%%/icons/hicolor/scalable/status/gpm-mouse-060.svg %%DATADIR%%/icons/hicolor/scalable/status/gpm-mouse-100.svg %%DATADIR%%/icons/hicolor/scalable/status/gpm-phone-000.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-phone-030.svg %%DATADIR%%/icons/hicolor/scalable/status/gpm-phone-060.svg %%DATADIR%%/icons/hicolor/scalable/status/gpm-phone-100.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-primary-000-charging.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-primary-000.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-primary-020-charging.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-primary-020.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-primary-040-charging.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-primary-040.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-primary-060-charging.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-primary-060.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-primary-080-charging.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-primary-080.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-primary-100-charging.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-primary-100.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-primary-charged.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-primary-missing.svg %%DATADIR%%/icons/hicolor/scalable/status/gpm-ups-000-charging.svg %%DATADIR%%/icons/hicolor/scalable/status/gpm-ups-000.svg %%DATADIR%%/icons/hicolor/scalable/status/gpm-ups-020-charging.svg @@ -272,9 +351,7 @@ share/gnome-2.0/ui/GNOME_InhibitApplet.xml %%DATADIR%%/icons/hicolor/scalable/status/gpm-ups-080.svg %%DATADIR%%/icons/hicolor/scalable/status/gpm-ups-100-charging.svg %%DATADIR%%/icons/hicolor/scalable/status/gpm-ups-100.svg -%%DATADIR%%/icons/hicolor/scalable/status/gpm-ups-charged.svg %%DATADIR%%/icons/hicolor/scalable/status/gpm-ups-missing.svg -share/gnome/autostart/gnome-power-manager.desktop share/gnome/help/gnome-power-manager/C/figures/applet-brightness.png share/gnome/help/gnome-power-manager/C/figures/applet-inhibit.png share/gnome/help/gnome-power-manager/C/figures/gpm-cell-capacity.png @@ -304,6 +381,48 @@ share/gnome/help/gnome-power-manager/ca/figures/gpm-suspend-problem.png share/gnome/help/gnome-power-manager/ca/figures/gpm-unplugged.png share/gnome/help/gnome-power-manager/ca/figures/gs-prefs.png share/gnome/help/gnome-power-manager/ca/gnome-power-manager.xml +share/gnome/help/gnome-power-manager/de/figures/applet-brightness.png +share/gnome/help/gnome-power-manager/de/figures/applet-inhibit.png +share/gnome/help/gnome-power-manager/de/figures/gpm-cell-capacity.png +share/gnome/help/gnome-power-manager/de/figures/gpm-charged.png +share/gnome/help/gnome-power-manager/de/figures/gpm-critical.png +share/gnome/help/gnome-power-manager/de/figures/gpm-low.png +share/gnome/help/gnome-power-manager/de/figures/gpm-prefs-ac.png +share/gnome/help/gnome-power-manager/de/figures/gpm-prefs-battery.png +share/gnome/help/gnome-power-manager/de/figures/gpm-prefs-general.png +share/gnome/help/gnome-power-manager/de/figures/gpm-stats-graph.png +share/gnome/help/gnome-power-manager/de/figures/gpm-suspend-problem.png +share/gnome/help/gnome-power-manager/de/figures/gpm-unplugged.png +share/gnome/help/gnome-power-manager/de/figures/gs-prefs.png +share/gnome/help/gnome-power-manager/de/gnome-power-manager.xml +share/gnome/help/gnome-power-manager/el/figures/applet-brightness.png +share/gnome/help/gnome-power-manager/el/figures/applet-inhibit.png +share/gnome/help/gnome-power-manager/el/figures/gpm-cell-capacity.png +share/gnome/help/gnome-power-manager/el/figures/gpm-charged.png +share/gnome/help/gnome-power-manager/el/figures/gpm-critical.png +share/gnome/help/gnome-power-manager/el/figures/gpm-low.png +share/gnome/help/gnome-power-manager/el/figures/gpm-prefs-ac.png +share/gnome/help/gnome-power-manager/el/figures/gpm-prefs-battery.png +share/gnome/help/gnome-power-manager/el/figures/gpm-prefs-general.png +share/gnome/help/gnome-power-manager/el/figures/gpm-stats-graph.png +share/gnome/help/gnome-power-manager/el/figures/gpm-suspend-problem.png +share/gnome/help/gnome-power-manager/el/figures/gpm-unplugged.png +share/gnome/help/gnome-power-manager/el/figures/gs-prefs.png +share/gnome/help/gnome-power-manager/el/gnome-power-manager.xml +share/gnome/help/gnome-power-manager/en_GB/figures/applet-brightness.png +share/gnome/help/gnome-power-manager/en_GB/figures/applet-inhibit.png +share/gnome/help/gnome-power-manager/en_GB/figures/gpm-cell-capacity.png +share/gnome/help/gnome-power-manager/en_GB/figures/gpm-charged.png +share/gnome/help/gnome-power-manager/en_GB/figures/gpm-critical.png +share/gnome/help/gnome-power-manager/en_GB/figures/gpm-low.png +share/gnome/help/gnome-power-manager/en_GB/figures/gpm-prefs-ac.png +share/gnome/help/gnome-power-manager/en_GB/figures/gpm-prefs-battery.png +share/gnome/help/gnome-power-manager/en_GB/figures/gpm-prefs-general.png +share/gnome/help/gnome-power-manager/en_GB/figures/gpm-stats-graph.png +share/gnome/help/gnome-power-manager/en_GB/figures/gpm-suspend-problem.png +share/gnome/help/gnome-power-manager/en_GB/figures/gpm-unplugged.png +share/gnome/help/gnome-power-manager/en_GB/figures/gs-prefs.png +share/gnome/help/gnome-power-manager/en_GB/gnome-power-manager.xml share/gnome/help/gnome-power-manager/es/figures/applet-brightness.png share/gnome/help/gnome-power-manager/es/figures/applet-inhibit.png share/gnome/help/gnome-power-manager/es/figures/gpm-cell-capacity.png @@ -318,6 +437,34 @@ share/gnome/help/gnome-power-manager/es/figures/gpm-suspend-problem.png share/gnome/help/gnome-power-manager/es/figures/gpm-unplugged.png share/gnome/help/gnome-power-manager/es/figures/gs-prefs.png share/gnome/help/gnome-power-manager/es/gnome-power-manager.xml +share/gnome/help/gnome-power-manager/eu/figures/applet-brightness.png +share/gnome/help/gnome-power-manager/eu/figures/applet-inhibit.png +share/gnome/help/gnome-power-manager/eu/figures/gpm-cell-capacity.png +share/gnome/help/gnome-power-manager/eu/figures/gpm-charged.png +share/gnome/help/gnome-power-manager/eu/figures/gpm-critical.png +share/gnome/help/gnome-power-manager/eu/figures/gpm-low.png +share/gnome/help/gnome-power-manager/eu/figures/gpm-prefs-ac.png +share/gnome/help/gnome-power-manager/eu/figures/gpm-prefs-battery.png +share/gnome/help/gnome-power-manager/eu/figures/gpm-prefs-general.png +share/gnome/help/gnome-power-manager/eu/figures/gpm-stats-graph.png +share/gnome/help/gnome-power-manager/eu/figures/gpm-suspend-problem.png +share/gnome/help/gnome-power-manager/eu/figures/gpm-unplugged.png +share/gnome/help/gnome-power-manager/eu/figures/gs-prefs.png +share/gnome/help/gnome-power-manager/eu/gnome-power-manager.xml +share/gnome/help/gnome-power-manager/fi/figures/applet-brightness.png +share/gnome/help/gnome-power-manager/fi/figures/applet-inhibit.png +share/gnome/help/gnome-power-manager/fi/figures/gpm-cell-capacity.png +share/gnome/help/gnome-power-manager/fi/figures/gpm-charged.png +share/gnome/help/gnome-power-manager/fi/figures/gpm-critical.png +share/gnome/help/gnome-power-manager/fi/figures/gpm-low.png +share/gnome/help/gnome-power-manager/fi/figures/gpm-prefs-ac.png +share/gnome/help/gnome-power-manager/fi/figures/gpm-prefs-battery.png +share/gnome/help/gnome-power-manager/fi/figures/gpm-prefs-general.png +share/gnome/help/gnome-power-manager/fi/figures/gpm-stats-graph.png +share/gnome/help/gnome-power-manager/fi/figures/gpm-suspend-problem.png +share/gnome/help/gnome-power-manager/fi/figures/gpm-unplugged.png +share/gnome/help/gnome-power-manager/fi/figures/gs-prefs.png +share/gnome/help/gnome-power-manager/fi/gnome-power-manager.xml share/gnome/help/gnome-power-manager/fr/figures/applet-brightness.png share/gnome/help/gnome-power-manager/fr/figures/applet-inhibit.png share/gnome/help/gnome-power-manager/fr/figures/gpm-cell-capacity.png @@ -416,6 +563,20 @@ share/gnome/help/gnome-power-manager/sv/figures/gpm-suspend-problem.png share/gnome/help/gnome-power-manager/sv/figures/gpm-unplugged.png share/gnome/help/gnome-power-manager/sv/figures/gs-prefs.png share/gnome/help/gnome-power-manager/sv/gnome-power-manager.xml +share/gnome/help/gnome-power-manager/zh_CN/figures/applet-brightness.png +share/gnome/help/gnome-power-manager/zh_CN/figures/applet-inhibit.png +share/gnome/help/gnome-power-manager/zh_CN/figures/gpm-cell-capacity.png +share/gnome/help/gnome-power-manager/zh_CN/figures/gpm-charged.png +share/gnome/help/gnome-power-manager/zh_CN/figures/gpm-critical.png +share/gnome/help/gnome-power-manager/zh_CN/figures/gpm-low.png +share/gnome/help/gnome-power-manager/zh_CN/figures/gpm-prefs-ac.png +share/gnome/help/gnome-power-manager/zh_CN/figures/gpm-prefs-battery.png +share/gnome/help/gnome-power-manager/zh_CN/figures/gpm-prefs-general.png +share/gnome/help/gnome-power-manager/zh_CN/figures/gpm-stats-graph.png +share/gnome/help/gnome-power-manager/zh_CN/figures/gpm-suspend-problem.png +share/gnome/help/gnome-power-manager/zh_CN/figures/gpm-unplugged.png +share/gnome/help/gnome-power-manager/zh_CN/figures/gs-prefs.png +share/gnome/help/gnome-power-manager/zh_CN/gnome-power-manager.xml share/icons/hicolor/16x16/apps/gnome-brightness-applet.png share/icons/hicolor/16x16/apps/gnome-inhibit-applet.png share/icons/hicolor/16x16/apps/gnome-power-manager.png @@ -428,6 +589,10 @@ share/icons/hicolor/24x24/apps/gnome-brightness-applet.png share/icons/hicolor/24x24/apps/gnome-inhibit-applet.png share/icons/hicolor/24x24/apps/gnome-power-manager.png share/icons/hicolor/24x24/apps/gnome-power-statistics.png +share/icons/hicolor/32x32/apps/gnome-brightness-applet.png +share/icons/hicolor/32x32/apps/gnome-inhibit-applet.png +share/icons/hicolor/32x32/apps/gnome-power-manager.png +share/icons/hicolor/32x32/apps/gnome-power-statistics.png share/icons/hicolor/48x48/apps/gnome-brightness-applet.png share/icons/hicolor/48x48/apps/gnome-inhibit-applet.png share/icons/hicolor/48x48/apps/gnome-power-manager.png @@ -439,17 +604,20 @@ share/icons/hicolor/scalable/apps/gnome-power-statistics.svg share/locale/ar/LC_MESSAGES/gnome-power-manager.mo share/locale/as/LC_MESSAGES/gnome-power-manager.mo share/locale/ast/LC_MESSAGES/gnome-power-manager.mo +share/locale/be/LC_MESSAGES/gnome-power-manager.mo share/locale/be@latin/LC_MESSAGES/gnome-power-manager.mo share/locale/bg/LC_MESSAGES/gnome-power-manager.mo share/locale/bn/LC_MESSAGES/gnome-power-manager.mo share/locale/bn_IN/LC_MESSAGES/gnome-power-manager.mo share/locale/ca/LC_MESSAGES/gnome-power-manager.mo +share/locale/ca@valencia/LC_MESSAGES/gnome-power-manager.mo share/locale/cs/LC_MESSAGES/gnome-power-manager.mo share/locale/cy/LC_MESSAGES/gnome-power-manager.mo share/locale/da/LC_MESSAGES/gnome-power-manager.mo share/locale/de/LC_MESSAGES/gnome-power-manager.mo share/locale/dz/LC_MESSAGES/gnome-power-manager.mo share/locale/el/LC_MESSAGES/gnome-power-manager.mo +share/locale/en@shaw/LC_MESSAGES/gnome-power-manager.mo share/locale/en_CA/LC_MESSAGES/gnome-power-manager.mo share/locale/en_GB/LC_MESSAGES/gnome-power-manager.mo share/locale/es/LC_MESSAGES/gnome-power-manager.mo @@ -463,6 +631,7 @@ share/locale/gl/LC_MESSAGES/gnome-power-manager.mo share/locale/gu/LC_MESSAGES/gnome-power-manager.mo share/locale/he/LC_MESSAGES/gnome-power-manager.mo share/locale/hi/LC_MESSAGES/gnome-power-manager.mo +share/locale/hr/LC_MESSAGES/gnome-power-manager.mo share/locale/hu/LC_MESSAGES/gnome-power-manager.mo share/locale/id/LC_MESSAGES/gnome-power-manager.mo share/locale/is/LC_MESSAGES/gnome-power-manager.mo @@ -474,6 +643,7 @@ share/locale/ko/LC_MESSAGES/gnome-power-manager.mo share/locale/ku/LC_MESSAGES/gnome-power-manager.mo share/locale/lt/LC_MESSAGES/gnome-power-manager.mo share/locale/lv/LC_MESSAGES/gnome-power-manager.mo +share/locale/mai/LC_MESSAGES/gnome-power-manager.mo share/locale/mg/LC_MESSAGES/gnome-power-manager.mo share/locale/mk/LC_MESSAGES/gnome-power-manager.mo share/locale/ml/LC_MESSAGES/gnome-power-manager.mo @@ -506,7 +676,12 @@ share/locale/zh_HK/LC_MESSAGES/gnome-power-manager.mo share/locale/zh_TW/LC_MESSAGES/gnome-power-manager.mo share/omf/gnome-power-manager/gnome-power-manager-C.omf share/omf/gnome-power-manager/gnome-power-manager-ca.omf +share/omf/gnome-power-manager/gnome-power-manager-de.omf +share/omf/gnome-power-manager/gnome-power-manager-el.omf +share/omf/gnome-power-manager/gnome-power-manager-en_GB.omf share/omf/gnome-power-manager/gnome-power-manager-es.omf +share/omf/gnome-power-manager/gnome-power-manager-eu.omf +share/omf/gnome-power-manager/gnome-power-manager-fi.omf share/omf/gnome-power-manager/gnome-power-manager-fr.omf share/omf/gnome-power-manager/gnome-power-manager-hu.omf share/omf/gnome-power-manager/gnome-power-manager-it.omf @@ -514,7 +689,10 @@ share/omf/gnome-power-manager/gnome-power-manager-oc.omf share/omf/gnome-power-manager/gnome-power-manager-pa.omf share/omf/gnome-power-manager/gnome-power-manager-ru.omf share/omf/gnome-power-manager/gnome-power-manager-sv.omf +share/omf/gnome-power-manager/gnome-power-manager-zh_CN.omf @dirrm share/omf/gnome-power-manager +@dirrm share/gnome/help/gnome-power-manager/zh_CN/figures +@dirrm share/gnome/help/gnome-power-manager/zh_CN @dirrm share/gnome/help/gnome-power-manager/sv/figures @dirrm share/gnome/help/gnome-power-manager/sv @dirrm share/gnome/help/gnome-power-manager/ru/figures @@ -529,8 +707,18 @@ share/omf/gnome-power-manager/gnome-power-manager-sv.omf @dirrm share/gnome/help/gnome-power-manager/hu @dirrm share/gnome/help/gnome-power-manager/fr/figures @dirrm share/gnome/help/gnome-power-manager/fr +@dirrm share/gnome/help/gnome-power-manager/fi/figures +@dirrm share/gnome/help/gnome-power-manager/fi +@dirrm share/gnome/help/gnome-power-manager/eu/figures +@dirrm share/gnome/help/gnome-power-manager/eu @dirrm share/gnome/help/gnome-power-manager/es/figures @dirrm share/gnome/help/gnome-power-manager/es +@dirrm share/gnome/help/gnome-power-manager/en_GB/figures +@dirrm share/gnome/help/gnome-power-manager/en_GB +@dirrm share/gnome/help/gnome-power-manager/el/figures +@dirrm share/gnome/help/gnome-power-manager/el +@dirrm share/gnome/help/gnome-power-manager/de/figures +@dirrm share/gnome/help/gnome-power-manager/de @dirrm share/gnome/help/gnome-power-manager/ca/figures @dirrm share/gnome/help/gnome-power-manager/ca @dirrm share/gnome/help/gnome-power-manager/C/figures @@ -542,6 +730,9 @@ share/omf/gnome-power-manager/gnome-power-manager-sv.omf @dirrm %%DATADIR%%/icons/hicolor/48x48/status @dirrm %%DATADIR%%/icons/hicolor/48x48/actions @dirrm %%DATADIR%%/icons/hicolor/48x48 +@dirrm %%DATADIR%%/icons/hicolor/32x32/status +@dirrm %%DATADIR%%/icons/hicolor/32x32/actions +@dirrm %%DATADIR%%/icons/hicolor/32x32 @dirrm %%DATADIR%%/icons/hicolor/24x24/status @dirrm %%DATADIR%%/icons/hicolor/24x24/actions @dirrm %%DATADIR%%/icons/hicolor/24x24 @@ -554,7 +745,6 @@ share/omf/gnome-power-manager/gnome-power-manager-sv.omf @dirrm %%DATADIR%%/icons/hicolor @dirrm %%DATADIR%%/icons @dirrm %%DATADIR%% -@dirrmtry share/applications @dirrmtry share/locale/zh_HK/LC_MESSAGES @dirrmtry share/locale/zh_HK @dirrmtry share/locale/te/LC_MESSAGES @@ -569,10 +759,16 @@ share/omf/gnome-power-manager/gnome-power-manager-sv.omf @dirrmtry share/locale/mr @dirrmtry share/locale/mg/LC_MESSAGES @dirrmtry share/locale/mg +@dirrmtry share/locale/mai/LC_MESSAGES +@dirrmtry share/locale/mai @dirrmtry share/locale/ku/LC_MESSAGES @dirrmtry share/locale/ku +@dirrmtry share/locale/en@shaw/LC_MESSAGES +@dirrmtry share/locale/en@shaw @dirrmtry share/locale/dz/LC_MESSAGES @dirrmtry share/locale/dz +@dirrmtry share/locale/ca@valencia/LC_MESSAGES +@dirrmtry share/locale/ca@valencia @dirrmtry share/locale/bn_IN/LC_MESSAGES @dirrmtry share/locale/bn_IN @dirrmtry share/locale/be@latin/LC_MESSAGES |