diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-01-30 22:54:49 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-01-30 22:54:49 +0000 |
commit | 4f85b0d92b9246709a53a85b45b15f73c7d97086 (patch) | |
tree | 0f62ec68e69cd1619f59fe77a5b572cd3805e7ec /perl-install/diskdrake/hd_gtk.pm | |
parent | c9ae469b014987aab6c76225859028ecffb77659 (diff) | |
download | drakx-4f85b0d92b9246709a53a85b45b15f73c7d97086.tar drakx-4f85b0d92b9246709a53a85b45b15f73c7d97086.tar.gz drakx-4f85b0d92b9246709a53a85b45b15f73c7d97086.tar.bz2 drakx-4f85b0d92b9246709a53a85b45b15f73c7d97086.tar.xz drakx-4f85b0d92b9246709a53a85b45b15f73c7d97086.zip |
add isFat_or_NTFS() and use it where possible instead of isFat() since Windows
is now using ntfs, not only Windows NT
Diffstat (limited to 'perl-install/diskdrake/hd_gtk.pm')
-rw-r--r-- | perl-install/diskdrake/hd_gtk.pm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/perl-install/diskdrake/hd_gtk.pm b/perl-install/diskdrake/hd_gtk.pm index 593a12831..156f32404 100644 --- a/perl-install/diskdrake/hd_gtk.pm +++ b/perl-install/diskdrake/hd_gtk.pm @@ -190,9 +190,8 @@ sub per_entry_action_box { gtkadd($box, gtkadd(Gtk2::Frame->new(N("Choose action")), create_scrolled_window(gtkpack__(Gtk2::VBox->new(0,0), @buttons)))) if @buttons; } else { - my $txt = !$::isStandalone && fsedit::is_one_big_fat($all_hds->{hds}) ? -N("You have one big FAT partition -(generally used by MicroSoft Dos/Windows). + my $txt = !$::isStandalone && fsedit::is_one_big_fat_or_NT($all_hds->{hds}) ? +N("You have one big MicroSoft Windows partition. I suggest you first resize that partition (click on it, then click on \"Resize\")") : N("Please click on a partition"); gtkpack($box, gtktext_insert(Gtk2::TextView->new, $txt)); |