Merge branch 'develop' into develop
This commit is contained in:
commit
6b871a17a4
5 changed files with 17 additions and 15 deletions
|
@ -1,8 +1,8 @@
|
||||||
{
|
{
|
||||||
|
|
||||||
// i18n Info
|
// i18n Info
|
||||||
"i18n.languageName": "English (US)", // name of language in native language
|
"i18n.languageName": "हिन्दी", // name of language in native language
|
||||||
"i18n.languageNameEnglish": "English (US)", // name of language in English
|
"i18n.languageNameEnglish": "Hindi", // name of language in English
|
||||||
"i18n.category": "main", // main = real language, fun = fun community languages
|
"i18n.category": "main", // main = real language, fun = fun community languages
|
||||||
"i18n.authors": "@maikirakiwi @vringster", // Authors, if you contribute to this file feel free to add your name seperated with a space
|
"i18n.authors": "@maikirakiwi @vringster", // Authors, if you contribute to this file feel free to add your name seperated with a space
|
||||||
|
|
||||||
|
|
|
@ -106,7 +106,7 @@
|
||||||
"term.time.second": "másodperc",
|
"term.time.second": "másodperc",
|
||||||
"term.fullscreenView": "Teljes képernyős mód",
|
"term.fullscreenView": "Teljes képernyős mód",
|
||||||
"term.defaultView": "Alapértelmezett nézet",
|
"term.defaultView": "Alapértelmezett nézet",
|
||||||
"term.spacializedAudioSetting": "Térbeli hang",
|
"term.audioSettings": "Hangbeállítások",
|
||||||
"term.clearAll": "Összes törlése",
|
"term.clearAll": "Összes törlése",
|
||||||
"term.recentStations": "Nemrég játszott",
|
"term.recentStations": "Nemrég játszott",
|
||||||
"term.language": "Nyelv",
|
"term.language": "Nyelv",
|
||||||
|
@ -131,9 +131,9 @@
|
||||||
"term.sharedPlaylists": "Megosztott lejátszási listák", // Search Results
|
"term.sharedPlaylists": "Megosztott lejátszási listák", // Search Results
|
||||||
"term.people": "Profilok", // Search Results
|
"term.people": "Profilok", // Search Results
|
||||||
"term.newpreset.name": "New EQ Preset Name", // Equalizer Preset
|
"term.newpreset.name": "New EQ Preset Name", // Equalizer Preset
|
||||||
"term.addedpreset": "Preset hozzáadva",
|
"term.addedpreset": "Előbeállítás hozzáadva",
|
||||||
"term.deletepreset.warn": "Are you sure you want to delete this preset?",
|
"term.deletepreset.warn": "Biztos törölni szeretnéd ezt az előbeállítást?",
|
||||||
"term.deletedpreset": "Preset törölve",
|
"term.deletedpreset": "Előbeállítás törölve",
|
||||||
"term.musicVideos": "Videóklipek", // Search page friendlyTypes
|
"term.musicVideos": "Videóklipek", // Search page friendlyTypes
|
||||||
"term.stations": "Állomások",
|
"term.stations": "Állomások",
|
||||||
"term.curators": "Curators",
|
"term.curators": "Curators",
|
||||||
|
@ -229,7 +229,11 @@
|
||||||
"settings.option.general.language.unsorted": "Azonosítatlan",
|
"settings.option.general.language.unsorted": "Azonosítatlan",
|
||||||
|
|
||||||
// Update Cider
|
// Update Cider
|
||||||
"settings.option.general.updateCider": "A Cider frissítése", // Button
|
"settings.option.general.updateCider": "Cider frissítése", // Button. Refer to term.check for the check button
|
||||||
|
"settings.option.general.updateCider.branch": "Verzió kiválasztása", // Dropdown
|
||||||
|
"settings.option.general.updateCider.branch.description": "Válaszd ki a Cider melyik verziójára szeretnél frissíteni",
|
||||||
|
"settings.option.general.updateCider.branch.main": "Normál",
|
||||||
|
"settings.option.general.updateCider.branch.develop": "Fejlesztői",
|
||||||
|
|
||||||
// Settings - Audio
|
// Settings - Audio
|
||||||
"settings.header.audio": "Hang",
|
"settings.header.audio": "Hang",
|
||||||
|
@ -315,7 +319,7 @@
|
||||||
// Settings - Experimental
|
// Settings - Experimental
|
||||||
"settings.header.experimental": "Kísérleti",
|
"settings.header.experimental": "Kísérleti",
|
||||||
"settings.header.experimental.description": "A Cider kísérleti beállításainak módosítása.",
|
"settings.header.experimental.description": "A Cider kísérleti beállításainak módosítása.",
|
||||||
"settings.option.experimental.compactUI": "Kompakt UI", // Toggle
|
"settings.option.experimental.compactUI": "Kompakt felület", // Toggle
|
||||||
"settings.option.experimental.close_button_hide": "A bezárás gomb rejtse el az alkalmazást",
|
"settings.option.experimental.close_button_hide": "A bezárás gomb rejtse el az alkalmazást",
|
||||||
"settings.option.experimental.copy_log": "Napló másolása a vágólapra",
|
"settings.option.experimental.copy_log": "Napló másolása a vágólapra",
|
||||||
"settings.option.experimental.inline_playlists": "Inline Playlists and Albums",
|
"settings.option.experimental.inline_playlists": "Inline Playlists and Albums",
|
||||||
|
|
|
@ -101,7 +101,6 @@ export default class WebNowPlaying {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
private fireEvent(evt: any) {
|
private fireEvent(evt: any) {
|
||||||
if (!evt.data) return;
|
if (!evt.data) return;
|
||||||
let value = '';
|
let value = '';
|
||||||
|
@ -228,8 +227,7 @@ export default class WebNowPlaying {
|
||||||
* Runs on playback State Change
|
* Runs on playback State Change
|
||||||
* @param attributes Music Attributes (attributes.status = current state)
|
* @param attributes Music Attributes (attributes.status = current state)
|
||||||
*/
|
*/
|
||||||
@WebNowPlaying.windowsOnly
|
onPlaybackStateDidChange(attributes: any) {
|
||||||
public onPlaybackStateDidChange(attributes: any) {
|
|
||||||
this.sendSongInfo(attributes);
|
this.sendSongInfo(attributes);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2891,7 +2891,7 @@ const app = new Vue({
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
//this.mk.api.v3.music(`/v1/catalog/${app.mk.storefrontId}/search?term=${this.search.term}`
|
//this.mk.api.v3.music(`/v1/catalog/${app.mk.storefrontId}/search?term=${this.search.term}`
|
||||||
this.mk.api.v3.music(`/v1/catalog/${app.mk.storefrontId}/search?term=${this.search.term}`, {
|
this.mk.api.v3.music(`/v1/catalog/${app.mk.storefrontId}/search?term=${encodeURIComponent(this.search.term)}`, {
|
||||||
types: "activities,albums,apple-curators,artists,curators,editorial-items,music-movies,music-videos,playlists,songs,stations,tv-episodes,uploaded-videos,record-labels",
|
types: "activities,albums,apple-curators,artists,curators,editorial-items,music-movies,music-videos,playlists,songs,stations,tv-episodes,uploaded-videos,record-labels",
|
||||||
"relate[editorial-items]": "contents",
|
"relate[editorial-items]": "contents",
|
||||||
"include[editorial-items]": "contents",
|
"include[editorial-items]": "contents",
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
<div class="name">{{app.getLz('term.equalizer')}}</div>
|
<div class="name">{{app.getLz('term.equalizer')}}</div>
|
||||||
</button>
|
</button>
|
||||||
<button class="playlist-item"
|
<button class="playlist-item"
|
||||||
@click="openSpacialAudio()" style="width:100%;">
|
@click="openSpatialAudio()" style="width:100%;">
|
||||||
<div class="icon"><%- include("../svg/speaker.svg") %></div>
|
<div class="icon"><%- include("../svg/speaker.svg") %></div>
|
||||||
<div class="name">{{app.getLz('settings.option.audio.enableAdvancedFunctionality.audioSpatialization')}}</div>
|
<div class="name">{{app.getLz('settings.option.audio.enableAdvancedFunctionality.audioSpatialization')}}</div>
|
||||||
</button>
|
</button>
|
||||||
|
@ -38,7 +38,7 @@
|
||||||
app.modals.equalizer = true
|
app.modals.equalizer = true
|
||||||
app.modals.audioSettings = false
|
app.modals.audioSettings = false
|
||||||
},
|
},
|
||||||
openSpacialAudio() {
|
openSpatialAudio() {
|
||||||
if(app.cfg.audio.spatial) {
|
if(app.cfg.audio.spatial) {
|
||||||
app.modals.spatialProperties = true
|
app.modals.spatialProperties = true
|
||||||
app.modals.audioSettings = false
|
app.modals.audioSettings = false
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue