Update sort display translation strings, update podcast episode queue strings to use translation

This commit is contained in:
advplyr 2024-08-30 17:08:21 -05:00
parent 02f06ccd68
commit a2c2eef11d
8 changed files with 18 additions and 17 deletions

View file

@ -96,7 +96,7 @@ export default {
displaySortLine() {
switch (this.orderBy) {
case 'addedAt':
return `${this.$strings.LabelAdded} ${this.$formatDate(this.addedAt, this.dateFormat)}`
return this.$getString('LabelAddedDate', [this.$formatDate(this.addedAt, this.dateFormat)])
case 'totalDuration':
return `${this.$strings.LabelDuration} ${this.$elapsedPrettyExtended(this.totalDuration, false)}`
case 'lastBookUpdated':