diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-11-10 21:35:07 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-11-10 21:35:07 +0000 |
commit | 675c027011966589f8fb3e812070c5536fd57350 (patch) | |
tree | 2f90441b65886e5b42572fe74d8288cec79fd711 /iw/network_gui.py | |
parent | f12110f2df22dc9e7a4d4178dc13250852714545 (diff) | |
download | anaconda-675c027011966589f8fb3e812070c5536fd57350.tar.gz anaconda-675c027011966589f8fb3e812070c5536fd57350.tar.xz anaconda-675c027011966589f8fb3e812070c5536fd57350.zip |
fix translation (#109559)
Diffstat (limited to 'iw/network_gui.py')
-rw-r--r-- | iw/network_gui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/network_gui.py b/iw/network_gui.py index ed3b454c4..32970fa19 100644 --- a/iw/network_gui.py +++ b/iw/network_gui.py @@ -253,7 +253,7 @@ class NetworkWindow(InstallWindow): devbox.pack_start(ipTable, gtk.FALSE, gtk.FALSE, 6) devbox.set_border_width(6) - framelab = _("Configure %s" % (dev,)) + framelab = _("Configure %s") % (dev,) descr = self.devices[dev].get("desc") if descr is not None and len(descr) > 0: framelab += " - " + descr[:70] |