added i18n for history and queue on new buttons
This commit is contained in:
parent
7e476be492
commit
66f379f279
3 changed files with 3 additions and 3 deletions
|
@ -33,6 +33,7 @@
|
|||
"term.about": "About",
|
||||
"term.privateSession": "Private Session",
|
||||
"term.queue": "Queue",
|
||||
"term.history": "History",
|
||||
"term.search": "Search",
|
||||
"term.library": "Library",
|
||||
"term.listenNow": "Listen Now",
|
||||
|
|
|
@ -602,7 +602,6 @@ const app = new Vue({
|
|||
})
|
||||
this.$forceUpdate()
|
||||
if (this.isDev) {
|
||||
less.watch() // automatically reload the styles when they change
|
||||
this.mk.privateEnabled = true
|
||||
// Hide UserInfo if Dev mode
|
||||
} else {
|
||||
|
|
|
@ -37,8 +37,8 @@
|
|||
</div>
|
||||
<div class="queue-footer">
|
||||
<div class="btn-group" style="width:100%;">
|
||||
<button class="md-btn md-btn-small" :class="{'md-btn-primary': (page == 'queue')}" @click="page = 'queue'">Queue</button>
|
||||
<button class="md-btn md-btn-small" :class="{'md-btn-primary': (page == 'history')}" @click="getHistory();page = 'history'">History</button>
|
||||
<button class="md-btn md-btn-small" :class="{'md-btn-primary': (page == 'queue')}" @click="page = 'queue'">{{app.getLz('term.queue')}}</button>
|
||||
<button class="md-btn md-btn-small" :class="{'md-btn-primary': (page == 'history')}" @click="getHistory();page = 'history'">{{app.getLz('term.history')}}</button>
|
||||
</div>
|
||||
<button class="md-btn md-btn-small" style="width:100%;margin-top:6px;" v-if="queueItems.length > 1" @click="app.mk.clearQueue();updateQueue()">{{app.getLz('term.clearAll')}}</button>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue