Console: Spelling fixes all over, from pospelchek

This commit is contained in:
zzz
2021-01-27 11:03:57 -05:00
parent cb22f31d96
commit 1dfdf79d15
8 changed files with 15 additions and 15 deletions

View File

@@ -172,7 +172,7 @@ public class ErrorServlet extends HttpServlet {
*/
protected void outputMessage(PrintWriter out, int errorCode, String errorMsg, String errorURI, Throwable errorCause) {
if (errorCode == 404) {
out.println(_t("Sorry! You appear to be requesting a non-existent Router Console page or resource."));
out.println(_t("Sorry! You appear to be requesting a nonexistent Router Console page or resource."));
out.println("<hr>");
out.println(_t("Error {0}", 404) + ": " + errorURI + "&nbsp;" + _t("not found"));
} else if (errorCode == 403 || errorCode >= 500 || errorCause != null) {