diff --git a/core/util/src/main/res/values/strings.xml b/core/util/src/main/res/values/strings.xml index efa3de747..97d8510ee 100644 --- a/core/util/src/main/res/values/strings.xml +++ b/core/util/src/main/res/values/strings.xml @@ -355,6 +355,7 @@ Avatar or picture of repository\'s owner Pause button Picture-in-picture (PiP) lets you watch videos while using other apps. + You have %1$d cached links Play button Play or pause button Playback speed set to %1$s @@ -372,7 +373,6 @@ Search for providers An icon for search history You have %1$d search history items - You have %1$d cached links A vertical see more button icon Server set to %1$s Opt-in on using pre-release updates instead of official ones. @@ -391,6 +391,7 @@ The target size to always buffer. Setting this too high could cause device problems. Player\'s dedicated cache size The dedicated video cache for the player. Always limit the cache if you have limited storage space. + Adds an additional volume (dB) to the player. However, it might cause device to not play the audio properly. Warning icon diff --git a/feature/mobile/settings/src/main/kotlin/com/flixclusive/feature/mobile/settings/settings_group/currentVideoPlayerSettings.kt b/feature/mobile/settings/src/main/kotlin/com/flixclusive/feature/mobile/settings/settings_group/currentVideoPlayerSettings.kt index 9218f4e15..8dcf924c2 100644 --- a/feature/mobile/settings/src/main/kotlin/com/flixclusive/feature/mobile/settings/settings_group/currentVideoPlayerSettings.kt +++ b/feature/mobile/settings/src/main/kotlin/com/flixclusive/feature/mobile/settings/settings_group/currentVideoPlayerSettings.kt @@ -85,6 +85,7 @@ internal fun currentVideoPlayerSettings( ), SettingsItem( title = stringResource(UtilR.string.volume_booster), + description = stringResource(UtilR.string.volume_booster_desc), onClick = { onChangeSettings(appSettings.copy(isUsingVolumeBoost = !appSettings.isUsingVolumeBoost)) },