diff options
author | Norbert Preining <preining@logic.at> | 2011-06-16 12:30:37 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2011-06-16 12:30:37 +0000 |
commit | ba55638f5bad2a560d9394efedee5202c6d30a09 (patch) | |
tree | 36d9fbca8719b127241eb34c4e21327f162a2793 /Master | |
parent | 62247444a18f99e47c0d421da96006658b1c6d29 (diff) |
reorder fields in GUI match frame, and unify translations
git-svn-id: svn://tug.org/texlive/trunk@23011 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r-- | Master/texmf/scripts/texlive/tlmgrgui.pl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgrgui.pl b/Master/texmf/scripts/texlive/tlmgrgui.pl index 68f528e5172..e2eb221e69a 100644 --- a/Master/texmf/scripts/texlive/tlmgrgui.pl +++ b/Master/texmf/scripts/texlive/tlmgrgui.pl @@ -303,6 +303,9 @@ sub do_rest_of_gui { my $filter_match = $filter_frame->Labelframe(-text => __("Match")); $filter_match->pack(@left, @x_y, @p_ii); + $match_entry = + $filter_match->Entry(-width => 15, -validate => 'key', + )->pack(@a_w, -padx => '2m', @x_x); $filter_match->Checkbutton(-text => __("descriptions"), -command => \&update_grid, -variable => \$match_descriptions)->pack(@a_w); @@ -313,9 +316,6 @@ sub do_rest_of_gui { $filter_match->Checkbutton(-text => __("filenames"), -command => \&update_grid, -variable => \$match_filenames)->pack(@a_w); - $match_entry = - $filter_match->Entry(-width => 15, -validate => 'key', - )->pack(@a_w, -padx => '2m', @x_x); $match_entry->configure(-validate => 'key', -validatecommand => sub { @@ -2049,7 +2049,7 @@ sub cb_handle_restore { my $pkg; my $rev; - my $restore_dialog = $sw->DialogBox(-title => __("Restore done"), + my $restore_dialog = $sw->DialogBox(-title => __("Restore completed"), -buttons => [ __("Ok") ]); $restore_dialog->add("Label", -text => __("Restore completed"))->pack(@p_iii); |