diff options
author | Tom Hennen <TomHennen@users.noreply.github.com> | 2016-04-04 19:20:14 -0400 |
---|---|---|
committer | Tom Hennen <TomHennen@users.noreply.github.com> | 2016-04-04 19:20:14 -0400 |
commit | ab88df91bac8e58343933aba50fcad545a60d096 (patch) | |
tree | ab9117992294ef0da01fe805a1a078c1664c12e4 /core/src/main/res | |
parent | e75ab9c1fa18817761491660819c7515cf8cbc36 (diff) | |
parent | e3408565dcc15cd97548b664773bc684dca4edeb (diff) | |
download | AntennaPod-ab88df91bac8e58343933aba50fcad545a60d096.zip |
Merge pull request #1843 from saqura/develop
Optionally show rewind/forward buttons on the lockscreen
Diffstat (limited to 'core/src/main/res')
-rw-r--r-- | core/src/main/res/values/arrays.xml | 5 | ||||
-rw-r--r-- | core/src/main/res/values/strings.xml | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/core/src/main/res/values/arrays.xml b/core/src/main/res/values/arrays.xml index ffb4eadad..fba22b985 100644 --- a/core/src/main/res/values/arrays.xml +++ b/core/src/main/res/values/arrays.xml @@ -213,4 +213,9 @@ <item>500</item> </string-array> + <string-array name="compact_notification_buttons_options"> + <item>@string/rewind_label</item> + <item>@string/fast_forward_label</item> + <item>@string/skip_episode_label</item> + </string-array> </resources> diff --git a/core/src/main/res/values/strings.xml b/core/src/main/res/values/strings.xml index 29d4eabbb..4575f665e 100644 --- a/core/src/main/res/values/strings.xml +++ b/core/src/main/res/values/strings.xml @@ -374,6 +374,10 @@ <string name="pref_expandNotify_sum">Always expand the notification to show playback buttons.</string> <string name="pref_persistNotify_title">Persistent Playback Controls</string> <string name="pref_persistNotify_sum">Keep notification and lockscreen controls when playback is paused.</string> + <string name="pref_compact_notification_buttons_title">Set Lockscreen Buttons</string> + <string name="pref_compact_notification_buttons_sum">Change the playback buttons on the lockscreen. The play/pause button is always included.</string> + <string name="pref_compact_notification_buttons_dialog_title">Select a maximum of %1$d items</string> + <string name="pref_compact_notification_buttons_dialog_error">You can only select a maximum of %1$d items.</string> <string name="pref_show_subscriptions_in_drawer_title">Show Subscriptions</string> <string name="pref_show_subscriptions_in_drawer_sum">Show subscription list directly in navigation drawer</string> <string name="pref_lockscreen_background_title">Set Lockscreen Background</string> |