Merge branch '436-change-play-button-tooltip' into 'develop'
Resolve "Wrong icon in play button dropdown" Closes #436 See merge request funkwhale/funkwhale!406
This commit is contained in:
commit
616f459eb7
|
@ -0,0 +1 @@
|
||||||
|
Updated wrong icon and copy in play button dropdown (#436)
|
|
@ -14,7 +14,7 @@
|
||||||
<div class="menu">
|
<div class="menu">
|
||||||
<div class="item" :disabled="!playable" @click="add" :title="labels.addToQueue"><i class="plus icon"></i><translate>Add to queue</translate></div>
|
<div class="item" :disabled="!playable" @click="add" :title="labels.addToQueue"><i class="plus icon"></i><translate>Add to queue</translate></div>
|
||||||
<div class="item" :disabled="!playable" @click="addNext()" :title="labels.playNext"><i class="step forward icon"></i><translate>Play next</translate></div>
|
<div class="item" :disabled="!playable" @click="addNext()" :title="labels.playNext"><i class="step forward icon"></i><translate>Play next</translate></div>
|
||||||
<div class="item" :disabled="!playable" @click="addNext(true)" :title="labels.playNow"><i class="arrow down icon"></i><translate>Play now</translate></div>
|
<div class="item" :disabled="!playable" @click="addNext(true)" :title="labels.playNow"><i class="play icon"></i><translate>Play now</translate></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</span>
|
</span>
|
||||||
|
@ -58,7 +58,7 @@ export default {
|
||||||
},
|
},
|
||||||
title () {
|
title () {
|
||||||
if (this.playable) {
|
if (this.playable) {
|
||||||
return this.$gettext('Play immediatly')
|
return this.$gettext('Play now')
|
||||||
} else {
|
} else {
|
||||||
if (this.track) {
|
if (this.track) {
|
||||||
return this.$gettext('This track is not available in any library you have access to')
|
return this.$gettext('This track is not available in any library you have access to')
|
||||||
|
|
Loading…
Reference in New Issue