summaryrefslogtreecommitdiffstats
path: root/iutil.py
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2009-10-01 10:20:30 -1000
committerDavid Cantrell <dcantrell@redhat.com>2009-10-01 10:20:30 -1000
commit576d6d67ded60eac2133f324c20d3484904ea475 (patch)
tree278161e765bfd939d2fb113aae9e7bf6f1fed06a /iutil.py
parent89f97834a415fa9aafa0824e7603fe8091058efb (diff)
downloadanaconda-576d6d67ded60eac2133f324c20d3484904ea475.tar.gz
anaconda-576d6d67ded60eac2133f324c20d3484904ea475.tar.xz
anaconda-576d6d67ded60eac2133f324c20d3484904ea475.zip
Use named parameters for translatable strings with multiple params.
This is a cleanup for the po files. xgettext displays the following messages for some Python files: warning: 'msgid' format string with unnamed arguments cannot be properly localized: The translator cannot reorder the arguments. Please consider using a format string with named arguments, and a mapping instead of a tuple for the arguments. This patch modifies the reported format strings to use named parameters per the warning message. We were already using these style format strings in users.py and possibly other files. Basically when there is more than one parameter in the format string, we should use a hash table with named parameters.
Diffstat (limited to 'iutil.py')
-rw-r--r--iutil.py28
1 files changed, 21 insertions, 7 deletions
diff --git a/iutil.py b/iutil.py
index 34220098b..5316dceb0 100644
--- a/iutil.py
+++ b/iutil.py
@@ -828,7 +828,10 @@ def writeReiplMethod(reipl_path, reipl_type):
try:
f = open(filename, "w")
except Exception, e:
- message = _("Error: On open, cannot set reIPL method to %s (%s: %s)" % (reipl_type,filename,e,))
+ message = _("Error: On open, cannot set reIPL method to %(reipl_type)s "
+ "(%(filename)s: %(e)s)" % {'reipl_type': reipl_type,
+ 'filename': filename,
+ 'e': e})
log.warning(message)
raise Exception (message)
@@ -836,14 +839,18 @@ def writeReiplMethod(reipl_path, reipl_type):
f.write(reipl_type)
f.flush()
except Exception, e:
- message = _("Error: On write, cannot set reIPL method to %s (%s: %s)" % (reipl_type,filename,e,))
+ message = _("Error: On write, cannot set reIPL method to "
+ "%(reipl_type)s (%(filename)s: %(e)s)" \
+ % {'reipl_type': reipl_type, 'filename': filename, 'e': e})
log.warning(message)
raise Exception (message)
try:
f.close()
except Exception, e:
- message = _("Error: On close, cannot set reIPL method to %s (%s: %s)" % (reipl_type,filename,e,))
+ message = _("Error: On close, cannot set reIPL method to "
+ "%(reipl_type)s (%(filename)s: %(e)s)" \
+ % {'reipl_type': reipl_type, 'filename': filename, 'e': e})
log.warning(message)
raise Exception (message)
@@ -860,7 +867,8 @@ def reIPLonCCW(iplsubdev, reipl_path):
f.write(device)
f.close()
except Exception, e:
- message = _("Error: Could not set %s as reIPL device (%s)" % (device,e,))
+ message = _("Error: Could not set %(device)s as reIPL device "
+ "(%(e)s)" % {'device': device, 'e': e})
log.warning(message)
raise Exception (message)
@@ -910,7 +918,9 @@ def reIPLonFCP(iplsubdev, reipl_path):
fcpvalue[reipl_property] = value
f.close()
except Exception, e:
- message = _("Error: reading FCP property %s for reIPL (%s)" % (syspath_property,e,))
+ message = _("Error: reading FCP property %(syspath_property)s "
+ "for reIPL (%(e)s)" \
+ % {'syspath_property': syspath_property, 'e': e})
log.warning(message)
raise Exception (message)
@@ -923,7 +933,9 @@ def reIPLonFCP(iplsubdev, reipl_path):
f.write(fcpvalue[reipl_property])
f.close()
except Exception, e:
- message = _("Error: writing FCP property %s for reIPL (%s)" % (reipl_property,e,))
+ message = _("Error: writing FCP property %(reipl_property)s "
+ "for reIPL (%(e)s)" \
+ % {'reipl_property': reipl_property, 'e': e})
log.warning(message)
raise Exception (message)
@@ -936,7 +948,9 @@ def reIPLonFCP(iplsubdev, reipl_path):
f.write (default_value)
f.close()
except Exception, e:
- message = _("Error: writing default FCP property %s for reIPL (%s)" % (reipl_property,e,))
+ message = _("Error: writing default FCP property "
+ "%(reipl_property)s for reIPL (%(e)s)" \
+ % {'reipl_property': reipl_property, 'e': e})
log.warning(message)
raise Exception (message)