diff options
author | Christian Schneppe <christian@pix-art.de> | 2017-03-04 22:00:46 +0100 |
---|---|---|
committer | Christian Schneppe <christian@pix-art.de> | 2017-03-04 22:00:46 +0100 |
commit | 33f0f1561bb3e0bc23a49e5c84513d41849d2160 (patch) | |
tree | a17b0280a7f196911233bf7e2ed6155fd3b293c7 /src/main/res/values | |
parent | e1a7a2738dde13353885a01c9ec9fd0cc64f6fc3 (diff) |
make video resolution configurable
Diffstat (limited to 'src/main/res/values')
-rw-r--r-- | src/main/res/values/arrays.xml | 12 | ||||
-rw-r--r-- | src/main/res/values/strings.xml | 7 |
2 files changed, 18 insertions, 1 deletions
diff --git a/src/main/res/values/arrays.xml b/src/main/res/values/arrays.xml index c0f9ca881..b61a512ae 100644 --- a/src/main/res/values/arrays.xml +++ b/src/main/res/values/arrays.xml @@ -70,6 +70,18 @@ <item>@string/always</item> </string-array> + <string-array name="video_compression_values"> + <item>low</item> + <item>mid</item> + <item>high</item> + </string-array> + + <string-array name="video_compression_entries"> + <item>@string/video_low</item> + <item>@string/video_mid</item> + <item>@string/video_high</item> + </string-array> + <string-array name="mam_prefs"> <item>@string/never</item> <item>@string/contacts</item> diff --git a/src/main/res/values/strings.xml b/src/main/res/values/strings.xml index fd109379b..0003d131e 100644 --- a/src/main/res/values/strings.xml +++ b/src/main/res/values/strings.xml @@ -584,8 +584,13 @@ <string name="notify_only_when_highlighted">Notify only when highlighted</string> <string name="notify_never">Notifications disabled</string> <string name="notify_paused">Notifications paused</string> - <string name="pref_picture_compression">Compress Pictures</string> + <string name="pref_picture_compression">Compress pictures</string> <string name="pref_picture_compression_summary">Resize and compress pictures</string> + <string name="pref_video_compression">Compress videos</string> + <string name="pref_video_compression_summary">Resize and compress videos</string> + <string name="video_low">low (144p)</string> + <string name="video_mid">middle (360p)</string> + <string name="video_high">high (720p)</string> <string name="always">Always</string> <string name="automatically">Automatically</string> <string name="battery_optimizations_enabled">Battery optimizations enabled</string> |