summaryrefslogtreecommitdiffstats
path: root/textw/silo_text.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2001-08-10 17:01:00 +0000
committerMike Fulbright <msf@redhat.com>2001-08-10 17:01:00 +0000
commit903ef7d1f301640d3008318cd09a991d3320a1bb (patch)
treef06629b61288a4cadf149d8f573f37c370ab03af /textw/silo_text.py
parenta25cf51c463db012999070c8a56c3a9ae1c1305b (diff)
downloadanaconda-903ef7d1f301640d3008318cd09a991d3320a1bb.tar.gz
anaconda-903ef7d1f301640d3008318cd09a991d3320a1bb.tar.xz
anaconda-903ef7d1f301640d3008318cd09a991d3320a1bb.zip
Change all Ok to OK
Diffstat (limited to 'textw/silo_text.py')
-rw-r--r--textw/silo_text.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/textw/silo_text.py b/textw/silo_text.py
index 3f8c68a92..ec3219c42 100644
--- a/textw/silo_text.py
+++ b/textw/silo_text.py
@@ -144,7 +144,7 @@ class SiloImagesWindow:
device = Label("/dev/" + partition)
newLabel = Entry (20, scroll = 1, returnExit = 1, text = itemLabel)
- buttons = ButtonBar(screen, [_("Ok"), _("Clear"), _("Cancel")])
+ buttons = ButtonBar(screen, [_("OK"), _("Clear"), _("Cancel")])
subgrid = Grid(2, 2)
subgrid.setField(devLabel, 0, 0, anchorLeft = 1)
@@ -157,7 +157,7 @@ class SiloImagesWindow:
g.add(buttons, 0, 1, growx = 1)
result = ""
- while (result != string.lower(_("Ok")) and result != newLabel):
+ while (result != string.lower(_("OK")) and result != newLabel):
result = g.run()
if (buttons.buttonPressed(result)):
result = buttons.buttonPressed(result)