summaryrefslogtreecommitdiffstats
path: root/perl-install/diskdrake
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2003-02-06 11:53:50 +0000
committerPascal Rigaux <pixel@mandriva.com>2003-02-06 11:53:50 +0000
commit9906227898ff5670aa4781bf3ff578fdf3a356c3 (patch)
tree01c59365593652602ac0a95c7117be665fd90d22 /perl-install/diskdrake
parentee32be5541987d476a6e15fe1210e1a29bc76ee8 (diff)
downloaddrakx-9906227898ff5670aa4781bf3ff578fdf3a356c3.tar
drakx-9906227898ff5670aa4781bf3ff578fdf3a356c3.tar.gz
drakx-9906227898ff5670aa4781bf3ff578fdf3a356c3.tar.bz2
drakx-9906227898ff5670aa4781bf3ff578fdf3a356c3.tar.xz
drakx-9906227898ff5670aa4781bf3ff578fdf3a356c3.zip
(filesystems_button_box): in the caption write "Windows" instead of "FAT"
(since NTFS uses the same color)
Diffstat (limited to 'perl-install/diskdrake')
-rw-r--r--perl-install/diskdrake/hd_gtk.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/diskdrake/hd_gtk.pm b/perl-install/diskdrake/hd_gtk.pm
index 53c06f3bd..134d79e0a 100644
--- a/perl-install/diskdrake/hd_gtk.pm
+++ b/perl-install/diskdrake/hd_gtk.pm
@@ -323,9 +323,9 @@ sub hd2kind {
}
sub filesystems_button_box() {
- my @types = (N_("Ext2"), N_("Journalised FS"), N_("Swap"), arch() =~ /sparc/ ? N_("SunOS") : arch() eq "ppc" ? N_("HFS") : N_("FAT"),
+ my @types = (N_("Ext2"), N_("Journalised FS"), N_("Swap"), arch() =~ /sparc/ ? N_("SunOS") : arch() eq "ppc" ? N_("HFS") : N_("Windows"),
N_("Other"), N_("Empty"));
- my %name2type = (Ext2 => 0x83, 'Journalised FS' => 0x483, Swap => 0x82, Other => 1, FAT => 0xb, HFS => 0x402);
+ my %name2type = (Ext2 => 0x83, 'Journalised FS' => 0x483, Swap => 0x82, Other => 1, "Windows" => 0xb, HFS => 0x402);
gtkpack(Gtk2::HBox->new(0,0),
N("Filesystem types:"),