From c6625f63a78bf28f51ef18a0e50baa08010190be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sabri=20=C3=9Cnal?= Date: Sat, 25 Oct 2025 18:46:04 +0300 Subject: [PATCH] plug-in:cml-explorer: Don't use short forms Update some strings to make them more obvious. - Mod. > Modification (according to GIMP Help) - Env. > Environment - dist. > distance - ch. > channel --- plug-ins/common/cml-explorer.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/plug-ins/common/cml-explorer.c b/plug-ins/common/cml-explorer.c index 6731f8e82d..7dba051138 100644 --- a/plug-ins/common/cml-explorer.c +++ b/plug-ins/common/cml-explorer.c @@ -1790,21 +1790,21 @@ CML_dialog_channel_panel_new (CML_PARAM *param, gtk_widget_show (toggle); index++; - scale = gimp_scale_entry_new (_("Mod. rate:"), param->mod_rate, 0.0, 1.0, 2); + scale = gimp_scale_entry_new (_("Modification rate:"), param->mod_rate, 0.0, 1.0, 2); CML_explorer_double_entry_init (&widget_pointers[channel_id][index], scale, ¶m->mod_rate); gtk_grid_attach (GTK_GRID (grid), scale, 0, index, 3, 1); gtk_widget_show (scale); index++; - scale = gimp_scale_entry_new (_("Env. sensitivity:"), param->env_sensitivity, 0.0, 1.0, 2); + scale = gimp_scale_entry_new (_("Environment sensitivity:"), param->env_sensitivity, 0.0, 1.0, 2); CML_explorer_double_entry_init (&widget_pointers[channel_id][index], scale, ¶m->env_sensitivity); gtk_grid_attach (GTK_GRID (grid), scale, 0, index, 3, 1); gtk_widget_show (scale); index++; - scale = gimp_scale_entry_new (_("Diffusion dist.:"), param->diffusion_dist, 2, 10, 0); + scale = gimp_scale_entry_new (_("Diffusion distance:"), param->diffusion_dist, 2, 10, 0); CML_explorer_int_entry_init (&widget_pointers[channel_id][index], scale, ¶m->diffusion_dist); gtk_grid_attach (GTK_GRID (grid), scale, 0, index, 3, 1); @@ -1894,7 +1894,7 @@ CML_dialog_advanced_panel_new (void) index = 0; - scale = gimp_scale_entry_new (_("Ch. sensitivity:"), param->ch_sensitivity, 0.0, 1.0, 2); + scale = gimp_scale_entry_new (_("Channel sensitivity:"), param->ch_sensitivity, 0.0, 1.0, 2); CML_explorer_double_entry_init (&widget_pointers[channel_id][index + widget_offset], scale, ¶m->ch_sensitivity); @@ -1910,7 +1910,7 @@ CML_dialog_advanced_panel_new (void) gtk_widget_show (scale); index++; - scale = gimp_scale_entry_new (_("Mutation dist.:"), param->mutation_dist, 0.0, 1.0, 2); + scale = gimp_scale_entry_new (_("Mutation distance:"), param->mutation_dist, 0.0, 1.0, 2); CML_explorer_double_entry_init (&widget_pointers[channel_id][index + widget_offset], scale, ¶m->mutation_dist);