From 8a47134bcd74aea9740821bc3ef5c2b565f8a447 Mon Sep 17 00:00:00 2001 From: Denis Fomin <fominde@gmail.com> Date: Mon, 6 Dec 2010 12:31:18 +0300 Subject: [PATCH] Make FTOverwriteConfirmationDialog translatable --- src/dialogs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dialogs.py b/src/dialogs.py index 8f19b65e1..79990f10a 100644 --- a/src/dialogs.py +++ b/src/dialogs.py @@ -1761,7 +1761,7 @@ class FTOverwriteConfirmationDialog(ConfirmationDialog): align = b.get_children()[0] hbox = align.get_children()[0] label = hbox.get_children()[1] - label.set_text('_Resume') + label.set_text(_('_Resume')) label.set_use_underline(True) self.add_action_widget(b, 100) @@ -1769,7 +1769,7 @@ class FTOverwriteConfirmationDialog(ConfirmationDialog): align = b.get_children()[0] hbox = align.get_children()[0] label = hbox.get_children()[1] - label.set_text('Re_place') + label.set_text(_('Re_place')) label.set_use_underline(True) self.add_action_widget(b, 200)