From 5efd56c1c86b02351fdf4f2144206bfd19a1472c Mon Sep 17 00:00:00 2001 From: Michael Natterer Date: Mon, 12 Nov 2012 01:06:58 +0100 Subject: [PATCH] Bug 679223 - "Rate" in tool options needs translation context Add translation contexts for "Rate" of airbrush, convolve and smudge. --- app/tools/gimpairbrushtool.c | 2 +- app/tools/gimpconvolvetool.c | 2 +- app/tools/gimpsmudgetool.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/tools/gimpairbrushtool.c b/app/tools/gimpairbrushtool.c index 85a67a934c..a0816fd588 100644 --- a/app/tools/gimpairbrushtool.c +++ b/app/tools/gimpairbrushtool.c @@ -89,7 +89,7 @@ gimp_airbrush_options_gui (GimpToolOptions *tool_options) gtk_widget_show (button); scale = gimp_prop_spin_scale_new (config, "rate", - _("Rate"), + C_("airbrush-tool", "Rate"), 1.0, 10.0, 1); gtk_box_pack_start (GTK_BOX (vbox), scale, FALSE, FALSE, 0); gtk_widget_show (scale); diff --git a/app/tools/gimpconvolvetool.c b/app/tools/gimpconvolvetool.c index b2f46d2154..48eebd15d7 100644 --- a/app/tools/gimpconvolvetool.c +++ b/app/tools/gimpconvolvetool.c @@ -226,7 +226,7 @@ gimp_convolve_options_gui (GimpToolOptions *tool_options) /* the rate scale */ scale = gimp_prop_spin_scale_new (config, "rate", - _("Rate"), + C_("convolve-tool", "Rate"), 1.0, 10.0, 1); gtk_box_pack_start (GTK_BOX (vbox), scale, FALSE, FALSE, 0); gtk_widget_show (scale); diff --git a/app/tools/gimpsmudgetool.c b/app/tools/gimpsmudgetool.c index 7b2fcbae21..e150d52413 100644 --- a/app/tools/gimpsmudgetool.c +++ b/app/tools/gimpsmudgetool.c @@ -89,7 +89,7 @@ gimp_smudge_options_gui (GimpToolOptions *tool_options) /* the rate scale */ scale = gimp_prop_spin_scale_new (config, "rate", - _("Rate"), + C_("smudge-tool", "Rate"), 1.0, 10.0, 1); gtk_box_pack_start (GTK_BOX (vbox), scale, FALSE, FALSE, 0); gtk_widget_show (scale);