summaryrefslogtreecommitdiffstats
path: root/loader/urls.c
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2001-07-12 16:33:35 +0000
committerMike Fulbright <msf@redhat.com>2001-07-12 16:33:35 +0000
commit365ef656b8da771bde7eea733236651db0e5c387 (patch)
treeece736403f351b7514db16e9609d1d640ec5ebd8 /loader/urls.c
parentfe79f2087be9e67f71df55d9fcd6cdfd2861576a (diff)
downloadanaconda-365ef656b8da771bde7eea733236651db0e5c387.tar.gz
anaconda-365ef656b8da771bde7eea733236651db0e5c387.tar.xz
anaconda-365ef656b8da771bde7eea733236651db0e5c387.zip
kill last of OK's in favor of Ok's
Diffstat (limited to 'loader/urls.c')
-rw-r--r--loader/urls.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/loader/urls.c b/loader/urls.c
index 2d0dd8822..2d682cf1e 100644
--- a/loader/urls.c
+++ b/loader/urls.c
@@ -155,7 +155,7 @@ int urlMainSetupPanel(struct iurlinfo * ui, urlprotocol protocol,
else
*doSecondarySetup = ' ';
- buttons = newtButtonBar(_("OK"), &okay, _("Back"), &cancel, NULL);
+ buttons = newtButtonBar(_("Ok"), &okay, _("Back"), &cancel, NULL);
switch (protocol) {
case URL_METHOD_FTP:
@@ -233,12 +233,12 @@ int urlMainSetupPanel(struct iurlinfo * ui, urlprotocol protocol,
answer = newtRunForm(form);
if (answer != cancel) {
if (!strlen(site)) {
- newtWinMessage(_("Error"), _("OK"),
+ newtWinMessage(_("Error"), _("Ok"),
_("You must enter a server name."));
continue;
}
if (!strlen(dir)) {
- newtWinMessage(_("Error"), _("OK"),
+ newtWinMessage(_("Error"), _("Ok"),
_("You must enter a directory."));
continue;
}
@@ -384,7 +384,7 @@ int urlSecondarySetupPanel(struct iurlinfo * ui, urlprotocol protocol) {
0, 0, 0, 0, NEWT_ANCHOR_LEFT, 0);
#endif
- buttons = newtButtonBar(_("OK"), &okay, _("Back"), &cancel, NULL);
+ buttons = newtButtonBar(_("Ok"), &okay, _("Back"), &cancel, NULL);
grid = newtCreateGrid(1, 3);
newtGridSetField(grid, 0, 0, NEWT_GRID_COMPONENT, text, 0, 0, 0, 0, 0, 0);