diff --git a/android/app/src/main/java/com/audiobookshelf/app/data/DeviceClasses.kt b/android/app/src/main/java/com/audiobookshelf/app/data/DeviceClasses.kt index dd2b7804..078b5b09 100644 --- a/android/app/src/main/java/com/audiobookshelf/app/data/DeviceClasses.kt +++ b/android/app/src/main/java/com/audiobookshelf/app/data/DeviceClasses.kt @@ -144,7 +144,8 @@ data class DeviceSettings( autoSleepTimerAutoRewind = false, autoSleepTimerAutoRewindTime = 300000L, // 5 minutes disableSleepTimerFadeOut = false, - disableSleepTimerResetFeedback = false + disableSleepTimerResetFeedback = false, + languageCode = "en-us" ) } } diff --git a/pages/settings.vue b/pages/settings.vue index b5d40094..9444a8cd 100644 --- a/pages/settings.vue +++ b/pages/settings.vue @@ -184,7 +184,7 @@ export default { }, enableMp3IndexSeeking: { name: this.$strings.LabelEnableMp3IndexSeeking, - message: this.$strings.LabelEnableMp3IndexSeekingHelp + message: this.$strings.LabelEnableMp3IndexSeekingHelp, name: 'Enable mp3 index seeking', message: 'This setting should only be enabled if you have mp3 files that are not seeking correctly. Inaccurate seeking is most likely due to Variable birate (VBR) MP3 files. This setting will force index seeking, in which a time-to-byte mapping is built as the file is read. In some cases with large MP3 files there will be a delay when seeking towards the end of the file.' }