From 7aa2c677019e1e601e17306398d175f5e01be1d2 Mon Sep 17 00:00:00 2001 From: Gauthier Roebroeck Date: Thu, 23 Oct 2025 16:15:01 +0800 Subject: [PATCH] i18n --- .../src/components/import/readlist/Table.vue | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/next-ui/src/components/import/readlist/Table.vue b/next-ui/src/components/import/readlist/Table.vue index 2be38c431..f4c73edcb 100644 --- a/next-ui/src/components/import/readlist/Table.vue +++ b/next-ui/src/components/import/readlist/Table.vue @@ -407,15 +407,27 @@ const filterSelect = ref([]) const filterRef = computed(() => filterSelect.value.join('')) const filterOptions = [ { - title: 'OK', + title: intl.formatMessage({ + description: 'Import reading list table filter: OK', + defaultMessage: 'OK', + id: '0ILHru', + }), value: 'o', }, { - title: 'Error', + title: intl.formatMessage({ + description: 'Import reading list table filter: Error', + defaultMessage: 'Error', + id: 'toP54Z', + }), value: 'e', }, { - title: 'Duplicate', + title: intl.formatMessage({ + description: 'Import reading list table filter: duplicate', + defaultMessage: 'Duplicate', + id: 'ALGXT9', + }), value: 'd', }, ]