diff options
author | Mike Fulbright <msf@redhat.com> | 2002-07-12 02:01:36 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2002-07-12 02:01:36 +0000 |
commit | 0861c76f6d81f5c623eb1accb1a27ea0bf9fcc2e (patch) | |
tree | e8e7bceba0cc8e07e8ce98bb5c2bdbbcd4888267 /fsset.py | |
parent | 3fa09b6811591026daa27fd67bdc75494558ce25 (diff) | |
download | anaconda-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.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |