mirror of
https://github.com/gotson/komga.git
synced 2025-12-06 08:32:25 +01:00
i18n
This commit is contained in:
parent
1f2a7a3e20
commit
7aa2c67701
1 changed files with 15 additions and 3 deletions
|
|
@ -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',
|
||||
},
|
||||
]
|
||||
|
|
|
|||
Loading…
Reference in a new issue