mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2026-08-27 13:54:01 +02:00
Make jump labels compatible with i18n/translation
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
export default {
|
||||
methods: {
|
||||
getJumpLabel(seconds) {
|
||||
const val = Number(seconds)
|
||||
if (isNaN(val)) return ''
|
||||
const useMinutes = val >= 120 // keep 60s as seconds
|
||||
const key = useMinutes ? 'UnitMinutesShort' : 'UnitSecondsShort'
|
||||
const unitValue = useMinutes ? val / 60 : val
|
||||
return this.$getString(key, [this.$formatNumber(unitValue)])
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user