diff options
author | Tom Hennen <tom.hennen@gmail.com> | 2013-08-16 14:39:54 -0400 |
---|---|---|
committer | Tom Hennen <tom.hennen@gmail.com> | 2013-08-16 14:39:54 -0400 |
commit | 2d83b39c27a32f51776dac14b032a72e0c3fbef8 (patch) | |
tree | f3d88f7920d1c37b8b6609902b6e87783f0af4a8 /res | |
parent | 82bdfe05ac9ced9ffff2469e8ec1dacf88a3f166 (diff) | |
download | AntennaPod-2d83b39c27a32f51776dac14b032a72e0c3fbef8.zip |
added move to top to individual items in the episode queue. Move to bottom coming soon.
Diffstat (limited to 'res')
-rw-r--r-- | res/menu/feeditem.xml | 6 | ||||
-rw-r--r-- | res/values/strings.xml | 1 |
2 files changed, 6 insertions, 1 deletions
diff --git a/res/menu/feeditem.xml b/res/menu/feeditem.xml index 09b7fa6b0..2d952d3c3 100644 --- a/res/menu/feeditem.xml +++ b/res/menu/feeditem.xml @@ -67,6 +67,10 @@ android:showAsAction="collapseActionView" android:title="@string/support_label"> </item> - + <item + android:id="@+id/move_to_top_item" + android:showAsAction="collapseActionView" + android:title="@string/move_to_top_label"> + </item> </menu>
\ No newline at end of file diff --git a/res/values/strings.xml b/res/values/strings.xml index b3f9975cb..5fb778825 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -250,5 +250,6 @@ <string name="folder_not_empty_dialog_title">Folder is not empty</string> <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> + <string name="move_to_top_label">Move to top</string> </resources>
\ No newline at end of file |