summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2010-01-10 01:43:16 +0000
committerKarl Berry <karl@freefriends.org>2010-01-10 01:43:16 +0000
commitd45e437f2e3551a6fd395d937f166a6acbe6a5a1 (patch)
treeafe33f526d078def2c2a2484ab1523b53f379a8f
parent28021930e0c424d15b08b27b14a9ad5ea1ab1103 (diff)
translate "all", Vladimir Lomov 9 Jan 2010 23:03:25
git-svn-id: svn://tug.org/texlive/trunk@16657 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r--Master/texmf/scripts/texlive/tlmgrgui.pl7
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);