Renamed 'new' list to 'waiting list'

This commit is contained in:
daniel oeh 2013-03-09 21:20:33 +01:00
parent 6eb08f6693
commit aeebcab202
2 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@
<string name="podcasts_label">PODCASTS</string>
<string name="episodes_label">EPISODES</string>
<string name="new_label">New</string>
<string name="waiting_list_label">Waiting list</string>
<string name="settings_label">Settings</string>
<string name="add_new_feed_label">Add a new Feed</string>
<string name="downloads_label">Downloads</string>

View File

@ -235,7 +235,7 @@ public class ExternalEpisodesListAdapter extends BaseExpandableListAdapter {
headerString += " (" + getChildrenCount(GROUP_POS_QUEUE) + ")";
}
} else {
headerString = context.getString(R.string.new_label);
headerString = context.getString(R.string.waiting_list_label);
if (manager.getUnreadItemsSize(true) > 0) {
headerString += " (" + getChildrenCount(GROUP_POS_UNREAD) + ")";
}