From 44a55e1e4a64a8903df558dad1a100d722cc5704 Mon Sep 17 00:00:00 2001 From: Varun Patil Date: Sun, 28 May 2023 01:22:13 -0700 Subject: [PATCH] edit-tags: translate tag names Signed-off-by: Varun Patil --- src/components/modal/EditTags.vue | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/components/modal/EditTags.vue b/src/components/modal/EditTags.vue index 50b7e499..4c0e2ceb 100644 --- a/src/components/modal/EditTags.vue +++ b/src/components/modal/EditTags.vue @@ -1,6 +1,12 @@ @@ -59,6 +65,10 @@ export default defineComponent({ ); }, + tagLabel({ displayName }: { displayName: string }) { + return this.t('recognize', displayName); + }, + result() { const add = this.tagSelection.filter((x) => !this.origIds.has(x)); const remove = [...this.origIds].filter((x) => !this.tagSelection.includes(x));