summaryrefslogtreecommitdiff
path: root/Master/tlpkg/installer/install-menu-perltk.pl
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2013-05-15 22:13:04 +0000
committerKarl Berry <karl@freefriends.org>2013-05-15 22:13:04 +0000
commit7dbb39ecdbccfe7d3801b22ea0ebebfc38a789f2 (patch)
tree936d08255654b601c5cc4495b803e11c63905561 /Master/tlpkg/installer/install-menu-perltk.pl
parentd191718982b148fd4f253bcd3f2ae1a963703069 (diff)
standard collections -> installation collections,
since there is only one set of collections now. git-svn-id: svn://tug.org/texlive/trunk@30493 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/installer/install-menu-perltk.pl')
-rw-r--r--Master/tlpkg/installer/install-menu-perltk.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/tlpkg/installer/install-menu-perltk.pl b/Master/tlpkg/installer/install-menu-perltk.pl
index c78710a6ee1..3978e11cbc4 100644
--- a/Master/tlpkg/installer/install-menu-perltk.pl
+++ b/Master/tlpkg/installer/install-menu-perltk.pl
@@ -346,8 +346,8 @@ Please select a different mirror.', $TeXLive::TLConfig::ReleaseYear, $texlive_re
$fr->Label(-text => "------- " . __("Further Customization") . " -------")->grid(-row => $row, -column => 1,-columnspan => 3);
$row++;
- # standard collection line
- $fr->Label(-text => __('Standard collections'), -anchor => 'w')->grid(-row => $row, -column => 1, -sticky => 'w');
+ # collection line
+ $fr->Label(-text => __('Installation collections'), -anchor => 'w')->grid(-row => $row, -column => 1, -sticky => 'w');
$collection_toggle_button = $fr->Button(-text => __("Change"), -command => sub { menu_select_standard_collections(); })->grid(-row => $row, -column => 3, -sticky => "ew", -padx => "2m");
$row++;
@@ -794,7 +794,7 @@ sub menu_select_scheme {
}
sub menu_select_standard_collections {
- my $sw = $mainwindow->Toplevel(-title => __('Standard collections'));
+ my $sw = $mainwindow->Toplevel(-title => __('Installation collections'));
$sw->transient($mainwindow);
$sw->grab();
my $fb = $sw->Frame;