summaryrefslogtreecommitdiffstats
path: root/partIntfHelpers.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-02-26 21:51:12 +0000
committerJeremy Katz <katzj@redhat.com>2003-02-26 21:51:12 +0000
commitf24d51810f50fc95d1e4556ca36199dae4435647 (patch)
tree2042ecd419a8f19b53bbc7809bd9774614bb6cbf /partIntfHelpers.py
parent162a2885ce0ceb1314fdf8746e31c95dcfeb9686 (diff)
downloadanaconda-f24d51810f50fc95d1e4556ca36199dae4435647.tar.gz
anaconda-f24d51810f50fc95d1e4556ca36199dae4435647.tar.xz
anaconda-f24d51810f50fc95d1e4556ca36199dae4435647.zip
have to do the substitution after the translation, not before (#85238)
Diffstat (limited to 'partIntfHelpers.py')
-rw-r--r--partIntfHelpers.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/partIntfHelpers.py b/partIntfHelpers.py
index 823a370d0..e088ef98b 100644
--- a/partIntfHelpers.py
+++ b/partIntfHelpers.py
@@ -511,15 +511,15 @@ def confirmDeleteRequest(intf, request):
if request.type == REQUEST_VG:
errmsg = _("You are about to delete the volume group \"%s\"."
"\n\nALL logical volumes in this volume group "
- "will be lost!" % (request.volumeGroupName,))
+ "will be lost!") % (request.volumeGroupName,)
elif request.type == REQUEST_LV:
- errmsg = _("You are about to delete the logical volume \"%s\"."
- % (request.logicalVolumeName,))
+ errmsg = _("You are about to delete the logical volume \"%s\".")
+ % (request.logicalVolumeName,)
elif request.type == REQUEST_RAID:
errmsg = _("You are about to delete a RAID device.")
else:
if request.device:
- errmsg = _("You are about to delete the /dev/%s partition." % (request.device,))
+ errmsg = _("You are about to delete the /dev/%s partition.") % (request.device,)
else:
# XXX can this ever happen?
errmsg = _("The partition you selected will be deleted.")