summaryrefslogtreecommitdiff
path: root/Master
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2009-07-05 10:08:18 +0000
committerNorbert Preining <preining@logic.at>2009-07-05 10:08:18 +0000
commit456f97f4b5ae89bfa0792a4407ede43f12fbd739 (patch)
tree75c7281a93e44804e0a2e9b4382e3a944b09b03f /Master
parent407ed8d770a8c8af3483d26fa23359d331390307 (diff)
more work on windows tlmgr gui mode
git-svn-id: svn://tug.org/texlive/trunk@14115 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r--Master/texmf/scripts/texlive/tlmgrgui/gui-config.pl18
-rwxr-xr-xMaster/texmf/scripts/texlive/tlmgrgui/tlmgrgui.pl2
2 files changed, 15 insertions, 5 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgrgui/gui-config.pl b/Master/texmf/scripts/texlive/tlmgrgui/gui-config.pl
index f2166aca24f..e4a4062257b 100644
--- a/Master/texmf/scripts/texlive/tlmgrgui/gui-config.pl
+++ b/Master/texmf/scripts/texlive/tlmgrgui/gui-config.pl
@@ -92,18 +92,26 @@ if (!win32()) {
}
if (win32()) {
- for my $key (qw/desktop_integration w32_multi_user/) {
+ push @config_set_l,
+ $back_config_set->Label(-text => ___("desktop_integration"), -anchor => "w");
+ push @config_set_m,
+ $back_config_set->Label(-textvariable => \$defaults{"desktop_integration"});
+ push @config_set_r,
+ $back_config_set->Button(-text => ___"toggle",
+ -command => sub { toggle_setting("desktop_integration"); });
+
+ if (admin()) {
push @config_set_l,
- $back_config_set->Label(-text => ___($key), -anchor => "w");
+ $back_config_set->Label(-text => ___"w32_multi_user", -anchor => "w");
push @config_set_m,
- $back_config_set->Label(-textvariable => \$defaults{$key});
+ $back_config_set->Label(-textvariable => \$defaults{"w32_multi_user"});
push @config_set_r,
$back_config_set->Button(-text => ___"toggle",
- -command => sub { toggle_setting($key); });
+ -command => sub { toggle_setting("w32_multi_user"); });
}
push @config_set_l,
- $back_config_set->Label(-text => ___"file_assocs", -anchor => "w");
+ $back_config_set->Label(-text => ___"fileassocs", -anchor => "w");
push @config_set_m,
$back_config_set->Label(-textvariable => \$defaults{'file_assocs'});
push @config_set_r,
diff --git a/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui.pl b/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui.pl
index 7cd95bf99c6..cc031b1c224 100755
--- a/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui.pl
+++ b/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui.pl
@@ -121,6 +121,8 @@ $TRANS{'en'} = {
fa_dontchange => "Don't change any file association",
fa_onlynew => "Create only new file associations",
fa_all => 'Create all file associatons',
+ w32_multi_user => 'Install for all users',
+ desktop_integration => 'Create shortcuts in menu and on desktop',
};