summaryrefslogtreecommitdiffstats
path: root/fsset.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2002-07-12 02:01:36 +0000
committerMike Fulbright <msf@redhat.com>2002-07-12 02:01:36 +0000
commit0861c76f6d81f5c623eb1accb1a27ea0bf9fcc2e (patch)
treee8e7bceba0cc8e07e8ce98bb5c2bdbbcd4888267 /fsset.py
parent3fa09b6811591026daa27fd67bdc75494558ce25 (diff)
downloadanaconda-0861c76f6d81f5c623eb1accb1a27ea0bf9fcc2e.tar.gz
anaconda-0861c76f6d81f5c623eb1accb1a27ea0bf9fcc2e.tar.xz
anaconda-0861c76f6d81f5c623eb1accb1a27ea0bf9fcc2e.zip
Changes as per Milan Documentation String Review
Diffstat (limited to 'fsset.py')
-rw-r--r--fsset.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/fsset.py b/fsset.py
index bcc96b7d0..a69b5d2e4 100644
--- a/fsset.py
+++ b/fsset.py
@@ -554,7 +554,7 @@ class ext2FileSystem(extFileSystem):
rc = message(_("Error"),
_("An error occurred migrating %s to ext3. It is "
"possible to continue without migrating this "
- "filesystem if desired.\n\n"
+ "file system if desired.\n\n"
"Would you like to continue without migrating %s?")
% (devicePath, devicePath), type = "yesno")
if rc == 0:
@@ -1846,7 +1846,7 @@ def readFstab (path):
device = makeDevice(labelToDevice[label])
else:
log ("Warning: fstab file has LABEL=%s, but this label "
- "could not be found on any filesystem", label)
+ "could not be found on any file system", label)
# bad luck, skip this entry.
continue
elif fields[2] == "swap" and not fields[0].startswith('/dev/'):
@@ -1963,7 +1963,7 @@ def allocateLoopback(file):
def ext2FormatFilesystem(argList, messageFile, windowCreator, mntpoint):
if windowCreator:
w = windowCreator(_("Formatting"),
- _("Formatting %s filesystem...") % (mntpoint,), 100)
+ _("Formatting %s file system...") % (mntpoint,), 100)
else:
w = None