diff options
author | Norbert Preining <preining@logic.at> | 2010-06-24 01:50:16 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2010-06-24 01:50:16 +0000 |
commit | 20f4faa4df500f92c5e45d4365654624f2c1c936 (patch) | |
tree | 2235e2c4d3470083cac598773cae3ca499f4f829 | |
parent | d9f8f20f6837fc96f91504e7ef1ac9ba08c9f1c0 (diff) |
also switch tlmgrgui to use "platforms" instead of "arch"
git-svn-id: svn://tug.org/texlive/trunk@19130 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Master/texmf/scripts/texlive/tlmgrgui.pl | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgrgui.pl b/Master/texmf/scripts/texlive/tlmgrgui.pl index 086837e96cc..8f07ecd0125 100644 --- a/Master/texmf/scripts/texlive/tlmgrgui.pl +++ b/Master/texmf/scripts/texlive/tlmgrgui.pl @@ -489,7 +489,7 @@ sub setup_menu_system { $menu_options->add('command', -label => __("Paper ..."), -command => sub { do_paper_settings(); }); if (!win32() && $mode_expert) { - $menu_options->add('command', -label => __("Architectures ..."), + $menu_options->add('command', -label => __("Platforms ..."), -command => sub { do_arch_settings(); }); } $menu_options->add('separator'); @@ -921,12 +921,12 @@ sub init_archs { sub do_arch_settings { - my $sw = $mw->Toplevel(-title => __("Select architectures to support")); + my $sw = $mw->Toplevel(-title => __("Select platforms to support")); my %archsbuttons; init_archs(); $sw->transient($mw); $sw->grab(); - my $subframe = $sw->Labelframe(-text => __("Select architectures to support")); + my $subframe = $sw->Labelframe(-text => __("Select platforms to support")); $subframe->pack(-fill => "both", -padx => "2m", -pady => "2m"); foreach my $a (sort @archsavail) { $archsbuttons{$a} = @@ -951,7 +951,7 @@ sub check_on_removal { # removal not supported $archs{$a} = 1; $arch_frame->Dialog(-title => __("Warning"), - -text => __("Removals of the main architecture not possible!"), + -text => __("Removals of the main platform not possible!"), -buttons => [ __("Ok") ])->Show; } } @@ -970,10 +970,10 @@ sub apply_arch_changes { } } if (@todo_add) { - execute_action_gui ( "arch", "add", @todo_add ); + execute_action_gui ( "platform", "add", @todo_add ); } if (@todo_remove) { - execute_action_gui ( "arch", "remove", @todo_remove ); + execute_action_gui ( "platform", "remove", @todo_remove ); } if (@todo_add || @todo_remove) { reinit_local_tlpdb(); |