summaryrefslogtreecommitdiff
path: root/Master/tlpkg/installer/install-menu-wizard.pl
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2017-04-16 02:14:07 +0000
committerNorbert Preining <preining@logic.at>2017-04-16 02:14:07 +0000
commitefbb8161f75b4b347656e7fd5f621960b3c3e0aa (patch)
tree412de0712166afef8678b3d4fa6618e878844c58 /Master/tlpkg/installer/install-menu-wizard.pl
parent5913c85040504aee4109a34aaad42020b7feff38 (diff)
use tlpdbopt_ instead of option_
git-svn-id: svn://tug.org/texlive/trunk@43831 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/installer/install-menu-wizard.pl')
-rw-r--r--Master/tlpkg/installer/install-menu-wizard.pl16
1 files changed, 8 insertions, 8 deletions
diff --git a/Master/tlpkg/installer/install-menu-wizard.pl b/Master/tlpkg/installer/install-menu-wizard.pl
index 29c588e3759..4628536c2a9 100644
--- a/Master/tlpkg/installer/install-menu-wizard.pl
+++ b/Master/tlpkg/installer/install-menu-wizard.pl
@@ -22,10 +22,10 @@ load_translations();
# the values are keys into the %vars array
my @unix_opts = qw/instopt_letter/;
my @w32_opts = qw/instopt_letter
- option_desktop_integration
+ tlpdbopt_desktop_integration
collection-texworks
/;
-my @w32_admin_opts = qw/option_w32_multi_user/;
+my @w32_admin_opts = qw/tlpdbopt_w32_multi_user/;
my @opts_list = ();
if (win32()) {
@@ -37,12 +37,12 @@ if (win32()) {
push @opts_list, @unix_opts;
}
my %opts_to_str = (
- "instopt_letter" => __("Default paper size"),
- "option_desktop_integration" => __("Add menu shortcuts"),
- "option_file_assocs" => __("Change file associations"),
- "instopt_path" => __("Adjust PATH setting in registry"),
- "option_w32_multi_user" => __("Installation for all users"),
- "collection-texworks" => __("Install TeXworks front end"),
+ "instopt_letter" => __("Default paper size"),
+ "tlpdbopt_desktop_integration" => __("Add menu shortcuts"),
+ "tlpdbopt_file_assocs" => __("Change file associations"),
+ "instopt_path" => __("Adjust PATH setting in registry"),
+ "tlpdbopt_w32_multi_user" => __("Installation for all users"),
+ "collection-texworks" => __("Install TeXworks front end"),
);
my %opts_choices = (
"instopt_letter" => ["A4", "letter"],