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.languageName": "English (US)", // name of language in native language
|
||||
"i18n.languageNameEnglish": "English (US)", // name of language in English
|
||||
"i18n.languageName": "हिन्दी", // name of language in native language
|
||||
"i18n.languageNameEnglish": "Hindi", // name of language in English
|
||||
"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
|
||||
|
||||
|
|
|
@ -106,7 +106,7 @@
|
|||
"term.time.second": "másodperc",
|
||||
"term.fullscreenView": "Teljes képernyős mód",
|
||||
"term.defaultView": "Alapértelmezett nézet",
|
||||
"term.spacializedAudioSetting": "Térbeli hang",
|
||||
"term.audioSettings": "Hangbeállítások",
|
||||
"term.clearAll": "Összes törlése",
|
||||
"term.recentStations": "Nemrég játszott",
|
||||
"term.language": "Nyelv",
|
||||
|
@ -131,9 +131,9 @@
|
|||
"term.sharedPlaylists": "Megosztott lejátszási listák", // Search Results
|
||||
"term.people": "Profilok", // Search Results
|
||||
"term.newpreset.name": "New EQ Preset Name", // Equalizer Preset
|
||||
"term.addedpreset": "Preset hozzáadva",
|
||||
"term.deletepreset.warn": "Are you sure you want to delete this preset?",
|
||||
"term.deletedpreset": "Preset törölve",
|
||||
"term.addedpreset": "Előbeállítás hozzáadva",
|
||||
"term.deletepreset.warn": "Biztos törölni szeretnéd ezt az előbeállítást?",
|
||||
"term.deletedpreset": "Előbeállítás törölve",
|
||||
"term.musicVideos": "Videóklipek", // Search page friendlyTypes
|
||||
"term.stations": "Állomások",
|
||||
"term.curators": "Curators",
|
||||
|
@ -229,7 +229,11 @@
|
|||
"settings.option.general.language.unsorted": "Azonosítatlan",
|
||||
|
||||
// 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.header.audio": "Hang",
|
||||
|
@ -260,7 +264,7 @@
|
|||
// Settings - Visual
|
||||
"settings.header.visual": "Vizuális",
|
||||
"settings.header.visual.description": "A Cider vizuális beállításainak módosítása.",
|
||||
"settings.option.visual.windowBackgroundStyle": "Ablak háttér stílusa", // Toggle
|
||||
"settings.option.visual.windowBackgroundStyle": "Ablakháttér stílusa", // Toggle
|
||||
"settings.header.visual.windowBackgroundStyle.none": "Sehol",
|
||||
"settings.header.visual.windowBackgroundStyle.artwork": "Borító",
|
||||
"settings.header.visual.windowBackgroundStyle.image": "Kép",
|
||||
|
@ -315,7 +319,7 @@
|
|||
// Settings - Experimental
|
||||
"settings.header.experimental": "Kísérleti",
|
||||
"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.copy_log": "Napló másolása a vágólapra",
|
||||
"settings.option.experimental.inline_playlists": "Inline Playlists and Albums",
|
||||
|
|
|
@ -101,7 +101,6 @@ export default class WebNowPlaying {
|
|||
}
|
||||
});
|
||||
}
|
||||
|
||||
private fireEvent(evt: any) {
|
||||
if (!evt.data) return;
|
||||
let value = '';
|
||||
|
@ -228,8 +227,7 @@ export default class WebNowPlaying {
|
|||
* Runs on playback State Change
|
||||
* @param attributes Music Attributes (attributes.status = current state)
|
||||
*/
|
||||
@WebNowPlaying.windowsOnly
|
||||
public onPlaybackStateDidChange(attributes: any) {
|
||||
onPlaybackStateDidChange(attributes: any) {
|
||||
this.sendSongInfo(attributes);
|
||||
}
|
||||
|
||||
|
|
|
@ -2891,7 +2891,7 @@ const app = new Vue({
|
|||
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=${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",
|
||||
"relate[editorial-items]": "contents",
|
||||
"include[editorial-items]": "contents",
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
<div class="name">{{app.getLz('term.equalizer')}}</div>
|
||||
</button>
|
||||
<button class="playlist-item"
|
||||
@click="openSpacialAudio()" style="width:100%;">
|
||||
@click="openSpatialAudio()" style="width:100%;">
|
||||
<div class="icon"><%- include("../svg/speaker.svg") %></div>
|
||||
<div class="name">{{app.getLz('settings.option.audio.enableAdvancedFunctionality.audioSpatialization')}}</div>
|
||||
</button>
|
||||
|
@ -38,7 +38,7 @@
|
|||
app.modals.equalizer = true
|
||||
app.modals.audioSettings = false
|
||||
},
|
||||
openSpacialAudio() {
|
||||
openSpatialAudio() {
|
||||
if(app.cfg.audio.spatial) {
|
||||
app.modals.spatialProperties = true
|
||||
app.modals.audioSettings = false
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue