mirror of
https://github.com/gotson/komga.git
synced 2026-05-09 05:10:19 +02:00
refactor: missing i18n keys
This commit is contained in:
parent
40c8b2a272
commit
ba5072a731
3 changed files with 4 additions and 3 deletions
|
|
@ -575,6 +575,7 @@
|
|||
"filter": {
|
||||
"age_rating": "age rating",
|
||||
"age_rating_none": "None",
|
||||
"complete": "Complete",
|
||||
"genre": "genre",
|
||||
"in_progress": "In Progress",
|
||||
"language": "language",
|
||||
|
|
|
|||
|
|
@ -233,7 +233,7 @@ export default Vue.extend({
|
|||
],
|
||||
},
|
||||
complete: {
|
||||
values: [{name: 'Complete', value: 'true', nValue: 'false'}],
|
||||
values: [{name: this.$t('filter.complete').toString(), value: 'true', nValue: 'false'}],
|
||||
},
|
||||
} as FiltersOptions
|
||||
},
|
||||
|
|
@ -361,7 +361,7 @@ export default Vue.extend({
|
|||
}
|
||||
},
|
||||
collectionDeleted(event: CollectionSseDto) {
|
||||
if(event.collectionId === this.collectionId) {
|
||||
if (event.collectionId === this.collectionId) {
|
||||
this.$router.push({name: 'browse-collections', params: {libraryId: LIBRARIES_ALL}})
|
||||
}
|
||||
},
|
||||
|
|
|
|||
|
|
@ -282,7 +282,7 @@ export default Vue.extend({
|
|||
],
|
||||
},
|
||||
complete: {
|
||||
values: [{name: 'Complete', value: 'true', nValue: 'false'}],
|
||||
values: [{name: this.$t('filter.complete').toString(), value: 'true', nValue: 'false'}],
|
||||
},
|
||||
} as FiltersOptions
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue