diff --git a/application/Espo/Resources/i18n/en_US/Global.json b/application/Espo/Resources/i18n/en_US/Global.json index 796f3409c3..39173ad818 100644 --- a/application/Espo/Resources/i18n/en_US/Global.json +++ b/application/Espo/Resources/i18n/en_US/Global.json @@ -210,7 +210,8 @@ "streamPostInfo": "Type @username to mention users in the post.\n\nAvailable markdown syntax:\n`code`\n**strong text**\n*emphasized text*\n~deleted text~\n> blockquote\n(url)[link]", "writeYourCommentHere": "Write your comment here", "writeMessageToUser": "Write a message to {user}", - "writeMessageToSelf": "Write a message to self" + "writeMessageToSelf": "Write a message to self", + "typeAndPressEnter": "Type & press enter" }, "boolFilters": { "onlyMy": "Only My", diff --git a/frontend/client/res/templates/fields/array/edit.tpl b/frontend/client/res/templates/fields/array/edit.tpl index 39b393e1c5..97b1f168dd 100644 --- a/frontend/client/res/templates/fields/array/edit.tpl +++ b/frontend/client/res/templates/fields/array/edit.tpl @@ -6,5 +6,5 @@ {{#if hasOptions}} {{else}} - + {{/if}} diff --git a/frontend/client/src/views/modals/compose-email.js b/frontend/client/src/views/modals/compose-email.js index 082564272c..3a9fc4d6e6 100644 --- a/frontend/client/src/views/modals/compose-email.js +++ b/frontend/client/src/views/modals/compose-email.js @@ -47,12 +47,12 @@ Espo.define('views/modals/compose-email', 'views/modals/edit', function (Dep) { this.buttonList.unshift({ name: 'saveDraft', - text: this.translate('Save Draft'), + text: this.translate('Save Draft', 'labels', 'Email'), }); this.buttonList.unshift({ name: 'send', - text: this.getLanguage().translate('Send'), + text: this.translate('Send', 'labels', 'Email'), style: 'primary' });