Merge pull request #1983 from mfietz/issue/1970-remove-ambiguous

Item view: Make remove/delete less ambiguous
This commit is contained in:
Tom Hennen 2016-06-19 18:36:21 -04:00 committed by GitHub
commit b7dfea13b0
2 changed files with 2 additions and 1 deletions

View File

@ -421,7 +421,7 @@ public class ItemFragment extends Fragment implements OnSwipeGesture {
butAction2Text = R.string.stream_label; butAction2Text = R.string.stream_label;
} else { } else {
butAction2Icon = "{md-delete 24sp}"; butAction2Icon = "{md-delete 24sp}";
butAction2Text = R.string.remove_label; butAction2Text = R.string.delete_label;
} }
if (isDownloading) { if (isDownloading) {
butAction1Icon = "{md-cancel 24sp}"; butAction1Icon = "{md-cancel 24sp}";

View File

@ -141,6 +141,7 @@
<string name="stop_label">Stop</string> <string name="stop_label">Stop</string>
<string name="stream_label">Stream</string> <string name="stream_label">Stream</string>
<string name="remove_label">Remove</string> <string name="remove_label">Remove</string>
<string name="delete_label">Delete</string>
<string name="remove_episode_lable">Remove Episode</string> <string name="remove_episode_lable">Remove Episode</string>
<string name="marked_as_seen_label">Marked as seen</string> <string name="marked_as_seen_label">Marked as seen</string>
<string name="mark_read_label">Mark as played</string> <string name="mark_read_label">Mark as played</string>