Index: head/archivers/file-roller/Makefile =================================================================== --- head/archivers/file-roller/Makefile (revision 452549) +++ head/archivers/file-roller/Makefile (revision 452550) @@ -1,57 +1,55 @@ # Created by: Anders Nordby # $FreeBSD$ PORTNAME= file-roller -PORTVERSION= 3.20.3 +PORTVERSION= 3.26.1 PORTEPOCH= 1 CATEGORIES= archivers gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 MAINTAINER= gnome@FreeBSD.org COMMENT= Archive manager for zip files, tar, etc LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= itstool:textproc/itstool LIB_DEPENDS= libjson-glib-1.0.so:devel/json-glib \ libnotify.so:devel/libnotify RUN_DEPENDS= gtar:archivers/gtar PORTSCOUT= limitw:1,even USES= desktop-file-utils gettext gmake libarchive libtool \ - pathfix pkgconfig tar:xz + localbase pathfix pkgconfig tar:xz USE_GNOME= cairo gtk30 intlhack introspection:build USE_XORG= sm INSTALLS_ICONS= yes USE_LDCONFIG= yes GNU_CONFIGURE= yes -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ARGS= --disable-packagekit INSTALL_TARGET= install-strip PORTDOCS= AUTHORS NEWS README TODO ChangeLog GLIB_SCHEMAS= org.gnome.FileRoller.gschema.xml OPTIONS_SUB= yes OPTIONS_DEFINE= DOCS NAUTILUS OPTIONS_DEFAULT=NAUTILUS -NAUTILUS_DESC= Enable Nautilus extension +NAUTILUS_DESC= Nautilus context menu actions NAUTILUS_USE= GNOME=nautilus3 NAUTILUS_CONFIGURE_ENABLE= nautilus-actions post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${WRKSRC}/src/fr-command-tar.c \ ${WRKSRC}/src/fr-command-zip.c post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} .for f in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}/${DOCSDIR} .endfor .include Index: head/archivers/file-roller/distinfo =================================================================== --- head/archivers/file-roller/distinfo (revision 452549) +++ head/archivers/file-roller/distinfo (revision 452550) @@ -1,3 +1,3 @@ -TIMESTAMP = 1477430126 -SHA256 (gnome3/file-roller-3.20.3.tar.xz) = 6b5c2de4c6bd52318cacd2a398cdfa45a5f1df8a77c6652a38a6a1d3e53644e9 -SIZE (gnome3/file-roller-3.20.3.tar.xz) = 1432400 +TIMESTAMP = 1508523946 +SHA256 (gnome3/file-roller-3.26.1.tar.xz) = ecd5e4c9b8435a6515120c59efeed196ec3f07cb84e1bbda7534cb5456e491ae +SIZE (gnome3/file-roller-3.26.1.tar.xz) = 1436044 Index: head/archivers/file-roller/files/patch-src_fr-command-tar.c =================================================================== --- head/archivers/file-roller/files/patch-src_fr-command-tar.c (revision 452549) +++ head/archivers/file-roller/files/patch-src_fr-command-tar.c (revision 452550) @@ -1,12 +1,12 @@ ---- src/fr-command-tar.c.orig 2014-08-13 05:21:20 UTC -+++ src/fr-command-tar.c -@@ -236,6 +236,9 @@ begin_tar_command (FrCommand *comm) +--- src/fr-command-tar.c.orig Sun Oct 15 12:33:56 2006 ++++ src/fr-command-tar.c Mon Oct 16 19:18:03 2006 +@@ -231,6 +231,9 @@ #if defined (__SVR4) && defined (__sun) if (g_file_test ("/usr/sfw/bin/gtar", G_FILE_TEST_IS_EXECUTABLE)) command = g_strdup ("/usr/sfw/bin/gtar"); +#elif defined(__FreeBSD__) + if (g_file_test ("%%LOCALBASE%%/bin/gtar", G_FILE_TEST_IS_EXECUTABLE)) + command = g_strdup ("%%LOCALBASE%%/bin/gtar"); #endif if (command != NULL) fr_process_begin_command (comm->process, command); Index: head/archivers/file-roller/files/patch-src_fr-command-zip.c =================================================================== --- head/archivers/file-roller/files/patch-src_fr-command-zip.c (revision 452549) +++ head/archivers/file-roller/files/patch-src_fr-command-zip.c (revision 452550) @@ -1,38 +1,38 @@ ---- src/fr-command-zip.c.orig 2015-02-15 10:13:10 UTC -+++ src/fr-command-zip.c -@@ -179,7 +179,11 @@ fr_command_zip_list (FrCommand *comm) +--- src/fr-command-zip.c.orig 2010-11-16 08:32:18.000000000 +0000 ++++ src/fr-command-zip.c 2011-01-20 16:55:45.000000000 +0000 +@@ -186,7 +186,11 @@ fr_command_zip_list (FrCommand *comm) { fr_process_set_out_line_func (comm->process, list__process_line, comm); +#ifdef __FreeBSD__ + fr_process_begin_command (comm->process, "%%LOCALBASE%%/bin/unzip"); +#else fr_process_begin_command (comm->process, "unzip"); +#endif fr_process_set_begin_func (comm->process, list__begin, comm); fr_process_add_arg (comm->process, "-ZTs"); - fr_process_add_arg (comm->process, "--"); -@@ -299,7 +303,11 @@ fr_command_zip_extract (FrCommand *comm + fr_process_add_arg (comm->process, comm->filename); +@@ -301,7 +305,11 @@ fr_command_zip_extract (FrCommand *comm process_line__common, comm); +#ifdef __FreeBSD__ + fr_process_begin_command (comm->process, "%%LOCALBASE%%/bin/unzip"); +#else fr_process_begin_command (comm->process, "unzip"); +#endif if (dest_dir != NULL) { fr_process_add_arg (comm->process, "-d"); @@ -333,7 +341,11 @@ fr_command_zip_extract (FrCommand *comm static void fr_command_zip_test (FrCommand *comm) { +#ifdef __FreeBSD__ + fr_process_begin_command (comm->process, "%%LOCALBASE%%/bin/unzip"); +#else fr_process_begin_command (comm->process, "unzip"); +#endif fr_process_add_arg (comm->process, "-t"); - add_password_arg (comm, FR_ARCHIVE (comm)->password); - fr_process_add_arg (comm->process, "--"); + add_password_arg (comm, comm->password); + fr_process_add_arg (comm->process, comm->filename); Index: head/archivers/file-roller/pkg-plist =================================================================== --- head/archivers/file-roller/pkg-plist (revision 452549) +++ head/archivers/file-roller/pkg-plist (revision 452550) @@ -1,480 +1,477 @@ bin/file-roller %%NAUTILUS%%lib/nautilus/extensions-3.0/libnautilus-fileroller.a %%NAUTILUS%%lib/nautilus/extensions-3.0/libnautilus-fileroller.so libexec/file-roller/isoinfo.sh libexec/file-roller/rpm2cpio share/GConf/gsettings/file-roller.convert -share/appdata/org.gnome.FileRoller.appdata.xml share/applications/org.gnome.FileRoller.desktop share/dbus-1/services/org.gnome.FileRoller.ArchiveManager1.service share/dbus-1/services/org.gnome.FileRoller.service %%DATADIR%%/packages.match share/help/C/file-roller/archive-create.page share/help/C/file-roller/archive-edit.page share/help/C/file-roller/archive-extract-advanced-options.page share/help/C/file-roller/archive-extract.page share/help/C/file-roller/archive-open.page share/help/C/file-roller/archive-view.page share/help/C/file-roller/figures/file-roller-3-12.png share/help/C/file-roller/figures/file-roller-icon.png -share/help/C/file-roller/figures/file-roller-open-recent.png share/help/C/file-roller/index.page share/help/C/file-roller/introduction.page share/help/C/file-roller/keyboard-shortcuts.page share/help/C/file-roller/legal.xml share/help/C/file-roller/password-protection.page share/help/C/file-roller/supported-formats.page share/help/C/file-roller/test-integrity.page share/help/C/file-roller/troubleshooting-archive-open.page share/help/C/file-roller/troubleshooting-password.page share/help/ca/file-roller/archive-create.page share/help/ca/file-roller/archive-edit.page share/help/ca/file-roller/archive-extract-advanced-options.page share/help/ca/file-roller/archive-extract.page share/help/ca/file-roller/archive-open.page share/help/ca/file-roller/archive-view.page share/help/ca/file-roller/figures/file-roller-3-12.png share/help/ca/file-roller/figures/file-roller-icon.png -share/help/ca/file-roller/figures/file-roller-open-recent.png share/help/ca/file-roller/index.page share/help/ca/file-roller/introduction.page share/help/ca/file-roller/keyboard-shortcuts.page share/help/ca/file-roller/legal.xml share/help/ca/file-roller/password-protection.page share/help/ca/file-roller/supported-formats.page share/help/ca/file-roller/test-integrity.page share/help/ca/file-roller/troubleshooting-archive-open.page share/help/ca/file-roller/troubleshooting-password.page share/help/cs/file-roller/archive-create.page share/help/cs/file-roller/archive-edit.page share/help/cs/file-roller/archive-extract-advanced-options.page share/help/cs/file-roller/archive-extract.page share/help/cs/file-roller/archive-open.page share/help/cs/file-roller/archive-view.page share/help/cs/file-roller/figures/file-roller-3-12.png share/help/cs/file-roller/figures/file-roller-icon.png -share/help/cs/file-roller/figures/file-roller-open-recent.png share/help/cs/file-roller/index.page share/help/cs/file-roller/introduction.page share/help/cs/file-roller/keyboard-shortcuts.page share/help/cs/file-roller/legal.xml share/help/cs/file-roller/password-protection.page share/help/cs/file-roller/supported-formats.page share/help/cs/file-roller/test-integrity.page share/help/cs/file-roller/troubleshooting-archive-open.page share/help/cs/file-roller/troubleshooting-password.page share/help/da/file-roller/archive-create.page share/help/da/file-roller/archive-edit.page share/help/da/file-roller/archive-extract-advanced-options.page share/help/da/file-roller/archive-extract.page share/help/da/file-roller/archive-open.page share/help/da/file-roller/archive-view.page share/help/da/file-roller/figures/file-roller-3-12.png share/help/da/file-roller/figures/file-roller-icon.png -share/help/da/file-roller/figures/file-roller-open-recent.png share/help/da/file-roller/index.page share/help/da/file-roller/introduction.page share/help/da/file-roller/keyboard-shortcuts.page share/help/da/file-roller/legal.xml share/help/da/file-roller/password-protection.page share/help/da/file-roller/supported-formats.page share/help/da/file-roller/test-integrity.page share/help/da/file-roller/troubleshooting-archive-open.page share/help/da/file-roller/troubleshooting-password.page share/help/de/file-roller/archive-create.page share/help/de/file-roller/archive-edit.page share/help/de/file-roller/archive-extract-advanced-options.page share/help/de/file-roller/archive-extract.page share/help/de/file-roller/archive-open.page share/help/de/file-roller/archive-view.page share/help/de/file-roller/figures/file-roller-3-12.png share/help/de/file-roller/figures/file-roller-icon.png -share/help/de/file-roller/figures/file-roller-open-recent.png share/help/de/file-roller/index.page share/help/de/file-roller/introduction.page share/help/de/file-roller/keyboard-shortcuts.page share/help/de/file-roller/legal.xml share/help/de/file-roller/password-protection.page share/help/de/file-roller/supported-formats.page share/help/de/file-roller/test-integrity.page share/help/de/file-roller/troubleshooting-archive-open.page share/help/de/file-roller/troubleshooting-password.page share/help/el/file-roller/archive-create.page share/help/el/file-roller/archive-edit.page share/help/el/file-roller/archive-extract-advanced-options.page share/help/el/file-roller/archive-extract.page share/help/el/file-roller/archive-open.page share/help/el/file-roller/archive-view.page share/help/el/file-roller/figures/file-roller-3-12.png share/help/el/file-roller/figures/file-roller-icon.png -share/help/el/file-roller/figures/file-roller-open-recent.png share/help/el/file-roller/index.page share/help/el/file-roller/introduction.page share/help/el/file-roller/keyboard-shortcuts.page share/help/el/file-roller/legal.xml share/help/el/file-roller/password-protection.page share/help/el/file-roller/supported-formats.page share/help/el/file-roller/test-integrity.page share/help/el/file-roller/troubleshooting-archive-open.page share/help/el/file-roller/troubleshooting-password.page share/help/es/file-roller/archive-create.page share/help/es/file-roller/archive-edit.page share/help/es/file-roller/archive-extract-advanced-options.page share/help/es/file-roller/archive-extract.page share/help/es/file-roller/archive-open.page share/help/es/file-roller/archive-view.page share/help/es/file-roller/figures/file-roller-3-12.png share/help/es/file-roller/figures/file-roller-icon.png -share/help/es/file-roller/figures/file-roller-open-recent.png share/help/es/file-roller/index.page share/help/es/file-roller/introduction.page share/help/es/file-roller/keyboard-shortcuts.page share/help/es/file-roller/legal.xml share/help/es/file-roller/password-protection.page share/help/es/file-roller/supported-formats.page share/help/es/file-roller/test-integrity.page share/help/es/file-roller/troubleshooting-archive-open.page share/help/es/file-roller/troubleshooting-password.page share/help/fi/file-roller/archive-create.page share/help/fi/file-roller/archive-edit.page share/help/fi/file-roller/archive-extract-advanced-options.page share/help/fi/file-roller/archive-extract.page share/help/fi/file-roller/archive-open.page share/help/fi/file-roller/archive-view.page share/help/fi/file-roller/figures/file-roller-3-12.png share/help/fi/file-roller/figures/file-roller-icon.png -share/help/fi/file-roller/figures/file-roller-open-recent.png share/help/fi/file-roller/index.page share/help/fi/file-roller/introduction.page share/help/fi/file-roller/keyboard-shortcuts.page share/help/fi/file-roller/legal.xml share/help/fi/file-roller/password-protection.page share/help/fi/file-roller/supported-formats.page share/help/fi/file-roller/test-integrity.page share/help/fi/file-roller/troubleshooting-archive-open.page share/help/fi/file-roller/troubleshooting-password.page share/help/fr/file-roller/archive-create.page share/help/fr/file-roller/archive-edit.page share/help/fr/file-roller/archive-extract-advanced-options.page share/help/fr/file-roller/archive-extract.page share/help/fr/file-roller/archive-open.page share/help/fr/file-roller/archive-view.page share/help/fr/file-roller/figures/file-roller-3-12.png share/help/fr/file-roller/figures/file-roller-icon.png -share/help/fr/file-roller/figures/file-roller-open-recent.png share/help/fr/file-roller/index.page share/help/fr/file-roller/introduction.page share/help/fr/file-roller/keyboard-shortcuts.page share/help/fr/file-roller/legal.xml share/help/fr/file-roller/password-protection.page share/help/fr/file-roller/supported-formats.page share/help/fr/file-roller/test-integrity.page share/help/fr/file-roller/troubleshooting-archive-open.page share/help/fr/file-roller/troubleshooting-password.page share/help/gl/file-roller/archive-create.page share/help/gl/file-roller/archive-edit.page share/help/gl/file-roller/archive-extract-advanced-options.page share/help/gl/file-roller/archive-extract.page share/help/gl/file-roller/archive-open.page share/help/gl/file-roller/archive-view.page share/help/gl/file-roller/figures/file-roller-3-12.png share/help/gl/file-roller/figures/file-roller-icon.png -share/help/gl/file-roller/figures/file-roller-open-recent.png share/help/gl/file-roller/index.page share/help/gl/file-roller/introduction.page share/help/gl/file-roller/keyboard-shortcuts.page share/help/gl/file-roller/legal.xml share/help/gl/file-roller/password-protection.page share/help/gl/file-roller/supported-formats.page share/help/gl/file-roller/test-integrity.page share/help/gl/file-roller/troubleshooting-archive-open.page share/help/gl/file-roller/troubleshooting-password.page share/help/hu/file-roller/archive-create.page share/help/hu/file-roller/archive-edit.page share/help/hu/file-roller/archive-extract-advanced-options.page share/help/hu/file-roller/archive-extract.page share/help/hu/file-roller/archive-open.page share/help/hu/file-roller/archive-view.page share/help/hu/file-roller/figures/file-roller-3-12.png share/help/hu/file-roller/figures/file-roller-icon.png -share/help/hu/file-roller/figures/file-roller-open-recent.png share/help/hu/file-roller/index.page share/help/hu/file-roller/introduction.page share/help/hu/file-roller/keyboard-shortcuts.page share/help/hu/file-roller/legal.xml share/help/hu/file-roller/password-protection.page share/help/hu/file-roller/supported-formats.page share/help/hu/file-roller/test-integrity.page share/help/hu/file-roller/troubleshooting-archive-open.page share/help/hu/file-roller/troubleshooting-password.page share/help/id/file-roller/archive-create.page share/help/id/file-roller/archive-edit.page share/help/id/file-roller/archive-extract-advanced-options.page share/help/id/file-roller/archive-extract.page share/help/id/file-roller/archive-open.page share/help/id/file-roller/archive-view.page share/help/id/file-roller/figures/file-roller-3-12.png share/help/id/file-roller/figures/file-roller-icon.png -share/help/id/file-roller/figures/file-roller-open-recent.png share/help/id/file-roller/index.page share/help/id/file-roller/introduction.page share/help/id/file-roller/keyboard-shortcuts.page share/help/id/file-roller/legal.xml share/help/id/file-roller/password-protection.page share/help/id/file-roller/supported-formats.page share/help/id/file-roller/test-integrity.page share/help/id/file-roller/troubleshooting-archive-open.page share/help/id/file-roller/troubleshooting-password.page share/help/ja/file-roller/archive-create.page share/help/ja/file-roller/archive-edit.page share/help/ja/file-roller/archive-extract-advanced-options.page share/help/ja/file-roller/archive-extract.page share/help/ja/file-roller/archive-open.page share/help/ja/file-roller/archive-view.page share/help/ja/file-roller/figures/file-roller-3-12.png share/help/ja/file-roller/figures/file-roller-icon.png -share/help/ja/file-roller/figures/file-roller-open-recent.png share/help/ja/file-roller/index.page share/help/ja/file-roller/introduction.page share/help/ja/file-roller/keyboard-shortcuts.page share/help/ja/file-roller/legal.xml share/help/ja/file-roller/password-protection.page share/help/ja/file-roller/supported-formats.page share/help/ja/file-roller/test-integrity.page share/help/ja/file-roller/troubleshooting-archive-open.page share/help/ja/file-roller/troubleshooting-password.page share/help/ko/file-roller/archive-create.page share/help/ko/file-roller/archive-edit.page share/help/ko/file-roller/archive-extract-advanced-options.page share/help/ko/file-roller/archive-extract.page share/help/ko/file-roller/archive-open.page share/help/ko/file-roller/archive-view.page share/help/ko/file-roller/figures/file-roller-3-12.png share/help/ko/file-roller/figures/file-roller-icon.png -share/help/ko/file-roller/figures/file-roller-open-recent.png share/help/ko/file-roller/index.page share/help/ko/file-roller/introduction.page share/help/ko/file-roller/keyboard-shortcuts.page share/help/ko/file-roller/legal.xml share/help/ko/file-roller/password-protection.page share/help/ko/file-roller/supported-formats.page share/help/ko/file-roller/test-integrity.page share/help/ko/file-roller/troubleshooting-archive-open.page share/help/ko/file-roller/troubleshooting-password.page +share/help/pl/file-roller/archive-create.page +share/help/pl/file-roller/archive-edit.page +share/help/pl/file-roller/archive-extract-advanced-options.page +share/help/pl/file-roller/archive-extract.page +share/help/pl/file-roller/archive-open.page +share/help/pl/file-roller/archive-view.page +share/help/pl/file-roller/figures/file-roller-3-12.png +share/help/pl/file-roller/figures/file-roller-icon.png +share/help/pl/file-roller/index.page +share/help/pl/file-roller/introduction.page +share/help/pl/file-roller/keyboard-shortcuts.page +share/help/pl/file-roller/legal.xml +share/help/pl/file-roller/password-protection.page +share/help/pl/file-roller/supported-formats.page +share/help/pl/file-roller/test-integrity.page +share/help/pl/file-roller/troubleshooting-archive-open.page +share/help/pl/file-roller/troubleshooting-password.page share/help/pt_BR/file-roller/archive-create.page share/help/pt_BR/file-roller/archive-edit.page share/help/pt_BR/file-roller/archive-extract-advanced-options.page share/help/pt_BR/file-roller/archive-extract.page share/help/pt_BR/file-roller/archive-open.page share/help/pt_BR/file-roller/archive-view.page share/help/pt_BR/file-roller/figures/file-roller-3-12.png share/help/pt_BR/file-roller/figures/file-roller-icon.png -share/help/pt_BR/file-roller/figures/file-roller-open-recent.png share/help/pt_BR/file-roller/index.page share/help/pt_BR/file-roller/introduction.page share/help/pt_BR/file-roller/keyboard-shortcuts.page share/help/pt_BR/file-roller/legal.xml share/help/pt_BR/file-roller/password-protection.page share/help/pt_BR/file-roller/supported-formats.page share/help/pt_BR/file-roller/test-integrity.page share/help/pt_BR/file-roller/troubleshooting-archive-open.page share/help/pt_BR/file-roller/troubleshooting-password.page share/help/ru/file-roller/archive-create.page share/help/ru/file-roller/archive-edit.page share/help/ru/file-roller/archive-extract-advanced-options.page share/help/ru/file-roller/archive-extract.page share/help/ru/file-roller/archive-open.page share/help/ru/file-roller/archive-view.page share/help/ru/file-roller/figures/file-roller-3-12.png share/help/ru/file-roller/figures/file-roller-icon.png -share/help/ru/file-roller/figures/file-roller-open-recent.png share/help/ru/file-roller/index.page share/help/ru/file-roller/introduction.page share/help/ru/file-roller/keyboard-shortcuts.page share/help/ru/file-roller/legal.xml share/help/ru/file-roller/password-protection.page share/help/ru/file-roller/supported-formats.page share/help/ru/file-roller/test-integrity.page share/help/ru/file-roller/troubleshooting-archive-open.page share/help/ru/file-roller/troubleshooting-password.page share/help/sl/file-roller/archive-create.page share/help/sl/file-roller/archive-edit.page share/help/sl/file-roller/archive-extract-advanced-options.page share/help/sl/file-roller/archive-extract.page share/help/sl/file-roller/archive-open.page share/help/sl/file-roller/archive-view.page share/help/sl/file-roller/figures/file-roller-3-12.png share/help/sl/file-roller/figures/file-roller-icon.png -share/help/sl/file-roller/figures/file-roller-open-recent.png share/help/sl/file-roller/index.page share/help/sl/file-roller/introduction.page share/help/sl/file-roller/keyboard-shortcuts.page share/help/sl/file-roller/legal.xml share/help/sl/file-roller/password-protection.page share/help/sl/file-roller/supported-formats.page share/help/sl/file-roller/test-integrity.page share/help/sl/file-roller/troubleshooting-archive-open.page share/help/sl/file-roller/troubleshooting-password.page share/help/sv/file-roller/archive-create.page share/help/sv/file-roller/archive-edit.page share/help/sv/file-roller/archive-extract-advanced-options.page share/help/sv/file-roller/archive-extract.page share/help/sv/file-roller/archive-open.page share/help/sv/file-roller/archive-view.page share/help/sv/file-roller/figures/file-roller-3-12.png share/help/sv/file-roller/figures/file-roller-icon.png -share/help/sv/file-roller/figures/file-roller-open-recent.png share/help/sv/file-roller/index.page share/help/sv/file-roller/introduction.page share/help/sv/file-roller/keyboard-shortcuts.page share/help/sv/file-roller/legal.xml share/help/sv/file-roller/password-protection.page share/help/sv/file-roller/supported-formats.page share/help/sv/file-roller/test-integrity.page share/help/sv/file-roller/troubleshooting-archive-open.page share/help/sv/file-roller/troubleshooting-password.page share/help/te/file-roller/archive-create.page share/help/te/file-roller/archive-edit.page share/help/te/file-roller/archive-extract-advanced-options.page share/help/te/file-roller/archive-extract.page share/help/te/file-roller/archive-open.page share/help/te/file-roller/archive-view.page share/help/te/file-roller/figures/file-roller-3-12.png share/help/te/file-roller/figures/file-roller-icon.png -share/help/te/file-roller/figures/file-roller-open-recent.png share/help/te/file-roller/index.page share/help/te/file-roller/introduction.page share/help/te/file-roller/keyboard-shortcuts.page share/help/te/file-roller/legal.xml share/help/te/file-roller/password-protection.page share/help/te/file-roller/supported-formats.page share/help/te/file-roller/test-integrity.page share/help/te/file-roller/troubleshooting-archive-open.page share/help/te/file-roller/troubleshooting-password.page share/help/zh_CN/file-roller/archive-create.page share/help/zh_CN/file-roller/archive-edit.page share/help/zh_CN/file-roller/archive-extract-advanced-options.page share/help/zh_CN/file-roller/archive-extract.page share/help/zh_CN/file-roller/archive-open.page share/help/zh_CN/file-roller/archive-view.page share/help/zh_CN/file-roller/figures/file-roller-3-12.png share/help/zh_CN/file-roller/figures/file-roller-icon.png -share/help/zh_CN/file-roller/figures/file-roller-open-recent.png share/help/zh_CN/file-roller/index.page share/help/zh_CN/file-roller/introduction.page share/help/zh_CN/file-roller/keyboard-shortcuts.page share/help/zh_CN/file-roller/legal.xml share/help/zh_CN/file-roller/password-protection.page share/help/zh_CN/file-roller/supported-formats.page share/help/zh_CN/file-roller/test-integrity.page share/help/zh_CN/file-roller/troubleshooting-archive-open.page share/help/zh_CN/file-roller/troubleshooting-password.page share/icons/hicolor/16x16/apps/file-roller.png share/icons/hicolor/22x22/apps/file-roller.png share/icons/hicolor/24x24/apps/file-roller.png share/icons/hicolor/256x256/apps/file-roller.png share/icons/hicolor/32x32/apps/file-roller.png share/icons/hicolor/48x48/apps/file-roller.png share/icons/hicolor/scalable/apps/file-roller-symbolic.svg share/locale/af/LC_MESSAGES/file-roller.mo share/locale/am/LC_MESSAGES/file-roller.mo share/locale/an/LC_MESSAGES/file-roller.mo share/locale/ar/LC_MESSAGES/file-roller.mo share/locale/as/LC_MESSAGES/file-roller.mo share/locale/ast/LC_MESSAGES/file-roller.mo share/locale/az/LC_MESSAGES/file-roller.mo share/locale/be/LC_MESSAGES/file-roller.mo share/locale/be@latin/LC_MESSAGES/file-roller.mo share/locale/bg/LC_MESSAGES/file-roller.mo share/locale/bn/LC_MESSAGES/file-roller.mo share/locale/bn_IN/LC_MESSAGES/file-roller.mo share/locale/br/LC_MESSAGES/file-roller.mo share/locale/bs/LC_MESSAGES/file-roller.mo share/locale/ca/LC_MESSAGES/file-roller.mo share/locale/ca@valencia/LC_MESSAGES/file-roller.mo share/locale/cs/LC_MESSAGES/file-roller.mo share/locale/csb/LC_MESSAGES/file-roller.mo share/locale/cy/LC_MESSAGES/file-roller.mo share/locale/da/LC_MESSAGES/file-roller.mo share/locale/de/LC_MESSAGES/file-roller.mo share/locale/dz/LC_MESSAGES/file-roller.mo share/locale/el/LC_MESSAGES/file-roller.mo share/locale/en@shaw/LC_MESSAGES/file-roller.mo share/locale/en_CA/LC_MESSAGES/file-roller.mo share/locale/en_GB/LC_MESSAGES/file-roller.mo share/locale/eo/LC_MESSAGES/file-roller.mo share/locale/es/LC_MESSAGES/file-roller.mo share/locale/et/LC_MESSAGES/file-roller.mo share/locale/eu/LC_MESSAGES/file-roller.mo share/locale/fa/LC_MESSAGES/file-roller.mo share/locale/fi/LC_MESSAGES/file-roller.mo share/locale/fr/LC_MESSAGES/file-roller.mo share/locale/fur/LC_MESSAGES/file-roller.mo share/locale/fy/LC_MESSAGES/file-roller.mo share/locale/ga/LC_MESSAGES/file-roller.mo share/locale/gd/LC_MESSAGES/file-roller.mo share/locale/gl/LC_MESSAGES/file-roller.mo share/locale/gu/LC_MESSAGES/file-roller.mo share/locale/he/LC_MESSAGES/file-roller.mo share/locale/hi/LC_MESSAGES/file-roller.mo share/locale/hr/LC_MESSAGES/file-roller.mo share/locale/hu/LC_MESSAGES/file-roller.mo share/locale/hy/LC_MESSAGES/file-roller.mo share/locale/id/LC_MESSAGES/file-roller.mo share/locale/is/LC_MESSAGES/file-roller.mo share/locale/it/LC_MESSAGES/file-roller.mo share/locale/ja/LC_MESSAGES/file-roller.mo share/locale/ka/LC_MESSAGES/file-roller.mo share/locale/kk/LC_MESSAGES/file-roller.mo share/locale/km/LC_MESSAGES/file-roller.mo share/locale/kn/LC_MESSAGES/file-roller.mo share/locale/ko/LC_MESSAGES/file-roller.mo share/locale/ku/LC_MESSAGES/file-roller.mo share/locale/lt/LC_MESSAGES/file-roller.mo share/locale/lv/LC_MESSAGES/file-roller.mo share/locale/mai/LC_MESSAGES/file-roller.mo share/locale/mg/LC_MESSAGES/file-roller.mo share/locale/mk/LC_MESSAGES/file-roller.mo share/locale/ml/LC_MESSAGES/file-roller.mo share/locale/mn/LC_MESSAGES/file-roller.mo share/locale/mr/LC_MESSAGES/file-roller.mo share/locale/ms/LC_MESSAGES/file-roller.mo share/locale/my/LC_MESSAGES/file-roller.mo share/locale/nb/LC_MESSAGES/file-roller.mo share/locale/nds/LC_MESSAGES/file-roller.mo share/locale/ne/LC_MESSAGES/file-roller.mo share/locale/nl/LC_MESSAGES/file-roller.mo share/locale/nn/LC_MESSAGES/file-roller.mo share/locale/oc/LC_MESSAGES/file-roller.mo share/locale/or/LC_MESSAGES/file-roller.mo share/locale/pa/LC_MESSAGES/file-roller.mo share/locale/pl/LC_MESSAGES/file-roller.mo share/locale/ps/LC_MESSAGES/file-roller.mo share/locale/pt/LC_MESSAGES/file-roller.mo share/locale/pt_BR/LC_MESSAGES/file-roller.mo share/locale/ro/LC_MESSAGES/file-roller.mo share/locale/ru/LC_MESSAGES/file-roller.mo share/locale/rw/LC_MESSAGES/file-roller.mo share/locale/si/LC_MESSAGES/file-roller.mo share/locale/sk/LC_MESSAGES/file-roller.mo share/locale/sl/LC_MESSAGES/file-roller.mo share/locale/sq/LC_MESSAGES/file-roller.mo share/locale/sr/LC_MESSAGES/file-roller.mo share/locale/sr@ije/LC_MESSAGES/file-roller.mo share/locale/sr@latin/LC_MESSAGES/file-roller.mo share/locale/sv/LC_MESSAGES/file-roller.mo share/locale/ta/LC_MESSAGES/file-roller.mo share/locale/te/LC_MESSAGES/file-roller.mo share/locale/tg/LC_MESSAGES/file-roller.mo share/locale/th/LC_MESSAGES/file-roller.mo share/locale/tk/LC_MESSAGES/file-roller.mo share/locale/tr/LC_MESSAGES/file-roller.mo share/locale/ug/LC_MESSAGES/file-roller.mo share/locale/uk/LC_MESSAGES/file-roller.mo share/locale/ur/LC_MESSAGES/file-roller.mo share/locale/vi/LC_MESSAGES/file-roller.mo share/locale/xh/LC_MESSAGES/file-roller.mo share/locale/zh_CN/LC_MESSAGES/file-roller.mo share/locale/zh_HK/LC_MESSAGES/file-roller.mo share/locale/zh_TW/LC_MESSAGES/file-roller.mo share/locale/zu/LC_MESSAGES/file-roller.mo +share/metainfo/org.gnome.FileRoller.appdata.xml