summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2006-08-14 17:14:45 +0000
committerChris Lumens <clumens@redhat.com>2006-08-14 17:14:45 +0000
commit28dc144e1aa497f2b56253695ce2393928155243 (patch)
tree03f49c8786e4c5033b9d5d7d94265e442d40c232
parentee295efd948b896ab041dfbabccd0ccf533264a2 (diff)
downloadanaconda-28dc144e1aa497f2b56253695ce2393928155243.tar.gz
anaconda-28dc144e1aa497f2b56253695ce2393928155243.tar.xz
anaconda-28dc144e1aa497f2b56253695ce2393928155243.zip
Mark strings for translation (#199022).
-rw-r--r--ChangeLog2
-rw-r--r--iw/partition_gui.py4
2 files changed, 4 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index ddf3b4346..7f8303805 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,8 @@
* anaconda: virtpconsole is a value, not a boolean (#202450).
+ * iw/partition_gui.py: Mark strings for translation (#199022).
+
2006-08-11 David Cantrell <dcantrell@redhat.com>
* network.py (Network.lookupHostname): Use socket.getaddrinfo() so
diff --git a/iw/partition_gui.py b/iw/partition_gui.py
index ff9cd500f..5c83281f0 100644
--- a/iw/partition_gui.py
+++ b/iw/partition_gui.py
@@ -311,14 +311,14 @@ class DiskStripeGraph:
size_points=9)
show_geometry = 0
if show_geometry:
- drivetext = ("Drive %s (Geom: %s/%s/%s) "
+ drivetext = _("Drive %s (Geom: %s/%s/%s) "
"(Model: %s)") % ('/dev/' + drive,
disk.dev.cylinders,
disk.dev.heads,
disk.dev.sectors,
disk.dev.model)
else:
- drivetext = ("Drive %s (%-0.f MB) "
+ drivetext = _("Drive %s (%-0.f MB) "
"(Model: %s)") % ('/dev/' + drive,
partedUtils.getDeviceSizeMB(disk.dev),
disk.dev.model)