summaryrefslogtreecommitdiffstats
path: root/loader/urls.c
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 /loader/urls.c
parenta25cf51c463db012999070c8a56c3a9ae1c1305b (diff)
downloadanaconda-903ef7d1f301640d3008318cd09a991d3320a1bb.tar.gz
anaconda-903ef7d1f301640d3008318cd09a991d3320a1bb.tar.xz
anaconda-903ef7d1f301640d3008318cd09a991d3320a1bb.zip
Change all Ok to OK
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 3292ab747..85af79779 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);