Skip to content
Snippets Groups Projects
Commit cb9a5cdf authored by petitminion's avatar petitminion
Browse files

Changing Start Radio to Play Radio. #1400

parent f7b2f0f2
No related branches found
No related tags found
No related merge requests found
"Improve UI consistency in artist tracks (#1286)" Improve UI consistency in artist tracks (#1286)
Changin Start Radio to Play Radio (#1400)
...@@ -40,7 +40,7 @@ Listening to a Radio ...@@ -40,7 +40,7 @@ Listening to a Radio
To start listening to a radio: To start listening to a radio:
- Navigate to ``https://your-instance/library/radios`` or click "Browse Library" and select "Radios" along the top of the screen - Navigate to ``https://your-instance/library/radios`` or click "Browse Library" and select "Radios" along the top of the screen
- Find the radio you want to listen to and click on "Start radio" - Find the radio you want to listen to and click on "Play radio"
- Your queue will be populated with the **currently playing** song and the **next song on the radio** - Your queue will be populated with the **currently playing** song and the **next song on the radio**
To stop listening to a radio: To stop listening to a radio:
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
<i class="play icon"></i>{{ labels.playNow }} <i class="play icon"></i>{{ labels.playNow }}
</button> </button>
<button v-if="track" class="item basic" :disabled="!playable" @click.stop.prevent="$store.dispatch('radios/start', {type: 'similar', objectId: track.id})" :title="labels.startRadio"> <button v-if="track" class="item basic" :disabled="!playable" @click.stop.prevent="$store.dispatch('radios/start', {type: 'similar', objectId: track.id})" :title="labels.startRadio">
<i class="feed icon"></i><translate translate-context="*/Queue/Button.Label/Short, Verb">Start radio</translate> <i class="feed icon"></i><translate translate-context="*/Queue/Button.Label/Short, Verb">Play radio</translate>
</button> </button>
<div class="divider"></div> <div class="divider"></div>
<button v-if="filterableArtist" ref="filterArtist" data-ref="filterArtist" class="item basic" :disabled="!filterableArtist" @click.stop.prevent="filterArtist" :title="labels.hideArtist"> <button v-if="filterableArtist" ref="filterArtist" data-ref="filterArtist" class="item basic" :disabled="!filterableArtist" @click.stop.prevent="filterArtist" :title="labels.hideArtist">
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
<button @click="toggleRadio" :class="['ui', 'primary', {'inverted': running}, 'icon', 'labeled', 'button']"> <button @click="toggleRadio" :class="['ui', 'primary', {'inverted': running}, 'icon', 'labeled', 'button']">
<i class="ui feed icon" role="button"></i> <i class="ui feed icon" role="button"></i>
<template v-if="running"><translate translate-context="*/Player/Button.Label/Short, Verb">Stop radio</translate></template> <template v-if="running"><translate translate-context="*/Player/Button.Label/Short, Verb">Stop radio</translate></template>
<template v-else><translate translate-context="*/Queue/Button.Label/Short, Verb">Start radio</translate></template> <template v-else><translate translate-context="*/Queue/Button.Label/Short, Verb">Play radio</translate></template>
</button> </button>
</template> </template>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment