mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-03 17:33:25 +00:00
all plug-ins except script-fu: removed the translation marks from the menu
2004-10-12 Michael Natterer <mitch@gimp.org> * plug-ins/*/*.c: all plug-ins except script-fu: removed the translation marks from the menu paths passed to gimp_plugin_menu_register(). All default menu branches used by included plug-ins are created and translated by the core now.
This commit is contained in:
parent
ab6c609ce1
commit
8e15676423
118 changed files with 171 additions and 247 deletions
|
@ -1,3 +1,10 @@
|
|||
2004-10-12 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* plug-ins/*/*.c: all plug-ins except script-fu: removed the
|
||||
translation marks from the menu paths passed to
|
||||
gimp_plugin_menu_register(). All default menu branches used by
|
||||
included plug-ins are created and translated by the core now.
|
||||
|
||||
2004-10-12 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/core/gimpimage.[ch]: renamed struct member "unit" to
|
||||
|
|
|
@ -265,7 +265,7 @@ query (void)
|
|||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_fractalexplorer",
|
||||
N_("<Image>/Filters/Render"));
|
||||
"<Image>/Filters/Render");
|
||||
}
|
||||
|
||||
/**********************************************************************
|
||||
|
|
|
@ -201,7 +201,7 @@ query (void)
|
|||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_lighting",
|
||||
N_("<Image>/Filters/Light Effects"));
|
||||
"<Image>/Filters/Light Effects");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -202,8 +202,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_map_object",
|
||||
N_("<Image>/Filters/Map"));
|
||||
gimp_plugin_menu_register ("plug_in_map_object", "<Image>/Filters/Map");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -196,8 +196,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_alienmap2",
|
||||
N_("<Image>/Filters/Colors/Map"));
|
||||
gimp_plugin_menu_register ("plug_in_alienmap2", "<Image>/Filters/Colors/Map");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -471,8 +471,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME,
|
||||
N_("<Image>/Filters/Render/Pattern"));
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME, "<Image>/Filters/Render/Pattern");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -138,8 +138,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME,
|
||||
N_("<Image>/Layer"));
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME, "<Image>/Layer");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -185,7 +185,7 @@ query (void)
|
|||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_animationplay",
|
||||
N_("<Image>/Filters/Animation"));
|
||||
"<Image>/Filters/Animation");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -180,11 +180,11 @@ query (void)
|
|||
args, return_args);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_animationoptimize",
|
||||
N_("<Image>/Filters/Animation"));
|
||||
"<Image>/Filters/Animation");
|
||||
gimp_plugin_menu_register ("plug_in_animationoptimize_diff",
|
||||
N_("<Image>/Filters/Animation"));
|
||||
"<Image>/Filters/Animation");
|
||||
gimp_plugin_menu_register ("plug_in_animationunoptimize",
|
||||
N_("<Image>/Filters/Animation"));
|
||||
"<Image>/Filters/Animation");
|
||||
|
||||
#ifdef EXPERIMENTAL_BACKDROP_CODE
|
||||
gimp_install_procedure ("plug_in_animation_remove_backdrop",
|
||||
|
@ -219,9 +219,9 @@ query (void)
|
|||
args, return_args);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_animation_remove_backdrop",
|
||||
N_("<Image>/Filters/Animation"));
|
||||
"<Image>/Filters/Animation");
|
||||
gimp_plugin_menu_register ("plug_in_animation_find_backdrop",
|
||||
N_("<Image>/Filters/Animation"));
|
||||
"<Image>/Filters/Animation");
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
|
@ -116,7 +116,7 @@ query (void)
|
|||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_applylens",
|
||||
N_("<Image>/Filters/Glass Effects"));
|
||||
"<Image>/Filters/Glass Effects");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -88,8 +88,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_autocrop",
|
||||
N_("<Image>/Image/Crop"));
|
||||
gimp_plugin_menu_register ("plug_in_autocrop", "<Image>/Image/Crop");
|
||||
|
||||
gimp_install_procedure ("plug_in_autocrop_layer",
|
||||
"Automagically crops a layer.",
|
||||
|
@ -103,9 +102,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_autocrop_layer",
|
||||
N_("<Image>/Layer/Crop"));
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_autocrop_layer", "<Image>/Layer/Crop");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -84,7 +84,7 @@ query (void)
|
|||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_autostretch_hsv",
|
||||
N_("<Image>/Layer/Colors/Auto"));
|
||||
"<Image>/Layer/Colors/Auto");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -127,8 +127,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_blinds",
|
||||
N_("<Image>/Filters/Distorts"));
|
||||
gimp_plugin_menu_register ("plug_in_blinds", "<Image>/Filters/Distorts");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -150,8 +150,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_blur",
|
||||
N_("<Image>/Filters/Blur"));
|
||||
gimp_plugin_menu_register ("plug_in_blur", "<Image>/Filters/Blur");
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -104,8 +104,7 @@ query (void)
|
|||
G_N_ELEMENTS (return_vals),
|
||||
args, return_vals);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_borderaverage",
|
||||
N_("<Image>/Filters/Colors"));
|
||||
gimp_plugin_menu_register ("plug_in_borderaverage", "<Image>/Filters/Colors");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -344,8 +344,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_bump_map",
|
||||
N_("<Image>/Filters/Map"));
|
||||
gimp_plugin_menu_register ("plug_in_bump_map", "<Image>/Filters/Map");
|
||||
|
||||
gimp_install_procedure ("plug_in_bump_map_tiled",
|
||||
"Create an embossing effect using a tiled image "
|
||||
|
|
|
@ -81,8 +81,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_c_astretch",
|
||||
N_("<Image>/Layer/Colors/Auto"));
|
||||
gimp_plugin_menu_register ("plug_in_c_astretch", "<Image>/Layer/Colors/Auto");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -113,10 +113,8 @@ query (void)
|
|||
G_N_ELEMENTS (args), G_N_ELEMENTS (return_vals),
|
||||
args, return_vals);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_ccanalyze",
|
||||
N_("<Image>/Filters/Colors"));
|
||||
gimp_plugin_menu_register ("plug_in_ccanalyze",
|
||||
N_("<Image>/Layer/Colors/Info"));
|
||||
gimp_plugin_menu_register ("plug_in_ccanalyze", "<Image>/Filters/Colors");
|
||||
gimp_plugin_menu_register ("plug_in_ccanalyze", "<Image>/Layer/Colors/Info");
|
||||
}
|
||||
|
||||
/* main function */
|
||||
|
|
|
@ -200,8 +200,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME,
|
||||
N_("<Image>/Filters/Colors"));
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME, "<Image>/Filters/Colors");
|
||||
}
|
||||
|
||||
/*----------------------------------------------------------------------
|
||||
|
|
|
@ -97,7 +97,7 @@ query (void)
|
|||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_checkerboard",
|
||||
N_("<Image>/Filters/Render/Pattern"));
|
||||
"<Image>/Filters/Render/Pattern");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -84,7 +84,7 @@ query (void)
|
|||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_color_enhance",
|
||||
N_("<Image>/Layer/Colors/Auto"));
|
||||
"<Image>/Layer/Colors/Auto");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -110,8 +110,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME,
|
||||
N_("<Image>/Filters/Colors"));
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME, "<Image>/Filters/Colors");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -101,9 +101,9 @@ query (void)
|
|||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_colortoalpha",
|
||||
N_("<Image>/Filters/Colors"));
|
||||
"<Image>/Filters/Colors");
|
||||
gimp_plugin_menu_register ("plug_in_colortoalpha",
|
||||
N_("<Image>/Layer/Transparency/Modify"));
|
||||
"<Image>/Layer/Transparency/Modify");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -298,10 +298,8 @@ query (void)
|
|||
G_N_ELEMENTS (return_vals),
|
||||
args, return_vals);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_compose",
|
||||
N_("<Image>/Filters/Colors"));
|
||||
gimp_plugin_menu_register ("plug_in_compose",
|
||||
N_("<Image>/Image/Mode"));
|
||||
gimp_plugin_menu_register ("plug_in_compose", "<Image>/Filters/Colors");
|
||||
gimp_plugin_menu_register ("plug_in_compose", "<Image>/Image/Mode");
|
||||
|
||||
gimp_install_procedure ("plug_in_drawable_compose",
|
||||
"Compose an image from multiple drawables of gray images",
|
||||
|
|
|
@ -198,8 +198,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_convmatrix",
|
||||
N_("<Image>/Filters/Generic"));
|
||||
gimp_plugin_menu_register ("plug_in_convmatrix", "<Image>/Filters/Generic");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -149,8 +149,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_cubism",
|
||||
N_("<Image>/Filters/Artistic"));
|
||||
gimp_plugin_menu_register ("plug_in_cubism", "<Image>/Filters/Artistic");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -550,19 +550,22 @@ query (void)
|
|||
gimp_install_procedure (PLUG_IN_NAME,
|
||||
PLUG_IN_DESCRIPTION,
|
||||
"This plug-in does bend the active layer "
|
||||
"If there is a current selection it is copied to floating selection "
|
||||
"and the curve_bend distortion is done on the floating selection. "
|
||||
"If work_on_copy parameter is TRUE, the curve_bend distortion is done "
|
||||
"on a copy of the active layer (or floating selection). "
|
||||
"The upper and lower edges are bent in shape of 2 spline curves. "
|
||||
"both (upper and lower) curves are determined by upto 17 points "
|
||||
"or by 256 Y-Values if curve_type == 1 (freehand mode) "
|
||||
"If rotation is not 0, the layer is rotated before "
|
||||
"and rotated back after the bend operation. This enables "
|
||||
"bending in other directions than vertical."
|
||||
"bending usually changes the size of the handled layer."
|
||||
"this plugin sets the offsets of the handled layer to keep its center at the same position"
|
||||
,
|
||||
"If there is a current selection it is copied to "
|
||||
"floating selection and the curve_bend distortion "
|
||||
"is done on the floating selection. If "
|
||||
"work_on_copy parameter is TRUE, the curve_bend "
|
||||
"distortion is done on a copy of the active layer "
|
||||
"(or floating selection). The upper and lower edges "
|
||||
"are bent in shape of 2 spline curves. both (upper "
|
||||
"and lower) curves are determined by upto 17 points "
|
||||
"or by 256 Y-Values if curve_type == 1 (freehand "
|
||||
"mode) If rotation is not 0, the layer is rotated "
|
||||
"before and rotated back after the bend operation. "
|
||||
"This enables bending in other directions than "
|
||||
"vertical. bending usually changes the size of "
|
||||
"the handled layer. this plugin sets the offsets "
|
||||
"of the handled layer to keep its center at the "
|
||||
"same position",
|
||||
PLUG_IN_AUTHOR,
|
||||
PLUG_IN_COPYRIGHT,
|
||||
PLUG_IN_VERSION,
|
||||
|
@ -574,12 +577,13 @@ query (void)
|
|||
args,
|
||||
return_vals);
|
||||
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME,
|
||||
N_("<Image>/Filters/Distorts"));
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME, "<Image>/Filters/Distorts");
|
||||
|
||||
/* the installation of the Iterator procedure for the bend plugin */
|
||||
gimp_install_procedure (PLUG_IN_ITER_NAME,
|
||||
"This procedure calculates the modified values for one iterationstep for the call of plug_in_curve_bend",
|
||||
"This procedure calculates the modified values "
|
||||
"for one iterationstep for the call of "
|
||||
"plug_in_curve_bend",
|
||||
"",
|
||||
PLUG_IN_AUTHOR,
|
||||
PLUG_IN_COPYRIGHT,
|
||||
|
|
|
@ -247,10 +247,8 @@ query (void)
|
|||
G_N_ELEMENTS (return_vals),
|
||||
args, return_vals);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_decompose",
|
||||
N_("<Image>/Filters/Colors"));
|
||||
gimp_plugin_menu_register ("plug_in_decompose",
|
||||
N_("<Image>/Image/Mode"));
|
||||
gimp_plugin_menu_register ("plug_in_decompose", "<Image>/Filters/Colors");
|
||||
gimp_plugin_menu_register ("plug_in_decompose", "<Image>/Image/Mode");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -102,8 +102,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_deinterlace",
|
||||
N_("<Image>/Filters/Enhance"));
|
||||
gimp_plugin_menu_register ("plug_in_deinterlace", "<Image>/Filters/Enhance");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -195,8 +195,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME,
|
||||
N_("<Image>/Filters/Combine"));
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME, "<Image>/Filters/Combine");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -148,8 +148,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME,
|
||||
N_("<Image>/Filters/Enhance"));
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME, "<Image>/Filters/Enhance");
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -116,8 +116,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME,
|
||||
N_("<Image>/Filters/Enhance"));
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME, "<Image>/Filters/Enhance");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -181,7 +181,7 @@ query (void)
|
|||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_diffraction",
|
||||
N_("<Image>/Filters/Render/Pattern"));
|
||||
"<Image>/Filters/Render/Pattern");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -154,8 +154,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_displace",
|
||||
N_("<Image>/Filters/Map"));
|
||||
gimp_plugin_menu_register ("plug_in_displace", "<Image>/Filters/Map");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -141,8 +141,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_dog",
|
||||
N_("<Image>/Filters/Edge-Detect"));
|
||||
gimp_plugin_menu_register ("plug_in_dog", "<Image>/Filters/Edge-Detect");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -165,8 +165,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_edge",
|
||||
N_("<Image>/Filters/Edge-Detect"));
|
||||
gimp_plugin_menu_register ("plug_in_edge", "<Image>/Filters/Edge-Detect");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -138,8 +138,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_emboss",
|
||||
N_("<Image>/Filters/Distorts"));
|
||||
gimp_plugin_menu_register ("plug_in_emboss", "<Image>/Filters/Distorts");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -111,8 +111,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_engrave",
|
||||
N_("<Image>/Filters/Distorts"));
|
||||
gimp_plugin_menu_register ("plug_in_engrave", "<Image>/Filters/Distorts");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -136,8 +136,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_exchange",
|
||||
N_("<Image>/Filters/Colors/Map"));
|
||||
gimp_plugin_menu_register ("plug_in_exchange", "<Image>/Filters/Colors/Map");
|
||||
}
|
||||
|
||||
/* main function */
|
||||
|
|
|
@ -244,8 +244,7 @@ query (void)
|
|||
G_N_ELEMENTS (return_vals),
|
||||
args, return_vals);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_film",
|
||||
N_("<Image>/Filters/Combine"));
|
||||
gimp_plugin_menu_register ("plug_in_film", "<Image>/Filters/Combine");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -324,8 +324,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_filter_pack",
|
||||
N_("<Image>/Filters/Colors"));
|
||||
gimp_plugin_menu_register ("plug_in_filter_pack", "<Image>/Filters/Colors");
|
||||
}
|
||||
|
||||
/********************************STANDARD RUN*************************/
|
||||
|
|
|
@ -129,8 +129,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME,
|
||||
N_("<Image>/Filters/Map"));
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME, "<Image>/Filters/Map");
|
||||
}
|
||||
|
||||
/******************************************************************************/
|
||||
|
|
|
@ -240,8 +240,7 @@ query (void)
|
|||
G_N_ELEMENTS (args2), 0,
|
||||
args2, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_gauss",
|
||||
N_("<Image>/Filters/Blur"));
|
||||
gimp_plugin_menu_register ("plug_in_gauss", "<Image>/Filters/Blur");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -97,8 +97,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_the_slimy_egg",
|
||||
N_("<Image>/Filters/Toys"));
|
||||
gimp_plugin_menu_register ("plug_in_the_slimy_egg", "<Image>/Filters/Toys");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -127,8 +127,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_the_old_egg",
|
||||
N_("<Image>/Filters/Toys"));
|
||||
gimp_plugin_menu_register ("plug_in_the_old_egg", "<Image>/Filters/Toys");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -120,7 +120,7 @@ query (void)
|
|||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_glasstile",
|
||||
N_("<Image>/Filters/Glass Effects"));
|
||||
"<Image>/Filters/Glass Effects");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -418,8 +418,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME,
|
||||
N_("<Image>/Filters/Render/Pattern"));
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME, "<Image>/Filters/Render/Pattern");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -89,8 +89,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_gradmap",
|
||||
N_("<Image>/Filters/Colors/Map"));
|
||||
gimp_plugin_menu_register ("plug_in_gradmap", "<Image>/Filters/Colors/Map");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -152,8 +152,7 @@ void query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_grid",
|
||||
N_("<Image>/Filters/Render/Pattern"));
|
||||
gimp_plugin_menu_register ("plug_in_grid", "<Image>/Filters/Render/Pattern");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -75,8 +75,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_guillotine",
|
||||
N_("<Image>/Image/Transform"));
|
||||
gimp_plugin_menu_register ("plug_in_guillotine", "<Image>/Image/Transform");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -220,8 +220,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_hot",
|
||||
N_("<Image>/Filters/Colors"));
|
||||
gimp_plugin_menu_register ("plug_in_hot", "<Image>/Filters/Colors");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -104,8 +104,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME,
|
||||
N_("<Image>/Filters/Map"));
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME, "<Image>/Filters/Map");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -255,8 +255,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_iwarp",
|
||||
N_("<Image>/Filters/Distorts"));
|
||||
gimp_plugin_menu_register ("plug_in_iwarp", "<Image>/Filters/Distorts");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -385,7 +385,7 @@ query (void)
|
|||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_jigsaw",
|
||||
N_("<Image>/Filters/Render/Pattern"));
|
||||
"<Image>/Filters/Render/Pattern");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -99,7 +99,7 @@ query (void)
|
|||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_laplace",
|
||||
N_("<Image>/Filters/Edge-Detect"));
|
||||
"<Image>/Filters/Edge-Detect");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -787,8 +787,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_lic",
|
||||
N_("<Image>/Filters/Map"));
|
||||
gimp_plugin_menu_register ("plug_in_lic", "<Image>/Filters/Map");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -209,7 +209,8 @@ query (void)
|
|||
"pipe files to uuencode then mail them",
|
||||
"You need to have uuencode and mail installed",
|
||||
"Adrian Likins, Reagan Blundell",
|
||||
"Adrian Likins, Reagan Blundell, Daniel Risacher, Spencer Kimball and Peter Mattis",
|
||||
"Adrian Likins, Reagan Blundell, Daniel Risacher, "
|
||||
"Spencer Kimball and Peter Mattis",
|
||||
"1995-1997",
|
||||
N_("_Mail Image..."),
|
||||
"RGB*, GRAY*, INDEXED*",
|
||||
|
@ -217,8 +218,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_mail_image",
|
||||
N_("<Image>/File/Send"));
|
||||
gimp_plugin_menu_register ("plug_in_mail_image", "<Image>/File/Send");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -158,7 +158,7 @@ query (void)
|
|||
adjust_args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_color_adjust",
|
||||
N_("<Image>/Filters/Colors/Map"));
|
||||
"<Image>/Filters/Colors/Map");
|
||||
|
||||
gimp_install_procedure ("plug_in_color_map",
|
||||
"Map color range specified by two colors"
|
||||
|
@ -176,7 +176,7 @@ query (void)
|
|||
map_args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_color_map",
|
||||
N_("<Image>/Filters/Colors/Map"));
|
||||
"<Image>/Filters/Colors/Map");
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -109,8 +109,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME,
|
||||
N_("<Image>/Filters/Colors"));
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME, "<Image>/Filters/Colors");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -179,8 +179,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME,
|
||||
N_("<Image>/Filters/Blur"));
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME, "<Image>/Filters/Blur");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -312,8 +312,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), nreturn_vals,
|
||||
args, return_vals);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_mosaic",
|
||||
N_("<Image>/Filters/Distorts"));
|
||||
gimp_plugin_menu_register ("plug_in_mosaic", "<Image>/Filters/Distorts");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -538,8 +538,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_newsprint",
|
||||
N_("<Image>/Filters/Distorts"));
|
||||
gimp_plugin_menu_register ("plug_in_newsprint", "<Image>/Filters/Distorts");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -129,8 +129,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_nlfilt",
|
||||
N_("<Image>/Filters/Enhance"));
|
||||
gimp_plugin_menu_register ("plug_in_nlfilt", "<Image>/Filters/Enhance");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -136,8 +136,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_noisify",
|
||||
N_("<Image>/Filters/Noise"));
|
||||
gimp_plugin_menu_register ("plug_in_noisify", "<Image>/Filters/Noise");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -91,8 +91,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_normalize",
|
||||
N_("<Image>/Layer/Colors/Auto"));
|
||||
gimp_plugin_menu_register ("plug_in_normalize", "<Image>/Layer/Colors/Auto");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -114,8 +114,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_oilify",
|
||||
N_("<Image>/Filters/Artistic"));
|
||||
gimp_plugin_menu_register ("plug_in_oilify", "<Image>/Filters/Artistic");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -806,8 +806,10 @@ plugin_query (void)
|
|||
};
|
||||
|
||||
gimp_install_procedure (PLUGIN_PROCEDURE_NAME,
|
||||
"Cuts an image into paper tiles, and slides each paper tile.",
|
||||
"This plug-in cuts an image into paper tiles and slides each paper tile.",
|
||||
"Cuts an image into paper tiles, and slides each "
|
||||
"paper tile.",
|
||||
"This plug-in cuts an image into paper tiles and "
|
||||
"slides each paper tile.",
|
||||
"Hirotsuna Mizuno <s1041150@u-aizu.ac.jp>",
|
||||
"Copyright (c)1997-1999 Hirotsuna Mizuno",
|
||||
_("September 31, 1999"),
|
||||
|
@ -817,8 +819,7 @@ plugin_query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register (PLUGIN_PROCEDURE_NAME,
|
||||
N_("<Image>/Filters/Map"));
|
||||
gimp_plugin_menu_register (PLUGIN_PROCEDURE_NAME, "<Image>/Filters/Map");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -176,8 +176,7 @@ query (void)
|
|||
G_N_ELEMENTS (pixelize_args), 0,
|
||||
pixelize_args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_pixelize",
|
||||
N_("<Image>/Filters/Blur"));
|
||||
gimp_plugin_menu_register ("plug_in_pixelize", "<Image>/Filters/Blur");
|
||||
|
||||
gimp_install_procedure ("plug_in_pixelize2",
|
||||
"Pixelize the contents of the specified drawable",
|
||||
|
|
|
@ -189,7 +189,7 @@ query (void)
|
|||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_plasma",
|
||||
N_("<Image>/Filters/Render/Clouds"));
|
||||
"<Image>/Filters/Render/Clouds");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -155,7 +155,7 @@ query (void)
|
|||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_plug_in_details",
|
||||
N_("<Toolbox>/Xtns/Extensions"));
|
||||
"<Toolbox>/Xtns/Extensions");
|
||||
gimp_plugin_icon_register ("plug_in_plug_in_details",
|
||||
GIMP_ICON_TYPE_STOCK_ID, GIMP_STOCK_PLUGIN);
|
||||
}
|
||||
|
|
|
@ -173,8 +173,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME,
|
||||
N_("<Image>/Filters/Distorts"));
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME, "<Image>/Filters/Distorts");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -92,8 +92,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_db_browser",
|
||||
N_("<Toolbox>/Xtns/Extensions"));
|
||||
gimp_plugin_menu_register ("plug_in_db_browser", "<Toolbox>/Xtns/Extensions");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -271,9 +271,9 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME[0], N_("<Image>/Filters/Noise"));
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME[1], N_("<Image>/Filters/Noise"));
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME[2], N_("<Image>/Filters/Noise"));
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME[0], "<Image>/Filters/Noise");
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME[1], "<Image>/Filters/Noise");
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME[2], "<Image>/Filters/Noise");
|
||||
}
|
||||
|
||||
/*********************************
|
||||
|
|
|
@ -141,8 +141,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_ripple",
|
||||
N_("<Image>/Filters/Distorts"));
|
||||
gimp_plugin_menu_register ("plug_in_ripple", "<Image>/Filters/Distorts");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -300,7 +300,7 @@ query (void)
|
|||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME,
|
||||
N_("<Image>/Filters/Colors/Map"));
|
||||
"<Image>/Filters/Colors/Map");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -136,8 +136,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME,
|
||||
N_("<Image>/Filters/Noise"));
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME, "<Image>/Filters/Noise");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -261,8 +261,8 @@ query (void)
|
|||
G_N_ELEMENTS (return_vals),
|
||||
args, return_vals);
|
||||
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME, N_("<Toolbox>/File/Acquire"));
|
||||
/* gimp_plugin_menu_register (PLUG_IN_NAME, N_("<Image>/File/Acquire")); */
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME, "<Toolbox>/File/Acquire");
|
||||
/* gimp_plugin_menu_register (PLUG_IN_NAME, "<Image>/File/Acquire"); */
|
||||
|
||||
gimp_plugin_icon_register (PLUG_IN_NAME,
|
||||
GIMP_ICON_TYPE_INLINE_PIXBUF, screenshot_icon);
|
||||
|
|
|
@ -110,8 +110,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_sel_gauss",
|
||||
N_("<Image>/Filters/Blur"));
|
||||
gimp_plugin_menu_register ("plug_in_sel_gauss", "<Image>/Filters/Blur");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -81,9 +81,9 @@ query (void)
|
|||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_semiflatten",
|
||||
N_("<Image>/Filters/Colors"));
|
||||
"<Image>/Filters/Colors");
|
||||
gimp_plugin_menu_register ("plug_in_semiflatten",
|
||||
N_("<Image>/Layer/Transparency/Modify"));
|
||||
"<Image>/Layer/Transparency/Modify");
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -127,8 +127,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME,
|
||||
N_("<Image>/Filters/Enhance"));
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME, "<Image>/Filters/Enhance");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -116,8 +116,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_shift",
|
||||
N_("<Image>/Filters/Distorts"));
|
||||
gimp_plugin_menu_register ("plug_in_shift", "<Image>/Filters/Distorts");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -194,8 +194,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_sinus",
|
||||
N_("<Image>/Filters/Render/Pattern"));
|
||||
gimp_plugin_menu_register ("plug_in_sinus", "<Image>/Filters/Render/Pattern");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -92,7 +92,7 @@ query (void)
|
|||
args, return_vals);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_smooth_palette",
|
||||
N_("<Image>/Filters/Colors"));
|
||||
"<Image>/Filters/Colors");
|
||||
}
|
||||
|
||||
static struct
|
||||
|
|
|
@ -190,7 +190,7 @@ query (void)
|
|||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_solid_noise",
|
||||
N_("<Image>/Filters/Render/Clouds"));
|
||||
"<Image>/Filters/Render/Clouds");
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -122,8 +122,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_sobel",
|
||||
N_("<Image>/Filters/Edge-Detect"));
|
||||
gimp_plugin_menu_register ("plug_in_sobel", "<Image>/Filters/Edge-Detect");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -190,7 +190,7 @@ query (void)
|
|||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_sparkle",
|
||||
N_("<Image>/Filters/Light Effects"));
|
||||
"<Image>/Filters/Light Effects");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -2987,7 +2987,7 @@ query (void)
|
|||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_spheredesigner",
|
||||
N_("<Image>/Filters/Render"));
|
||||
"<Image>/Filters/Render");
|
||||
}
|
||||
|
||||
static gboolean
|
||||
|
|
|
@ -102,8 +102,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_spread",
|
||||
N_("<Image>/Filters/Noise"));
|
||||
gimp_plugin_menu_register ("plug_in_spread", "<Image>/Filters/Noise");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -1149,7 +1149,7 @@ query (void)
|
|||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_apply_canvas",
|
||||
N_("<Image>/Filters/Artistic"));
|
||||
"<Image>/Filters/Artistic");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -99,7 +99,7 @@ query (void)
|
|||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register (PLUG_IN_NAME,
|
||||
N_("<Image>/Layer/Transparency/Modify"));
|
||||
"<Image>/Layer/Transparency/Modify");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -116,8 +116,7 @@ query (void)
|
|||
G_N_ELEMENTS (return_vals),
|
||||
args, return_vals);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_tile",
|
||||
N_("<Image>/Filters/Map"));
|
||||
gimp_plugin_menu_register ("plug_in_tile", "<Image>/Filters/Map");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -226,8 +226,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_small_tiles",
|
||||
N_("<Image>/Filters/Map"));
|
||||
gimp_plugin_menu_register ("plug_in_small_tiles", "<Image>/Filters/Map");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -69,8 +69,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_make_seamless",
|
||||
N_("<Image>/Filters/Map"));
|
||||
gimp_plugin_menu_register ("plug_in_make_seamless", "<Image>/Filters/Map");
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -121,7 +121,7 @@ query (void)
|
|||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_unit_editor",
|
||||
N_("<Toolbox>/Xtns/Extensions"));
|
||||
"<Toolbox>/Xtns/Extensions");
|
||||
gimp_plugin_icon_register ("plug_in_unit_editor",
|
||||
GIMP_ICON_TYPE_STOCK_ID, GIMP_STOCK_TOOL_MEASURE);
|
||||
}
|
||||
|
|
|
@ -151,7 +151,7 @@ query (void)
|
|||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_unsharp_mask",
|
||||
N_("<Image>/Filters/Enhance"));
|
||||
"<Image>/Filters/Enhance");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -1820,8 +1820,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_video",
|
||||
N_("<Image>/Filters/Distorts"));
|
||||
gimp_plugin_menu_register ("plug_in_video", "<Image>/Filters/Distorts");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -87,8 +87,7 @@ query ()
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_vinvert",
|
||||
N_("<Image>/Filters/Colors"));
|
||||
gimp_plugin_menu_register ("plug_in_vinvert", "<Image>/Filters/Colors");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -269,12 +269,9 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register (DEFAULT_PLUG_IN_NAME,
|
||||
N_("<Image>/Filters/Distorts"));
|
||||
gimp_plugin_menu_register (ERODE_PLUG_IN_NAME,
|
||||
N_("<Image>/Filters/Generic"));
|
||||
gimp_plugin_menu_register (DILATE_PLUG_IN_NAME,
|
||||
N_("<Image>/Filters/Generic"));
|
||||
gimp_plugin_menu_register (DEFAULT_PLUG_IN_NAME, "<Image>/Filters/Distorts");
|
||||
gimp_plugin_menu_register (ERODE_PLUG_IN_NAME, "<Image>/Filters/Generic");
|
||||
gimp_plugin_menu_register (DILATE_PLUG_IN_NAME, "<Image>/Filters/Generic");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -250,8 +250,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_warp",
|
||||
N_("<Image>/Filters/Map"));
|
||||
gimp_plugin_menu_register ("plug_in_warp", "<Image>/Filters/Map");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -130,8 +130,7 @@ query (void)
|
|||
G_N_ELEMENTS (args), 0,
|
||||
args, NULL);
|
||||
|
||||
gimp_plugin_menu_register ("plug_in_waves",
|
||||
N_("<Image>/Filters/Distorts"));
|
||||
gimp_plugin_menu_register ("plug_in_waves", "<Image>/Filters/Distorts");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue