From 0e226126d9d60ed19063616afd07dea65a8a3329 Mon Sep 17 00:00:00 2001 From: intrigeri Date: Thu, 3 Oct 2019 07:45:16 +0000 Subject: [PATCH] Make new "Show Passphrase" label translatable (#15102) --- lib/Tails/Persistence/Step/Bootstrap.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/Tails/Persistence/Step/Bootstrap.pm b/lib/Tails/Persistence/Step/Bootstrap.pm index 8d08ff4..e94f266 100644 --- a/lib/Tails/Persistence/Step/Bootstrap.pm +++ b/lib/Tails/Persistence/Step/Bootstrap.pm @@ -229,7 +229,9 @@ method _build_table () { } method _build_passphrase_check_button () { - my $check_button = Gtk3::CheckButton->new_with_label('Show Passphrase'); + my $check_button = Gtk3::CheckButton->new_with_label( + $self->encoding->decode(gettext(q{Show Passphrase})) + ); $check_button->set_active(FALSE); $check_button->signal_connect(toggled => sub { $self->passphrase_check_button_toggled }); -- 2.11.4.GIT