From 30b97df8fc8539d09284b6b4adf3d361893ac7c4 Mon Sep 17 00:00:00 2001 From: kkapsner Date: Sat, 21 Dec 2024 22:20:34 +0100 Subject: [PATCH] Added search specific keywords For #623 --- _locales/en/messages.json | 6 +++++- lib/settingStrings.js | 1 + 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/_locales/en/messages.json b/_locales/en/messages.json index 8b3c0a1..89b3e10 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -1032,7 +1032,11 @@ "description": "" }, "sessionWhiteList_description": { - "message": "Domains or URLs which shall be allowed to use all APIs during the current session. To add multiple entries, separate them by commas.", + "message": "Domains or URLs which shall be allowed to use all APIs during the current session (i.e. temporarily whitelisted). To add multiple entries, separate them by commas.", + "description": "" + }, + "sessionWhiteList_search": { + "message": "temporary", "description": "" }, diff --git a/lib/settingStrings.js b/lib/settingStrings.js index 12f9e05..10ffa2d 100644 --- a/lib/settingStrings.js +++ b/lib/settingStrings.js @@ -22,6 +22,7 @@ messages.push(settingDefinition.name + "_title"); messages.push(settingDefinition.name + "_description"); + messages.push(settingDefinition.name + "_search"); if (settingDefinition.urlSpecific){ messages.push(settingDefinition.name + "_urlSpecific"); }