Enqueue: Renamed string resource

This commit is contained in:
vkay94 2020-10-06 21:17:52 +02:00
parent 12f615c6da
commit cbf364f24f
2 changed files with 4 additions and 4 deletions

View File

@ -196,7 +196,7 @@ public final class NavigationHelper {
final boolean selectOnAppend,
final boolean resumePlayback) {
Toast.makeText(context, R.string.player_append, Toast.LENGTH_SHORT).show();
Toast.makeText(context, R.string.enqueued, Toast.LENGTH_SHORT).show();
final Intent intent = getPlayerEnqueueIntent(
context, MainPlayer.class, queue, selectOnAppend, resumePlayback);
@ -217,7 +217,7 @@ public final class NavigationHelper {
return;
}
Toast.makeText(context, R.string.player_append, Toast.LENGTH_SHORT).show();
Toast.makeText(context, R.string.enqueued, Toast.LENGTH_SHORT).show();
final Intent intent = getPlayerEnqueueIntent(
context, MainPlayer.class, queue, selectOnAppend, resumePlayback);
intent.putExtra(VideoPlayer.PLAYER_TYPE, VideoPlayer.PLAYER_TYPE_POPUP);
@ -233,7 +233,7 @@ public final class NavigationHelper {
final PlayQueue queue,
final boolean selectOnAppend,
final boolean resumePlayback) {
Toast.makeText(context, R.string.player_append, Toast.LENGTH_SHORT).show();
Toast.makeText(context, R.string.enqueued, Toast.LENGTH_SHORT).show();
final Intent intent = getPlayerEnqueueIntent(
context, MainPlayer.class, queue, selectOnAppend, resumePlayback);
intent.putExtra(VideoPlayer.PLAYER_TYPE, VideoPlayer.PLAYER_TYPE_AUDIO);

View File

@ -446,7 +446,7 @@
<string name="play_queue_audio_settings">Audio Settings</string>
<string name="hold_to_append">Hold to enqueue</string>
<string name="enqueue_stream">Enqueue</string>
<string name="player_append">Enqueued</string>
<string name="enqueued">Enqueued</string>
<string name="start_here_on_main">Start playing here</string>
<string name="start_here_on_background">Start playing in the background</string>
<string name="start_here_on_popup">Start playing in a popup</string>