mirror of https://github.com/GNOME/gimp.git
parent
f4c6fd0ee4
commit
86edc31b11
|
@ -185,7 +185,7 @@ gimp_dialog_config_class_init (GimpDialogConfigClass *klass)
|
|||
|
||||
GIMP_CONFIG_PROP_ENUM (object_class, PROP_IMAGE_CONVERT_PROFILE_INTENT,
|
||||
"image-convert-profile-intent",
|
||||
"Default rendering intent fo color profile conversion",
|
||||
"Default rendering intent for color profile conversion",
|
||||
IMAGE_CONVERT_PROFILE_INTENT_BLURB,
|
||||
GIMP_TYPE_COLOR_RENDERING_INTENT,
|
||||
GIMP_COLOR_RENDERING_INTENT_RELATIVE_COLORIMETRIC,
|
||||
|
|
|
@ -1269,7 +1269,7 @@ gimp_curve_plot (GimpCurve *curve,
|
|||
|
||||
/*
|
||||
* finally calculate the y(t) values for the given bezier values. We can
|
||||
* use homogenously distributed values for t, since x(t) increases linearly.
|
||||
* use homogeneously distributed values for t, since x(t) increases linearly.
|
||||
*/
|
||||
for (i = 0; i <= ROUND (dx * (gdouble) (curve->n_samples - 1)); i++)
|
||||
{
|
||||
|
|
|
@ -1112,7 +1112,7 @@ register_fileops_procs (GimpPDB *pdb)
|
|||
gimp_procedure_set_static_strings (procedure,
|
||||
"gimp-register-file-handler-uri",
|
||||
"Registers a file handler procedure as capable of handling URIs.",
|
||||
"Registers a file handler procedure as capable of handling URIs. This allows GIMP to call the procecure directly for all kinds of URIs, and the 'filename' traditionally passed to file procesures turns into an URI.",
|
||||
"Registers a file handler procedure as capable of handling URIs. This allows GIMP to call the procedure directly for all kinds of URIs, and the 'filename' traditionally passed to file procesures turns into an URI.",
|
||||
"Michael Natterer <mitch@gimp.org>",
|
||||
"Michael Natterer",
|
||||
"2012",
|
||||
|
|
|
@ -3842,7 +3842,7 @@ register_image_procs (GimpPDB *pdb)
|
|||
gimp_procedure_set_static_strings (procedure,
|
||||
"gimp-image-raise-item",
|
||||
"Raise the specified item in its level in its item tree",
|
||||
"This procedure raises the specified item one step in the item tree. The procecure call will fail if there is no item above it.",
|
||||
"This procedure raises the specified item one step in the item tree. The procedure call will fail if there is no item above it.",
|
||||
"Michael Natterer <mitch@gimp.org>",
|
||||
"Michael Natterer",
|
||||
"2010",
|
||||
|
@ -3871,7 +3871,7 @@ register_image_procs (GimpPDB *pdb)
|
|||
gimp_procedure_set_static_strings (procedure,
|
||||
"gimp-image-lower-item",
|
||||
"Lower the specified item in its level in its item tree",
|
||||
"This procedure lowers the specified item one step in the item tree. The procecure call will fail if there is no item below it.",
|
||||
"This procedure lowers the specified item one step in the item tree. The procedure call will fail if there is no item below it.",
|
||||
"Michael Natterer <mitch@gimp.org>",
|
||||
"Michael Natterer",
|
||||
"2010",
|
||||
|
|
|
@ -161,7 +161,7 @@
|
|||
<rdf:li>select</rdf:li>
|
||||
<rdf:li>region</rdf:li>
|
||||
<rdf:li>continuous</rdf:li>
|
||||
<rdf:li>homogenous</rdf:li>
|
||||
<rdf:li>homogeneous</rdf:li>
|
||||
<rdf:li>color</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
|
|
Before Width: | Height: | Size: 7.9 KiB After Width: | Height: | Size: 7.9 KiB |
|
@ -449,7 +449,7 @@ gimp_register_file_handler_mime (const gchar *procedure_name,
|
|||
* Registers a file handler procedure as capable of handling URIs.
|
||||
*
|
||||
* Registers a file handler procedure as capable of handling URIs. This
|
||||
* allows GIMP to call the procecure directly for all kinds of URIs,
|
||||
* allows GIMP to call the procedure directly for all kinds of URIs,
|
||||
* and the 'filename' traditionally passed to file procesures turns
|
||||
* into an URI.
|
||||
*
|
||||
|
|
|
@ -1285,7 +1285,7 @@ gimp_image_get_item_position (gint32 image_ID,
|
|||
* Raise the specified item in its level in its item tree
|
||||
*
|
||||
* This procedure raises the specified item one step in the item tree.
|
||||
* The procecure call will fail if there is no item above it.
|
||||
* The procedure call will fail if there is no item above it.
|
||||
*
|
||||
* Returns: TRUE on success.
|
||||
*
|
||||
|
@ -1320,7 +1320,7 @@ gimp_image_raise_item (gint32 image_ID,
|
|||
* Lower the specified item in its level in its item tree
|
||||
*
|
||||
* This procedure lowers the specified item one step in the item tree.
|
||||
* The procecure call will fail if there is no item below it.
|
||||
* The procedure call will fail if there is no item below it.
|
||||
*
|
||||
* Returns: TRUE on success.
|
||||
*
|
||||
|
|
|
@ -1617,7 +1617,7 @@ gimp_metadata_copy_tags (GExiv2Metadata *src,
|
|||
|
||||
for (i = 0; tags[i] != NULL; i++)
|
||||
{
|
||||
/* don't copy the same tag multile times */
|
||||
/* don't copy the same tag multiple times */
|
||||
if (i > 0 && ! strcmp (tags[i], tags[i - 1]))
|
||||
continue;
|
||||
|
||||
|
|
|
@ -594,7 +594,7 @@ sub register_file_handler_uri {
|
|||
|
||||
$help = <<'HELP';
|
||||
Registers a file handler procedure as capable of handling URIs. This
|
||||
allows GIMP to call the procecure directly for all kinds of URIs, and
|
||||
allows GIMP to call the procedure directly for all kinds of URIs, and
|
||||
the 'filename' traditionally passed to file procesures turns into an
|
||||
URI.
|
||||
HELP
|
||||
|
|
|
@ -554,7 +554,7 @@ sub image_raise_item {
|
|||
|
||||
$help = <<'HELP';
|
||||
This procedure raises the specified item one step in the item tree.
|
||||
The procecure call will fail if there is no item above it.
|
||||
The procedure call will fail if there is no item above it.
|
||||
HELP
|
||||
|
||||
&mitch_pdb_misc('2010', '2.8');
|
||||
|
@ -583,7 +583,7 @@ sub image_lower_item {
|
|||
|
||||
$help = <<'HELP';
|
||||
This procedure lowers the specified item one step in the item tree.
|
||||
The procecure call will fail if there is no item below it.
|
||||
The procedure call will fail if there is no item below it.
|
||||
HELP
|
||||
|
||||
&mitch_pdb_misc('2010', '2.8');
|
||||
|
|
Loading…
Reference in New Issue