diff options
author | daniel oeh <daniel.oeh@gmail.com> | 2013-08-16 21:22:35 +0200 |
---|---|---|
committer | daniel oeh <daniel.oeh@gmail.com> | 2013-08-16 21:22:35 +0200 |
commit | 8337739ab44af3c52b30f194fa06c09ba30a2dc2 (patch) | |
tree | 2012519a90e76040d8bd0da00adc4b889a46f30b /res/values | |
parent | f6c5251b98b5ae1bc31a1d1940530174588c3e27 (diff) | |
parent | 0a607117d6c8d26d48adede0c903e0b7772a4327 (diff) | |
download | AntennaPod-8337739ab44af3c52b30f194fa06c09ba30a2dc2.zip |
Merge branch 'playback-speed' of git://github.com/TheRealFalcon/AntennaPod into playback-speed-tmp
Conflicts:
src/de/danoeh/antennapod/activity/AudioplayerActivity.java
src/de/danoeh/antennapod/activity/PreferenceActivity.java
src/de/danoeh/antennapod/service/PlaybackService.java
src/de/danoeh/antennapod/util/playback/PlaybackController.java
Diffstat (limited to 'res/values')
-rw-r--r-- | res/values/arrays.xml | 55 | ||||
-rw-r--r-- | res/values/strings.xml | 18 |
2 files changed, 69 insertions, 4 deletions
diff --git a/res/values/arrays.xml b/res/values/arrays.xml index 4036ff0f4..534b9df50 100644 --- a/res/values/arrays.xml +++ b/res/values/arrays.xml @@ -1,6 +1,16 @@ <?xml version="1.0" encoding="utf-8"?> <resources> + <string-array name="update_intervall_options"> + <item>Manual</item> + <item>1 hour</item> + <item>2 hours</item> + <item>4 hours</item> + <item>8 hours</item> + <item>12 hours</item> + <item>24 hours</item> + </string-array> + <string-array name="update_intervall_values"> <item>0</item> <item>1</item> @@ -28,6 +38,50 @@ <item>80</item> <item>100</item> </string-array> + <string-array name="playback_speed_values"> + <item>1.0</item> + <item>1.05</item> + <item>1.10</item> + <item>1.15</item> + <item>1.20</item> + <item>1.25</item> + <item>1.30</item> + <item>1.35</item> + <item>1.40</item> + <item>1.45</item> + <item>1.50</item> + <item>1.55</item> + <item>1.60</item> + <item>1.65</item> + <item>1.70</item> + <item>1.75</item> + <item>1.80</item> + <item>1.85</item> + <item>1.90</item> + <item>1.95</item> + <item>2.00</item> + <item>2.10</item> + <item>2.20</item> + <item>2.30</item> + <item>2.40</item> + <item>2.50</item> + <item>2.60</item> + <item>2.70</item> + <item>2.80</item> + <item>2.90</item> + <item>3.00</item> + <item>3.10</item> + <item>3.20</item> + <item>3.30</item> + <item>3.40</item> + <item>3.50</item> + <item>3.60</item> + <item>3.70</item> + <item>3.80</item> + <item>3.90</item> + <item>4.00</item> + </string-array> + <string-array name="autodl_select_networks_default_entries"> <item>N/A</item> </string-array> @@ -42,5 +96,6 @@ <item>0</item> <item>1</item> </string-array> + </resources>
\ No newline at end of file diff --git a/res/values/strings.xml b/res/values/strings.xml index b3f9975cb..5895e7f55 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -47,6 +47,8 @@ <string name="processing_label">Processing</string> <string name="loading_label">Loading...</string> <string name="image_of_prefix">Image of:\u0020</string> + <string name="close_label">Close</string> + <!-- 'Add Feed' Activity labels --> <string name="feedurl_label">Feed URL</string> @@ -143,6 +145,12 @@ <string name="access_revoked_info">You have successfully revoked AntennaPod\'s access token to your account. In order to complete the process, you have to remove this app from the list of approved applications in your account settings on the flattr website.</string> <string name="flattr_click_success">Successfully flattred this thing!</string> <string name="flattring_label">Flattring</string> + + <!-- Variable Speed --> + <string name="download_plugin_label">Download Plugin</string> + <string name="no_playback_plugin_title">Plugin Not Installed</string> + <string name="no_playback_plugin_msg">For variable speed playback to work, a third party library must be installed.\n\nTap \'Download Plugin\' to download a free plugin from the Play Store\n\nAny problems found using this plugin are not the responsibility of AntennaPod and should be reported to the plugin owner.</string> + <string name="set_playback_speed_label">Playback Speeds</string> <!-- Empty list labels --> <string name="no_items_label">There are no items in this list.</string> @@ -185,9 +193,11 @@ <string name="pref_theme_title_light">Light</string> <string name="pref_theme_title_dark">Dark</string> <string name="pref_episode_cache_unlimited">Unlimited</string> - <string name="pref_update_interval_hours_plural">hours</string> - <string name="pref_update_interval_hours_singular">hour</string> - <string name="pref_update_interval_hours_manual">Manual</string> + <string name="pref_update_interval_hours_plural">hours</string> + <string name="pref_update_interval_hours_singular">hour</string> + <string name="pref_update_interval_hours_manual">Manual</string> + <string name="pref_playback_speed_title">Playback Speeds</string> + <string name="pref_playback_speed_sum">Customize the speeds available for variable speed audio playback</string> <!-- Search --> @@ -251,4 +261,4 @@ <string name="folder_not_empty_dialog_msg">The folder you have selected is not empty. Media downloads and other files will be placed directly in this folder. Continue anyway?</string> <string name="set_to_default_folder">Choose default folder</string> -</resources>
\ No newline at end of file +</resources> |