From fa87116fe6d2ce37b945c3be2e5508a097477ba7 Mon Sep 17 00:00:00 2001 From: Alexandre Prokoudine Date: Wed, 12 Jun 2019 22:44:33 +0300 Subject: [PATCH] Offset tool: mark forgotten messages for translation --- app/tools/gimpoffsettool.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/tools/gimpoffsettool.c b/app/tools/gimpoffsettool.c index c1d6e3d783..8a17fd3ebd 100644 --- a/app/tools/gimpoffsettool.c +++ b/app/tools/gimpoffsettool.c @@ -514,7 +514,7 @@ gimp_offset_tool_dialog (GimpFilterTool *filter_tool) gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, FALSE, 0); gtk_widget_show (hbox); - button = gtk_button_new_with_mnemonic ("By _width/2"); + button = gtk_button_new_with_mnemonic (_("By _width/2")); gtk_box_pack_start (GTK_BOX (hbox), button, TRUE, TRUE, 0); gtk_widget_show (button); @@ -522,7 +522,7 @@ gimp_offset_tool_dialog (GimpFilterTool *filter_tool) G_CALLBACK (gimp_offset_tool_half_x_clicked), offset_tool); - button = gtk_button_new_with_mnemonic ("By _height/2"); + button = gtk_button_new_with_mnemonic (_("By _height/2")); gtk_box_pack_start (GTK_BOX (hbox), button, TRUE, TRUE, 0); gtk_widget_show (button);