Add translations (#562)

Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/562
Co-authored-by: konrad <konrad@kola-entertainments.de>
Co-committed-by: konrad <konrad@kola-entertainments.de>
This commit is contained in:
konrad 2021-06-23 23:24:57 +00:00
parent 5badb65037
commit f0498fd767
103 changed files with 2306 additions and 973 deletions

View file

@ -149,15 +149,15 @@ export default {
createPlaceholder: {
type: String,
default() {
return 'Create new'
},
return this.$t('input.multiselect.createPlaceholder')
}
},
// The text shown next to an option.
selectPlaceholder: {
type: String,
default() {
return 'Click or press enter to select'
},
return this.$t('input.multiselect.selectPlaceholder')
}
},
// If true, allows for selecting multiple items. v-model will be an array with all selected values in that case.
multiple: {