From ac27e8673f729e497209abaca045ce972462732d Mon Sep 17 00:00:00 2001 From: Benedikt Meurer <benny@xfce.org> Date: Mon, 20 Mar 2006 23:17:41 +0000 Subject: [PATCH] 2006-03-20 Benedikt Meurer <benny@xfce.org> * Makefile.am, acinclude.m4, configure.in.in, po/POTFILES.in, po/Thunar.pot, plugins/: Move thunar-uca to plugins/. (Old svn revision: 20508) --- ChangeLog | 5 + Makefile.am | 6 +- acinclude.m4 | 16 ++ configure.in.in | 38 ++--- plugins/Makefile.am | 10 ++ .../thunar-uca}/Makefile.am | 2 + {thunar-uca => plugins/thunar-uca}/README | 0 .../thunar-uca}/thunar-uca-chooser.c | 0 .../thunar-uca}/thunar-uca-chooser.h | 0 .../thunar-uca}/thunar-uca-context.c | 0 .../thunar-uca}/thunar-uca-context.h | 0 .../thunar-uca}/thunar-uca-editor.c | 0 .../thunar-uca}/thunar-uca-editor.h | 0 .../thunar-uca}/thunar-uca-model.c | 0 .../thunar-uca}/thunar-uca-model.h | 0 .../thunar-uca}/thunar-uca-plugin.c | 0 .../thunar-uca}/thunar-uca-provider.c | 0 .../thunar-uca}/thunar-uca-provider.h | 0 {thunar-uca => plugins/thunar-uca}/uca.xml.in | 0 po/POTFILES.in | 24 +-- po/Thunar.pot | 154 +++++++++--------- 21 files changed, 146 insertions(+), 109 deletions(-) create mode 100644 plugins/Makefile.am rename {thunar-uca => plugins/thunar-uca}/Makefile.am (94%) rename {thunar-uca => plugins/thunar-uca}/README (100%) rename {thunar-uca => plugins/thunar-uca}/thunar-uca-chooser.c (100%) rename {thunar-uca => plugins/thunar-uca}/thunar-uca-chooser.h (100%) rename {thunar-uca => plugins/thunar-uca}/thunar-uca-context.c (100%) rename {thunar-uca => plugins/thunar-uca}/thunar-uca-context.h (100%) rename {thunar-uca => plugins/thunar-uca}/thunar-uca-editor.c (100%) rename {thunar-uca => plugins/thunar-uca}/thunar-uca-editor.h (100%) rename {thunar-uca => plugins/thunar-uca}/thunar-uca-model.c (100%) rename {thunar-uca => plugins/thunar-uca}/thunar-uca-model.h (100%) rename {thunar-uca => plugins/thunar-uca}/thunar-uca-plugin.c (100%) rename {thunar-uca => plugins/thunar-uca}/thunar-uca-provider.c (100%) rename {thunar-uca => plugins/thunar-uca}/thunar-uca-provider.h (100%) rename {thunar-uca => plugins/thunar-uca}/uca.xml.in (100%) diff --git a/ChangeLog b/ChangeLog index 3f63c884d..622203e7a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-03-20 Benedikt Meurer <benny@xfce.org> + + * Makefile.am, acinclude.m4, configure.in.in, po/POTFILES.in, + po/Thunar.pot, plugins/: Move thunar-uca to plugins/. + 2006-03-20 Benedikt Meurer <benny@xfce.org> * thunar/thunar-icon-renderer.c(thunar_icon_renderer_render): Render diff --git a/Makefile.am b/Makefile.am index 732522de3..6d494ecda 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,9 +1,5 @@ # $Id$ -if ENABLE_UCA_PLUGIN -SUBDIRS_THUNAR_UCA = thunar-uca -endif - SUBDIRS = \ icons \ pixmaps \ @@ -16,7 +12,7 @@ SUBDIRS = \ tests \ docs \ examples \ - $(SUBDIRS_THUNAR_UCA) + plugins AUTOMAKE_OPTIONS = \ 1.8 \ diff --git a/acinclude.m4 b/acinclude.m4 index a0e1eba2d..db7a10838 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -8,6 +8,22 @@ dnl +dnl # BM_THUNAR_PLUGIN_UCA() +dnl # +dnl # Check whether the "User Customizable Actions" plugin +dnl # should be built and installed. +dnl # +AC_DEFUN([BM_THUNAR_PLUGIN_UCA], +[ +AC_ARG_ENABLE([uca-plugin], AC_HELP_STRING([--disable-uca-plugin], [Don't build the thunar-uca plugin, see plugins/thunar-uca/README]), + [ac_bm_thunar_plugin_uca=$enable_val], [ac_bm_thunar_plugin_uca=yes]) +AC_MSG_CHECKING([whether to build the thunar-uca plugin]) +AM_CONDITIONAL([THUNAR_PLUGIN_UCA], [test x"$ac_bm_thunar_plugin_uca" = x"yes"]) +AC_MSG_RESULT([$ac_bm_thunar_plugin_uca]) +]) + + + dnl # BM_THUNAR_VFS_MONITOR_IMPL() dnl # dnl # Determine the file system monitoring to use for diff --git a/configure.in.in b/configure.in.in index bef1171eb..89d76c900 100644 --- a/configure.in.in +++ b/configure.in.in @@ -338,14 +338,10 @@ AC_MSG_CHECKING([PLATFORM_LDFLAGS]) AC_MSG_RESULT([$PLATFORM_LDFLAGS]) AC_SUBST([PLATFORM_LDFLAGS]) -dnl ***************************************** -dnl *** Check whether to build UCA plugin *** -dnl ***************************************** -AC_ARG_ENABLE([uca-plugin], AC_HELP_STRING([--disable-uca-plugin], [Don't build the thunar-uca plugin, see thunar-uca/README]), - [], [enable_uca_plugin=yes]) -AC_MSG_CHECKING([whether to build the thunar-uca plugin]) -AM_CONDITIONAL([ENABLE_UCA_PLUGIN], [test x"$enable_uca_plugin" = x"yes"]) -AC_MSG_RESULT([$enable_uca_plugin]) +dnl ************************************ +dnl *** Check for additional plugins *** +dnl ************************************ +BM_THUNAR_PLUGIN_UCA() AC_OUTPUT([ Makefile @@ -371,15 +367,16 @@ icons/16x16/Makefile icons/24x24/Makefile icons/48x48/Makefile icons/scalable/Makefile +pixmaps/Makefile +plugins/Makefile +plugins/thunar-uca/Makefile po/Makefile.in po-doc/Makefile tdb/Makefile tdb/tdbconfig.h -pixmaps/Makefile tests/Makefile tests/data/Makefile thunar/Makefile -thunar-uca/Makefile thunar-vfs/Makefile thunar-vfs/thunar-vfs-1.pc thunar-vfs/thunar-vfs-config.h @@ -395,21 +392,24 @@ echo echo "Build Configuration:" echo if test x"$DBUS_FOUND" = x"yes"; then -echo "* D-BUS support: yes" +echo "* D-BUS support: yes" else -echo "* D-BUS support: no" +echo "* D-BUS support: no" fi -echo "* File System Monitor: $ac_bm_thunar_vfs_monitor_impl" +echo "* File System Monitor: $ac_bm_thunar_vfs_monitor_impl" if test x"$GCONF_FOUND" = x"yes"; then -echo "* GNOME Thumbnailers: yes" +echo "* GNOME Thumbnailers: yes" else -echo "* GNOME Thumbnailers: no" +echo "* GNOME Thumbnailers: no" fi if test x"$LIBSTARTUP_NOTIFICATION_FOUND" = x"yes"; then -echo "* Startup Notification: yes" +echo "* Startup Notification: yes" else -echo "* Startup Notification: no" +echo "* Startup Notification: no" fi -echo "* Volume Manager: $ac_bm_thunar_vfs_volume_impl" +echo "* Volume Manager: $ac_bm_thunar_vfs_volume_impl" +echo +echo "Additional Plugins:" +echo +echo "* User Customizable Actions: $ac_bm_thunar_plugin_uca" echo - diff --git a/plugins/Makefile.am b/plugins/Makefile.am new file mode 100644 index 000000000..5d6610fc2 --- /dev/null +++ b/plugins/Makefile.am @@ -0,0 +1,10 @@ +# $Id$ + +if THUNAR_PLUGIN_UCA +THUNAR_UCA_SUBDIRS = thunar-uca +endif + +SUBDIRS = \ + $(THUNAR_UCA_SUBDIRS) + +# vi:set ts=8 sw=8 noet ai nocindent syntax=automake: diff --git a/thunar-uca/Makefile.am b/plugins/thunar-uca/Makefile.am similarity index 94% rename from thunar-uca/Makefile.am rename to plugins/thunar-uca/Makefile.am index e98cc28e8..3f818a542 100644 --- a/thunar-uca/Makefile.am +++ b/plugins/thunar-uca/Makefile.am @@ -2,7 +2,9 @@ INCLUDES = \ -I$(top_builddir) \ + -I$(top_builddir)/plugins \ -I$(top_srcdir) \ + -I$(top_srcdir)/plugins \ -DBINDIR=\"$(bindir)\" \ -DDATADIR=\"$(datadir)\" \ -DEXO_API_SUBJECT_TO_CHANGE \ diff --git a/thunar-uca/README b/plugins/thunar-uca/README similarity index 100% rename from thunar-uca/README rename to plugins/thunar-uca/README diff --git a/thunar-uca/thunar-uca-chooser.c b/plugins/thunar-uca/thunar-uca-chooser.c similarity index 100% rename from thunar-uca/thunar-uca-chooser.c rename to plugins/thunar-uca/thunar-uca-chooser.c diff --git a/thunar-uca/thunar-uca-chooser.h b/plugins/thunar-uca/thunar-uca-chooser.h similarity index 100% rename from thunar-uca/thunar-uca-chooser.h rename to plugins/thunar-uca/thunar-uca-chooser.h diff --git a/thunar-uca/thunar-uca-context.c b/plugins/thunar-uca/thunar-uca-context.c similarity index 100% rename from thunar-uca/thunar-uca-context.c rename to plugins/thunar-uca/thunar-uca-context.c diff --git a/thunar-uca/thunar-uca-context.h b/plugins/thunar-uca/thunar-uca-context.h similarity index 100% rename from thunar-uca/thunar-uca-context.h rename to plugins/thunar-uca/thunar-uca-context.h diff --git a/thunar-uca/thunar-uca-editor.c b/plugins/thunar-uca/thunar-uca-editor.c similarity index 100% rename from thunar-uca/thunar-uca-editor.c rename to plugins/thunar-uca/thunar-uca-editor.c diff --git a/thunar-uca/thunar-uca-editor.h b/plugins/thunar-uca/thunar-uca-editor.h similarity index 100% rename from thunar-uca/thunar-uca-editor.h rename to plugins/thunar-uca/thunar-uca-editor.h diff --git a/thunar-uca/thunar-uca-model.c b/plugins/thunar-uca/thunar-uca-model.c similarity index 100% rename from thunar-uca/thunar-uca-model.c rename to plugins/thunar-uca/thunar-uca-model.c diff --git a/thunar-uca/thunar-uca-model.h b/plugins/thunar-uca/thunar-uca-model.h similarity index 100% rename from thunar-uca/thunar-uca-model.h rename to plugins/thunar-uca/thunar-uca-model.h diff --git a/thunar-uca/thunar-uca-plugin.c b/plugins/thunar-uca/thunar-uca-plugin.c similarity index 100% rename from thunar-uca/thunar-uca-plugin.c rename to plugins/thunar-uca/thunar-uca-plugin.c diff --git a/thunar-uca/thunar-uca-provider.c b/plugins/thunar-uca/thunar-uca-provider.c similarity index 100% rename from thunar-uca/thunar-uca-provider.c rename to plugins/thunar-uca/thunar-uca-provider.c diff --git a/thunar-uca/thunar-uca-provider.h b/plugins/thunar-uca/thunar-uca-provider.h similarity index 100% rename from thunar-uca/thunar-uca-provider.h rename to plugins/thunar-uca/thunar-uca-provider.h diff --git a/thunar-uca/uca.xml.in b/plugins/thunar-uca/uca.xml.in similarity index 100% rename from thunar-uca/uca.xml.in rename to plugins/thunar-uca/uca.xml.in diff --git a/po/POTFILES.in b/po/POTFILES.in index f6f9c0c8a..18e9492fa 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -91,18 +91,18 @@ thunar/thunar-window.c thunarx/thunarx-property-page.c thunarx/thunarx-provider-plugin.c -thunar-uca/thunar-uca-chooser.c -thunar-uca/thunar-uca-chooser.h -thunar-uca/thunar-uca-context.c -thunar-uca/thunar-uca-context.h -thunar-uca/thunar-uca-editor.c -thunar-uca/thunar-uca-editor.h -thunar-uca/thunar-uca-model.c -thunar-uca/thunar-uca-model.h -thunar-uca/thunar-uca-plugin.c -thunar-uca/thunar-uca-provider.c -thunar-uca/thunar-uca-provider.h -thunar-uca/uca.xml.in +plugins/thunar-uca/thunar-uca-chooser.c +plugins/thunar-uca/thunar-uca-chooser.h +plugins/thunar-uca/thunar-uca-context.c +plugins/thunar-uca/thunar-uca-context.h +plugins/thunar-uca/thunar-uca-editor.c +plugins/thunar-uca/thunar-uca-editor.h +plugins/thunar-uca/thunar-uca-model.c +plugins/thunar-uca/thunar-uca-model.h +plugins/thunar-uca/thunar-uca-plugin.c +plugins/thunar-uca/thunar-uca-provider.c +plugins/thunar-uca/thunar-uca-provider.h +plugins/thunar-uca/uca.xml.in Thunar.desktop.in Thunar-folder-handler.desktop.in diff --git a/po/Thunar.pot b/po/Thunar.pot index b9304eeca..c86894937 100644 --- a/po/Thunar.pot +++ b/po/Thunar.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-03-18 17:49+0900\n" +"POT-Creation-Date: 2006-03-21 00:07+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -285,68 +285,68 @@ msgstr[0] "" msgstr[1] "" #. setup the error return -#: ../thunar-vfs/thunar-vfs-xfer.c:306 +#: ../thunar-vfs/thunar-vfs-xfer.c:303 #, c-format msgid "Failed to create directory \"%s\"" msgstr "" #. TRANSLATORS: FIFO is an acronym for First In, First Out. You can replace the word with `pipe'. -#: ../thunar-vfs/thunar-vfs-xfer.c:330 +#: ../thunar-vfs/thunar-vfs-xfer.c:327 #, c-format msgid "Failed to create named fifo \"%s\"" msgstr "" -#: ../thunar-vfs/thunar-vfs-xfer.c:363 +#: ../thunar-vfs/thunar-vfs-xfer.c:360 #, c-format msgid "Failed to open \"%s\" for reading" msgstr "" -#: ../thunar-vfs/thunar-vfs-xfer.c:384 +#: ../thunar-vfs/thunar-vfs-xfer.c:381 #, c-format msgid "Failed to open \"%s\" for writing" msgstr "" -#: ../thunar-vfs/thunar-vfs-xfer.c:403 +#: ../thunar-vfs/thunar-vfs-xfer.c:400 #, c-format msgid "Failed to read data from \"%s\"" msgstr "" -#: ../thunar-vfs/thunar-vfs-xfer.c:419 +#: ../thunar-vfs/thunar-vfs-xfer.c:416 #, c-format msgid "Failed to write data to \"%s\"" msgstr "" -#: ../thunar-vfs/thunar-vfs-xfer.c:438 +#: ../thunar-vfs/thunar-vfs-xfer.c:435 #, c-format msgid "Failed to remove \"%s\"" msgstr "" #. tell the caller that the job was cancelled -#: ../thunar-vfs/thunar-vfs-xfer.c:443 +#: ../thunar-vfs/thunar-vfs-xfer.c:440 msgid "Operation canceled" msgstr "" -#: ../thunar-vfs/thunar-vfs-xfer.c:483 +#: ../thunar-vfs/thunar-vfs-xfer.c:480 #, c-format msgid "Failed to read link target from \"%s\"" msgstr "" -#: ../thunar-vfs/thunar-vfs-xfer.c:491 ../thunar-vfs/thunar-vfs-xfer.c:604 +#: ../thunar-vfs/thunar-vfs-xfer.c:488 ../thunar-vfs/thunar-vfs-xfer.c:601 #, c-format msgid "Failed to create symbolic link \"%s\"" msgstr "" -#: ../thunar-vfs/thunar-vfs-xfer.c:499 +#: ../thunar-vfs/thunar-vfs-xfer.c:496 #, c-format msgid "Failed to change mode of \"%s\"" msgstr "" -#: ../thunar-vfs/thunar-vfs-xfer.c:533 ../thunar-vfs/thunar-vfs-xfer.c:593 +#: ../thunar-vfs/thunar-vfs-xfer.c:530 ../thunar-vfs/thunar-vfs-xfer.c:590 #, c-format msgid "Failed to determine file info for \"%s\"" msgstr "" -#: ../thunar-vfs/thunar-vfs-xfer.c:562 +#: ../thunar-vfs/thunar-vfs-xfer.c:559 #, c-format msgid "Failed to copy special file \"%s\"" msgstr "" @@ -509,32 +509,39 @@ msgid "" "application." msgstr "" -#: ../thunar/thunar-chooser-dialog.c:684 ../thunar-uca/thunar-uca-editor.c:491 +#: ../thunar/thunar-chooser-dialog.c:684 +#: ../plugins/thunar-uca/thunar-uca-editor.c:491 msgid "Select an Application" msgstr "" -#: ../thunar/thunar-chooser-dialog.c:694 ../thunar-uca/thunar-uca-editor.c:501 -#: ../thunar-uca/thunar-uca-editor.c:660 +#: ../thunar/thunar-chooser-dialog.c:694 +#: ../plugins/thunar-uca/thunar-uca-editor.c:501 +#: ../plugins/thunar-uca/thunar-uca-editor.c:660 msgid "All Files" msgstr "" -#: ../thunar/thunar-chooser-dialog.c:699 ../thunar-uca/thunar-uca-editor.c:506 +#: ../thunar/thunar-chooser-dialog.c:699 +#: ../plugins/thunar-uca/thunar-uca-editor.c:506 msgid "Executable Files" msgstr "" -#: ../thunar/thunar-chooser-dialog.c:714 ../thunar-uca/thunar-uca-editor.c:521 +#: ../thunar/thunar-chooser-dialog.c:714 +#: ../plugins/thunar-uca/thunar-uca-editor.c:521 msgid "Perl Scripts" msgstr "" -#: ../thunar/thunar-chooser-dialog.c:720 ../thunar-uca/thunar-uca-editor.c:527 +#: ../thunar/thunar-chooser-dialog.c:720 +#: ../plugins/thunar-uca/thunar-uca-editor.c:527 msgid "Python Scripts" msgstr "" -#: ../thunar/thunar-chooser-dialog.c:726 ../thunar-uca/thunar-uca-editor.c:533 +#: ../thunar/thunar-chooser-dialog.c:726 +#: ../plugins/thunar-uca/thunar-uca-editor.c:533 msgid "Ruby Scripts" msgstr "" -#: ../thunar/thunar-chooser-dialog.c:732 ../thunar-uca/thunar-uca-editor.c:539 +#: ../thunar/thunar-chooser-dialog.c:732 +#: ../plugins/thunar-uca/thunar-uca-editor.c:539 msgid "Shell Scripts" msgstr "" @@ -2031,78 +2038,78 @@ msgstr "" msgid "Don't unload the plugin from memory" msgstr "" -#: ../thunar-uca/thunar-uca-chooser.c:125 +#: ../plugins/thunar-uca/thunar-uca-chooser.c:125 msgid "Custom Actions" msgstr "" -#: ../thunar-uca/thunar-uca-chooser.c:141 +#: ../plugins/thunar-uca/thunar-uca-chooser.c:141 msgid "" "You can configure custom actions that will appear in the\n" "file managers context menus for certain kinds of files." msgstr "" -#: ../thunar-uca/thunar-uca-chooser.c:187 +#: ../plugins/thunar-uca/thunar-uca-chooser.c:187 msgid "Add a new custom action." msgstr "" -#: ../thunar-uca/thunar-uca-chooser.c:197 +#: ../plugins/thunar-uca/thunar-uca-chooser.c:197 msgid "Edit the currently selected action." msgstr "" -#: ../thunar-uca/thunar-uca-chooser.c:207 +#: ../plugins/thunar-uca/thunar-uca-chooser.c:207 msgid "Delete the currently selected action." msgstr "" -#: ../thunar-uca/thunar-uca-chooser.c:217 +#: ../plugins/thunar-uca/thunar-uca-chooser.c:217 msgid "Move the currently selected action up by one row." msgstr "" -#: ../thunar-uca/thunar-uca-chooser.c:227 +#: ../plugins/thunar-uca/thunar-uca-chooser.c:227 msgid "Move the currently selected action down by one row." msgstr "" -#: ../thunar-uca/thunar-uca-chooser.c:363 +#: ../plugins/thunar-uca/thunar-uca-chooser.c:363 msgid "Edit Action" msgstr "" -#: ../thunar-uca/thunar-uca-chooser.c:363 +#: ../plugins/thunar-uca/thunar-uca-chooser.c:363 msgid "Create Action" msgstr "" -#: ../thunar-uca/thunar-uca-chooser.c:412 +#: ../plugins/thunar-uca/thunar-uca-chooser.c:412 msgid "Failed to save actions to disk." msgstr "" #. #. Basic #. -#: ../thunar-uca/thunar-uca-editor.c:136 +#: ../plugins/thunar-uca/thunar-uca-editor.c:136 msgid "Basic" msgstr "" -#: ../thunar-uca/thunar-uca-editor.c:145 +#: ../plugins/thunar-uca/thunar-uca-editor.c:145 msgid "_Name:" msgstr "" -#: ../thunar-uca/thunar-uca-editor.c:150 +#: ../plugins/thunar-uca/thunar-uca-editor.c:150 msgid "The name of the action that will be displayed in the context menu." msgstr "" -#: ../thunar-uca/thunar-uca-editor.c:163 +#: ../plugins/thunar-uca/thunar-uca-editor.c:163 msgid "_Description:" msgstr "" -#: ../thunar-uca/thunar-uca-editor.c:168 +#: ../plugins/thunar-uca/thunar-uca-editor.c:168 msgid "" "The description of the action that will be displayed as tooltip in the " "statusbar when selecting the item from the context menu." msgstr "" -#: ../thunar-uca/thunar-uca-editor.c:181 +#: ../plugins/thunar-uca/thunar-uca-editor.c:181 msgid "_Command:" msgstr "" -#: ../thunar-uca/thunar-uca-editor.c:190 +#: ../plugins/thunar-uca/thunar-uca-editor.c:190 msgid "" "The command (including the necessary parameters) to perform the action. See " "the command parameter legend below for a list of supported parameter " @@ -2112,66 +2119,67 @@ msgid "" "if exactly one item is selected." msgstr "" -#: ../thunar-uca/thunar-uca-editor.c:201 +#: ../plugins/thunar-uca/thunar-uca-editor.c:201 msgid "Browse the file system to select an application to use for this action." msgstr "" -#: ../thunar-uca/thunar-uca-editor.c:217 +#: ../plugins/thunar-uca/thunar-uca-editor.c:217 msgid "_Icon:" msgstr "" #. setup a label to tell that no icon was selected -#: ../thunar-uca/thunar-uca-editor.c:225 ../thunar-uca/thunar-uca-editor.c:790 +#: ../plugins/thunar-uca/thunar-uca-editor.c:225 +#: ../plugins/thunar-uca/thunar-uca-editor.c:790 msgid "No icon" msgstr "" -#: ../thunar-uca/thunar-uca-editor.c:226 +#: ../plugins/thunar-uca/thunar-uca-editor.c:226 msgid "" "Click this button to select an icon file that will be displayed in the " "context menu in addition to the action name chosen above." msgstr "" -#: ../thunar-uca/thunar-uca-editor.c:257 +#: ../plugins/thunar-uca/thunar-uca-editor.c:257 msgid "" "The following command parameters will be\n" "substituted when launching the action:" msgstr "" -#: ../thunar-uca/thunar-uca-editor.c:295 +#: ../plugins/thunar-uca/thunar-uca-editor.c:295 msgid "the path to the first selected file" msgstr "" -#: ../thunar-uca/thunar-uca-editor.c:307 +#: ../plugins/thunar-uca/thunar-uca-editor.c:307 msgid "the paths to all selected files" msgstr "" -#: ../thunar-uca/thunar-uca-editor.c:319 +#: ../plugins/thunar-uca/thunar-uca-editor.c:319 #, c-format msgid "directory containing the file that is passed in %f" msgstr "" -#: ../thunar-uca/thunar-uca-editor.c:331 +#: ../plugins/thunar-uca/thunar-uca-editor.c:331 #, c-format msgid "directories containing the files that are passed in %F" msgstr "" -#: ../thunar-uca/thunar-uca-editor.c:343 +#: ../plugins/thunar-uca/thunar-uca-editor.c:343 msgid "the first selected filename (without path)" msgstr "" -#: ../thunar-uca/thunar-uca-editor.c:355 +#: ../plugins/thunar-uca/thunar-uca-editor.c:355 msgid "the selected filenames (without paths)" msgstr "" -#: ../thunar-uca/thunar-uca-editor.c:369 +#: ../plugins/thunar-uca/thunar-uca-editor.c:369 msgid "Appearance Conditions" msgstr "" -#: ../thunar-uca/thunar-uca-editor.c:377 +#: ../plugins/thunar-uca/thunar-uca-editor.c:377 msgid "_File Pattern:" msgstr "" -#: ../thunar-uca/thunar-uca-editor.c:382 +#: ../plugins/thunar-uca/thunar-uca-editor.c:382 msgid "" "Enter a list of patterns that will be used to determine whether this action " "should be displayed for a selected file. If you specify more than one " @@ -2179,35 +2187,35 @@ msgid "" "doc)." msgstr "" -#: ../thunar-uca/thunar-uca-editor.c:401 +#: ../plugins/thunar-uca/thunar-uca-editor.c:401 msgid "Appears if selection contains:" msgstr "" -#: ../thunar-uca/thunar-uca-editor.c:414 +#: ../plugins/thunar-uca/thunar-uca-editor.c:414 msgid "_Directories" msgstr "" -#: ../thunar-uca/thunar-uca-editor.c:418 +#: ../plugins/thunar-uca/thunar-uca-editor.c:418 msgid "_Audio Files" msgstr "" -#: ../thunar-uca/thunar-uca-editor.c:422 +#: ../plugins/thunar-uca/thunar-uca-editor.c:422 msgid "_Image Files" msgstr "" -#: ../thunar-uca/thunar-uca-editor.c:426 +#: ../plugins/thunar-uca/thunar-uca-editor.c:426 msgid "_Text Files" msgstr "" -#: ../thunar-uca/thunar-uca-editor.c:431 +#: ../plugins/thunar-uca/thunar-uca-editor.c:431 msgid "_Video Files" msgstr "" -#: ../thunar-uca/thunar-uca-editor.c:435 +#: ../plugins/thunar-uca/thunar-uca-editor.c:435 msgid "_Other Files" msgstr "" -#: ../thunar-uca/thunar-uca-editor.c:452 +#: ../plugins/thunar-uca/thunar-uca-editor.c:452 msgid "" "This page lists the conditions under which the\n" "action will appear in the file managers context\n" @@ -2221,55 +2229,55 @@ msgid "" "files." msgstr "" -#: ../thunar-uca/thunar-uca-editor.c:650 +#: ../plugins/thunar-uca/thunar-uca-editor.c:650 msgid "Select an Icon" msgstr "" -#: ../thunar-uca/thunar-uca-editor.c:665 +#: ../plugins/thunar-uca/thunar-uca-editor.c:665 msgid "Image Files" msgstr "" -#: ../thunar-uca/thunar-uca-model.c:770 +#: ../plugins/thunar-uca/thunar-uca-model.c:770 #, c-format msgid "Unknown element <%s>" msgstr "" -#: ../thunar-uca/thunar-uca-model.c:788 +#: ../plugins/thunar-uca/thunar-uca-model.c:788 msgid "End element handler called while in root context" msgstr "" -#: ../thunar-uca/thunar-uca-model.c:876 +#: ../plugins/thunar-uca/thunar-uca-model.c:876 #, c-format msgid "Unknown closing element <%s>" msgstr "" -#: ../thunar-uca/thunar-uca-model.c:1301 +#: ../plugins/thunar-uca/thunar-uca-model.c:1301 msgid "Failed to determine save location for uca.xml" msgstr "" -#: ../thunar-uca/thunar-uca-model.c:1417 +#: ../plugins/thunar-uca/thunar-uca-model.c:1417 msgid "Command not configured" msgstr "" -#: ../thunar-uca/thunar-uca-provider.c:157 +#: ../plugins/thunar-uca/thunar-uca-provider.c:157 msgid "Configure c_ustom actions..." msgstr "" -#: ../thunar-uca/thunar-uca-provider.c:158 +#: ../plugins/thunar-uca/thunar-uca-provider.c:158 msgid "" "Setup custom actions that will appear in the file managers context menus" msgstr "" -#: ../thunar-uca/thunar-uca-provider.c:350 +#: ../plugins/thunar-uca/thunar-uca-provider.c:350 #, c-format msgid "Failed to launch action \"%s\"." msgstr "" -#: ../thunar-uca/uca.xml.in.h:1 +#: ../plugins/thunar-uca/uca.xml.in.h:1 msgid "Example for a custom action" msgstr "" -#: ../thunar-uca/uca.xml.in.h:2 +#: ../plugins/thunar-uca/uca.xml.in.h:2 msgid "Open Terminal Here" msgstr "" -- GitLab