mirror of
https://github.com/gotson/komga.git
synced 2025-12-28 11:24:59 +01:00
refactor(webui): extract missing translation strings
This commit is contained in:
parent
8880642370
commit
f5f36b3d2f
2 changed files with 6 additions and 3 deletions
|
|
@ -224,8 +224,10 @@
|
|||
"dismiss": "Dismiss",
|
||||
"download": "Download",
|
||||
"drag_drop": "drag and drop",
|
||||
"duplicate": "Duplicate",
|
||||
"email": "Email",
|
||||
"epub": "Epub",
|
||||
"error": "Error",
|
||||
"filename": "Filename",
|
||||
"filter_no_matches": "The active filter has no matches",
|
||||
"genre": "Genre",
|
||||
|
|
@ -240,6 +242,7 @@
|
|||
"lock_all": "Lock all",
|
||||
"n_selected": "{count} selected",
|
||||
"nothing_to_show": "Nothing to show",
|
||||
"ok": "OK",
|
||||
"oneshot": "One-shot",
|
||||
"outdated": "Outdated",
|
||||
"page": "Page",
|
||||
|
|
|
|||
|
|
@ -31,9 +31,9 @@
|
|||
<v-divider/>
|
||||
|
||||
<v-chip-group v-model="filter" color="primary" mandatory multiple>
|
||||
<v-chip filter value="ok">OK</v-chip>
|
||||
<v-chip filter value="error">Error</v-chip>
|
||||
<v-chip filter value="duplicate">Duplicate</v-chip>
|
||||
<v-chip filter value="ok">{{ $t('common.ok') }}</v-chip>
|
||||
<v-chip filter value="error">{{ $t('common.error') }}</v-chip>
|
||||
<v-chip filter value="duplicate">{{ $t('common.duplicate') }}</v-chip>
|
||||
</v-chip-group>
|
||||
|
||||
<v-simple-table>
|
||||
|
|
|
|||
Loading…
Reference in a new issue