From 54bdc451257345fc952c09368cd5ebd45a57f88d Mon Sep 17 00:00:00 2001 From: kwm Date: Sat, 14 Aug 2010 09:46:21 +0000 Subject: Update to 2.31.1. git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@14394 df743ca5-7f9a-e211-a948-0013205c9059 --- deskutils/gnome-utils/Makefile | 41 + deskutils/gnome-utils/distinfo | 3 + .../files/patch-gsearchtool_gsearchtool-support.c | 10 + .../files/patch-logview_logview-manager.c | 10 + .../files/patch-logview_logview-utils.c | 11 + deskutils/gnome-utils/pkg-descr | 2 + deskutils/gnome-utils/pkg-plist | 826 +++++++++++++++++++++ 7 files changed, 903 insertions(+) create mode 100644 deskutils/gnome-utils/Makefile create mode 100644 deskutils/gnome-utils/distinfo create mode 100644 deskutils/gnome-utils/files/patch-gsearchtool_gsearchtool-support.c create mode 100644 deskutils/gnome-utils/files/patch-logview_logview-manager.c create mode 100644 deskutils/gnome-utils/files/patch-logview_logview-utils.c create mode 100644 deskutils/gnome-utils/pkg-descr create mode 100644 deskutils/gnome-utils/pkg-plist (limited to 'deskutils/gnome-utils') diff --git a/deskutils/gnome-utils/Makefile b/deskutils/gnome-utils/Makefile new file mode 100644 index 000000000..0d045d54f --- /dev/null +++ b/deskutils/gnome-utils/Makefile @@ -0,0 +1,41 @@ +# New ports collection makefile for: gnomeutils2 +# Date created: 06 May 2002 +# Whom: Joe Marcus Clarke +# +# $FreeBSD$ +# $MCom: ports/deskutils/gnome-utils/Makefile,v 1.147 2010/04/01 13:45:39 kwm Exp $ +# + +PORTNAME= gnome-utils +PORTVERSION= 2.31.1 +PORTEPOCH= 1 +CATEGORIES= deskutils gnome +MASTER_SITES= GNOME +DIST_SUBDIR= gnome2 + +MAINTAINER= gnome@FreeBSD.org +COMMENT= GNOME 2 support utilities + +LIB_DEPENDS= gtop-2.0.7:${PORTSDIR}/devel/libgtop \ + canberra-gtk.0:${PORTSDIR}/audio/libcanberra + +USE_BZIP2= yes +USE_GETTEXT= yes +INSTALLS_OMF= yes +USE_GMAKE= yes +GNOME_DESKTOP_VERSION=2 +USE_LDCONFIG= yes +INSTALLS_ICONS= yes +USE_GNOME= gnomeprefix gnomehack intlhack gnomepanel ltverhack +USE_AUTOTOOLS= libtool:22 +CONFIGURE_ARGS= --enable-maintainer-flags=no +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" + +MAN1= gnome-dictionary.1 gnome-screenshot.1 gnome-search-tool.1 \ + gnome-system-log.1 baobab.1 +GCONF_SCHEMAS= gnome-dictionary.schemas gnome-screenshot.schemas \ + gnome-search-tool.schemas baobab.schemas \ + gnome-system-log.schemas + +.include diff --git a/deskutils/gnome-utils/distinfo b/deskutils/gnome-utils/distinfo new file mode 100644 index 000000000..5ee440094 --- /dev/null +++ b/deskutils/gnome-utils/distinfo @@ -0,0 +1,3 @@ +MD5 (gnome2/gnome-utils-2.31.1.tar.bz2) = 1e0bd529fafe9d5acd5a253837f2caca +SHA256 (gnome2/gnome-utils-2.31.1.tar.bz2) = b9ecb0efa3afe1208b28a8c86b828319bf6a2a799de3a958de69f3d2cce3fce3 +SIZE (gnome2/gnome-utils-2.31.1.tar.bz2) = 7680616 diff --git a/deskutils/gnome-utils/files/patch-gsearchtool_gsearchtool-support.c b/deskutils/gnome-utils/files/patch-gsearchtool_gsearchtool-support.c new file mode 100644 index 000000000..f29974a81 --- /dev/null +++ b/deskutils/gnome-utils/files/patch-gsearchtool_gsearchtool-support.c @@ -0,0 +1,10 @@ +--- gsearchtool/gsearchtool-support.c.orig 2008-12-19 16:53:22.000000000 -0500 ++++ gsearchtool/gsearchtool-support.c 2009-02-27 17:30:06.000000000 -0500 +@@ -32,6 +32,7 @@ + #include + #include + #include ++#include + #include + #include + #include diff --git a/deskutils/gnome-utils/files/patch-logview_logview-manager.c b/deskutils/gnome-utils/files/patch-logview_logview-manager.c new file mode 100644 index 000000000..00ec357ef --- /dev/null +++ b/deskutils/gnome-utils/files/patch-logview_logview-manager.c @@ -0,0 +1,10 @@ +--- logview/logview-manager.c.orig 2009-03-21 17:25:27.000000000 -0400 ++++ logview/logview-manager.c 2009-03-21 17:25:37.000000000 -0400 +@@ -25,6 +25,7 @@ + + #include + ++#include "logview-app.h" + #include "logview-prefs.h" + #include "logview-marshal.h" + diff --git a/deskutils/gnome-utils/files/patch-logview_logview-utils.c b/deskutils/gnome-utils/files/patch-logview_logview-utils.c new file mode 100644 index 000000000..4faad7021 --- /dev/null +++ b/deskutils/gnome-utils/files/patch-logview_logview-utils.c @@ -0,0 +1,11 @@ +--- logview/logview-utils.c.orig 2009-03-21 17:22:41.000000000 -0400 ++++ logview/logview-utils.c 2009-03-21 17:23:22.000000000 -0400 +@@ -136,7 +136,7 @@ log_read_dates (const char **buffer_line + { + int current_year, offsetyear, i, n, rangemin, rangemax, timestamp_len = 0; + GSList *days = NULL; +- GDate *date, *newdate; ++ GDate *date = NULL, *newdate; + struct tm *tmptm; + char *date_string; + Day *day; diff --git a/deskutils/gnome-utils/pkg-descr b/deskutils/gnome-utils/pkg-descr new file mode 100644 index 000000000..bfe154899 --- /dev/null +++ b/deskutils/gnome-utils/pkg-descr @@ -0,0 +1,2 @@ +GNOME 2.0 support utilities, including a dictionary looker-upper, +a frontend for find(1), a system log viewer, and more. diff --git a/deskutils/gnome-utils/pkg-plist b/deskutils/gnome-utils/pkg-plist new file mode 100644 index 000000000..5fa3829fe --- /dev/null +++ b/deskutils/gnome-utils/pkg-plist @@ -0,0 +1,826 @@ +bin/baobab +bin/gnome-dictionary +bin/gnome-panel-screenshot +bin/gnome-screenshot +bin/gnome-search-tool +bin/gnome-system-log +include/gdict-1.0/gdict/gdict-client-context.h +include/gdict-1.0/gdict/gdict-context.h +include/gdict-1.0/gdict/gdict-database-chooser.h +include/gdict-1.0/gdict/gdict-defbox.h +include/gdict-1.0/gdict/gdict-enum-types.h +include/gdict-1.0/gdict/gdict-source-loader.h +include/gdict-1.0/gdict/gdict-source-chooser.h +include/gdict-1.0/gdict/gdict-source.h +include/gdict-1.0/gdict/gdict-speller.h +include/gdict-1.0/gdict/gdict-strategy-chooser.h +include/gdict-1.0/gdict/gdict-utils.h +include/gdict-1.0/gdict/gdict-version.h +include/gdict-1.0/gdict/gdict.h +lib/libgdict-1.0.a +lib/libgdict-1.0.la +lib/libgdict-1.0.so +lib/libgdict-1.0.so.6 +libdata/bonobo/servers/GNOME_DictionaryApplet.server +libdata/pkgconfig/gdict-1.0.pc +libexec/gnome-dictionary-applet +share/doc/gdict/GdictClientContext.html +share/doc/gdict/GdictDatabaseChooser.html +share/doc/gdict/GdictDefbox.html +share/doc/gdict/GdictSource.html +share/doc/gdict/GdictSourceChooser.html +share/doc/gdict/GdictSourceLoader.html +share/doc/gdict/GdictSpeller.html +share/doc/gdict/GdictStrategyChooser.html +share/doc/gdict/ch05.html +share/doc/gdict/ch06.html +share/doc/gdict/context-types.html +share/doc/gdict/context.html +share/doc/gdict/gdict-Gdict-Utilities.html +share/doc/gdict/gdict-Gdict-Version-Checking.html +share/doc/gdict/gdict-GdictContext.html +share/doc/gdict/gdict-utils.html +share/doc/gdict/gdict.devhelp +share/doc/gdict/gdict.devhelp2 +share/doc/gdict/gdict.html +share/doc/gdict/gdictui.html +share/doc/gdict/home.png +share/doc/gdict/index.html +share/doc/gdict/index.sgml +share/doc/gdict/ix01.html +share/doc/gdict/ix02.html +share/doc/gdict/ix03.html +share/doc/gdict/ix04.html +share/doc/gdict/introduction.html +share/doc/gdict/left.png +share/doc/gdict/right.png +share/doc/gdict/sources.html +share/doc/gdict/style.css +share/doc/gdict/up.png +share/applications/baobab.desktop +share/applications/gnome-dictionary.desktop +share/applications/gnome-screenshot.desktop +share/applications/gnome-search-tool.desktop +share/applications/gnome-system-log.desktop +share/baobab/baobab-dialog-scan-props.ui +share/baobab/baobab-main-window.ui +share/baobab/pixmaps/shot.png +share/gdict-1.0/sources/default.desktop +share/gdict-1.0/sources/spanish.desktop +share/gdict-1.0/sources/thai.desktop +share/gnome-2.0/ui/GNOME_DictionaryApplet.xml +share/gnome-dictionary/gnome-dictionary-preferences.ui +share/gnome-dictionary/gnome-dictionary-source.ui +share/gnome-dictionary/gnome-dictionary-ui.xml +share/gnome-screenshot/gnome-screenshot.ui +%%DATADIR%%/logview-filter.ui +%%DATADIR%%/logview-toolbar.xml +share/gnome/help/baobab/C/baobab.xml +share/gnome/help/baobab/C/figures/baobab_fullscan.png +share/gnome/help/baobab/C/figures/baobab_prefs.png +share/gnome/help/baobab/C/figures/baobab_remote.png +share/gnome/help/baobab/C/figures/baobab_ringschart1.png +share/gnome/help/baobab/C/figures/baobab_ringschart2.png +share/gnome/help/baobab/C/figures/baobab_treemaps.png +share/gnome/help/baobab/C/figures/baobab_window.png +share/gnome/help/baobab/C/legal.xml +share/gnome/help/baobab/ca/baobab.xml +share/gnome/help/baobab/ca/figures/baobab_fullscan.png +share/gnome/help/baobab/ca/figures/baobab_prefs.png +share/gnome/help/baobab/ca/figures/baobab_remote.png +share/gnome/help/baobab/ca/figures/baobab_ringschart1.png +share/gnome/help/baobab/ca/figures/baobab_ringschart2.png +share/gnome/help/baobab/ca/figures/baobab_treemaps.png +share/gnome/help/baobab/ca/figures/baobab_window.png +share/gnome/help/baobab/cs/baobab.xml +share/gnome/help/baobab/cs/figures/baobab_fullscan.png +share/gnome/help/baobab/cs/figures/baobab_prefs.png +share/gnome/help/baobab/cs/figures/baobab_remote.png +share/gnome/help/baobab/cs/figures/baobab_ringschart1.png +share/gnome/help/baobab/cs/figures/baobab_ringschart2.png +share/gnome/help/baobab/cs/figures/baobab_treemaps.png +share/gnome/help/baobab/cs/figures/baobab_window.png +share/gnome/help/baobab/da/baobab.xml +share/gnome/help/baobab/da/figures/baobab_fullscan.png +share/gnome/help/baobab/da/figures/baobab_prefs.png +share/gnome/help/baobab/da/figures/baobab_remote.png +share/gnome/help/baobab/da/figures/baobab_ringschart1.png +share/gnome/help/baobab/da/figures/baobab_ringschart2.png +share/gnome/help/baobab/da/figures/baobab_treemaps.png +share/gnome/help/baobab/da/figures/baobab_window.png +share/gnome/help/baobab/de/baobab.xml +share/gnome/help/baobab/de/figures/baobab_fullscan.png +share/gnome/help/baobab/de/figures/baobab_prefs.png +share/gnome/help/baobab/de/figures/baobab_remote.png +share/gnome/help/baobab/de/figures/baobab_ringschart1.png +share/gnome/help/baobab/de/figures/baobab_ringschart2.png +share/gnome/help/baobab/de/figures/baobab_treemaps.png +share/gnome/help/baobab/de/figures/baobab_window.png +share/gnome/help/baobab/el/baobab.xml +share/gnome/help/baobab/el/figures/baobab_fullscan.png +share/gnome/help/baobab/el/figures/baobab_prefs.png +share/gnome/help/baobab/el/figures/baobab_remote.png +share/gnome/help/baobab/el/figures/baobab_ringschart1.png +share/gnome/help/baobab/el/figures/baobab_ringschart2.png +share/gnome/help/baobab/el/figures/baobab_treemaps.png +share/gnome/help/baobab/el/figures/baobab_window.png +share/gnome/help/baobab/en_GB/baobab.xml +share/gnome/help/baobab/en_GB/figures/baobab_fullscan.png +share/gnome/help/baobab/en_GB/figures/baobab_prefs.png +share/gnome/help/baobab/en_GB/figures/baobab_remote.png +share/gnome/help/baobab/en_GB/figures/baobab_ringschart1.png +share/gnome/help/baobab/en_GB/figures/baobab_ringschart2.png +share/gnome/help/baobab/en_GB/figures/baobab_treemaps.png +share/gnome/help/baobab/en_GB/figures/baobab_window.png +share/gnome/help/baobab/es/baobab.xml +share/gnome/help/baobab/es/figures/baobab_fullscan.png +share/gnome/help/baobab/es/figures/baobab_prefs.png +share/gnome/help/baobab/es/figures/baobab_remote.png +share/gnome/help/baobab/es/figures/baobab_ringschart1.png +share/gnome/help/baobab/es/figures/baobab_ringschart2.png +share/gnome/help/baobab/es/figures/baobab_treemaps.png +share/gnome/help/baobab/es/figures/baobab_window.png +share/gnome/help/baobab/eu/baobab.xml +share/gnome/help/baobab/eu/figures/baobab_fullscan.png +share/gnome/help/baobab/eu/figures/baobab_prefs.png +share/gnome/help/baobab/eu/figures/baobab_remote.png +share/gnome/help/baobab/eu/figures/baobab_ringschart1.png +share/gnome/help/baobab/eu/figures/baobab_ringschart2.png +share/gnome/help/baobab/eu/figures/baobab_treemaps.png +share/gnome/help/baobab/eu/figures/baobab_window.png +share/gnome/help/baobab/fi/baobab.xml +share/gnome/help/baobab/fi/figures/baobab_fullscan.png +share/gnome/help/baobab/fi/figures/baobab_prefs.png +share/gnome/help/baobab/fi/figures/baobab_remote.png +share/gnome/help/baobab/fi/figures/baobab_ringschart1.png +share/gnome/help/baobab/fi/figures/baobab_ringschart2.png +share/gnome/help/baobab/fi/figures/baobab_treemaps.png +share/gnome/help/baobab/fi/figures/baobab_window.png +share/gnome/help/baobab/fr/baobab.xml +share/gnome/help/baobab/fr/figures/baobab_fullscan.png +share/gnome/help/baobab/fr/figures/baobab_prefs.png +share/gnome/help/baobab/fr/figures/baobab_remote.png +share/gnome/help/baobab/fr/figures/baobab_ringschart1.png +share/gnome/help/baobab/fr/figures/baobab_ringschart2.png +share/gnome/help/baobab/fr/figures/baobab_treemaps.png +share/gnome/help/baobab/fr/figures/baobab_window.png +share/gnome/help/baobab/it/baobab.xml +share/gnome/help/baobab/it/figures/baobab_fullscan.png +share/gnome/help/baobab/it/figures/baobab_prefs.png +share/gnome/help/baobab/it/figures/baobab_remote.png +share/gnome/help/baobab/it/figures/baobab_ringschart1.png +share/gnome/help/baobab/it/figures/baobab_ringschart2.png +share/gnome/help/baobab/it/figures/baobab_treemaps.png +share/gnome/help/baobab/it/figures/baobab_window.png +share/gnome/help/baobab/oc/baobab.xml +share/gnome/help/baobab/oc/figures/baobab_fullscan.png +share/gnome/help/baobab/oc/figures/baobab_prefs.png +share/gnome/help/baobab/oc/figures/baobab_remote.png +share/gnome/help/baobab/oc/figures/baobab_ringschart1.png +share/gnome/help/baobab/oc/figures/baobab_ringschart2.png +share/gnome/help/baobab/oc/figures/baobab_treemaps.png +share/gnome/help/baobab/oc/figures/baobab_window.png +share/gnome/help/baobab/pl/baobab.xml +share/gnome/help/baobab/pl/figures/baobab_fullscan.png +share/gnome/help/baobab/pl/figures/baobab_prefs.png +share/gnome/help/baobab/pl/figures/baobab_remote.png +share/gnome/help/baobab/pl/figures/baobab_ringschart1.png +share/gnome/help/baobab/pl/figures/baobab_ringschart2.png +share/gnome/help/baobab/pl/figures/baobab_treemaps.png +share/gnome/help/baobab/pl/figures/baobab_window.png +share/gnome/help/baobab/ru/baobab.xml +share/gnome/help/baobab/ru/figures/baobab_fullscan.png +share/gnome/help/baobab/ru/figures/baobab_prefs.png +share/gnome/help/baobab/ru/figures/baobab_remote.png +share/gnome/help/baobab/ru/figures/baobab_ringschart1.png +share/gnome/help/baobab/ru/figures/baobab_ringschart2.png +share/gnome/help/baobab/ru/figures/baobab_treemaps.png +share/gnome/help/baobab/ru/figures/baobab_window.png +share/gnome/help/baobab/sv/baobab.xml +share/gnome/help/baobab/sv/figures/baobab_fullscan.png +share/gnome/help/baobab/sv/figures/baobab_prefs.png +share/gnome/help/baobab/sv/figures/baobab_remote.png +share/gnome/help/baobab/sv/figures/baobab_ringschart1.png +share/gnome/help/baobab/sv/figures/baobab_ringschart2.png +share/gnome/help/baobab/sv/figures/baobab_treemaps.png +share/gnome/help/baobab/sv/figures/baobab_window.png +share/gnome/help/baobab/uk/baobab.xml +share/gnome/help/baobab/uk/figures/baobab_fullscan.png +share/gnome/help/baobab/uk/figures/baobab_prefs.png +share/gnome/help/baobab/uk/figures/baobab_remote.png +share/gnome/help/baobab/uk/figures/baobab_ringschart1.png +share/gnome/help/baobab/uk/figures/baobab_ringschart2.png +share/gnome/help/baobab/uk/figures/baobab_treemaps.png +share/gnome/help/baobab/uk/figures/baobab_window.png +share/gnome/help/baobab/zh_CN/baobab.xml +share/gnome/help/baobab/zh_CN/figures/baobab_fullscan.png +share/gnome/help/baobab/zh_CN/figures/baobab_prefs.png +share/gnome/help/baobab/zh_CN/figures/baobab_remote.png +share/gnome/help/baobab/zh_CN/figures/baobab_ringschart1.png +share/gnome/help/baobab/zh_CN/figures/baobab_ringschart2.png +share/gnome/help/baobab/zh_CN/figures/baobab_treemaps.png +share/gnome/help/baobab/zh_CN/figures/baobab_window.png +share/gnome/help/baobab/zh_HK/baobab.xml +share/gnome/help/baobab/zh_HK/figures/baobab_fullscan.png +share/gnome/help/baobab/zh_HK/figures/baobab_prefs.png +share/gnome/help/baobab/zh_HK/figures/baobab_remote.png +share/gnome/help/baobab/zh_HK/figures/baobab_ringschart1.png +share/gnome/help/baobab/zh_HK/figures/baobab_ringschart2.png +share/gnome/help/baobab/zh_HK/figures/baobab_treemaps.png +share/gnome/help/baobab/zh_HK/figures/baobab_window.png +share/gnome/help/baobab/zh_TW/baobab.xml +share/gnome/help/baobab/zh_TW/figures/baobab_fullscan.png +share/gnome/help/baobab/zh_TW/figures/baobab_prefs.png +share/gnome/help/baobab/zh_TW/figures/baobab_remote.png +share/gnome/help/baobab/zh_TW/figures/baobab_ringschart1.png +share/gnome/help/baobab/zh_TW/figures/baobab_ringschart2.png +share/gnome/help/baobab/zh_TW/figures/baobab_treemaps.png +share/gnome/help/baobab/zh_TW/figures/baobab_window.png +share/gnome/help/gnome-dictionary/C/figures/gnome-dictionary-add-source.png +share/gnome/help/gnome-dictionary/C/figures/gnome-dictionary-applet-window.png +share/gnome/help/gnome-dictionary/C/figures/gnome-dictionary-applet.png +share/gnome/help/gnome-dictionary/C/figures/gnome-dictionary-application.png +share/gnome/help/gnome-dictionary/C/figures/gnome-dictionary-find.png +share/gnome/help/gnome-dictionary/C/figures/gnome-dictionary-lookup.png +share/gnome/help/gnome-dictionary/C/figures/gnome-dictionary-preferences-print.png +share/gnome/help/gnome-dictionary/C/figures/gnome-dictionary-preferences-source.png +share/gnome/help/gnome-dictionary/C/gnome-dictionary.xml +share/gnome/help/gnome-dictionary/C/legal.xml +share/gnome/help/gnome-dictionary/ca/figures/gnome-dictionary-add-source.png +share/gnome/help/gnome-dictionary/ca/figures/gnome-dictionary-applet-window.png +share/gnome/help/gnome-dictionary/ca/figures/gnome-dictionary-applet.png +share/gnome/help/gnome-dictionary/ca/figures/gnome-dictionary-application.png +share/gnome/help/gnome-dictionary/ca/figures/gnome-dictionary-find.png +share/gnome/help/gnome-dictionary/ca/figures/gnome-dictionary-lookup.png +share/gnome/help/gnome-dictionary/ca/figures/gnome-dictionary-preferences-print.png +share/gnome/help/gnome-dictionary/ca/figures/gnome-dictionary-preferences-source.png +share/gnome/help/gnome-dictionary/ca/gnome-dictionary.xml +share/gnome/help/gnome-dictionary/cs/figures/gnome-dictionary-add-source.png +share/gnome/help/gnome-dictionary/cs/figures/gnome-dictionary-applet-window.png +share/gnome/help/gnome-dictionary/cs/figures/gnome-dictionary-applet.png +share/gnome/help/gnome-dictionary/cs/figures/gnome-dictionary-application.png +share/gnome/help/gnome-dictionary/cs/figures/gnome-dictionary-find.png +share/gnome/help/gnome-dictionary/cs/figures/gnome-dictionary-lookup.png +share/gnome/help/gnome-dictionary/cs/figures/gnome-dictionary-preferences-print.png +share/gnome/help/gnome-dictionary/cs/figures/gnome-dictionary-preferences-source.png +share/gnome/help/gnome-dictionary/cs/gnome-dictionary.xml +share/gnome/help/gnome-dictionary/da/figures/gnome-dictionary-add-source.png +share/gnome/help/gnome-dictionary/da/figures/gnome-dictionary-applet-window.png +share/gnome/help/gnome-dictionary/da/figures/gnome-dictionary-applet.png +share/gnome/help/gnome-dictionary/da/figures/gnome-dictionary-application.png +share/gnome/help/gnome-dictionary/da/figures/gnome-dictionary-find.png +share/gnome/help/gnome-dictionary/da/figures/gnome-dictionary-lookup.png +share/gnome/help/gnome-dictionary/da/figures/gnome-dictionary-preferences-print.png +share/gnome/help/gnome-dictionary/da/figures/gnome-dictionary-preferences-source.png +share/gnome/help/gnome-dictionary/da/gnome-dictionary.xml +share/gnome/help/gnome-dictionary/de/figures/gnome-dictionary-add-source.png +share/gnome/help/gnome-dictionary/de/figures/gnome-dictionary-applet-window.png +share/gnome/help/gnome-dictionary/de/figures/gnome-dictionary-applet.png +share/gnome/help/gnome-dictionary/de/figures/gnome-dictionary-application.png +share/gnome/help/gnome-dictionary/de/figures/gnome-dictionary-find.png +share/gnome/help/gnome-dictionary/de/figures/gnome-dictionary-lookup.png +share/gnome/help/gnome-dictionary/de/figures/gnome-dictionary-preferences-print.png +share/gnome/help/gnome-dictionary/de/figures/gnome-dictionary-preferences-source.png +share/gnome/help/gnome-dictionary/de/gnome-dictionary.xml +share/gnome/help/gnome-dictionary/el/figures/gnome-dictionary-add-source.png +share/gnome/help/gnome-dictionary/el/figures/gnome-dictionary-applet-window.png +share/gnome/help/gnome-dictionary/el/figures/gnome-dictionary-applet.png +share/gnome/help/gnome-dictionary/el/figures/gnome-dictionary-application.png +share/gnome/help/gnome-dictionary/el/figures/gnome-dictionary-find.png +share/gnome/help/gnome-dictionary/el/figures/gnome-dictionary-lookup.png +share/gnome/help/gnome-dictionary/el/figures/gnome-dictionary-preferences-print.png +share/gnome/help/gnome-dictionary/el/figures/gnome-dictionary-preferences-source.png +share/gnome/help/gnome-dictionary/el/gnome-dictionary.xml +share/gnome/help/gnome-dictionary/en_GB/figures/gnome-dictionary-add-source.png +share/gnome/help/gnome-dictionary/en_GB/figures/gnome-dictionary-applet-window.png +share/gnome/help/gnome-dictionary/en_GB/figures/gnome-dictionary-applet.png +share/gnome/help/gnome-dictionary/en_GB/figures/gnome-dictionary-application.png +share/gnome/help/gnome-dictionary/en_GB/figures/gnome-dictionary-find.png +share/gnome/help/gnome-dictionary/en_GB/figures/gnome-dictionary-lookup.png +share/gnome/help/gnome-dictionary/en_GB/figures/gnome-dictionary-preferences-print.png +share/gnome/help/gnome-dictionary/en_GB/figures/gnome-dictionary-preferences-source.png +share/gnome/help/gnome-dictionary/en_GB/gnome-dictionary.xml +share/gnome/help/gnome-dictionary/es/figures/gnome-dictionary-add-source.png +share/gnome/help/gnome-dictionary/es/figures/gnome-dictionary-applet-window.png +share/gnome/help/gnome-dictionary/es/figures/gnome-dictionary-applet.png +share/gnome/help/gnome-dictionary/es/figures/gnome-dictionary-application.png +share/gnome/help/gnome-dictionary/es/figures/gnome-dictionary-find.png +share/gnome/help/gnome-dictionary/es/figures/gnome-dictionary-lookup.png +share/gnome/help/gnome-dictionary/es/figures/gnome-dictionary-preferences-print.png +share/gnome/help/gnome-dictionary/es/figures/gnome-dictionary-preferences-source.png +share/gnome/help/gnome-dictionary/es/gnome-dictionary.xml +share/gnome/help/gnome-dictionary/eu/figures/gnome-dictionary-add-source.png +share/gnome/help/gnome-dictionary/eu/figures/gnome-dictionary-applet-window.png +share/gnome/help/gnome-dictionary/eu/figures/gnome-dictionary-applet.png +share/gnome/help/gnome-dictionary/eu/figures/gnome-dictionary-application.png +share/gnome/help/gnome-dictionary/eu/figures/gnome-dictionary-find.png +share/gnome/help/gnome-dictionary/eu/figures/gnome-dictionary-lookup.png +share/gnome/help/gnome-dictionary/eu/figures/gnome-dictionary-preferences-print.png +share/gnome/help/gnome-dictionary/eu/figures/gnome-dictionary-preferences-source.png +share/gnome/help/gnome-dictionary/eu/gnome-dictionary.xml +share/gnome/help/gnome-dictionary/fi/figures/gnome-dictionary-add-source.png +share/gnome/help/gnome-dictionary/fi/figures/gnome-dictionary-applet-window.png +share/gnome/help/gnome-dictionary/fi/figures/gnome-dictionary-applet.png +share/gnome/help/gnome-dictionary/fi/figures/gnome-dictionary-application.png +share/gnome/help/gnome-dictionary/fi/figures/gnome-dictionary-find.png +share/gnome/help/gnome-dictionary/fi/figures/gnome-dictionary-lookup.png +share/gnome/help/gnome-dictionary/fi/figures/gnome-dictionary-preferences-print.png +share/gnome/help/gnome-dictionary/fi/figures/gnome-dictionary-preferences-source.png +share/gnome/help/gnome-dictionary/fi/gnome-dictionary.xml +share/gnome/help/gnome-dictionary/fr/figures/gnome-dictionary-add-source.png +share/gnome/help/gnome-dictionary/fr/figures/gnome-dictionary-applet-window.png +share/gnome/help/gnome-dictionary/fr/figures/gnome-dictionary-applet.png +share/gnome/help/gnome-dictionary/fr/figures/gnome-dictionary-application.png +share/gnome/help/gnome-dictionary/fr/figures/gnome-dictionary-find.png +share/gnome/help/gnome-dictionary/fr/figures/gnome-dictionary-lookup.png +share/gnome/help/gnome-dictionary/fr/figures/gnome-dictionary-preferences-print.png +share/gnome/help/gnome-dictionary/fr/figures/gnome-dictionary-preferences-source.png +share/gnome/help/gnome-dictionary/fr/gnome-dictionary.xml +share/gnome/help/gnome-dictionary/it/figures/gnome-dictionary-add-source.png +share/gnome/help/gnome-dictionary/it/figures/gnome-dictionary-applet-window.png +share/gnome/help/gnome-dictionary/it/figures/gnome-dictionary-applet.png +share/gnome/help/gnome-dictionary/it/figures/gnome-dictionary-application.png +share/gnome/help/gnome-dictionary/it/figures/gnome-dictionary-find.png +share/gnome/help/gnome-dictionary/it/figures/gnome-dictionary-lookup.png +share/gnome/help/gnome-dictionary/it/figures/gnome-dictionary-preferences-print.png +share/gnome/help/gnome-dictionary/it/figures/gnome-dictionary-preferences-source.png +share/gnome/help/gnome-dictionary/it/gnome-dictionary.xml +share/gnome/help/gnome-dictionary/oc/figures/gnome-dictionary-add-source.png +share/gnome/help/gnome-dictionary/oc/figures/gnome-dictionary-applet-window.png +share/gnome/help/gnome-dictionary/oc/figures/gnome-dictionary-applet.png +share/gnome/help/gnome-dictionary/oc/figures/gnome-dictionary-application.png +share/gnome/help/gnome-dictionary/oc/figures/gnome-dictionary-find.png +share/gnome/help/gnome-dictionary/oc/figures/gnome-dictionary-lookup.png +share/gnome/help/gnome-dictionary/oc/figures/gnome-dictionary-preferences-print.png +share/gnome/help/gnome-dictionary/oc/figures/gnome-dictionary-preferences-source.png +share/gnome/help/gnome-dictionary/oc/gnome-dictionary.xml +share/gnome/help/gnome-dictionary/ru/figures/gnome-dictionary-add-source.png +share/gnome/help/gnome-dictionary/ru/figures/gnome-dictionary-applet-window.png +share/gnome/help/gnome-dictionary/ru/figures/gnome-dictionary-applet.png +share/gnome/help/gnome-dictionary/ru/figures/gnome-dictionary-application.png +share/gnome/help/gnome-dictionary/ru/figures/gnome-dictionary-find.png +share/gnome/help/gnome-dictionary/ru/figures/gnome-dictionary-lookup.png +share/gnome/help/gnome-dictionary/ru/figures/gnome-dictionary-preferences-print.png +share/gnome/help/gnome-dictionary/ru/figures/gnome-dictionary-preferences-source.png +share/gnome/help/gnome-dictionary/ru/gnome-dictionary.xml +share/gnome/help/gnome-dictionary/sv/figures/gnome-dictionary-add-source.png +share/gnome/help/gnome-dictionary/sv/figures/gnome-dictionary-applet-window.png +share/gnome/help/gnome-dictionary/sv/figures/gnome-dictionary-applet.png +share/gnome/help/gnome-dictionary/sv/figures/gnome-dictionary-application.png +share/gnome/help/gnome-dictionary/sv/figures/gnome-dictionary-find.png +share/gnome/help/gnome-dictionary/sv/figures/gnome-dictionary-lookup.png +share/gnome/help/gnome-dictionary/sv/figures/gnome-dictionary-preferences-print.png +share/gnome/help/gnome-dictionary/sv/figures/gnome-dictionary-preferences-source.png +share/gnome/help/gnome-dictionary/sv/gnome-dictionary.xml +share/gnome/help/gnome-dictionary/uk/figures/gnome-dictionary-add-source.png +share/gnome/help/gnome-dictionary/uk/figures/gnome-dictionary-applet-window.png +share/gnome/help/gnome-dictionary/uk/figures/gnome-dictionary-applet.png +share/gnome/help/gnome-dictionary/uk/figures/gnome-dictionary-application.png +share/gnome/help/gnome-dictionary/uk/figures/gnome-dictionary-find.png +share/gnome/help/gnome-dictionary/uk/figures/gnome-dictionary-lookup.png +share/gnome/help/gnome-dictionary/uk/figures/gnome-dictionary-preferences-print.png +share/gnome/help/gnome-dictionary/uk/figures/gnome-dictionary-preferences-source.png +share/gnome/help/gnome-dictionary/uk/gnome-dictionary.xml +share/gnome/help/gnome-dictionary/zh_CN/figures/gnome-dictionary-add-source.png +share/gnome/help/gnome-dictionary/zh_CN/figures/gnome-dictionary-applet-window.png +share/gnome/help/gnome-dictionary/zh_CN/figures/gnome-dictionary-applet.png +share/gnome/help/gnome-dictionary/zh_CN/figures/gnome-dictionary-application.png +share/gnome/help/gnome-dictionary/zh_CN/figures/gnome-dictionary-find.png +share/gnome/help/gnome-dictionary/zh_CN/figures/gnome-dictionary-lookup.png +share/gnome/help/gnome-dictionary/zh_CN/figures/gnome-dictionary-preferences-print.png +share/gnome/help/gnome-dictionary/zh_CN/figures/gnome-dictionary-preferences-source.png +share/gnome/help/gnome-dictionary/zh_CN/gnome-dictionary.xml +share/gnome/help/gnome-search-tool/C/figures/gnome-search-tool_window.png +share/gnome/help/gnome-search-tool/C/gnome-search-tool.xml +share/gnome/help/gnome-search-tool/C/legal.xml +share/gnome/help/gnome-search-tool/ca/figures/gnome-search-tool_window.png +share/gnome/help/gnome-search-tool/ca/gnome-search-tool.xml +share/gnome/help/gnome-search-tool/cs/figures/gnome-search-tool_window.png +share/gnome/help/gnome-search-tool/cs/gnome-search-tool.xml +share/gnome/help/gnome-search-tool/de/figures/gnome-search-tool_window.png +share/gnome/help/gnome-search-tool/de/gnome-search-tool.xml +share/gnome/help/gnome-search-tool/el/figures/gnome-search-tool_window.png +share/gnome/help/gnome-search-tool/el/gnome-search-tool.xml +share/gnome/help/gnome-search-tool/en_GB/figures/gnome-search-tool_window.png +share/gnome/help/gnome-search-tool/en_GB/gnome-search-tool.xml +share/gnome/help/gnome-search-tool/es/figures/gnome-search-tool_window.png +share/gnome/help/gnome-search-tool/es/gnome-search-tool.xml +share/gnome/help/gnome-search-tool/eu/figures/gnome-search-tool_window.png +share/gnome/help/gnome-search-tool/eu/gnome-search-tool.xml +share/gnome/help/gnome-search-tool/fi/figures/gnome-search-tool_window.png +share/gnome/help/gnome-search-tool/fi/gnome-search-tool.xml +share/gnome/help/gnome-search-tool/fr/figures/gnome-search-tool_window.png +share/gnome/help/gnome-search-tool/fr/gnome-search-tool.xml +share/gnome/help/gnome-search-tool/it/figures/gnome-search-tool_window.png +share/gnome/help/gnome-search-tool/it/gnome-search-tool.xml +share/gnome/help/gnome-search-tool/ko/figures/gnome-search-tool_window.png +share/gnome/help/gnome-search-tool/ko/gnome-search-tool.xml +share/gnome/help/gnome-search-tool/oc/figures/gnome-search-tool_window.png +share/gnome/help/gnome-search-tool/oc/gnome-search-tool.xml +share/gnome/help/gnome-search-tool/ru/figures/gnome-search-tool_window.png +share/gnome/help/gnome-search-tool/ru/gnome-search-tool.xml +share/gnome/help/gnome-search-tool/sv/figures/gnome-search-tool_window.png +share/gnome/help/gnome-search-tool/sv/gnome-search-tool.xml +share/gnome/help/gnome-search-tool/uk/figures/gnome-search-tool_window.png +share/gnome/help/gnome-search-tool/uk/gnome-search-tool.xml +share/gnome/help/gnome-search-tool/zh_CN/figures/gnome-search-tool_window.png +share/gnome/help/gnome-search-tool/zh_CN/gnome-search-tool.xml +share/gnome/help/gnome-system-log/C/figures/syslog_window.png +share/gnome/help/gnome-system-log/C/gnome-system-log.xml +share/gnome/help/gnome-system-log/C/legal.xml +share/gnome/help/gnome-system-log/ca/figures/syslog_window.png +share/gnome/help/gnome-system-log/ca/gnome-system-log.xml +share/gnome/help/gnome-system-log/cs/figures/syslog_window.png +share/gnome/help/gnome-system-log/cs/gnome-system-log.xml +share/gnome/help/gnome-system-log/de/figures/syslog_window.png +share/gnome/help/gnome-system-log/de/gnome-system-log.xml +share/gnome/help/gnome-system-log/el/figures/syslog_window.png +share/gnome/help/gnome-system-log/el/gnome-system-log.xml +share/gnome/help/gnome-system-log/en_GB/figures/syslog_window.png +share/gnome/help/gnome-system-log/en_GB/gnome-system-log.xml +share/gnome/help/gnome-system-log/es/figures/syslog_window.png +share/gnome/help/gnome-system-log/es/gnome-system-log.xml +share/gnome/help/gnome-system-log/eu/figures/syslog_window.png +share/gnome/help/gnome-system-log/eu/gnome-system-log.xml +share/gnome/help/gnome-system-log/fi/figures/syslog_window.png +share/gnome/help/gnome-system-log/fi/gnome-system-log.xml +share/gnome/help/gnome-system-log/fr/figures/syslog_window.png +share/gnome/help/gnome-system-log/fr/gnome-system-log.xml +share/gnome/help/gnome-system-log/it/figures/syslog_window.png +share/gnome/help/gnome-system-log/it/gnome-system-log.xml +share/gnome/help/gnome-system-log/ko/figures/syslog_window.png +share/gnome/help/gnome-system-log/ko/gnome-system-log.xml +share/gnome/help/gnome-system-log/oc/figures/syslog_window.png +share/gnome/help/gnome-system-log/oc/gnome-system-log.xml +share/gnome/help/gnome-system-log/ru/figures/syslog_window.png +share/gnome/help/gnome-system-log/ru/gnome-system-log.xml +share/gnome/help/gnome-system-log/sv/figures/syslog_window.png +share/gnome/help/gnome-system-log/sv/gnome-system-log.xml +share/gnome/help/gnome-system-log/uk/figures/syslog_window.png +share/gnome/help/gnome-system-log/uk/gnome-system-log.xml +share/gnome/help/gnome-system-log/zh_CN/figures/syslog_window.png +share/gnome/help/gnome-system-log/zh_CN/gnome-system-log.xml +share/omf/baobab/baobab-C.omf +share/omf/baobab/baobab-ca.omf +share/omf/baobab/baobab-cs.omf +share/omf/baobab/baobab-da.omf +share/omf/baobab/baobab-de.omf +share/omf/baobab/baobab-el.omf +share/omf/baobab/baobab-en_GB.omf +share/omf/baobab/baobab-es.omf +share/omf/baobab/baobab-eu.omf +share/omf/baobab/baobab-fi.omf +share/omf/baobab/baobab-fr.omf +share/omf/baobab/baobab-it.omf +share/omf/baobab/baobab-oc.omf +share/omf/baobab/baobab-pl.omf +share/omf/baobab/baobab-ru.omf +share/omf/baobab/baobab-sv.omf +share/omf/baobab/baobab-uk.omf +share/omf/baobab/baobab-zh_CN.omf +share/omf/baobab/baobab-zh_HK.omf +share/omf/baobab/baobab-zh_TW.omf +share/omf/gnome-dictionary/gnome-dictionary-C.omf +share/omf/gnome-dictionary/gnome-dictionary-ca.omf +share/omf/gnome-dictionary/gnome-dictionary-cs.omf +share/omf/gnome-dictionary/gnome-dictionary-da.omf +share/omf/gnome-dictionary/gnome-dictionary-de.omf +share/omf/gnome-dictionary/gnome-dictionary-el.omf +share/omf/gnome-dictionary/gnome-dictionary-en_GB.omf +share/omf/gnome-dictionary/gnome-dictionary-es.omf +share/omf/gnome-dictionary/gnome-dictionary-eu.omf +share/omf/gnome-dictionary/gnome-dictionary-fi.omf +share/omf/gnome-dictionary/gnome-dictionary-fr.omf +share/omf/gnome-dictionary/gnome-dictionary-it.omf +share/omf/gnome-dictionary/gnome-dictionary-oc.omf +share/omf/gnome-dictionary/gnome-dictionary-ru.omf +share/omf/gnome-dictionary/gnome-dictionary-sv.omf +share/omf/gnome-dictionary/gnome-dictionary-uk.omf +share/omf/gnome-dictionary/gnome-dictionary-zh_CN.omf +share/omf/gnome-search-tool/gnome-search-tool-C.omf +share/omf/gnome-search-tool/gnome-search-tool-ca.omf +share/omf/gnome-search-tool/gnome-search-tool-cs.omf +share/omf/gnome-search-tool/gnome-search-tool-de.omf +share/omf/gnome-search-tool/gnome-search-tool-el.omf +share/omf/gnome-search-tool/gnome-search-tool-en_GB.omf +share/omf/gnome-search-tool/gnome-search-tool-es.omf +share/omf/gnome-search-tool/gnome-search-tool-eu.omf +share/omf/gnome-search-tool/gnome-search-tool-fi.omf +share/omf/gnome-search-tool/gnome-search-tool-it.omf +share/omf/gnome-search-tool/gnome-search-tool-ko.omf +share/omf/gnome-search-tool/gnome-search-tool-oc.omf +share/omf/gnome-search-tool/gnome-search-tool-fr.omf +share/omf/gnome-search-tool/gnome-search-tool-ru.omf +share/omf/gnome-search-tool/gnome-search-tool-sv.omf +share/omf/gnome-search-tool/gnome-search-tool-uk.omf +share/omf/gnome-search-tool/gnome-search-tool-zh_CN.omf +share/omf/gnome-system-log/gnome-system-log-C.omf +share/omf/gnome-system-log/gnome-system-log-ca.omf +share/omf/gnome-system-log/gnome-system-log-cs.omf +share/omf/gnome-system-log/gnome-system-log-de.omf +share/omf/gnome-system-log/gnome-system-log-el.omf +share/omf/gnome-system-log/gnome-system-log-en_GB.omf +share/omf/gnome-system-log/gnome-system-log-es.omf +share/omf/gnome-system-log/gnome-system-log-eu.omf +share/omf/gnome-system-log/gnome-system-log-fi.omf +share/omf/gnome-system-log/gnome-system-log-fr.omf +share/omf/gnome-system-log/gnome-system-log-it.omf +share/omf/gnome-system-log/gnome-system-log-ko.omf +share/omf/gnome-system-log/gnome-system-log-oc.omf +share/omf/gnome-system-log/gnome-system-log-ru.omf +share/omf/gnome-system-log/gnome-system-log-sv.omf +share/omf/gnome-system-log/gnome-system-log-uk.omf +share/omf/gnome-system-log/gnome-system-log-zh_CN.omf +share/pixmaps/gsearchtool/thumbnail_frame.png +share/icons/hicolor/24x24/apps/baobab.png +share/icons/hicolor/scalable/apps/baobab.svg +share/locale/af/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/am/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/as/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/ast/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/ar/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/az/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/be/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/be@latin/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/bg/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/bn/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/bn_IN/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/br/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/bs/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/ca/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/ca@valencia/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/crh/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/cs/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/cy/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/da/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/de/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/dz/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/el/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/en_CA/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/en_GB/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/en@shaw/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/eo/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/es/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/et/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/eu/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/fa/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/fi/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/fr/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/ga/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/gl/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/gu/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/he/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/hi/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/hr/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/hu/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/id/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/it/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/ja/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/ka/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/kn/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/ko/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/ku/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/lt/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/lv/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/mai/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/mg/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/mk/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/ml/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/mn/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/mr/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/ms/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/nb/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/nds/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/ne/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/nl/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/nn/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/oc/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/or/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/pa/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/pl/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/ps/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/pt/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/pt_BR/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/ro/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/ru/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/rw/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/si/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/sk/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/sl/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/sq/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/sr/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/sr@latin/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/sv/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/ta/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/te/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/th/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/tr/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/uk/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/vi/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/wa/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/xh/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/zh_CN/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/zh_HK/LC_MESSAGES/gnome-utils-2.0.mo +share/locale/zh_TW/LC_MESSAGES/gnome-utils-2.0.mo +@dirrm share/pixmaps/gsearchtool +@dirrm share/omf/gnome-system-log +@dirrm share/omf/gnome-search-tool +@dirrm share/omf/gnome-dictionary +@dirrm share/omf/baobab +@dirrm share/gnome/help/gnome-system-log/zh_CN/figures +@dirrm share/gnome/help/gnome-system-log/zh_CN +@dirrm share/gnome/help/gnome-system-log/uk/figures +@dirrm share/gnome/help/gnome-system-log/uk +@dirrm share/gnome/help/gnome-system-log/sv/figures +@dirrm share/gnome/help/gnome-system-log/sv +@dirrm share/gnome/help/gnome-system-log/ru/figures +@dirrm share/gnome/help/gnome-system-log/ru +@dirrm share/gnome/help/gnome-system-log/oc/figures +@dirrm share/gnome/help/gnome-system-log/oc +@dirrm share/gnome/help/gnome-system-log/ko/figures +@dirrm share/gnome/help/gnome-system-log/ko +@dirrm share/gnome/help/gnome-system-log/it/figures +@dirrm share/gnome/help/gnome-system-log/it +@dirrm share/gnome/help/gnome-system-log/fr/figures +@dirrm share/gnome/help/gnome-system-log/fr +@dirrm share/gnome/help/gnome-system-log/fi/figures +@dirrm share/gnome/help/gnome-system-log/fi +@dirrm share/gnome/help/gnome-system-log/eu/figures +@dirrm share/gnome/help/gnome-system-log/eu +@dirrm share/gnome/help/gnome-system-log/es/figures +@dirrm share/gnome/help/gnome-system-log/es +@dirrm share/gnome/help/gnome-system-log/en_GB/figures +@dirrm share/gnome/help/gnome-system-log/en_GB +@dirrm share/gnome/help/gnome-system-log/el/figures +@dirrm share/gnome/help/gnome-system-log/el +@dirrm share/gnome/help/gnome-system-log/de/figures +@dirrm share/gnome/help/gnome-system-log/de +@dirrm share/gnome/help/gnome-system-log/cs/figures +@dirrm share/gnome/help/gnome-system-log/cs +@dirrm share/gnome/help/gnome-system-log/ca/figures +@dirrm share/gnome/help/gnome-system-log/ca +@dirrm share/gnome/help/gnome-system-log/C/figures +@dirrm share/gnome/help/gnome-system-log/C +@dirrm share/gnome/help/gnome-system-log +@dirrm share/gnome/help/gnome-search-tool/zh_CN/figures +@dirrm share/gnome/help/gnome-search-tool/zh_CN +@dirrm share/gnome/help/gnome-search-tool/uk/figures +@dirrm share/gnome/help/gnome-search-tool/uk +@dirrm share/gnome/help/gnome-search-tool/sv/figures +@dirrm share/gnome/help/gnome-search-tool/sv +@dirrm share/gnome/help/gnome-search-tool/ru/figures +@dirrm share/gnome/help/gnome-search-tool/ru +@dirrm share/gnome/help/gnome-search-tool/oc/figures +@dirrm share/gnome/help/gnome-search-tool/oc +@dirrm share/gnome/help/gnome-search-tool/ko/figures +@dirrm share/gnome/help/gnome-search-tool/ko +@dirrm share/gnome/help/gnome-search-tool/it/figures +@dirrm share/gnome/help/gnome-search-tool/it +@dirrm share/gnome/help/gnome-search-tool/fr/figures +@dirrm share/gnome/help/gnome-search-tool/fr +@dirrm share/gnome/help/gnome-search-tool/fi/figures +@dirrm share/gnome/help/gnome-search-tool/fi +@dirrm share/gnome/help/gnome-search-tool/eu/figures +@dirrm share/gnome/help/gnome-search-tool/eu +@dirrm share/gnome/help/gnome-search-tool/es/figures +@dirrm share/gnome/help/gnome-search-tool/es +@dirrm share/gnome/help/gnome-search-tool/en_GB/figures +@dirrm share/gnome/help/gnome-search-tool/en_GB +@dirrm share/gnome/help/gnome-search-tool/el/figures +@dirrm share/gnome/help/gnome-search-tool/el +@dirrm share/gnome/help/gnome-search-tool/de/figures +@dirrm share/gnome/help/gnome-search-tool/de +@dirrm share/gnome/help/gnome-search-tool/cs/figures +@dirrm share/gnome/help/gnome-search-tool/cs +@dirrm share/gnome/help/gnome-search-tool/ca/figures +@dirrm share/gnome/help/gnome-search-tool/ca +@dirrm share/gnome/help/gnome-search-tool/C/figures +@dirrm share/gnome/help/gnome-search-tool/C +@dirrm share/gnome/help/gnome-search-tool +@dirrm share/gnome/help/gnome-dictionary/zh_CN/figures +@dirrm share/gnome/help/gnome-dictionary/zh_CN +@dirrm share/gnome/help/gnome-dictionary/uk/figures +@dirrm share/gnome/help/gnome-dictionary/uk +@dirrm share/gnome/help/gnome-dictionary/sv/figures +@dirrm share/gnome/help/gnome-dictionary/sv +@dirrm share/gnome/help/gnome-dictionary/ru/figures +@dirrm share/gnome/help/gnome-dictionary/ru +@dirrm share/gnome/help/gnome-dictionary/oc/figures +@dirrm share/gnome/help/gnome-dictionary/oc +@dirrm share/gnome/help/gnome-dictionary/it/figures +@dirrm share/gnome/help/gnome-dictionary/it +@dirrm share/gnome/help/gnome-dictionary/fr/figures +@dirrm share/gnome/help/gnome-dictionary/fr +@dirrm share/gnome/help/gnome-dictionary/fi/figures +@dirrm share/gnome/help/gnome-dictionary/fi +@dirrm share/gnome/help/gnome-dictionary/eu/figures +@dirrm share/gnome/help/gnome-dictionary/eu +@dirrm share/gnome/help/gnome-dictionary/es/figures +@dirrm share/gnome/help/gnome-dictionary/es +@dirrm share/gnome/help/gnome-dictionary/en_GB/figures +@dirrm share/gnome/help/gnome-dictionary/en_GB +@dirrm share/gnome/help/gnome-dictionary/el/figures +@dirrm share/gnome/help/gnome-dictionary/el +@dirrm share/gnome/help/gnome-dictionary/de/figures +@dirrm share/gnome/help/gnome-dictionary/de +@dirrm share/gnome/help/gnome-dictionary/da/figures +@dirrm share/gnome/help/gnome-dictionary/da +@dirrm share/gnome/help/gnome-dictionary/cs/figures +@dirrm share/gnome/help/gnome-dictionary/cs +@dirrm share/gnome/help/gnome-dictionary/ca/figures +@dirrm share/gnome/help/gnome-dictionary/ca +@dirrm share/gnome/help/gnome-dictionary/C/figures +@dirrm share/gnome/help/gnome-dictionary/C +@dirrm share/gnome/help/gnome-dictionary +@dirrm share/gnome/help/baobab/zh_TW/figures +@dirrm share/gnome/help/baobab/zh_TW +@dirrm share/gnome/help/baobab/zh_HK/figures +@dirrm share/gnome/help/baobab/zh_HK +@dirrm share/gnome/help/baobab/zh_CN/figures +@dirrm share/gnome/help/baobab/zh_CN +@dirrm share/gnome/help/baobab/uk/figures +@dirrm share/gnome/help/baobab/uk +@dirrm share/gnome/help/baobab/sv/figures +@dirrm share/gnome/help/baobab/sv +@dirrm share/gnome/help/baobab/ru/figures +@dirrm share/gnome/help/baobab/ru +@dirrm share/gnome/help/baobab/pl/figures +@dirrm share/gnome/help/baobab/pl +@dirrm share/gnome/help/baobab/oc/figures +@dirrm share/gnome/help/baobab/oc +@dirrm share/gnome/help/baobab/it/figures +@dirrm share/gnome/help/baobab/it +@dirrm share/gnome/help/baobab/fr/figures +@dirrm share/gnome/help/baobab/fr +@dirrm share/gnome/help/baobab/fi/figures +@dirrm share/gnome/help/baobab/fi +@dirrm share/gnome/help/baobab/eu/figures +@dirrm share/gnome/help/baobab/eu +@dirrm share/gnome/help/baobab/es/figures +@dirrm share/gnome/help/baobab/es +@dirrm share/gnome/help/baobab/en_GB/figures +@dirrm share/gnome/help/baobab/en_GB +@dirrm share/gnome/help/baobab/el/figures +@dirrm share/gnome/help/baobab/el +@dirrm share/gnome/help/baobab/de/figures +@dirrm share/gnome/help/baobab/de +@dirrm share/gnome/help/baobab/da/figures +@dirrm share/gnome/help/baobab/da +@dirrm share/gnome/help/baobab/cs/figures +@dirrm share/gnome/help/baobab/cs +@dirrm share/gnome/help/baobab/ca/figures +@dirrm share/gnome/help/baobab/ca +@dirrm share/gnome/help/baobab/C/figures +@dirrm share/gnome/help/baobab/C +@dirrm share/gnome/help/baobab +@dirrm %%DATADIR%% +@dirrm share/gnome-screenshot +@dirrm share/gnome-dictionary +@dirrm share/gdict-1.0/sources +@dirrm share/gdict-1.0 +@dirrm share/baobab/pixmaps +@dirrm share/baobab +@dirrm share/doc/gdict +@dirrm include/gdict-1.0/gdict +@dirrm include/gdict-1.0 +@dirrmtry share/applications +@dirrmtry share/locale/zh_HK/LC_MESSAGES +@dirrmtry share/locale/zh_HK +@dirrmtry share/locale/xh/LC_MESSAGES +@dirrmtry share/locale/xh +@dirrmtry share/locale/te/LC_MESSAGES +@dirrmtry share/locale/te +@dirrmtry share/locale/sr@latin/LC_MESSAGES +@dirrmtry share/locale/sr@latin +@dirrmtry share/locale/si/LC_MESSAGES +@dirrmtry share/locale/si +@dirrmtry share/locale/rw/LC_MESSAGES +@dirrmtry share/locale/rw +@dirrmtry share/locale/ps/LC_MESSAGES +@dirrmtry share/locale/ps +@dirrmtry share/locale/oc/LC_MESSAGES +@dirrmtry share/locale/oc +@dirrmtry share/locale/nds/LC_MESSAGES +@dirrmtry share/locale/nds +@dirrmtry share/locale/mr/LC_MESSAGES +@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 +@dirrmtry share/locale/be@latin +@dirrmtry share/locale/ast/LC_MESSAGES +@dirrmtry share/locale/ast +@dirrmtry share/locale/as/LC_MESSAGES +@dirrmtry share/locale/as -- cgit v1.2.3