summaryrefslogtreecommitdiffstats
path: root/textw
diff options
context:
space:
mode:
Diffstat (limited to 'textw')
-rw-r--r--textw/fdisk_text.py2
-rw-r--r--textw/packages_text.py2
-rw-r--r--textw/partition_text.py2
-rw-r--r--textw/silo_text.py4
4 files changed, 5 insertions, 5 deletions
diff --git a/textw/fdisk_text.py b/textw/fdisk_text.py
index 69f9c13ee..1b0cc4ee0 100644
--- a/textw/fdisk_text.py
+++ b/textw/fdisk_text.py
@@ -38,7 +38,7 @@ class fdiskPartitionWindow:
(button, choice) = \
ListboxChoiceWindow(screen, _("Disk Setup"),
_("Choose a disk to run fdisk on"), choices,
- [ (_("Ok"), "done"), (_("Edit"), "edit"),
+ [ (_("OK"), "done"), (_("Edit"), "edit"),
TEXT_BACK_BUTTON ], width = 50, help = "fdisk")
if button != "done" and button != TEXT_BACK_CHECK:
diff --git a/textw/packages_text.py b/textw/packages_text.py
index 4e5e31986..7d92dd24a 100644
--- a/textw/packages_text.py
+++ b/textw/packages_text.py
@@ -295,7 +295,7 @@ class PackageDepWindow:
g.add (TextboxReflowed (50, _("Some of the packages you have "
"selected to install require "
"packages you have not selected. If "
- "you just select Ok all of those "
+ "you just select OK all of those "
"required packages will be "
"installed.")), 0, 0, (0, 0, 0, 1))
g.add (Label ("%-20s %-20s" % (_("Package"), _("Requirement"))), 0, 1, anchorLeft = 1)
diff --git a/textw/partition_text.py b/textw/partition_text.py
index 4d954cf18..8262e3e15 100644
--- a/textw/partition_text.py
+++ b/textw/partition_text.py
@@ -976,7 +976,7 @@ class PartitionWindow:
self.bb = ButtonBar (screen, ((_("New"), "new", "F2"), (_("Edit"), "edit", "F3"), (_("Delete"), "delete", "F4"), (_("RAID"), "raid", "F11"), TEXT_OK_BUTTON, TEXT_BACK_BUTTON))
self.g.add(self.bb, 0, 2, (0, 1, 0, 0))
self.g.addHotKey("F5")
- screen.pushHelpLine( _(" F1-Help F2-New F3-Edit F4-Delete F5-Reset F12-Ok "))
+ screen.pushHelpLine( _(" F1-Help F2-New F3-Edit F4-Delete F5-Reset F12-OK "))
self.populate()
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)