GNOME Bugzilla – Bug 466382
Menu entry Filters/Selection is not translated
Last modified: 2007-08-14 22:42:14 UTC
A patch which fixes this bug: --- plug-ins/script-fu/script-fu.c (Revision 23226) +++ plug-ins/script-fu/script-fu.c (Arbeitskopie) @@ -342,6 +342,8 @@ N_("En_hance")); gimp_plugin_menu_branch_register ("<Image>/Filters", N_("_Light and Shadow")); + gimp_plugin_menu_branch_register ("<Image>/Filters", + N_("_Selection")); gimp_plugin_menu_branch_register ("<Image>/Filters/Light and Shadow", N_("S_hadow")); gimp_plugin_menu_branch_register ("<Image>/Filters",
Actually, I'd rather say that the Fade to Layer Mask script is registered in the wrong menu location. There shouldn't be a Selection submenu with just a single item. We should sort that out before 2.4.
IMO we should simply remove the script from the menus. The functionality that it does provide can easily be achieved by feathering the selection and transferring the selection to the layer mask.
Created attachment 93638 [details] [review] patch to remove fade-outline from the menus
Does it really make sense to still install the script but remove all translations and prevent it from registering in the menus? If that script is not needed anymore and if it is not referenced by other scripts (rather unlikely), we could as well remove that script completely.
Let's do that then. 2007-08-15 Sven Neumann <sven@gimp.org> * plug-ins/script-fu/scripts/Makefile.am * plug-ins/script-fu/scripts/fade-outline.scm: removed fade-outline script. Fixes bug #466382.