plug-ins: string fixes

This commit is contained in:
Anders Jonsson 2023-10-09 21:55:38 +02:00 committed by Alx Sa
parent 322f17c7a0
commit 0389e50569
5 changed files with 14 additions and 14 deletions

View File

@ -415,23 +415,23 @@ bender_create_procedure (GimpPlugIn *plug_in,
gimp_procedure_set_documentation gimp_procedure_set_documentation
(procedure, (procedure,
_("Bend the image using two control curves"), _("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 " "If there is a current selection it is copied to "
"floating selection and the curve_bend distortion " "floating selection and the curve_bend distortion "
"is done on the floating selection. If " "is done on the floating selection. If "
"work_on_copy parameter is TRUE, the curve_bend " "work_on_copy parameter is TRUE, the curve_bend "
"distortion is done on a copy of the active layer " "distortion is done on a copy of the active layer "
"(or floating selection). The upper and lower edges " "(or floating selection). The upper and lower edges "
"are bent in shape of 2 spline curves. both (upper " "are bent in shape of 2 spline curves. Both (upper "
"and lower) curves are determined by up to 17 points " "and lower) curves are determined by up to 17 points "
"or by 256 Y-Values if curve_type == 1 (freehand " "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. " "before and rotated back after the bend operation. "
"This enables bending in other directions than " "This enables bending in other directions than "
"vertical. bending usually changes the size of " "vertical. Bending usually changes the size of "
"the handled layer. this plug-in sets the offsets " "the handled layer. This plug-in sets the offsets "
"of the handled layer to keep its center at the " "of the handled layer to keep its center at the "
"same position"), "same position."),
name); name);
gimp_procedure_set_attribution (procedure, gimp_procedure_set_attribution (procedure,
PLUG_IN_AUTHOR, PLUG_IN_AUTHOR,
@ -1206,7 +1206,7 @@ bender_new_dialog (GimpProcedure *procedure,
G_CALLBACK (bender_type_callback), cd); G_CALLBACK (bender_type_callback), cd);
store = gimp_int_store_new (_("Upper"), OUTLINE_UPPER, store = gimp_int_store_new (_("Upper"), OUTLINE_UPPER,
_("Lower"), OUTLINE_LOWER, C_("adjective", "Lower"), OUTLINE_LOWER,
NULL); NULL);
gimp_procedure_dialog_get_int_radio (GIMP_PROCEDURE_DIALOG (cd->shell), gimp_procedure_dialog_get_int_radio (GIMP_PROCEDURE_DIALOG (cd->shell),
"curve-border", GIMP_INT_STORE (store)); "curve-border", GIMP_INT_STORE (store));

View File

@ -283,13 +283,13 @@ explorer_create_procedure (GimpPlugIn *plug_in,
GIMP_PROC_ARG_DOUBLE (procedure, "ymin", GIMP_PROC_ARG_DOUBLE (procedure, "ymin",
_("To_p"), _("To_p"),
_("y min fractal image delimiter"), _("Y min fractal image delimiter"),
-3.000, 3.000, -1.500, -3.000, 3.000, -1.500,
G_PARAM_READWRITE); G_PARAM_READWRITE);
GIMP_PROC_ARG_DOUBLE (procedure, "ymax", GIMP_PROC_ARG_DOUBLE (procedure, "ymax",
_("_Bottom"), _("_Bottom"),
_("ymax fractal image delimiter"), _("Y max fractal image delimiter"),
-3.000, 3.000, 1.500, -3.000, 3.000, 1.500,
G_PARAM_READWRITE); G_PARAM_READWRITE);

View File

@ -277,7 +277,7 @@ map_create_procedure (GimpPlugIn *plug_in,
G_PARAM_READWRITE); G_PARAM_READWRITE);
GIMP_PROC_ARG_DOUBLE (procedure, "diffuse-intensity", GIMP_PROC_ARG_DOUBLE (procedure, "diffuse-intensity",
_("_D_iffuse"), _("D_iffuse"),
_("Material diffuse intensity"), _("Material diffuse intensity"),
0, 1, 1.0, 0, 1, 1.0,
G_PARAM_READWRITE); G_PARAM_READWRITE);

View File

@ -291,7 +291,7 @@ sel2path_create_procedure (GimpPlugIn *plug_in,
G_PARAM_READWRITE); G_PARAM_READWRITE);
GIMP_PROC_ARG_DOUBLE (procedure, "subdivide-threshold", GIMP_PROC_ARG_DOUBLE (procedure, "subdivide-threshold",
_("Subdivide_ Threshold"), _("Subdivide Th_reshold"),
_("How many pixels a point can diverge from a straight " _("How many pixels a point can diverge from a straight "
"line and still be considered a better place to " "line and still be considered a better place to "
"subdivide."), "subdivide."),