diff options
author | Alex Ning <chineseperson5@gmail.com> | 2021-10-09 14:08:48 +0000 |
---|---|---|
committer | Alex Ning <chineseperson5@gmail.com> | 2021-10-09 14:08:48 +0000 |
commit | 4de457cd0207dc1fcac1487d046565df06c3d165 (patch) | |
tree | 9df8170a54fea71ab43572d8150e1b6a78fee208 /app/src/main/res | |
parent | f12dea156fbe08b3b8ad64d153c8aedc75bf024e (diff) | |
download | infinity-for-reddit-4de457cd0207dc1fcac1487d046565df06c3d165.tar infinity-for-reddit-4de457cd0207dc1fcac1487d046565df06c3d165.tar.gz infinity-for-reddit-4de457cd0207dc1fcac1487d046565df06c3d165.tar.bz2 infinity-for-reddit-4de457cd0207dc1fcac1487d046565df06c3d165.tar.lz infinity-for-reddit-4de457cd0207dc1fcac1487d046565df06c3d165.tar.xz infinity-for-reddit-4de457cd0207dc1fcac1487d046565df06c3d165.tar.zst infinity-for-reddit-4de457cd0207dc1fcac1487d046565df06c3d165.zip |
Loop video option is available for autoplaying videos.
Diffstat (limited to '')
-rw-r--r-- | app/src/main/res/values/strings.xml | 1 | ||||
-rw-r--r-- | app/src/main/res/xml/video_preferences.xml | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 93686697..fd09419b 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -595,6 +595,7 @@ <string name="settings_show_only_one_comment_level_indicator">Show Only One Comment Level Indicator</string> <string name="settings_video_player_automatic_landscape_orientation">Switch to Landscape Orientation in Video Player Automatically</string> <string name="settings_loop_video_title">Loop Video</string> + <string name="settings_loop_video_summary">Restart the app to apply this setting to autoplaying videos</string> <string name="settings_remember_muting_option_in_post_feed">Remember Muting Option in Post Feed</string> <string name="settings_post_details_title">Post Details</string> <string name="settings_separate_post_and_comments_in_portrait_mode_title">Separate Post And Comments in Portrait Mode</string> diff --git a/app/src/main/res/xml/video_preferences.xml b/app/src/main/res/xml/video_preferences.xml index 7b2ebbdb..ef8d944e 100644 --- a/app/src/main/res/xml/video_preferences.xml +++ b/app/src/main/res/xml/video_preferences.xml @@ -33,7 +33,8 @@ <SwitchPreference app:defaultValue="true" app:key="loop_video" - app:title="@string/settings_loop_video_title" /> + app:title="@string/settings_loop_video_title" + app:summary="@string/settings_loop_video_summary" /> <PreferenceCategory app:title="@string/settings_video_autoplay_title" /> |