app/gui/gradient-editor-commands.c don't split translatable sentences into
2003-01-06 Sven Neumann <sven@gimp.org> * app/gui/gradient-editor-commands.c * libgimp/gimpexport.c: don't split translatable sentences into multiple messages (bug #85828).
This commit is contained in:

committed by
Sven Neumann

parent
82c16db50d
commit
fdffb13ea8
@ -580,13 +580,13 @@ gradient_editor_replicate_cmd_callback (GtkWidget *widget,
|
||||
gtk_widget_show (vbox);
|
||||
|
||||
/* Instructions */
|
||||
label = gtk_label_new (_("Select the number of times"));
|
||||
gtk_box_pack_start (GTK_BOX (vbox), label, FALSE, FALSE, 0);
|
||||
gtk_widget_show (label);
|
||||
if (editor->control_sel_l == editor->control_sel_r)
|
||||
label = gtk_label_new (_("Select the number of times\n"
|
||||
"to replicate the selected segment."));
|
||||
else
|
||||
label = gtk_label_new (_("Select the number of times\n"
|
||||
"to replicate the selection."));
|
||||
|
||||
label = gtk_label_new ((editor->control_sel_l == editor->control_sel_r) ?
|
||||
_("to replicate the selected segment") :
|
||||
_("to replicate the selection"));
|
||||
gtk_box_pack_start (GTK_BOX (vbox), label, FALSE, FALSE, 0);
|
||||
gtk_widget_show (label);
|
||||
|
||||
@ -696,14 +696,13 @@ gradient_editor_split_uniformly_cmd_callback (GtkWidget *widget,
|
||||
gtk_widget_show (vbox);
|
||||
|
||||
/* Instructions */
|
||||
label = gtk_label_new (_("Please select the number of uniform parts"));
|
||||
gtk_box_pack_start (GTK_BOX (vbox), label, FALSE, FALSE, 0);
|
||||
gtk_widget_show (label);
|
||||
if (editor->control_sel_l == editor->control_sel_r)
|
||||
label = gtk_label_new (_("Select the number of uniform parts\n"
|
||||
"in which to split the selected segment."));
|
||||
else
|
||||
label = gtk_label_new (_("Select the number of uniform parts\n"
|
||||
"in which to split the segments in the selection."));
|
||||
|
||||
label =
|
||||
gtk_label_new ((editor->control_sel_l == editor->control_sel_r) ?
|
||||
_("in which to split the selected segment") :
|
||||
_("in which to split the segments in the selection"));
|
||||
gtk_box_pack_start (GTK_BOX (vbox), label, FALSE, FALSE, 0);
|
||||
gtk_widget_show (label);
|
||||
|
||||
|
Reference in New Issue
Block a user