summaryrefslogtreecommitdiffstats
path: root/upgrade.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 /upgrade.py
parent3fa09b6811591026daa27fd67bdc75494558ce25 (diff)
downloadanaconda-0861c76f6d81f5c623eb1accb1a27ea0bf9fcc2e.tar.gz
anaconda-0861c76f6d81f5c623eb1accb1a27ea0bf9fcc2e.tar.xz
anaconda-0861c76f6d81f5c623eb1accb1a27ea0bf9fcc2e.zip
Changes as per Milan Documentation String Review
Diffstat (limited to 'upgrade.py')
-rw-r--r--upgrade.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/upgrade.py b/upgrade.py
index b3b8ff9b2..7e978ca1a 100644
--- a/upgrade.py
+++ b/upgrade.py
@@ -85,16 +85,16 @@ def mountRootPartition(intf, rootInfo, oldfsset, instPath, allowDirty = 0,
import sys
diskset.stopAllRaid()
lvm.vgdeactivate()
- intf.messageWindow(_("Dirty Filesystems"),
- _("The following filesystems for your Linux system "
+ intf.messageWindow(_("Dirty File Systems"),
+ _("The following file systems for your Linux system "
"were not unmounted cleanly. Please boot your "
- "Linux installation, let the filesystems be "
+ "Linux installation, let the file systems be "
"checked and shut down cleanly to upgrade.\n"
"%s" %(getDirtyDevString(dirtyDevs),)))
sys.exit(0)
elif warnDirty and dirtyDevs != []:
- rc = intf.messageWindow(_("Dirty Filesystems"),
- _("The following filesystems for your Linux "
+ rc = intf.messageWindow(_("Dirty File Systems"),
+ _("The following file systems for your Linux "
"system were not unmounted cleanly. Would "
"you like to mount them anyway?\n"
"%s" % (getDirtyDevString(dirtyDevs,))),
@@ -224,13 +224,13 @@ def upgradeMountFilesystems(intf, rootInfo, oldfsset, instPath):
allowDirty = 0)
except SystemError, msg:
intf.messageWindow(_("Mount failed"),
- _("One or more of the filesystems listed in the "
+ _("One or more of the file systems listed in the "
"/etc/fstab on your Linux system cannot be mounted. "
"Please fix this problem and try to upgrade again."))
sys.exit(0)
except RuntimeError, msg:
intf.messageWindow(_("Mount failed"),
- _("One or more of the filesystems listed in the "
+ _("One or more of the file systems listed in the "
"/etc/fstab of your Linux system are inconsistent and "
"cannot be mounted. Please fix this problem and try to "
"upgrade again."))