diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2002-04-08 16:25:07 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2002-04-08 16:25:07 +0000 |
commit | b6ab813177bf359fc0d84c9baa11dcbca769c20f (patch) | |
tree | d6334ede3c8c962db5f9ae546fbcfc76d16d12ac /perl-install/fsedit.pm | |
parent | dcd3c0c8e7a93d2ac26c86fa6427cd8f8ecf7e4f (diff) | |
download | drakx-b6ab813177bf359fc0d84c9baa11dcbca769c20f.tar drakx-b6ab813177bf359fc0d84c9baa11dcbca769c20f.tar.gz drakx-b6ab813177bf359fc0d84c9baa11dcbca769c20f.tar.bz2 drakx-b6ab813177bf359fc0d84c9baa11dcbca769c20f.tar.xz drakx-b6ab813177bf359fc0d84c9baa11dcbca769c20f.zip |
fix a few english strings
Diffstat (limited to 'perl-install/fsedit.pm')
-rw-r--r-- | perl-install/fsedit.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm index d973adeb3..1883e9e88 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -483,7 +483,7 @@ sub check_mntpoint { if ($mntpoint eq '/' || $mntpoint eq '/boot') && isLVM($hd); die _("This directory should remain within the root filesystem") if member($mntpoint, qw(/bin /dev /etc /lib /sbin)); - die _("You need a true filesystem (ext2, reiserfs) for this mount point\n") + die _("You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount point\n") if !isTrueFS($part) && member($mntpoint, qw(/ /home /tmp /usr /var)); die _("You can't use an encrypted file system for mount point %s", $mntpoint) if $part->{options} =~ /encrypted/ && member($mntpoint, qw(/ /usr /var)); @@ -694,7 +694,7 @@ sub verifyHds { my ($hds, $readonly, $ok) = @_; if (is_empty_array_ref($hds)) { #- no way - die _("An error has occurred - no valid devices were found on which to create new filesystems. Please check your hardware for the cause of this problem"); + die _("An error occurred - no valid devices were found on which to create new filesystems. Please check your hardware for the cause of this problem"); } my @parts = readProcPartitions($hds); |