From: Art Cancro Date: Sun, 24 Sep 2023 21:07:18 +0000 (-0400) Subject: Improving my template-literal-fu X-Git-Tag: v995~10 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=eaeab4b14d3a9ef4e16864b9b021648db0eeec50;p=citadel.git Improving my template-literal-fu --- diff --git a/webcit-ng/static/js/view_mail.js b/webcit-ng/static/js/view_mail.js index 28e870872..4553b8bff 100644 --- a/webcit-ng/static/js/view_mail.js +++ b/webcit-ng/static/js/view_mail.js @@ -511,11 +511,11 @@ function mail_compose(is_quoted, references, quoted_msgnum, m_to, m_cc, m_subjec compose_screen += `
- ` + _("Send message") + ` - ` + _("Save to Drafts") + ` - ` + _("Attachments:") + `` + num_attachments + ` - ` + _("Contacts") + ` - ` + _("Cancel") + ` + ${_("Send message")} + ${_("Save to Drafts")} + ${_("Attachments:")} ${num_attachments} + ${_("Contacts")} + ${_("Cancel")}
` ;