Update progress sort labels

This commit is contained in:
advplyr 2025-08-24 16:17:31 -05:00
parent f6b922fe8d
commit c98763fc48
3 changed files with 9 additions and 9 deletions

View File

@ -355,11 +355,11 @@ export default {
} }
if (this.orderBy === 'startedDate') { if (this.orderBy === 'startedDate') {
if (!this.userProgressStartedDate) return '\u00A0' if (!this.userProgressStartedDate) return '\u00A0'
return this.$getString('LabelFileStartedDate', [this.$formatDatetime(this.userProgressStartedDate, this.dateFormat, this.timeFormat)]) return this.$getString('LabelStartedDate', [this.$formatDatetime(this.userProgressStartedDate, this.dateFormat, this.timeFormat)])
} }
if (this.orderBy === 'finishedDate') { if (this.orderBy === 'finishedDate') {
if (!this.userProgressFinishedDate) return '\u00A0' if (!this.userProgressFinishedDate) return '\u00A0'
return this.$getString('LabelFileFinishedDate', [this.$formatDatetime(this.userProgressFinishedDate, this.dateFormat, this.timeFormat)]) return this.$getString('LabelFinishedDate', [this.$formatDatetime(this.userProgressFinishedDate, this.dateFormat, this.timeFormat)])
} }
return null return null
}, },

View File

@ -135,11 +135,11 @@ export default {
value: 'progress' value: 'progress'
}, },
{ {
text: this.$strings.LabelLibrarySortByStartDate, text: this.$strings.LabelLibrarySortByProgressStarted,
value: 'startedDate' value: 'startedDate'
}, },
{ {
text: this.$strings.LabelLibrarySortByFinishDate, text: this.$strings.LabelLibrarySortByProgressFinished,
value: 'finishedDate' value: 'finishedDate'
}, },
{ {

View File

@ -371,13 +371,12 @@
"LabelFileBirthtime": "File Birthtime", "LabelFileBirthtime": "File Birthtime",
"LabelFileBornDate": "Born {0}", "LabelFileBornDate": "Born {0}",
"LabelFileModified": "File Modified", "LabelFileModified": "File Modified",
"LabelFileFinishedDate": "Finished {0}",
"LabelFileModifiedDate": "Modified {0}", "LabelFileModifiedDate": "Modified {0}",
"LabelFileStartedDate": "Started {0}",
"LabelFilename": "Filename", "LabelFilename": "Filename",
"LabelFilterByUser": "Filter by User", "LabelFilterByUser": "Filter by User",
"LabelFindEpisodes": "Find Episodes", "LabelFindEpisodes": "Find Episodes",
"LabelFinished": "Finished", "LabelFinished": "Finished",
"LabelFinishedDate": "Finished {0}",
"LabelFolder": "Folder", "LabelFolder": "Folder",
"LabelFolders": "Folders", "LabelFolders": "Folders",
"LabelFontBold": "Bold", "LabelFontBold": "Bold",
@ -435,9 +434,9 @@
"LabelLibraryFilterSublistEmpty": "No {0}", "LabelLibraryFilterSublistEmpty": "No {0}",
"LabelLibraryItem": "Library Item", "LabelLibraryItem": "Library Item",
"LabelLibraryName": "Library Name", "LabelLibraryName": "Library Name",
"LabelLibrarySortByFinishDate": "Finish Date",
"LabelLibrarySortByProgress": "Progress Updated", "LabelLibrarySortByProgress": "Progress Updated",
"LabelLibrarySortByStartDate": "Start Date", "LabelLibrarySortByProgressFinished": "Finished Date",
"LabelLibrarySortByProgressStarted": "Started Date",
"LabelLimit": "Limit", "LabelLimit": "Limit",
"LabelLineSpacing": "Line spacing", "LabelLineSpacing": "Line spacing",
"LabelListenAgain": "Listen Again", "LabelListenAgain": "Listen Again",
@ -635,6 +634,7 @@
"LabelStartTime": "Start Time", "LabelStartTime": "Start Time",
"LabelStarted": "Started", "LabelStarted": "Started",
"LabelStartedAt": "Started At", "LabelStartedAt": "Started At",
"LabelStartedDate": "Started {0}",
"LabelStatsAudioTracks": "Audio Tracks", "LabelStatsAudioTracks": "Audio Tracks",
"LabelStatsAuthors": "Authors", "LabelStatsAuthors": "Authors",
"LabelStatsBestDay": "Best Day", "LabelStatsBestDay": "Best Day",
@ -1141,4 +1141,4 @@
"ToastUserPasswordMismatch": "Passwords do not match", "ToastUserPasswordMismatch": "Passwords do not match",
"ToastUserPasswordMustChange": "New password cannot match old password", "ToastUserPasswordMustChange": "New password cannot match old password",
"ToastUserRootRequireName": "Must enter a root username" "ToastUserRootRequireName": "Must enter a root username"
} }