diff options
author | Thierry Vignaud <tv@mandriva.org> | 2007-11-05 13:34:53 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2007-11-05 13:34:53 +0000 |
commit | b39db48fc310f862cbc5a591fa83253a8e72738c (patch) | |
tree | 842c90c75b354714520c831fa481712af91e1441 | |
parent | 078790c0fc67d9d0dc029f9144ecb717d58e70c0 (diff) | |
download | drakx-b39db48fc310f862cbc5a591fa83253a8e72738c.tar drakx-b39db48fc310f862cbc5a591fa83253a8e72738c.tar.gz drakx-b39db48fc310f862cbc5a591fa83253a8e72738c.tar.bz2 drakx-b39db48fc310f862cbc5a591fa83253a8e72738c.tar.xz drakx-b39db48fc310f862cbc5a591fa83253a8e72738c.zip |
(createOrChangeType) this action is only availlable in expert mode thus adding an hint
-rw-r--r-- | perl-install/diskdrake/hd_gtk.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/diskdrake/hd_gtk.pm b/perl-install/diskdrake/hd_gtk.pm index 38f9f01c6..b05731967 100644 --- a/perl-install/diskdrake/hd_gtk.pm +++ b/perl-install/diskdrake/hd_gtk.pm @@ -389,7 +389,7 @@ sub createOrChangeType { diskdrake::interactive::Create($in, $hd, $part, $all_hds); } else { return if $fs_type eq $part->{fs_type}; - $in->ask_warn('', isBusy($part) ? N("Use ``Unmount'' first") : N("Use ``%s'' instead", N("Type"))); + $in->ask_warn('', isBusy($part) ? N("Use ``Unmount'' first") : N("Use ``%s'' instead (in expert mode)", N("Type"))); } } |