From 5a01c9d38eb17e7e41ff13cc7896641fafef9ba1 Mon Sep 17 00:00:00 2001 From: Matt Chowning Date: Fri, 28 Jul 2023 01:37:08 -0400 Subject: [PATCH] Remove references to auto download on watch (#1212) --- CHANGELOG.md | 3 ++- .../services/localization/src/main/res/values/strings.xml | 2 ++ .../pocketcasts/wear/ui/settings/SettingsScreen.kt | 8 ++++++-- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e8bedbb60aa..6f30e9100d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,8 @@ ([#1209](https://github.com/Automattic/pocket-casts-android/pull/1209)) * Fixed upgrade flow when signing in with Google account ([#1204](https://github.com/Automattic/pocket-casts-android/pull/1204)) - + * Fixed watch background refresh description to not reference auto downloads + ([#1212](https://github.com/Automattic/pocket-casts-android/pull/1212)) 7.44 ----- diff --git a/modules/services/localization/src/main/res/values/strings.xml b/modules/services/localization/src/main/res/values/strings.xml index b907d67bf50..e51bc5c3db5 100644 --- a/modules/services/localization/src/main/res/values/strings.xml +++ b/modules/services/localization/src/main/res/values/strings.xml @@ -1188,7 +1188,9 @@ We can no longer support custom folders for storage on Android 10+. We have switched your storage option back to your phones default. Background refresh Pocket Casts will only refresh when you open the app.\n\nEpisode notifications and auto downloads will only happen when you open the app. + Pocket Casts will only sync your account when you open the app. Pocket Casts will periodically check for new episodes and auto downloads in the background. + Pocket Casts will periodically sync your account in the background. Clearing download cache Clear download cache Custom Folder diff --git a/wear/src/main/kotlin/au/com/shiftyjelly/pocketcasts/wear/ui/settings/SettingsScreen.kt b/wear/src/main/kotlin/au/com/shiftyjelly/pocketcasts/wear/ui/settings/SettingsScreen.kt index bd911b68125..7442e703821 100644 --- a/wear/src/main/kotlin/au/com/shiftyjelly/pocketcasts/wear/ui/settings/SettingsScreen.kt +++ b/wear/src/main/kotlin/au/com/shiftyjelly/pocketcasts/wear/ui/settings/SettingsScreen.kt @@ -95,8 +95,12 @@ private fun Content( ) } - val backgroundRefreshStringRes = - if (state.refreshInBackground) LR.string.settings_storage_background_refresh_on else LR.string.settings_storage_background_refresh_off + val backgroundRefreshStringRes = if (state.refreshInBackground) { + LR.string.settings_storage_background_refresh_on_watch + } else { + LR.string.settings_storage_background_refresh_off_watch + } + item { ToggleChip( label = stringResource(LR.string.settings_storage_background_refresh),