This commit is contained in:
Gauthier Roebroeck 2025-10-23 16:15:01 +08:00
parent 1f2a7a3e20
commit 7aa2c67701

View file

@ -407,15 +407,27 @@ const filterSelect = ref<string[]>([])
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',
},
]