From 4bcf90c693797985b2f36cd5986d0a821141c756 Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Thu, 31 Jan 2013 09:44:29 -0500 Subject: [PATCH] Fix "Send Anyway" string wrt localizable strings --- UI/WebServerResources/UIxMailEditor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/WebServerResources/UIxMailEditor.js b/UI/WebServerResources/UIxMailEditor.js index b027c98e3..cd9b918c3 100644 --- a/UI/WebServerResources/UIxMailEditor.js +++ b/UI/WebServerResources/UIxMailEditor.js @@ -121,7 +121,7 @@ function onValidate(onSuccess) { showAlertDialog(_("error_missingrecipients")); } else if (document.pageform.subject.value == "") { - showConfirmDialog(_("Warning"), _("error_missingsubject"), onValidateDone.bind(this, onSuccess), null, _("Send anyway"), _("Cancel")); + showConfirmDialog(_("Warning"), _("error_missingsubject"), onValidateDone.bind(this, onSuccess), null, _("Send Anyway"), _("Cancel")); } else { onValidateDone(onSuccess);