diff --git a/res/values/strings.xml b/res/values/strings.xml
index c61691bb..1ebe78df 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -8,7 +8,7 @@
Enqueue
Play
Preferences
- Add to Queue
+ Media Library
Stop Service
Enqueued %s
diff --git a/src/org/kreed/vanilla/NowPlayingActivity.java b/src/org/kreed/vanilla/NowPlayingActivity.java
index 471ed326..0860f8b5 100644
--- a/src/org/kreed/vanilla/NowPlayingActivity.java
+++ b/src/org/kreed/vanilla/NowPlayingActivity.java
@@ -69,7 +69,7 @@ public class NowPlayingActivity extends Activity implements ServiceConnection, V
private static final int MENU_KILL = 0;
private static final int MENU_PREFS = 2;
- private static final int MENU_QUEUE = 3;
+ private static final int MENU_LIBRARY = 3;
@Override
public void onCreate(Bundle icicle)
@@ -277,7 +277,7 @@ public class NowPlayingActivity extends Activity implements ServiceConnection, V
public boolean onCreateOptionsMenu(Menu menu)
{
menu.add(0, MENU_PREFS, 0, R.string.settings);
- menu.add(0, MENU_QUEUE, 0, R.string.add_to_queue);
+ menu.add(0, MENU_LIBRARY, 0, R.string.library);
menu.add(0, MENU_KILL, 0, R.string.stop_service);
return true;
}
@@ -301,7 +301,7 @@ public class NowPlayingActivity extends Activity implements ServiceConnection, V
case MENU_PREFS:
startActivity(new Intent(this, PreferencesActivity.class));
break;
- case MENU_QUEUE:
+ case MENU_LIBRARY:
onSearchRequested();
break;
}