summaryrefslogtreecommitdiff
path: root/Master/texmf/scripts
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2009-09-02 00:13:55 +0000
committerNorbert Preining <preining@logic.at>2009-09-02 00:13:55 +0000
commitb4ea0f27184dcc9e92c0557f30e4fc7720055c25 (patch)
tree3e1e0d267f683c9c4421046170805513a5ce49e2 /Master/texmf/scripts
parent820181a7cd2a9c51ea376f9b5b7940a351106c96 (diff)
update warning message on not-writable in tlmgr gui
git-svn-id: svn://tug.org/texlive/trunk@14989 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf/scripts')
-rwxr-xr-xMaster/texmf/scripts/texlive/tlmgrgui/tlmgrgui.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui.pl b/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui.pl
index 5665a4941c5..d6dd99a018a 100755
--- a/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui.pl
+++ b/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui.pl
@@ -234,7 +234,7 @@ $mw->deiconify;
if (!$::we_can_save) {
my $no_write_warn = $mw->Dialog(-title => "warning",
- -text => __("You don't have permissions to change the installation in any way.\nPlease contact the administrator or call this program as administrator.\n\nMost buttons will be disabled."),
+ -text => __("You don't have permissions to change the installation in any way,\nspecifically the following directory is not writable: ") . "$Master/tlpkg\n" . __("Please run this program as administrator, or contact your local admin.\n\nMost buttons will be disabled."),
-buttons => [ __("Ok") ])->Show();
}