mirror of https://github.com/GNOME/gimp.git
Bug 625571 - Request context tags for reasonable translation on some plug-ins
Set gettext context signatures on "From:" and "To:" labels of the Color Rotate and the Color to Alpha plug-ins.
This commit is contained in:
parent
7df1a4f3df
commit
1dfa7b5e76
|
@ -373,8 +373,8 @@ rcm_create_main (void)
|
|||
{
|
||||
GtkWidget *vbox;
|
||||
|
||||
Current.From = rcm_create_one_circle (SUM, _("From:"));
|
||||
Current.To = rcm_create_one_circle (SUM, _("To:"));
|
||||
Current.From = rcm_create_one_circle (SUM, C_("color-rotate", "From:"));
|
||||
Current.To = rcm_create_one_circle (SUM, C_("color-rotate", "To:"));
|
||||
|
||||
vbox = gtk_vbox_new (FALSE, 12);
|
||||
gtk_container_set_border_width (GTK_CONTAINER (vbox), 12);
|
||||
|
|
|
@ -407,7 +407,7 @@ color_to_alpha_dialog (GimpDrawable *drawable)
|
|||
gtk_box_pack_start (GTK_BOX (main_vbox), hbox, FALSE, FALSE, 0);
|
||||
gtk_widget_show (hbox);
|
||||
|
||||
label = gtk_label_new (_("From:"));
|
||||
label = gtk_label_new (C_("color-to-alpha", "From:"));
|
||||
gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
|
||||
gtk_widget_show (label);
|
||||
|
||||
|
|
Loading…
Reference in New Issue