diff options
author | Pablo Saratxaga <pablo@mandriva.com> | 1999-08-28 23:17:47 +0000 |
---|---|---|
committer | Pablo Saratxaga <pablo@mandriva.com> | 1999-08-28 23:17:47 +0000 |
commit | b3ffb3107e701cec95b5eca11f18bea3291f626f (patch) | |
tree | 05b9b49968d17ee81a0e01922bdb30d0a5e964e2 /perl-install/install2.pm | |
parent | 10eb8eaf9bc1aefd90eef0330fc1aed7751427b7 (diff) | |
download | drakx-b3ffb3107e701cec95b5eca11f18bea3291f626f.tar drakx-b3ffb3107e701cec95b5eca11f18bea3291f626f.tar.gz drakx-b3ffb3107e701cec95b5eca11f18bea3291f626f.tar.bz2 drakx-b3ffb3107e701cec95b5eca11f18bea3291f626f.tar.xz drakx-b3ffb3107e701cec95b5eca11f18bea3291f626f.zip |
various english spelling errors corrected (ispell panoramix.pot :) )
Diffstat (limited to 'perl-install/install2.pm')
-rw-r--r-- | perl-install/install2.pm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index dbe71e300..35b6c52fe 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -59,7 +59,7 @@ panel\", \"System\", \"Peripheral manager\"."), partitionDisks => __("At this point, hard drive partitions must be defined. (Unless you are overwriting a previous install of Linux and have already defined -your hard drives partions as desired.) This operation consists of +your hard drives partitions as desired.) This operation consists of logically dividing the computer's hard drive capacity into separate areas for use. Two common partition are: \"root\" which is the point at which the filesystem's directory structure starts, and \"boot\", which @@ -87,7 +87,7 @@ without installing all of its dependencies. Information on each category and specific package is available in the area titled \"Info\". This is located above the buttons: [confirmation] -[selection] [deselection]."), +[selection] [unselection]."), doInstallStep => __("The packages selected are now being installed. This operation @@ -212,7 +212,7 @@ my $default = { autoSCSI => 0, mkbootdisk => "fd0", # no mkbootdisk if 0 or undef, find a floppy with 1 packages => [ qw() ], - partitionning => { clearall => $::testing, eraseBadPartitions => 0, auto_allocate => 0, autoformat => 0 }, + partitioning => { clearall => $::testing, eraseBadPartitions => 0, auto_allocate => 0, autoformat => 0 }, partitions => [ { mntpoint => "/boot", size => 16 << 11, type => 0x83 }, { mntpoint => "/", size => 300 << 11, type => 0x83 }, @@ -269,7 +269,7 @@ sub setupSCSI { sub partitionDisks { $o->{drives} = [ detect_devices::hds() ]; - $o->{hds} = fsedit::hds($o->{drives}, $o->{default}{partitionning}); + $o->{hds} = fsedit::hds($o->{drives}, $o->{default}{partitioning}); unless (@{$o->{hds}} > 0) { $o->setupSCSI if $o->{autoSCSI}; # ask for an unautodetected scsi card } @@ -278,7 +278,7 @@ sub partitionDisks { } unless ($o->{isUpgrade}) { - eval { fsedit::auto_allocate($o->{hds}, $o->{partitions}) } if $o->{default}{partitionning}{auto_allocate}; + eval { fsedit::auto_allocate($o->{hds}, $o->{partitions}) } if $o->{default}{partitioning}{auto_allocate}; $o->doPartitionDisks($o->{hds}); unless ($::testing) { @@ -289,7 +289,7 @@ sub partitionDisks { $o->{fstab} = [ fsedit::get_fstab(@{$o->{hds}}) ]; my $root_fs; map { $_->{mntpoint} eq '/' and $root_fs = $_ } @{$o->{fstab}}; - $root_fs or die _("partitionning failed: no root filesystem"); + $root_fs or die _("partitioning failed: no root filesystem"); } |