diff --git a/.eslintrc.js b/.eslintrc.js index e5dd5e85d..4ce192bbb 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -49,7 +49,7 @@ module.exports = { quotes: [ 'error', 'single', - { avoidEscape: true, allowTemplateLiterals: false }, + { avoidEscape: true, allowTemplateLiterals: true }, ], // Prettier overrides: diff --git a/_locales/en/messages.json b/_locales/en/messages.json index c5f8f5691..5713c7609 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -965,10 +965,18 @@ "message": "Are you sure? Clicking 'delete' will permanently remove this message for everyone in this channel." }, + "deleteMultiplePublicWarning": { + "message": + "Are you sure? Clicking 'delete' will permanently remove these messages for everyone in this channel." + }, "deleteWarning": { "message": "Are you sure? Clicking 'delete' will permanently remove this message from this device only." }, + "deleteMultipleWarning": { + "message": + "Are you sure? Clicking 'delete' will permanently remove these messages from this device only." + }, "deleteThisMessage": { "message": "Delete this message" }, @@ -1974,6 +1982,10 @@ "description": "Button action that the user can click to copy their public keys" }, + "selectMessage": { + "message": "Select message", + "description": "Button action that the user can click to select the message" + }, "copiedMessage": { "message": "Copied message text", "description": diff --git a/background.html b/background.html index 045c758b0..ffcecdfec 100644 --- a/background.html +++ b/background.html @@ -127,6 +127,7 @@