From d3887d5f471ed79ff0ecb7493d189e6a9cb1f4c7 Mon Sep 17 00:00:00 2001 From: Anna No Date: Thu, 12 May 2022 14:54:42 +0700 Subject: [PATCH] Board: fix copy from message Signed-off-by: Anna No --- plugins/board-assets/lang/en.json | 1 + plugins/board-assets/lang/ru.json | 1 + .../board-resources/src/components/popups/AddChecklist.svelte | 2 +- plugins/board-resources/src/plugin.ts | 1 + 4 files changed, 4 insertions(+), 1 deletion(-) diff --git a/plugins/board-assets/lang/en.json b/plugins/board-assets/lang/en.json index cc57c02b2b..a9c62e12d5 100644 --- a/plugins/board-assets/lang/en.json +++ b/plugins/board-assets/lang/en.json @@ -42,6 +42,7 @@ "ChecklistDropdownNone": "(none)", "ShowDoneChecklistItems": "Show checked items ({done})", "HideDoneChecklistItems": "Hide checked items", + "CopyChecklistFrom": "Copy items from...", "Dates": "Dates", "Attachments": "Attachments", "AddAttachment": "Add an attachment", diff --git a/plugins/board-assets/lang/ru.json b/plugins/board-assets/lang/ru.json index 7c8b2a4ba2..0307a87a04 100644 --- a/plugins/board-assets/lang/ru.json +++ b/plugins/board-assets/lang/ru.json @@ -42,6 +42,7 @@ "ChecklistDropdownNone": "(не выбрано)", "ShowDoneChecklistItems": "Показать отмеченные ({done})", "HideDoneChecklistItems": "Скрыть отмеченные", + "CopyChecklistFrom": "Копировать из...", "Dates": "Дата", "Attachments": "Прикрепленное", "AddAttachment": "Прикрепить", diff --git a/plugins/board-resources/src/components/popups/AddChecklist.svelte b/plugins/board-resources/src/components/popups/AddChecklist.svelte index ed840535f9..8efa782b30 100644 --- a/plugins/board-resources/src/components/popups/AddChecklist.svelte +++ b/plugins/board-resources/src/components/popups/AddChecklist.svelte @@ -126,7 +126,7 @@
-
diff --git a/plugins/board-resources/src/plugin.ts b/plugins/board-resources/src/plugin.ts index aa8e1519bb..3acc93433b 100644 --- a/plugins/board-resources/src/plugin.ts +++ b/plugins/board-resources/src/plugin.ts @@ -63,6 +63,7 @@ export default mergeIds(boardId, board, { ChecklistDropdownNone: '' as IntlString, ShowDoneChecklistItems: '' as IntlString, HideDoneChecklistItems: '' as IntlString, + CopyChecklistFrom: '' as IntlString, Dates: '' as IntlString, Attachments: '' as IntlString, AddAttachment: '' as IntlString,