From f24d51810f50fc95d1e4556ca36199dae4435647 Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Wed, 26 Feb 2003 21:51:12 +0000 Subject: have to do the substitution after the translation, not before (#85238) --- partIntfHelpers.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'partIntfHelpers.py') 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.") -- cgit