summaryrefslogtreecommitdiff
path: root/Master/tlpkg/installer/install-menu-wizard.pl
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/installer/install-menu-wizard.pl')
-rw-r--r--Master/tlpkg/installer/install-menu-wizard.pl8
1 files changed, 4 insertions, 4 deletions
diff --git a/Master/tlpkg/installer/install-menu-wizard.pl b/Master/tlpkg/installer/install-menu-wizard.pl
index 7f92dd35d6c..6fee6de1954 100644
--- a/Master/tlpkg/installer/install-menu-wizard.pl
+++ b/Master/tlpkg/installer/install-menu-wizard.pl
@@ -20,8 +20,8 @@ load_translations();
# for unix and windows. On W32 with admin privileges both @w32 list options
# are shown
# the values are keys into the %vars array
-my @unix_opts = qw/option_letter/;
-my @w32_opts = qw/option_letter
+my @unix_opts = qw/instopt_letter/;
+my @w32_opts = qw/instopt_letter
option_desktop_integration
collection-texworks
/;
@@ -37,7 +37,7 @@ if (win32()) {
push @opts_list, @unix_opts;
}
my %opts_to_str = (
- "option_letter" => __("Default paper size"),
+ "instopt_letter" => __("Default paper size"),
"option_desktop_integration" => __("Add menu shortcuts"),
"option_file_assocs" => __("Change file associations"),
"option_path" => __("Adjust PATH setting in registry"),
@@ -45,7 +45,7 @@ my %opts_to_str = (
"collection-texworks" => __("Install TeXworks front end"),
);
my %opts_choices = (
- "option_letter" => ["A4", "letter"],
+ "instopt_letter" => ["A4", "letter"],
);