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:
SimaMoto,RyōTa 2010-07-29 19:53:34 +09:00 committed by Sven Neumann
parent 7df1a4f3df
commit 1dfa7b5e76
2 changed files with 3 additions and 3 deletions

View File

@ -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);

View File

@ -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);