add some missing slots in i18n
This commit is contained in:
parent
675684c351
commit
6774926b6a
3 changed files with 49 additions and 24 deletions
|
@ -194,6 +194,9 @@
|
||||||
"settings.header.connectivity.discordRPC.appleMusic": "Display as 'Apple Music'",
|
"settings.header.connectivity.discordRPC.appleMusic": "Display as 'Apple Music'",
|
||||||
"settings.option.connectivity.discordRPC.clearOnPause": "Clear Discord Rich Presence on Pause", // Toggle
|
"settings.option.connectivity.discordRPC.clearOnPause": "Clear Discord Rich Presence on Pause", // Toggle
|
||||||
"settings.option.connectivity.lastfmScrobble": "LastFM Scrobbling", // Option to Connect
|
"settings.option.connectivity.lastfmScrobble": "LastFM Scrobbling", // Option to Connect
|
||||||
|
"settings.option.connectivity.lastfmScrobble.delay": "LastFM Scrobble Delay (%)",
|
||||||
|
"settings.option.connectivity.lastfmScrobble.nowPlaying": "Enable LastFM Now Playing",
|
||||||
|
"settings.option.connectivity.lastfmScrobble.removeFeatured": "Remove featuring artists from song title (LastFM)",
|
||||||
// Refer to term.connect for the connect button
|
// Refer to term.connect for the connect button
|
||||||
|
|
||||||
// Settings - Experimental
|
// Settings - Experimental
|
||||||
|
@ -201,6 +204,28 @@
|
||||||
"settings.header.experimental.description": "Adjust the experimental settings for Cider.",
|
"settings.header.experimental.description": "Adjust the experimental settings for Cider.",
|
||||||
"settings.option.experimental.compactUI": "Compact UI", // Toggle
|
"settings.option.experimental.compactUI": "Compact UI", // Toggle
|
||||||
// Refer to term.disabled & term.enabled
|
// Refer to term.disabled & term.enabled
|
||||||
|
|
||||||
|
// Spatialization Menu
|
||||||
|
"spatial.spatialProperties" : "Spatial Properties",
|
||||||
|
"spatial.width" : "Width",
|
||||||
|
"spatial.height" : "Height",
|
||||||
|
"spatial.depth" : "Depth",
|
||||||
|
"spatial.roomMaterials" : "Room Materials",
|
||||||
|
"spatial.roomDimensions" : "Room Dimensions",
|
||||||
|
"spatial.roomPositions" : "Room Positions",
|
||||||
|
"spatial.setDimensions" : "Set Dimensions",
|
||||||
|
"spatial.setPositions" : "Set Positions",
|
||||||
|
"spatial.up" : "Up",
|
||||||
|
"spatial.front" : "Front",
|
||||||
|
"spatial.left" : "Left",
|
||||||
|
"spatial.right" : "Right",
|
||||||
|
"spatial.back" : "Back",
|
||||||
|
"spatial.down" : "Down",
|
||||||
|
"spatial.listener" : "Listener",
|
||||||
|
"spatial.audioSource" : "Audio Source",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// Settings - Unfinished
|
// Settings - Unfinished
|
||||||
"settings.header.unfinished": "Unfinished",
|
"settings.header.unfinished": "Unfinished",
|
||||||
|
|
|
@ -2,15 +2,15 @@
|
||||||
<div class="modal-fullscreen spatialproperties-panel">
|
<div class="modal-fullscreen spatialproperties-panel">
|
||||||
<div class="modal-window" v-if="ready">
|
<div class="modal-window" v-if="ready">
|
||||||
<div class="modal-header">
|
<div class="modal-header">
|
||||||
<div class="modal-title">Spatial Properties</div>
|
<div class="modal-title">{{$root.getLz('spatial.spatialProperties')}}</div>
|
||||||
<button class="close-btn" @click="close()"></button>
|
<button class="close-btn" @click="close()"></button>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-content">
|
<div class="modal-content">
|
||||||
<template v-if="roomEditType == 'dimensions'">
|
<template v-if="roomEditType == 'dimensions'">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col"><h3>Room Dimensions</h3></div>
|
<div class="col"><h3>{{$root.getLz('spatial.roomDimensions')}}</h3></div>
|
||||||
<div class="col-auto flex-center">
|
<div class="col-auto flex-center">
|
||||||
<button class="md-btn" @click="roomEditType = 'positions'">Set Positions</button>
|
<button class="md-btn" @click="roomEditType = 'positions'">{{$root.getLz('spatial.setPositions')}}</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
@ -18,7 +18,7 @@
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-3 flex-center">
|
<div class="col-3 flex-center">
|
||||||
Width
|
{{$root.getLz('spatial.width')}}
|
||||||
</div>
|
</div>
|
||||||
<div class="col flex-center">
|
<div class="col flex-center">
|
||||||
<input type="range" class="md-slider" min="0" max="100" @change="setRoom()" style="width: 100%;"
|
<input type="range" class="md-slider" min="0" max="100" @change="setRoom()" style="width: 100%;"
|
||||||
|
@ -32,7 +32,7 @@
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-3 flex-center">
|
<div class="col-3 flex-center">
|
||||||
Height
|
{{$root.getLz('spatial.height')}}
|
||||||
</div>
|
</div>
|
||||||
<div class="col flex-center">
|
<div class="col flex-center">
|
||||||
<input type="range" class="md-slider" min="0" max="100" @change="setRoom()" style="width: 100%;"
|
<input type="range" class="md-slider" min="0" max="100" @change="setRoom()" style="width: 100%;"
|
||||||
|
@ -46,7 +46,7 @@
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-3 flex-center">
|
<div class="col-3 flex-center">
|
||||||
Depth
|
{{$root.getLz('spatial.depth')}}
|
||||||
</div>
|
</div>
|
||||||
<div class="col flex-center">
|
<div class="col flex-center">
|
||||||
<input type="range" class="md-slider" min="0" max="100" @change="setRoom()" style="width: 100%;"
|
<input type="range" class="md-slider" min="0" max="100" @change="setRoom()" style="width: 100%;"
|
||||||
|
@ -73,9 +73,9 @@
|
||||||
</template>
|
</template>
|
||||||
<template v-if="roomEditType == 'positions'">
|
<template v-if="roomEditType == 'positions'">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col"><h3>Room Positions</h3></div>
|
<div class="col"><h3>{{$root.getLz('spatial.roomPositons')}}</h3></div>
|
||||||
<div class="col-auto flex-center">
|
<div class="col-auto flex-center">
|
||||||
<button class="md-btn" @click="roomEditType = 'dimensions'">Set Dimensions</button>
|
<button class="md-btn" @click="roomEditType = 'dimensions'">{{$root.getLz('spatial.setDimensions')}}</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
@ -83,7 +83,7 @@
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-3 flex-center">
|
<div class="col-3 flex-center">
|
||||||
X (Listener)
|
X ({{$root.getLz('spatial.listener')}})
|
||||||
</div>
|
</div>
|
||||||
<div class="col flex-center">
|
<div class="col flex-center">
|
||||||
<input type="range" class="md-slider" min="0" max="100" @change="setRoom()" style="width: 100%;"
|
<input type="range" class="md-slider" min="0" max="100" @change="setRoom()" style="width: 100%;"
|
||||||
|
@ -97,7 +97,7 @@
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-3 flex-center">
|
<div class="col-3 flex-center">
|
||||||
Y (Listener)
|
Y ({{$root.getLz('spatial.listener')}})
|
||||||
</div>
|
</div>
|
||||||
<div class="col flex-center">
|
<div class="col flex-center">
|
||||||
<input type="range" class="md-slider" min="0" max="100" @change="setRoom()" style="width: 100%;"
|
<input type="range" class="md-slider" min="0" max="100" @change="setRoom()" style="width: 100%;"
|
||||||
|
@ -111,7 +111,7 @@
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-3 flex-center">
|
<div class="col-3 flex-center">
|
||||||
Z (Listener)
|
Z ({{$root.getLz('spatial.listener')}})
|
||||||
</div>
|
</div>
|
||||||
<div class="col flex-center">
|
<div class="col flex-center">
|
||||||
<input type="range" class="md-slider" min="0" max="100" @change="setRoom()" style="width: 100%;"
|
<input type="range" class="md-slider" min="0" max="100" @change="setRoom()" style="width: 100%;"
|
||||||
|
@ -125,7 +125,7 @@
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-3 flex-center">
|
<div class="col-3 flex-center">
|
||||||
X (Audio Source)
|
X ({{$root.getLz('spatial.audioSource')}})
|
||||||
</div>
|
</div>
|
||||||
<div class="col flex-center">
|
<div class="col flex-center">
|
||||||
<input type="range" class="md-slider" min="0" max="100" @change="setRoom()" style="width: 100%;"
|
<input type="range" class="md-slider" min="0" max="100" @change="setRoom()" style="width: 100%;"
|
||||||
|
@ -139,7 +139,7 @@
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-3 flex-center">
|
<div class="col-3 flex-center">
|
||||||
Y (Audio Source)
|
Y ({{$root.getLz('spatial.audioSource')}})
|
||||||
</div>
|
</div>
|
||||||
<div class="col flex-center">
|
<div class="col flex-center">
|
||||||
<input type="range" class="md-slider" min="0" max="100" @change="setRoom()" style="width: 100%;"
|
<input type="range" class="md-slider" min="0" max="100" @change="setRoom()" style="width: 100%;"
|
||||||
|
@ -153,7 +153,7 @@
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-3 flex-center">
|
<div class="col-3 flex-center">
|
||||||
Z (Audio Source)
|
Z ({{$root.getLz('spatial.audioSource')}})
|
||||||
</div>
|
</div>
|
||||||
<div class="col flex-center">
|
<div class="col flex-center">
|
||||||
<input type="range" class="md-slider" min="0" max="100" @change="setRoom()" style="width: 100%;"
|
<input type="range" class="md-slider" min="0" max="100" @change="setRoom()" style="width: 100%;"
|
||||||
|
@ -179,13 +179,13 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col"><h3>Room Materials</h3></div>
|
<div class="col"><h3>{{$root.getLz('spatial.roomMaterials')}}</h3></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col"></div>
|
<div class="col"></div>
|
||||||
<div class="col flex-center">
|
<div class="col flex-center">
|
||||||
<label>
|
<label>
|
||||||
Up
|
{{$root.getLz('spatial.up')}}
|
||||||
<select class="md-select" @change="setRoom()"
|
<select class="md-select" @change="setRoom()"
|
||||||
v-model="room_materials.up">
|
v-model="room_materials.up">
|
||||||
<option v-for="prop in roomProps" :value="prop">{{ prop }}</option>
|
<option v-for="prop in roomProps" :value="prop">{{ prop }}</option>
|
||||||
|
@ -197,7 +197,7 @@
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col flex-center">
|
<div class="col flex-center">
|
||||||
<label>
|
<label>
|
||||||
Left
|
{{$root.getLz('spatial.left')}}
|
||||||
<select class="md-select" @change="setRoom()"
|
<select class="md-select" @change="setRoom()"
|
||||||
v-model="room_materials.left">
|
v-model="room_materials.left">
|
||||||
<option v-for="prop in roomProps" :value="prop">{{ prop }}</option>
|
<option v-for="prop in roomProps" :value="prop">{{ prop }}</option>
|
||||||
|
@ -206,14 +206,14 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="col flex-center">
|
<div class="col flex-center">
|
||||||
<label>
|
<label>
|
||||||
Front
|
{{$root.getLz('spatial.front')}}
|
||||||
<select class="md-select" @change="setRoom()"
|
<select class="md-select" @change="setRoom()"
|
||||||
v-model="room_materials.front">
|
v-model="room_materials.front">
|
||||||
<option v-for="prop in roomProps" :value="prop">{{ prop }}</option>
|
<option v-for="prop in roomProps" :value="prop">{{ prop }}</option>
|
||||||
</select>
|
</select>
|
||||||
</label>
|
</label>
|
||||||
<label>
|
<label>
|
||||||
Back
|
{{$root.getLz('spatial.back')}}
|
||||||
<select class="md-select" @change="setRoom()"
|
<select class="md-select" @change="setRoom()"
|
||||||
v-model="room_materials.back">
|
v-model="room_materials.back">
|
||||||
<option v-for="prop in roomProps" :value="prop">{{ prop }}</option>
|
<option v-for="prop in roomProps" :value="prop">{{ prop }}</option>
|
||||||
|
@ -222,7 +222,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="col flex-center">
|
<div class="col flex-center">
|
||||||
<label>
|
<label>
|
||||||
Right
|
{{$root.getLz('spatial.right')}}
|
||||||
<select class="md-select" @change="setRoom()"
|
<select class="md-select" @change="setRoom()"
|
||||||
v-model="room_materials.right">
|
v-model="room_materials.right">
|
||||||
<option v-for="prop in roomProps" :value="prop">{{ prop }}</option>
|
<option v-for="prop in roomProps" :value="prop">{{ prop }}</option>
|
||||||
|
@ -234,7 +234,7 @@
|
||||||
<div class="col"></div>
|
<div class="col"></div>
|
||||||
<div class="col flex-center">
|
<div class="col flex-center">
|
||||||
<label>
|
<label>
|
||||||
Down
|
{{$root.getLz('spatial.down')}}
|
||||||
<select class="md-select" @change="setRoom()"
|
<select class="md-select" @change="setRoom()"
|
||||||
v-model="room_materials.down">
|
v-model="room_materials.down">
|
||||||
<option v-for="prop in roomProps" :value="prop">{{ prop }}</option>
|
<option v-for="prop in roomProps" :value="prop">{{ prop }}</option>
|
||||||
|
|
|
@ -472,7 +472,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="md-option-line" v-show ="app.cfg.lastfm.enabled">
|
<div class="md-option-line" v-show ="app.cfg.lastfm.enabled">
|
||||||
<div class="md-option-segment">
|
<div class="md-option-segment">
|
||||||
LastFM Scrobble Delay (%)
|
{{$root.getLz('settings.option.connectivity.lastfmScrobble.delay')}}
|
||||||
</div>
|
</div>
|
||||||
<div class="md-option-segment md-option-segment_auto" >
|
<div class="md-option-segment md-option-segment_auto" >
|
||||||
<input type="number" min="50" max="100" v-model="app.cfg.lastfm.scrobble_after"/>
|
<input type="number" min="50" max="100" v-model="app.cfg.lastfm.scrobble_after"/>
|
||||||
|
@ -480,7 +480,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="md-option-line" v-show ="app.cfg.lastfm.enabled">
|
<div class="md-option-line" v-show ="app.cfg.lastfm.enabled">
|
||||||
<div class="md-option-segment">
|
<div class="md-option-segment">
|
||||||
Enable LastFM Now Playing
|
{{$root.getLz('settings.option.connectivity.lastfmScrobble.nowPlaying')}}
|
||||||
</div>
|
</div>
|
||||||
<div class="md-option-segment md-option-segment_auto" >
|
<div class="md-option-segment md-option-segment_auto" >
|
||||||
<input type="checkbox" v-model="app.cfg.lastfm.NowPlaying" switch/>
|
<input type="checkbox" v-model="app.cfg.lastfm.NowPlaying" switch/>
|
||||||
|
@ -488,7 +488,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="md-option-line" v-show ="app.cfg.lastfm.enabled">
|
<div class="md-option-line" v-show ="app.cfg.lastfm.enabled">
|
||||||
<div class="md-option-segment">
|
<div class="md-option-segment">
|
||||||
Remove featuring artists from song title (LastFM)
|
{{$root.getLz('settings.option.connectivity.lastfmScrobble.removeFeatured')}}
|
||||||
</div>
|
</div>
|
||||||
<div class="md-option-segment md-option-segment_auto" >
|
<div class="md-option-segment md-option-segment_auto" >
|
||||||
<input type="checkbox" v-model="app.cfg.lastfm.enabledRemoveFeaturingArtists" switch/>
|
<input type="checkbox" v-model="app.cfg.lastfm.enabledRemoveFeaturingArtists" switch/>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue