From 903ef7d1f301640d3008318cd09a991d3320a1bb Mon Sep 17 00:00:00 2001 From: Mike Fulbright Date: Fri, 10 Aug 2001 17:01:00 +0000 Subject: Change all Ok to OK --- textw/silo_text.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'textw/silo_text.py') 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) -- cgit