diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 1998-12-24 11:32:00 -0500 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 1998-12-24 11:32:00 -0500 |
commit | 152e034b54f203f5b53ef44a70c57834b7b66137 (patch) | |
tree | 8f16b876c14eb3c3a1400fd4f91948baa752efd7 /WWW/Library/Implementation/HTNews.c | |
parent | 10f6c5df5fbd3e8a2be8a0640035680235b3f8a3 (diff) | |
download | lynx-snapshots-152e034b54f203f5b53ef44a70c57834b7b66137.tar.gz |
snapshot of project "lynx", label v2-8-2dev_11
Diffstat (limited to 'WWW/Library/Implementation/HTNews.c')
-rw-r--r-- | WWW/Library/Implementation/HTNews.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/WWW/Library/Implementation/HTNews.c b/WWW/Library/Implementation/HTNews.c index 966dcdf6..f0490e2c 100644 --- a/WWW/Library/Implementation/HTNews.c +++ b/WWW/Library/Implementation/HTNews.c @@ -360,7 +360,7 @@ PRIVATE NNTPAuthResult HTHandleAuthInfo ARGS1( if (status == HT_INTERRUPTED) _HTProgress(CONNECTION_INTERRUPTED); else - HTAlert(gettext("Connection closed ???")); + HTAlert(FAILED_CONNECTION_CLOSED); if (auth) { if (auth->user != UserName) { FREE(auth->user); @@ -444,7 +444,7 @@ PRIVATE NNTPAuthResult HTHandleAuthInfo ARGS1( if (status == HT_INTERRUPTED) { _HTProgress(CONNECTION_INTERRUPTED); } else { - HTAlert(gettext("Connection closed ???")); + HTAlert(FAILED_CONNECTION_CLOSED); } if (auth) { if (auth->user != UserName) { @@ -823,7 +823,7 @@ PRIVATE void post_article ARGS1( ** nntp headers and message body. - FM */ if ((fd = fopen((postfile ? postfile : ""), "r")) == NULL) { - HTAlert(gettext("Cannot open temporary file for news POST.")); + HTAlert(FAILED_CANNOT_OPEN_POST); return; } @@ -2026,7 +2026,7 @@ PRIVATE int HTLoadNews ARGS4( if (!strncasecomp(arg, "snewspost:", 10) || !strncasecomp(arg, "snewsreply:", 11)) { - HTAlert(gettext("This client does not contain support for posting to news with SSL.")); + HTAlert(FAILED_CANNOT_POST_SSL); return HT_NOT_LOADED; } if (post_wanted || reply_wanted || spost_wanted || sreply_wanted) { |