[web] Simplify translations

This commit is contained in:
Alain Nussbaumer
2025-02-24 21:27:04 +01:00
parent deeeaad3b4
commit bc2fa02589
34 changed files with 167 additions and 293 deletions

View File

@@ -81,7 +81,7 @@ export default {
value: this.$t('dialog.track.quality-value', {
format: this.item.type,
bitrate: this.item.bitrate,
channels: this.$filters.channels(this.item.channels),
channels: this.$t('count.channels', this.item.channels),
samplerate: this.item.samplerate
})
}

View File

@@ -74,7 +74,7 @@ export default {
value: this.$t('dialog.track.quality-value', {
format: this.item.type,
bitrate: this.item.bitrate,
channels: this.$filters.channels(this.item.channels),
channels: this.$t('count.channels', this.item.channels),
samplerate: this.item.samplerate
})
},