summaryrefslogtreecommitdiffstats
path: root/autopart.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2001-08-08 18:44:21 +0000
committerMike Fulbright <msf@redhat.com>2001-08-08 18:44:21 +0000
commit50a361911856b89273c69e6f2359db7264e5408c (patch)
treedfa07b2309ed7af7eda0e1f62dafc1c739bcca96 /autopart.py
parente2b6e86f88602e74026493f03c811662ae73f747 (diff)
downloadanaconda-50a361911856b89273c69e6f2359db7264e5408c.tar.gz
anaconda-50a361911856b89273c69e6f2359db7264e5408c.tar.xz
anaconda-50a361911856b89273c69e6f2359db7264e5408c.zip
i18n fixes
Diffstat (limited to 'autopart.py')
-rw-r--r--autopart.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/autopart.py b/autopart.py
index b424b9735..a3cc77b69 100644
--- a/autopart.py
+++ b/autopart.py
@@ -672,16 +672,16 @@ def processPartitioning(diskset, requests, newParts):
# run through with primary only constraints first
ret = fitConstrained(diskset, requests, 1, newParts)
if ret == PARTITION_FAIL:
- return (ret, "Could not allocate cylinder-based partitions as primary partitions")
+ return (ret, _("Could not allocate cylinder-based partitions as primary partitions"))
ret = fitSized(diskset, requests, 1, newParts)
if ret == PARTITION_FAIL:
- return (ret, "Could not allocate partitions as primary partitions")
+ return (ret, _("Could not allocate partitions as primary partitions"))
ret = fitConstrained(diskset, requests, 0, newParts)
if ret == PARTITION_FAIL:
- return (ret, "Could not allocate cylinder-based partitions")
+ return (ret, _("Could not allocate cylinder-based partitions"))
ret = fitSized(diskset, requests, 0, newParts)
if ret == PARTITION_FAIL:
- return (ret, "Could not allocate partitions")
+ return (ret, _("Could not allocate partitions"))
for request in requests.requests:
# set the unique identifier for raid devices
if request.type == REQUEST_RAID and not request.device: