diff --git a/components/modals/SleepTimerModal.vue b/components/modals/SleepTimerModal.vue index bdae5a32..dbf2c43d 100644 --- a/components/modals/SleepTimerModal.vue +++ b/components/modals/SleepTimerModal.vue @@ -107,19 +107,11 @@ export default { }, async cancelSleepTimer() { if (this.isAuto) { - if (this.$platform === 'ios') { - const { value } = await Dialog.confirm({ - title: 'Confirm', - message: this.$strings.MessageConfirmDisableAutoTimerIos - }) - if (!value) return - } else { - const { value } = await Dialog.confirm({ - title: 'Confirm', - message: this.$strings.MessageConfirmDisableAutoTimerAndroid - }) - if (!value) return - } + const { value } = await Dialog.confirm({ + title: 'Confirm', + message: this.$strings.MessageConfirmDisableAutoTimer + }) + if (!value) return } await this.$hapticsImpact() diff --git a/strings/en-us.json b/strings/en-us.json index d2e09640..b00c90cf 100644 --- a/strings/en-us.json +++ b/strings/en-us.json @@ -278,8 +278,7 @@ "MessageBookshelfEmpty": "Bookshelf empty", "MessageConfirmDeleteLocalEpisode": "Remove local episode \"{0}\" from your device? The file on the server will be unaffected.", "MessageConfirmDeleteLocalFiles": "Remove local files of this item from your device? The files on the server and your progress will be unaffected.", - "MessageConfirmDisableAutoTimerAndroid": "Are you sure you want to disable the auto timer for the rest of today? The timer will be re-enabled at the end of this auto-sleep timer period, or if you restart the app.", - "MessageConfirmDisableAutoTimerIos": "Are you sure you want to disable the auto sleep timer? You will need to enable this again in settings.", + "MessageConfirmDisableAutoTimer": "Are you sure you want to disable the auto timer for the rest of today? The timer will be re-enabled at the end of this auto-sleep timer period, or if you restart the app.", "MessageConfirmDiscardProgress": "Are you sure you want to reset your progress?", "MessageConfirmDownloadUsingCellular": "You are about to download using cellular data. This may include carrier data charges. Do you wish to continue?", "MessageConfirmMarkAsFinished": "Are you sure you want to mark this item as finished?",