diff options
author | Norbert Preining <preining@logic.at> | 2009-08-19 16:37:37 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2009-08-19 16:37:37 +0000 |
commit | e97ff2a65f4aefb23942c4b46c5c4210119b2992 (patch) | |
tree | 75507b8daef5f6deda6b886d64094a6539f42290 | |
parent | aaa697992984be8f07cbcf53ff323ecbbacf129b (diff) |
make "Cancel" translatable (thanks Vladimir for spotting that)
git-svn-id: svn://tug.org/texlive/trunk@14763 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui.pl b/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui.pl index 7240c356c6f..a5f942ee474 100755 --- a/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui.pl +++ b/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui.pl @@ -576,7 +576,7 @@ sub menu_edit_location { run_update_functions(); $sw->destroy; })->pack(-side => 'left', -padx => "2m", -pady => "2m"); - my $cancelbutton = $f->Button(-text => 'Cancel', + my $cancelbutton = $f->Button(-text => __("Cancel"), -command => sub { $sw->destroy })->pack(-side => 'right', -padx => "2m", -pady => "2m"); $f->pack(-expand => 'x'); $sw->bind('<Return>', [ $okbutton, 'Invoke' ]); |