diff options
-rw-r--r-- | Master/texmf/scripts/texlive/tlmgrgui.pl | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgrgui.pl b/Master/texmf/scripts/texlive/tlmgrgui.pl index 52aea0450d9..67dd810e275 100644 --- a/Master/texmf/scripts/texlive/tlmgrgui.pl +++ b/Master/texmf/scripts/texlive/tlmgrgui.pl @@ -225,7 +225,8 @@ sub do_rest_of_gui { -separator => "/", -selectmode => "none"); - $loaded_button = $mw->Button(-text => __("Loaded repository:") . " " . __("none"), + $loaded_button = $mw->Button(-text => __("Loaded repository:") + . " " . __("none"), -relief => 'flat', -command => sub { $location = $tlpdb_location; update_loaded_location_string(); @@ -281,8 +282,8 @@ sub do_rest_of_gui { my $filter_selection = $filter_frame->Labelframe(-text => __("Selection")); $filter_selection->pack(@left, @x_y, @p_ii); - $filter_selection->Radiobutton(-text => "all", -command => \&update_grid, - -variable => \$selection_value, -value => 0)->pack(@a_w); + $filter_selection->Radiobutton(-text => __("all"), -command => \&update_grid, + -variable => \$selection_value, -value => 0)->pack(@a_w); $filter_selection->Radiobutton(-text => __("selected"), -command => \&update_grid, -variable => \$selection_value, -value => 1) ->pack(@a_w); |