mirror of https://github.com/GNOME/gimp.git
plug-ins: string fixes
This commit is contained in:
parent
322f17c7a0
commit
0389e50569
|
@ -415,23 +415,23 @@ bender_create_procedure (GimpPlugIn *plug_in,
|
|||
gimp_procedure_set_documentation
|
||||
(procedure,
|
||||
_("Bend the image using two control curves"),
|
||||
_("This plug-in does bend the active layer "
|
||||
_("This plug-in bends 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 "
|
||||
"are bent in shape of 2 spline curves. Both (upper "
|
||||
"and lower) curves are determined by up to 17 points "
|
||||
"or by 256 Y-Values if curve_type == 1 (freehand "
|
||||
"mode) If rotation is not 0, the layer is rotated "
|
||||
"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 plug-in sets the offsets "
|
||||
"vertical. Bending usually changes the size of "
|
||||
"the handled layer. This plug-in sets the offsets "
|
||||
"of the handled layer to keep its center at the "
|
||||
"same position"),
|
||||
"same position."),
|
||||
name);
|
||||
gimp_procedure_set_attribution (procedure,
|
||||
PLUG_IN_AUTHOR,
|
||||
|
@ -1206,7 +1206,7 @@ bender_new_dialog (GimpProcedure *procedure,
|
|||
G_CALLBACK (bender_type_callback), cd);
|
||||
|
||||
store = gimp_int_store_new (_("Upper"), OUTLINE_UPPER,
|
||||
_("Lower"), OUTLINE_LOWER,
|
||||
C_("adjective", "Lower"), OUTLINE_LOWER,
|
||||
NULL);
|
||||
gimp_procedure_dialog_get_int_radio (GIMP_PROCEDURE_DIALOG (cd->shell),
|
||||
"curve-border", GIMP_INT_STORE (store));
|
||||
|
|
|
@ -398,7 +398,7 @@ raw_create_procedure (GimpPlugIn *plug_in,
|
|||
G_PARAM_READWRITE);
|
||||
GIMP_PROC_ARG_INT (procedure, "palette-type",
|
||||
_("Palette's la_yout"),
|
||||
_("The layout for the palette's color channels"
|
||||
_("The layout for the palette's color channels "
|
||||
"{ RAW_PALETTE_RGB (0), RAW_PALETTE_BGR (1) }"),
|
||||
RAW_PALETTE_RGB, RAW_PALETTE_BGR, RAW_PALETTE_RGB,
|
||||
G_PARAM_READWRITE);
|
||||
|
@ -474,7 +474,7 @@ raw_create_procedure (GimpPlugIn *plug_in,
|
|||
|
||||
GIMP_PROC_ARG_INT (procedure, "palette-type",
|
||||
_("Palette's layout"),
|
||||
_("The layout for the palette's color channels"
|
||||
_("The layout for the palette's color channels "
|
||||
"{ RAW_PALETTE_RGB (0), RAW_PALETTE_BGR (1) }"),
|
||||
RAW_PALETTE_RGB, RAW_PALETTE_BGR, RAW_PALETTE_RGB,
|
||||
G_PARAM_READWRITE);
|
||||
|
|
|
@ -283,13 +283,13 @@ explorer_create_procedure (GimpPlugIn *plug_in,
|
|||
|
||||
GIMP_PROC_ARG_DOUBLE (procedure, "ymin",
|
||||
_("To_p"),
|
||||
_("y min fractal image delimiter"),
|
||||
_("Y min fractal image delimiter"),
|
||||
-3.000, 3.000, -1.500,
|
||||
G_PARAM_READWRITE);
|
||||
|
||||
GIMP_PROC_ARG_DOUBLE (procedure, "ymax",
|
||||
_("_Bottom"),
|
||||
_("ymax fractal image delimiter"),
|
||||
_("Y max fractal image delimiter"),
|
||||
-3.000, 3.000, 1.500,
|
||||
G_PARAM_READWRITE);
|
||||
|
||||
|
|
|
@ -277,7 +277,7 @@ map_create_procedure (GimpPlugIn *plug_in,
|
|||
G_PARAM_READWRITE);
|
||||
|
||||
GIMP_PROC_ARG_DOUBLE (procedure, "diffuse-intensity",
|
||||
_("_D_iffuse"),
|
||||
_("D_iffuse"),
|
||||
_("Material diffuse intensity"),
|
||||
0, 1, 1.0,
|
||||
G_PARAM_READWRITE);
|
||||
|
|
|
@ -291,7 +291,7 @@ sel2path_create_procedure (GimpPlugIn *plug_in,
|
|||
G_PARAM_READWRITE);
|
||||
|
||||
GIMP_PROC_ARG_DOUBLE (procedure, "subdivide-threshold",
|
||||
_("Subdivide_ Threshold"),
|
||||
_("Subdivide Th_reshold"),
|
||||
_("How many pixels a point can diverge from a straight "
|
||||
"line and still be considered a better place to "
|
||||
"subdivide."),
|
||||
|
|
Loading…
Reference in New Issue