mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
3.2.19.8
This commit is contained in:
parent
b6740d9781
commit
310fca9cf2
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
define(["globalize"],function(globalize){"use strict";function parseISO8601Date(s,toLocal){var re=/(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2})(\.\d+)?(Z|([+-])(\d{2}):(\d{2}))?/,d=s.match(re);if(!d)throw"Couldn't parse ISO 8601 date string '"+s+"'";var a=[1,2,3,4,5,6,10,11];for(var i in a)d[a[i]]=parseInt(d[a[i]],10);d[7]=parseFloat(d[7]);var ms=Date.UTC(d[1],d[2]-1,d[3],d[4],d[5],d[6]);if(d[7]>0&&(ms+=Math.round(1e3*d[7])),"Z"!==d[8]&&d[10]){var offset=60*d[10]*60*1e3;d[11]&&(offset+=60*d[11]*1e3),"-"===d[9]?ms-=offset:ms+=offset}else toLocal===!1&&(ms+=6e4*(new Date).getTimezoneOffset());return new Date(ms)}function getDisplayRunningTime(ticks){var ticksPerHour=36e9,ticksPerMinute=6e8,ticksPerSecond=1e7,parts=[],hours=ticks/ticksPerHour;hours=Math.floor(hours),hours&&parts.push(hours),ticks-=hours*ticksPerHour;var minutes=ticks/ticksPerMinute;minutes=Math.floor(minutes),ticks-=minutes*ticksPerMinute,minutes<10&&hours&&(minutes="0"+minutes),parts.push(minutes);var seconds=ticks/ticksPerSecond;return seconds=Math.floor(seconds),seconds<10&&(seconds="0"+seconds),parts.push(seconds),parts.join(":")}function getCurrentLocale(){var locale=globalize.getCurrentLocale();return locale}function getOptionList(options){var list=[];for(var i in options)list.push({name:i,value:options[i]});return list}function toLocaleString(date,options){if(!date)throw new Error("date cannot be null");if(options=options||{},toLocaleTimeStringSupportsLocales){var currentLocale=getCurrentLocale();if(currentLocale)return date.toLocaleString(currentLocale,options)}return date.toLocaleString()}function toLocaleDateString(date,options){if(!date)throw new Error("date cannot be null");if(options=options||{},toLocaleTimeStringSupportsLocales){var currentLocale=getCurrentLocale();if(currentLocale)return date.toLocaleDateString(currentLocale,options)}var optionList=getOptionList(options);if(1===optionList.length&&"weekday"===optionList[0].name){var weekday=[];return weekday[0]="Sun",weekday[1]="Mon",weekday[2]="Tue",weekday[3]="Wed",weekday[4]="Thu",weekday[5]="Fri",weekday[6]="Sat",weekday[date.getDay()]}return date.toLocaleDateString()}function toLocaleTimeString(date,options){if(!date)throw new Error("date cannot be null");if(options=options||{},toLocaleTimeStringSupportsLocales){var currentLocale=getCurrentLocale();if(currentLocale)return date.toLocaleTimeString(currentLocale,options)}return date.toLocaleTimeString()}function getDisplayTime(date){if(!date)throw new Error("date cannot be null");if("string"===(typeof date).toString().toLowerCase())try{date=parseISO8601Date(date,!0)}catch(err){return date}if(toLocaleTimeStringSupportsLocales)return toLocaleTimeString(date,{hour:"numeric",minute:"2-digit"});var time=toLocaleTimeString(date),timeLower=time.toLowerCase();if(timeLower.indexOf("am")!==-1||timeLower.indexOf("pm")!==-1){time=timeLower;var hour=date.getHours()%12,suffix=date.getHours()>11?"pm":"am";hour||(hour=12);var minutes=date.getMinutes();minutes<10&&(minutes="0"+minutes),minutes=":"+minutes,time=hour+minutes+suffix}else{var timeParts=time.split(":");timeParts.length>2&&(timeParts.length-=1,time=timeParts.join(":"))}return time}function isRelativeDay(date,offsetInDays){if(!date)throw new Error("date cannot be null");var yesterday=new Date,day=yesterday.getDate()+offsetInDays;return yesterday.setDate(day),date.getFullYear()===yesterday.getFullYear()&&date.getMonth()===yesterday.getMonth()&&date.getDate()===day}var toLocaleTimeStringSupportsLocales=function(){try{(new Date).toLocaleTimeString("i")}catch(e){return"RangeError"===e.name}return!1}();return{parseISO8601Date:parseISO8601Date,getDisplayRunningTime:getDisplayRunningTime,toLocaleDateString:toLocaleDateString,toLocaleString:toLocaleString,getDisplayTime:getDisplayTime,isRelativeDay:isRelativeDay}});
|
||||
define(["globalize"],function(globalize){"use strict";function parseISO8601Date(s,toLocal){var re=/(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2})(\.\d+)?(Z|([+-])(\d{2}):(\d{2}))?/,d=s.match(re);if(!d)throw"Couldn't parse ISO 8601 date string '"+s+"'";var a=[1,2,3,4,5,6,10,11];for(var i in a)d[a[i]]=parseInt(d[a[i]],10);d[7]=parseFloat(d[7]);var ms=Date.UTC(d[1],d[2]-1,d[3],d[4],d[5],d[6]);if(d[7]>0&&(ms+=Math.round(1e3*d[7])),"Z"!==d[8]&&d[10]){var offset=60*d[10]*60*1e3;d[11]&&(offset+=60*d[11]*1e3),"-"===d[9]?ms-=offset:ms+=offset}else toLocal===!1&&(ms+=6e4*(new Date).getTimezoneOffset());return new Date(ms)}function getDisplayRunningTime(ticks){var ticksPerHour=36e9,ticksPerMinute=6e8,ticksPerSecond=1e7,parts=[],hours=ticks/ticksPerHour;hours=Math.floor(hours),hours&&parts.push(hours),ticks-=hours*ticksPerHour;var minutes=ticks/ticksPerMinute;minutes=Math.floor(minutes),ticks-=minutes*ticksPerMinute,minutes<10&&hours&&(minutes="0"+minutes),parts.push(minutes);var seconds=ticks/ticksPerSecond;return seconds=Math.floor(seconds),seconds<10&&(seconds="0"+seconds),parts.push(seconds),parts.join(":")}function getCurrentLocale(){var locale=globalize.getCurrentLocale();return locale}function getOptionList(options){var list=[];for(var i in options)list.push({name:i,value:options[i]});return list}function toLocaleString(date,options){if(!date)throw new Error("date cannot be null");if(options=options||{},toLocaleTimeStringSupportsLocales){var currentLocale=getCurrentLocale();if(currentLocale)return date.toLocaleString(currentLocale,options)}return date.toLocaleString()}function toLocaleDateString(date,options){if(!date)throw new Error("date cannot be null");if(options=options||{},toLocaleTimeStringSupportsLocales){var currentLocale=getCurrentLocale();if(currentLocale)return date.toLocaleDateString(currentLocale,options)}var optionList=getOptionList(options);if(1===optionList.length&&"weekday"===optionList[0].name){var weekday=[];return weekday[0]="Sun",weekday[1]="Mon",weekday[2]="Tue",weekday[3]="Wed",weekday[4]="Thu",weekday[5]="Fri",weekday[6]="Sat",weekday[date.getDay()]}return date.toLocaleDateString()}function toLocaleTimeString(date,options){if(!date)throw new Error("date cannot be null");if(options=options||{},toLocaleTimeStringSupportsLocales){var currentLocale=getCurrentLocale();if(currentLocale)return date.toLocaleTimeString(currentLocale,options)}return date.toLocaleTimeString()}function getDisplayTime(date){if(!date)throw new Error("date cannot be null");if("string"===(typeof date).toString().toLowerCase())try{date=parseISO8601Date(date,!0)}catch(err){return date}if(toLocaleTimeStringSupportsLocales)return toLocaleTimeString(date,{hour:"numeric",minute:"2-digit"});var time=toLocaleTimeString(date),timeLower=time.toLowerCase();if(timeLower.indexOf("am")!==-1||timeLower.indexOf("pm")!==-1){time=timeLower;var hour=date.getHours()%12,suffix=date.getHours()>11?"pm":"am";hour||(hour=12);var minutes=date.getMinutes();minutes<10&&(minutes="0"+minutes),minutes=":"+minutes,time=hour+minutes+suffix}else{var timeParts=time.split(":");timeParts.length>2&&(timeParts.length-=1,time=timeParts.join(":"))}return time}function isRelativeDay(date,offsetInDays){if(!date)throw new Error("date cannot be null");var yesterday=new Date,day=yesterday.getDate()+offsetInDays;return yesterday.setDate(day),date.getFullYear()===yesterday.getFullYear()&&date.getMonth()===yesterday.getMonth()&&date.getDate()===day}var toLocaleTimeStringSupportsLocales=function(){try{(new Date).toLocaleTimeString("i")}catch(e){return"RangeError"===e.name}return!1}();return{parseISO8601Date:parseISO8601Date,getDisplayRunningTime:getDisplayRunningTime,toLocaleDateString:toLocaleDateString,toLocaleString:toLocaleString,getDisplayTime:getDisplayTime,isRelativeDay:isRelativeDay,toLocaleTimeString:toLocaleTimeString}});
|
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
define(["browser","dom","layoutManager","shell","embyRouter","apphost","css!./emby-button","registerElement"],function(browser,dom,layoutManager,shell,embyRouter,appHost){"use strict";function animateButtonInternal(e,btn){for(var div=document.createElement("div"),i=0,length=btn.classList.length;i<length;i++)div.classList.add(btn.classList[i]+"-ripple-effect");var offsetX=e.offsetX||0,offsetY=e.offsetY||0;offsetX>0&&offsetY>0&&(div.style.left=offsetX+"px",div.style.top=offsetY+"px");var firstChild=btn.firstChild;firstChild?btn.insertBefore(div,btn.firstChild):btn.appendChild(div),div.addEventListener(dom.whichAnimationEvent(),function(){div.parentNode.removeChild(div)},!1)}function animateButton(e,btn){requestAnimationFrame(function(){animateButtonInternal(e,btn)})}function onKeyDown(e){13===e.keyCode&&animateButton(e,this)}function onMouseDown(e){0===e.button&&animateButton(e,this)}function onClick(e){animateButton(e,this)}function enableAnimation(){return!browser.tv}function onAnchorClick(e){var href=this.getAttribute("href");"#"!==href&&(this.getAttribute("target")?appHost.supports("targetblank")||(e.preventDefault(),shell.openUrl(href)):embyRouter.handleAnchorClick(e))}var EmbyButtonPrototype=Object.create(HTMLButtonElement.prototype),EmbyLinkButtonPrototype=Object.create(HTMLAnchorElement.prototype);EmbyButtonPrototype.createdCallback=function(){this.classList.contains("emby-button")||(this.classList.add("emby-button"),browser.safari&&this.classList.add("emby-button-noflex"),layoutManager.tv&&(this.classList.add("emby-button-focusscale"),this.classList.add("emby-button-tv")),enableAnimation()&&(dom.addEventListener(this,"keydown",onKeyDown,{passive:!0}),browser.safari||browser.firefox&&"A"===this.tagName?dom.addEventListener(this,"click",onClick,{passive:!0}):dom.addEventListener(this,"mousedown",onMouseDown,{passive:!0})))},EmbyButtonPrototype.attachedCallback=function(){"A"===this.tagName&&(dom.removeEventListener(this,"click",onAnchorClick,{}),dom.addEventListener(this,"click",onAnchorClick,{}),"true"===this.getAttribute("data-autohide")&&(appHost.supports("externallinks")?this.classList.remove("hide"):this.classList.add("hide")))},EmbyLinkButtonPrototype.createdCallback=EmbyButtonPrototype.createdCallback,EmbyLinkButtonPrototype.attachedCallback=EmbyButtonPrototype.attachedCallback,document.registerElement("emby-button",{prototype:EmbyButtonPrototype,extends:"button"}),document.registerElement("emby-linkbutton",{prototype:EmbyLinkButtonPrototype,extends:"a"})});
|
||||
define(["browser","dom","layoutManager","shell","embyRouter","apphost","css!./emby-button","registerElement"],function(browser,dom,layoutManager,shell,embyRouter,appHost){"use strict";function animateButtonInternal(e,btn){for(var div=document.createElement("div"),i=0,length=btn.classList.length;i<length;i++)div.classList.add(btn.classList[i]+"-ripple-effect");var offsetX=e.offsetX||0,offsetY=e.offsetY||0;offsetX>0&&offsetY>0&&(div.style.left=offsetX+"px",div.style.top=offsetY+"px");var firstChild=btn.firstChild;firstChild?btn.insertBefore(div,btn.firstChild):btn.appendChild(div),div.addEventListener(dom.whichAnimationEvent(),function(){div.parentNode.removeChild(div)},!1)}function animateButton(e,btn){requestAnimationFrame(function(){animateButtonInternal(e,btn)})}function onKeyDown(e){13===e.keyCode&&animateButton(e,this)}function onMouseDown(e){0===e.button&&animateButton(e,this)}function onClick(e){animateButton(e,this)}function enableAnimation(){return!browser.tv}function onAnchorClick(e){var href=this.getAttribute("href");"#"!==href&&(this.getAttribute("target")?appHost.supports("targetblank")||(e.preventDefault(),shell.openUrl(href)):embyRouter.handleAnchorClick(e))}var EmbyButtonPrototype=Object.create(HTMLButtonElement.prototype),EmbyLinkButtonPrototype=Object.create(HTMLAnchorElement.prototype);EmbyButtonPrototype.createdCallback=function(){this.classList.contains("emby-button")||(this.classList.add("emby-button"),browser.safari&&browser.tv&&this.classList.add("emby-button-noflex"),layoutManager.tv&&(this.classList.add("emby-button-focusscale"),this.classList.add("emby-button-tv")),enableAnimation()&&(dom.addEventListener(this,"keydown",onKeyDown,{passive:!0}),browser.safari||browser.firefox&&"A"===this.tagName?dom.addEventListener(this,"click",onClick,{passive:!0}):dom.addEventListener(this,"mousedown",onMouseDown,{passive:!0})))},EmbyButtonPrototype.attachedCallback=function(){"A"===this.tagName&&(dom.removeEventListener(this,"click",onAnchorClick,{}),dom.addEventListener(this,"click",onAnchorClick,{}),"true"===this.getAttribute("data-autohide")&&(appHost.supports("externallinks")?this.classList.remove("hide"):this.classList.add("hide")))},EmbyLinkButtonPrototype.createdCallback=EmbyButtonPrototype.createdCallback,EmbyLinkButtonPrototype.attachedCallback=EmbyButtonPrototype.attachedCallback,document.registerElement("emby-button",{prototype:EmbyButtonPrototype,extends:"button"}),document.registerElement("emby-linkbutton",{prototype:EmbyLinkButtonPrototype,extends:"a"})});
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
define(["appSettings","events","browser","loading","playbackManager","embyRouter","globalize","apphost"],function(appSettings,events,browser,loading,playbackManager,embyRouter,globalize,appHost){"use strict";function mirrorItem(info,player){var item=info.item;playbackManager.displayContent({ItemName:item.Name,ItemId:item.Id,ItemType:item.Type,Context:info.context},player)}function mirrorIfEnabled(info){if(info=info||currentDisplayInfo,info&&playbackManager.enableDisplayMirroring()){var getPlayerInfo=playbackManager.getPlayerInfo();getPlayerInfo&&(getPlayerInfo.isLocalPlayer||getPlayerInfo.supportedCommands.indexOf("DisplayContent")===-1||mirrorItem(info,playbackManager.getCurrentPlayer()))}}function emptyCallback(){}function showPlayerSelection(button){var currentPlayerInfo=playbackManager.getPlayerInfo();if(currentPlayerInfo&&!currentPlayerInfo.isLocalPlayer)return void showActivePlayerMenu(currentPlayerInfo);var currentPlayerId=currentPlayerInfo?currentPlayerInfo.id:null;loading.show(),playbackManager.getTargets().then(function(targets){var menuItems=targets.map(function(t){var name=t.name;return t.appName&&t.appName!==t.name&&(name+=" - "+t.appName),{name:name,id:t.id,selected:currentPlayerId===t.id}});require(["actionsheet"],function(actionsheet){loading.hide();var menuOptions={title:globalize.translate("sharedcomponents#HeaderSelectPlayer"),items:menuItems,positionTo:button,resolveOnClick:!0};browser.chrome&&!appHost.supports("castmenuhashchange")&&(menuOptions.enableHistory=!1),actionsheet.show(menuOptions).then(function(id){var target=targets.filter(function(t){return t.id===id})[0];playbackManager.trySetActivePlayer(target.playerName,target),mirrorIfEnabled()},emptyCallback)})})}function showActivePlayerMenu(playerInfo){require(["dialogHelper","dialog","emby-checkbox","emby-button"],function(dialogHelper){showActivePlayerMenuInternal(dialogHelper,playerInfo)})}function showActivePlayerMenuInternal(dialogHelper,playerInfo){var html="",dialogOptions={removeOnClose:!0};dialogOptions.modal=!1,dialogOptions.entryAnimationDuration=160,dialogOptions.exitAnimationDuration=160,dialogOptions.autoFocus=!1;var dlg=dialogHelper.createDialog(dialogOptions);if(dlg.classList.add("promptDialog"),html+='<div class="promptDialogContent" style="padding:1.5em;">',html+='<h2 style="margin-top:.5em;">',html+=playerInfo.deviceName||playerInfo.name,html+="</h2>",html+="<div>",playerInfo.supportedCommands.indexOf("DisplayContent")!==-1){html+='<label class="checkboxContainer">';var checkedHtml=playbackManager.enableDisplayMirroring()?" checked":"";html+='<input type="checkbox" is="emby-checkbox" class="chkMirror"'+checkedHtml+"/>",html+="<span>"+globalize.translate("sharedcomponents#EnableDisplayMirroring")+"</span>",html+="</label>"}html+="</div>",html+='<div style="margin-top:1em;display:flex;justify-content: flex-end;">',html+='<button is="emby-button" type="button" class="button-flat button-accent-flat btnRemoteControl promptDialogButton">'+globalize.translate("sharedcomponents#HeaderRemoteControl")+"</button>",html+='<button is="emby-button" type="button" class="button-flat button-accent-flat btnDisconnect promptDialogButton ">'+globalize.translate("sharedcomponents#Disconnect")+"</button>",html+='<button is="emby-button" type="button" class="button-flat button-accent-flat btnCancel promptDialogButton">'+globalize.translate("sharedcomponents#ButtonCancel")+"</button>",html+="</div>",html+="</div>",dlg.innerHTML=html;var chkMirror=dlg.querySelector(".chkMirror");chkMirror&&chkMirror.addEventListener("change",onMirrorChange);var destination="",btnRemoteControl=dlg.querySelector(".btnRemoteControl");btnRemoteControl&&btnRemoteControl.addEventListener("click",function(){destination="nowplaying",dialogHelper.close(dlg)}),dlg.querySelector(".btnDisconnect").addEventListener("click",function(){playbackManager.disconnectFromPlayer(),dialogHelper.close(dlg)}),dlg.querySelector(".btnCancel").addEventListener("click",function(){dialogHelper.close(dlg)}),dialogHelper.open(dlg).then(function(){"nowplaying"===destination&&embyRouter.showNowPlaying()},emptyCallback)}function onMirrorChange(){playbackManager.enableDisplayMirroring(this.checked)}var currentDisplayInfo;return document.addEventListener("viewbeforeshow",function(){currentDisplayInfo=null}),document.addEventListener("viewshow",function(e){var state=e.detail.state||{},item=state.item;if(item&&item.ServerId)return void mirrorIfEnabled({item:item})}),events.on(appSettings,"change",function(e,name){"displaymirror"===name&&mirrorIfEnabled()}),{show:showPlayerSelection}});
|
||||
define(["appSettings","events","browser","loading","playbackManager","embyRouter","globalize","apphost"],function(appSettings,events,browser,loading,playbackManager,embyRouter,globalize,appHost){"use strict";function mirrorItem(info,player){var item=info.item;playbackManager.displayContent({ItemName:item.Name,ItemId:item.Id,ItemType:item.Type,Context:info.context},player)}function mirrorIfEnabled(info){if(info=info||currentDisplayInfo,info&&playbackManager.enableDisplayMirroring()){var getPlayerInfo=playbackManager.getPlayerInfo();getPlayerInfo&&(getPlayerInfo.isLocalPlayer||getPlayerInfo.supportedCommands.indexOf("DisplayContent")===-1||mirrorItem(info,playbackManager.getCurrentPlayer()))}}function emptyCallback(){}function showPlayerSelection(button){var currentPlayerInfo=playbackManager.getPlayerInfo();if(currentPlayerInfo&&!currentPlayerInfo.isLocalPlayer)return void showActivePlayerMenu(currentPlayerInfo);var currentPlayerId=currentPlayerInfo?currentPlayerInfo.id:null;loading.show(),playbackManager.getTargets().then(function(targets){var menuItems=targets.map(function(t){var name=t.name;return t.appName&&t.appName!==t.name&&(name+=" - "+t.appName),{name:name,id:t.id,selected:currentPlayerId===t.id}});require(["actionsheet"],function(actionsheet){loading.hide();var menuOptions={title:globalize.translate("sharedcomponents#HeaderPlayOn"),items:menuItems,positionTo:button,resolveOnClick:!0};browser.chrome&&!appHost.supports("castmenuhashchange")&&(menuOptions.enableHistory=!1),actionsheet.show(menuOptions).then(function(id){var target=targets.filter(function(t){return t.id===id})[0];playbackManager.trySetActivePlayer(target.playerName,target),mirrorIfEnabled()},emptyCallback)})})}function showActivePlayerMenu(playerInfo){require(["dialogHelper","dialog","emby-checkbox","emby-button"],function(dialogHelper){showActivePlayerMenuInternal(dialogHelper,playerInfo)})}function showActivePlayerMenuInternal(dialogHelper,playerInfo){var html="",dialogOptions={removeOnClose:!0};dialogOptions.modal=!1,dialogOptions.entryAnimationDuration=160,dialogOptions.exitAnimationDuration=160,dialogOptions.autoFocus=!1;var dlg=dialogHelper.createDialog(dialogOptions);if(dlg.classList.add("promptDialog"),html+='<div class="promptDialogContent" style="padding:1.5em;">',html+='<h2 style="margin-top:.5em;">',html+=playerInfo.deviceName||playerInfo.name,html+="</h2>",html+="<div>",playerInfo.supportedCommands.indexOf("DisplayContent")!==-1){html+='<label class="checkboxContainer">';var checkedHtml=playbackManager.enableDisplayMirroring()?" checked":"";html+='<input type="checkbox" is="emby-checkbox" class="chkMirror"'+checkedHtml+"/>",html+="<span>"+globalize.translate("sharedcomponents#EnableDisplayMirroring")+"</span>",html+="</label>"}html+="</div>",html+='<div style="margin-top:1em;display:flex;justify-content: flex-end;">',html+='<button is="emby-button" type="button" class="button-flat button-accent-flat btnRemoteControl promptDialogButton">'+globalize.translate("sharedcomponents#HeaderRemoteControl")+"</button>",html+='<button is="emby-button" type="button" class="button-flat button-accent-flat btnDisconnect promptDialogButton ">'+globalize.translate("sharedcomponents#Disconnect")+"</button>",html+='<button is="emby-button" type="button" class="button-flat button-accent-flat btnCancel promptDialogButton">'+globalize.translate("sharedcomponents#ButtonCancel")+"</button>",html+="</div>",html+="</div>",dlg.innerHTML=html;var chkMirror=dlg.querySelector(".chkMirror");chkMirror&&chkMirror.addEventListener("change",onMirrorChange);var destination="",btnRemoteControl=dlg.querySelector(".btnRemoteControl");btnRemoteControl&&btnRemoteControl.addEventListener("click",function(){destination="nowplaying",dialogHelper.close(dlg)}),dlg.querySelector(".btnDisconnect").addEventListener("click",function(){playbackManager.disconnectFromPlayer(),dialogHelper.close(dlg)}),dlg.querySelector(".btnCancel").addEventListener("click",function(){dialogHelper.close(dlg)}),dialogHelper.open(dlg).then(function(){"nowplaying"===destination&&embyRouter.showNowPlaying()},emptyCallback)}function onMirrorChange(){playbackManager.enableDisplayMirroring(this.checked)}var currentDisplayInfo;return document.addEventListener("viewbeforeshow",function(){currentDisplayInfo=null}),document.addEventListener("viewshow",function(e){var state=e.detail.state||{},item=state.item;if(item&&item.ServerId)return void mirrorIfEnabled({item:item})}),events.on(appSettings,"change",function(e,name){"displaymirror"===name&&mirrorIfEnabled()}),{show:showPlayerSelection}});
|
@ -1 +1 @@
|
||||
define(["actionsheet","datetime","playbackManager","globalize","appSettings","qualityoptions"],function(actionsheet,datetime,playbackManager,globalize,appSettings,qualityoptions){"use strict";function showQualityMenu(player,btn){var videoStream=playbackManager.currentMediaSource(player).MediaStreams.filter(function(stream){return"Video"===stream.Type})[0],videoWidth=videoStream?videoStream.Width:null,options=qualityoptions.getVideoQualityOptions({currentMaxBitrate:playbackManager.getMaxStreamingBitrate(player),isAutomaticBitrateEnabled:playbackManager.enableAutomaticBitrateDetection(player),videoWidth:videoWidth,enableAuto:!0}),menuItems=options.map(function(o){var opt={name:o.name,id:o.bitrate,secondaryText:o.secondaryText};return o.selected&&(opt.selected=!0),opt}),selectedId=options.filter(function(o){return o.selected});return selectedId=selectedId.length?selectedId[0].bitrate:null,actionsheet.show({items:menuItems,positionTo:btn}).then(function(id){var bitrate=parseInt(id);bitrate!==selectedId&&playbackManager.setMaxStreamingBitrate({enableAutomaticBitrateDetection:!bitrate,maxBitrate:bitrate},player)})}function getQualitySecondaryText(player){return playbackManager.getPlayerState(player).then(function(state){var videoStream=(playbackManager.enableAutomaticBitrateDetection(player),playbackManager.getMaxStreamingBitrate(player),playbackManager.currentMediaSource(player).MediaStreams.filter(function(stream){return"Video"===stream.Type})[0]),videoWidth=videoStream?videoStream.Width:null,options=qualityoptions.getVideoQualityOptions({currentMaxBitrate:playbackManager.getMaxStreamingBitrate(player),isAutomaticBitrateEnabled:playbackManager.enableAutomaticBitrateDetection(player),videoWidth:videoWidth,enableAuto:!0}),selectedOption=(options.map(function(o){var opt={name:o.name,id:o.bitrate,secondaryText:o.secondaryText};return o.selected&&(opt.selected=!0),opt}),options.filter(function(o){return o.selected}));if(!selectedOption.length)return null;selectedOption=selectedOption[0];var text=selectedOption.name;return selectedOption.autoText&&(text+=state.PlayState&&"Transcode"!==state.PlayState.PlayMethod?" - Direct":" "+selectedOption.autoText),text})}function showAspectRatioMenu(player,btn){var currentId=playbackManager.getAspectRatio(player),menuItems=playbackManager.getSupportedAspectRatios(player).map(function(i){return{id:i.id,name:i.name,selected:i.id===currentId}});return actionsheet.show({items:menuItems,positionTo:btn}).then(function(id){return id?(playbackManager.setAspectRatio(id,player),Promise.resolve()):Promise.reject()})}function show(options){var player=options.player;return getQualitySecondaryText(player).then(function(secondaryQualityText){var menuItems=(options.mediaType,[]);if(player.supports&&player.supports("SetAspectRatio")){var currentAspectRatioId=playbackManager.getAspectRatio(player),currentAspectRatio=playbackManager.getSupportedAspectRatios(player).filter(function(i){return i.id===currentAspectRatioId})[0];menuItems.push({name:globalize.translate("sharedcomponents#AspectRatio"),id:"aspectratio",secondaryText:currentAspectRatio?currentAspectRatio.name:null})}return menuItems.push({name:globalize.translate("sharedcomponents#Quality"),id:"quality",secondaryText:secondaryQualityText}),actionsheet.show({items:menuItems,positionTo:options.positionTo}).then(function(id){switch(id){case"quality":return showQualityMenu(player,options.positionTo);case"aspectratio":return showAspectRatioMenu(player,options.positionTo)}return Promise.reject()})})}return{show:show}});
|
||||
define(["actionsheet","datetime","playbackManager","globalize","appSettings","qualityoptions"],function(actionsheet,datetime,playbackManager,globalize,appSettings,qualityoptions){"use strict";function showQualityMenu(player,btn){var videoStream=playbackManager.currentMediaSource(player).MediaStreams.filter(function(stream){return"Video"===stream.Type})[0],videoWidth=videoStream?videoStream.Width:null,options=qualityoptions.getVideoQualityOptions({currentMaxBitrate:playbackManager.getMaxStreamingBitrate(player),isAutomaticBitrateEnabled:playbackManager.enableAutomaticBitrateDetection(player),videoWidth:videoWidth,enableAuto:!0}),menuItems=options.map(function(o){var opt={name:o.name,id:o.bitrate,secondaryText:o.secondaryText};return o.selected&&(opt.selected=!0),opt}),selectedId=options.filter(function(o){return o.selected});return selectedId=selectedId.length?selectedId[0].bitrate:null,actionsheet.show({items:menuItems,positionTo:btn}).then(function(id){var bitrate=parseInt(id);bitrate!==selectedId&&playbackManager.setMaxStreamingBitrate({enableAutomaticBitrateDetection:!bitrate,maxBitrate:bitrate},player)})}function showRepeatModeMenu(player,btn){var menuItems=[],currentValue=playbackManager.getRepeatMode(player);return menuItems.push({name:globalize.translate("sharedcomponents#RepeatAll"),id:"RepeatAll",selected:"RepeatAll"===currentValue}),menuItems.push({name:globalize.translate("sharedcomponents#RepeatOne"),id:"RepeatOne",selected:"RepeatOne"===currentValue}),menuItems.push({name:globalize.translate("sharedcomponents#None"),id:"RepeatNone",selected:"RepeatNone"===currentValue}),actionsheet.show({items:menuItems,positionTo:btn}).then(function(mode){mode&&playbackManager.setRepeatMode(mode,player)})}function getQualitySecondaryText(player){return playbackManager.getPlayerState(player).then(function(state){var videoStream=(playbackManager.enableAutomaticBitrateDetection(player),playbackManager.getMaxStreamingBitrate(player),playbackManager.currentMediaSource(player).MediaStreams.filter(function(stream){return"Video"===stream.Type})[0]),videoWidth=videoStream?videoStream.Width:null,options=qualityoptions.getVideoQualityOptions({currentMaxBitrate:playbackManager.getMaxStreamingBitrate(player),isAutomaticBitrateEnabled:playbackManager.enableAutomaticBitrateDetection(player),videoWidth:videoWidth,enableAuto:!0}),selectedOption=(options.map(function(o){var opt={name:o.name,id:o.bitrate,secondaryText:o.secondaryText};return o.selected&&(opt.selected=!0),opt}),options.filter(function(o){return o.selected}));if(!selectedOption.length)return null;selectedOption=selectedOption[0];var text=selectedOption.name;return selectedOption.autoText&&(text+=state.PlayState&&"Transcode"!==state.PlayState.PlayMethod?" - Direct":" "+selectedOption.autoText),text})}function showAspectRatioMenu(player,btn){var currentId=playbackManager.getAspectRatio(player),menuItems=playbackManager.getSupportedAspectRatios(player).map(function(i){return{id:i.id,name:i.name,selected:i.id===currentId}});return actionsheet.show({items:menuItems,positionTo:btn}).then(function(id){return id?(playbackManager.setAspectRatio(id,player),Promise.resolve()):Promise.reject()})}function show(options){var player=options.player,supportedCommands=playbackManager.getSupportedCommands(player);return getQualitySecondaryText(player).then(function(secondaryQualityText){var menuItems=(options.mediaType,[]);if(supportedCommands.indexOf("SetAspectRatio")!==-1){var currentAspectRatioId=playbackManager.getAspectRatio(player),currentAspectRatio=playbackManager.getSupportedAspectRatios(player).filter(function(i){return i.id===currentAspectRatioId})[0];menuItems.push({name:globalize.translate("sharedcomponents#AspectRatio"),id:"aspectratio",secondaryText:currentAspectRatio?currentAspectRatio.name:null})}menuItems.push({name:globalize.translate("sharedcomponents#Quality"),id:"quality",secondaryText:secondaryQualityText});var repeatMode=playbackManager.getRepeatMode(player);return supportedCommands.indexOf("SetRepeatMode")!==-1&&playbackManager.currentMediaSource(player).RunTimeTicks&&menuItems.push({name:globalize.translate("sharedcomponents#RepeatMode"),id:"repeatmode",secondaryText:"RepeatNone"===repeatMode?globalize.translate("sharedcomponents#None"):globalize.translate("sharedcomponents#"+repeatMode)}),actionsheet.show({items:menuItems,positionTo:options.positionTo}).then(function(id){switch(id){case"quality":return showQualityMenu(player,options.positionTo);case"aspectratio":return showAspectRatioMenu(player,options.positionTo);case"repeatmode":return showRepeatModeMenu(player,options.positionTo)}return Promise.reject()})})}return{show:show}});
|
@ -1 +1 @@
|
||||
define(["events"],function(events){"use strict";function loadStrings(plugin,globalize){var strings=plugin.getTranslations?plugin.getTranslations():[];return globalize.loadStrings({name:plugin.id||plugin.packageName,strings:strings})}function definePluginRoute(pluginManager,route,plugin){route.contentPath=pluginManager.mapPath(plugin,route.path),route.path=pluginManager.mapRoute(plugin,route),Emby.App.defineRoute(route,plugin.id)}function PluginManager(){this.pluginsList=[]}var cacheParam=(new Date).getTime();PluginManager.prototype.loadPlugin=function(url){console.log("Loading plugin: "+url);var instance=this;return new Promise(function(resolve,reject){require([url,"globalize","embyRouter"],function(pluginFactory,globalize,embyRouter){var plugin=new pluginFactory,existing=instance.pluginsList.filter(function(p){return p.id===plugin.id})[0];if(existing)return void resolve(url);plugin.installUrl=url;var urlLower=url.toLowerCase();urlLower.indexOf("http:")===-1&&urlLower.indexOf("https:")===-1&&urlLower.indexOf("file:")===-1&&0!==url.indexOf(embyRouter.baseUrl())&&(url=embyRouter.baseUrl()+"/"+url);var separatorIndex=Math.max(url.lastIndexOf("/"),url.lastIndexOf("\\"));plugin.baseUrl=url.substring(0,separatorIndex);var paths={};paths[plugin.id]=plugin.baseUrl,requirejs.config({waitSeconds:0,paths:paths}),instance.register(plugin),plugin.getRoutes&&plugin.getRoutes().forEach(function(route){definePluginRoute(instance,route,plugin)}),"skin"===plugin.type?resolve(plugin):loadStrings(plugin,globalize).then(function(){resolve(plugin)},reject)})})},PluginManager.prototype.register=function(obj){this.pluginsList.push(obj),events.trigger(this,"registered",[obj])},PluginManager.prototype.ofType=function(type){return this.pluginsList.filter(function(o){return o.type===type})},PluginManager.prototype.plugins=function(){return this.pluginsList},PluginManager.prototype.mapRoute=function(plugin,route){return"string"==typeof plugin&&(plugin=this.pluginsList.filter(function(p){return(p.id||p.packageName)===plugin})[0]),route=route.path||route,0===route.toLowerCase().indexOf("http")?route:"/plugins/"+plugin.id+"/"+route},PluginManager.prototype.mapPath=function(plugin,path,addCacheParam){"string"==typeof plugin&&(plugin=this.pluginsList.filter(function(p){return(p.id||p.packageName)===plugin})[0]);var url=plugin.baseUrl+"/"+path;return addCacheParam&&(url+=url.indexOf("?")===-1?"?":"&",url+="v="+cacheParam),url};var instance=new PluginManager;return window.Emby=window.Emby||{},window.Emby.PluginManager=instance,instance});
|
||||
define(["events"],function(events){"use strict";function loadStrings(plugin,globalize){var strings=plugin.getTranslations?plugin.getTranslations():[];return globalize.loadStrings({name:plugin.id||plugin.packageName,strings:strings})}function definePluginRoute(pluginManager,route,plugin){route.contentPath=pluginManager.mapPath(plugin,route.path),route.path=pluginManager.mapRoute(plugin,route),Emby.App.defineRoute(route,plugin.id)}function PluginManager(){this.pluginsList=[]}var cacheParam=(new Date).getTime();return PluginManager.prototype.loadPlugin=function(url){console.log("Loading plugin: "+url);var instance=this;return new Promise(function(resolve,reject){require([url,"globalize","embyRouter"],function(pluginFactory,globalize,embyRouter){var plugin=new pluginFactory,existing=instance.pluginsList.filter(function(p){return p.id===plugin.id})[0];if(existing)return void resolve(url);plugin.installUrl=url;var urlLower=url.toLowerCase();urlLower.indexOf("http:")===-1&&urlLower.indexOf("https:")===-1&&urlLower.indexOf("file:")===-1&&0!==url.indexOf(embyRouter.baseUrl())&&(url=embyRouter.baseUrl()+"/"+url);var separatorIndex=Math.max(url.lastIndexOf("/"),url.lastIndexOf("\\"));plugin.baseUrl=url.substring(0,separatorIndex);var paths={};paths[plugin.id]=plugin.baseUrl,requirejs.config({waitSeconds:0,paths:paths}),instance.register(plugin),plugin.getRoutes&&plugin.getRoutes().forEach(function(route){definePluginRoute(instance,route,plugin)}),"skin"===plugin.type?resolve(plugin):loadStrings(plugin,globalize).then(function(){resolve(plugin)},reject)})})},PluginManager.prototype.register=function(obj){this.pluginsList.push(obj),events.trigger(this,"registered",[obj])},PluginManager.prototype.ofType=function(type){return this.pluginsList.filter(function(o){return o.type===type})},PluginManager.prototype.plugins=function(){return this.pluginsList},PluginManager.prototype.mapRoute=function(plugin,route){return"string"==typeof plugin&&(plugin=this.pluginsList.filter(function(p){return(p.id||p.packageName)===plugin})[0]),route=route.path||route,0===route.toLowerCase().indexOf("http")?route:"/plugins/"+plugin.id+"/"+route},PluginManager.prototype.mapPath=function(plugin,path,addCacheParam){"string"==typeof plugin&&(plugin=this.pluginsList.filter(function(p){return(p.id||p.packageName)===plugin})[0]);var url=plugin.baseUrl+"/"+path;return addCacheParam&&(url+=url.indexOf("?")===-1?"?":"&",url+="v="+cacheParam),url},new PluginManager});
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Play On",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "Album:",
|
||||
"Artists": "Artists",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelWebsite": "Website:",
|
||||
"LabelTagline": "Tagline:",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "Select the default landing screen when clicking on a library.",
|
||||
"HeaderTermsOfPurchase": "Terms of Purchase",
|
||||
"PrivacyPolicy": "Privacy policy",
|
||||
"TermsOfUse": "Terms of use"
|
||||
"TermsOfUse": "Terms of use",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Play On",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "Album:",
|
||||
"Artists": "Artists",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelWebsite": "Website:",
|
||||
"LabelTagline": "Tagline:",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "Select the default landing screen when clicking on a library.",
|
||||
"HeaderTermsOfPurchase": "Terms of Purchase",
|
||||
"PrivacyPolicy": "Privacy policy",
|
||||
"TermsOfUse": "Terms of use"
|
||||
"TermsOfUse": "Terms of use",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Play On",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "\u00c0lbum:",
|
||||
"Artists": "Artists",
|
||||
"LabelCommunityRating": "Valoraci\u00f3 de la comunitat:",
|
||||
"LabelVoteCount": "Recompte de vots:",
|
||||
"LabelCriticRating": "Valoraci\u00f3 cr\u00edtica:",
|
||||
"LabelWebsite": "Website:",
|
||||
"LabelTagline": "Tagline:",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "Select the default landing screen when clicking on a library.",
|
||||
"HeaderTermsOfPurchase": "Terms of Purchase",
|
||||
"PrivacyPolicy": "Privacy policy",
|
||||
"TermsOfUse": "Terms of use"
|
||||
"TermsOfUse": "Terms of use",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Play On",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "Odemknout tuto funkci pomoc\u00ed jednor\u00e1zov\u00e9 platby, nebo pomoc\u00ed aktivace p\u0159edplatn\u00e9ho Emby Premiere.",
|
||||
"MessageUnlockAppWithSupporter": "Odemknout tuto funkci pomoc\u00ed aktivn\u00edho p\u0159edplatn\u00e9ho Emby Premiere.",
|
||||
"MessageToValidateSupporter": "Pokud m\u00e1te aktivn\u00ed p\u0159edplatn\u00e9 Emby Premiere, ujist\u011bte se, \u017ee m\u00e1te nastaven Emby Premiere v panelu Nastaven\u00ed pod N\u00e1pov\u011bda -> Emby Premiere.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "Album:",
|
||||
"Artists": "Artists",
|
||||
"LabelCommunityRating": "Hodnocen\u00ed komunity:",
|
||||
"LabelVoteCount": "Po\u010det hlas\u016f:",
|
||||
"LabelCriticRating": "Hodnocen\u00ed kritik\u016f:",
|
||||
"LabelWebsite": "Webov\u00e9 str\u00e1nky:",
|
||||
"LabelTagline": "Slogan:",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "Select the default landing screen when clicking on a library.",
|
||||
"HeaderTermsOfPurchase": "Terms of Purchase",
|
||||
"PrivacyPolicy": "Privacy policy",
|
||||
"TermsOfUse": "Terms of use"
|
||||
"TermsOfUse": "Terms of use",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Play On",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "L\u00e5s op for dette feature med en lille enkeltst\u00e5ende betaling, eller med et aktivt Emby Premiere abonnement.",
|
||||
"MessageUnlockAppWithSupporter": "L\u00e5s op for dette feature med et aktivt Emby Premiere abonnement.",
|
||||
"MessageToValidateSupporter": "Hvis du har et aktivt Emby Premiere abonnement, skal du v\u00e6re sikker p\u00e5 at Emby Premiere er konfigureret i dit Emby Server-kontrolpanel, som kan tilg\u00e5es ved at klikke p\u00e5 Emby Premiere i hovedmenuen.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "Album:",
|
||||
"Artists": "Artists",
|
||||
"LabelCommunityRating": "F\u00e6llesskabsvurdering:",
|
||||
"LabelVoteCount": "Antal stemmer:",
|
||||
"LabelCriticRating": "Kritikervurdering:",
|
||||
"LabelWebsite": "Hjemmeside:",
|
||||
"LabelTagline": "Tagline:",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "Select the default landing screen when clicking on a library.",
|
||||
"HeaderTermsOfPurchase": "Terms of Purchase",
|
||||
"PrivacyPolicy": "Privacy policy",
|
||||
"TermsOfUse": "Terms of use"
|
||||
"TermsOfUse": "Terms of use",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Abspielen auf",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "Schalte diese Funktion mit einer kleinen einmaligen Geb\u00fchr oder einem aktiven Emby Premium Abo frei.",
|
||||
"MessageUnlockAppWithSupporter": "Schalte diese Funktion mit einem aktiven Emby Premium Abo frei.",
|
||||
"MessageToValidateSupporter": "Wenn du eine aktive Emby Premiere Mitgliedschaft hast, stelle bitte sicher, dass du diese \u00fcber das Emby Server Dashboard eingerichtet hast (Hauptmenu -> Emby Premiere).",
|
||||
@ -43,7 +44,7 @@
|
||||
"CloudSyncFeatureDescription": "Synchronisiere deine Medien in die Cloud f\u00fcr ein Backup, eine Archivierung und Konvertierung.",
|
||||
"DvrFeatureDescription": "Plane individuelle Aufnahmen von Live-TV, Serien und mehr mit Emby DVR.",
|
||||
"ButtonCancelSyncJob": "Download abbrechen",
|
||||
"CancelSyncJobConfirmation": "Der Abbruch der Synchronisation wird bereits heruntergeladene Medien bei der n\u00e4chsten Synchronisation vom Ger\u00e4t l\u00f6schen. M\u00f6chtest du wirklich fortfahren?",
|
||||
"CancelSyncJobConfirmation": "Der Abbruch des Downloadauftrags wird bereits heruntergeladene Medien bei der n\u00e4chsten Hintergrundsynchronisation vom Ger\u00e4t l\u00f6schen. M\u00f6chtest du wirklich fortfahren?",
|
||||
"CinemaModeFeatureDescription": "Der Cinema Mode bringt das richtige Kinogef\u00fchl mit Trailern und eigenen Intros vor dem Hauptfilm.",
|
||||
"HeaderFreeApps": "Kostenlose Emby Apps",
|
||||
"FreeAppsFeatureDescription": "Genie\u00dfe Zugriff auf kostenlose Emby Apps f\u00fcr deine Ger\u00e4te.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "Album:",
|
||||
"Artists": "Interpreten",
|
||||
"LabelCommunityRating": "Community Bewertung:",
|
||||
"LabelVoteCount": "Stimmen:",
|
||||
"LabelCriticRating": "Kritiker Bewertung:",
|
||||
"LabelWebsite": "Website:",
|
||||
"LabelTagline": "Tagline:",
|
||||
@ -223,7 +223,7 @@
|
||||
"GuestStar": "Gaststar",
|
||||
"Producer": "Produzent",
|
||||
"Writer": "Drehbuchautor",
|
||||
"MessageNoSyncJobsFound": "Keine Synchronisationsaufgaben gefunden. Um Synchronisationsaufgaben zu erstellen verwende die Synchronisationsbuttons in der App.",
|
||||
"MessageNoSyncJobsFound": "Keine Downloads gefunden. Um Downloadauftr\u00e4ge zu erstellen verwende die Downloadbuttons in der App.",
|
||||
"MessageNoDownloadsFound": "Keine Offline-Downloads. Mache deine Medien offline verf\u00fcgbar indem du \"Offline verf\u00fcgbar machen\" in der App bei bei den Medien anklickst.",
|
||||
"InstallingPackage": "Installiere {0}",
|
||||
"PackageInstallCompleted": "{0} Installation abgeschlossen",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "W\u00e4hle den Standard-Einstiegsbildschirm bei Klick auf eine Bibliothek.",
|
||||
"HeaderTermsOfPurchase": "Bestellungsbedingungen",
|
||||
"PrivacyPolicy": "Datenschutzbestimmungen",
|
||||
"TermsOfUse": "Nutzungsbedingungen"
|
||||
"TermsOfUse": "Nutzungsbedingungen",
|
||||
"RepeatMode": "Wiederholungsmodus",
|
||||
"RepeatOne": "Dieses wiederholen",
|
||||
"RepeatAll": "Alles wiederholen"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Play On",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "\u039e\u03b5\u03ba\u03bb\u03b5\u03b9\u03b4\u03ce\u03c3\u03c4\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03ba\u03b1\u03c4\u03b1\u03b2\u03ac\u03bb\u03bf\u03bd\u03c4\u03b1\u03c2 \u03ad\u03bd\u03b1 \u03c0\u03bf\u03bb\u03cd \u03bc\u03b9\u03ba\u03c1\u03cc \u03ba\u03cc\u03c3\u03c4\u03bf\u03c2 \u03ae \u03bc\u03b5 \u03bc\u03af\u03b1 \u03b5\u03bd\u03b5\u03c1\u03b3\u03ae \u03c3\u03c5\u03bd\u03b4\u03c1\u03bf\u03bc\u03ae \u03c3\u03c4\u03bf Emby Premiere.",
|
||||
"MessageUnlockAppWithSupporter": "\u039e\u03b5\u03ba\u03bb\u03b5\u03b9\u03b4\u03ce\u03c3\u03c4\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03bc\u03b5 \u03bc\u03af\u03b1 \u03b5\u03bd\u03b5\u03c1\u03b3\u03ae \u03c3\u03c5\u03bd\u03b4\u03c1\u03bf\u03bc\u03ae \u03c3\u03c4\u03bf Emby Premiere.",
|
||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "Album:",
|
||||
"Artists": "Artists",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelWebsite": "Website:",
|
||||
"LabelTagline": "Tagline:",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "Select the default landing screen when clicking on a library.",
|
||||
"HeaderTermsOfPurchase": "Terms of Purchase",
|
||||
"PrivacyPolicy": "Privacy policy",
|
||||
"TermsOfUse": "Terms of use"
|
||||
"TermsOfUse": "Terms of use",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Play On",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||
@ -43,7 +44,7 @@
|
||||
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
||||
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
||||
"ButtonCancelSyncJob": "Cancel download",
|
||||
"CancelSyncJobConfirmation": "Cancelling the sync job will remove downloaded media from the device during the next sync process. Are you sure you wish to proceed?",
|
||||
"CancelSyncJobConfirmation": "Cancelling the download job will remove downloaded media from the device during the next background sync process. Are you sure you wish to proceed?",
|
||||
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
||||
"HeaderFreeApps": "Free Emby Apps",
|
||||
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "Album:",
|
||||
"Artists": "Artists",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelWebsite": "Website:",
|
||||
"LabelTagline": "Tagline:",
|
||||
@ -223,7 +223,7 @@
|
||||
"GuestStar": "Guest star",
|
||||
"Producer": "Producer",
|
||||
"Writer": "Writer",
|
||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.",
|
||||
"MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.",
|
||||
"MessageNoDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "Select the default landing screen when clicking on a library.",
|
||||
"HeaderTermsOfPurchase": "Terms of Purchase",
|
||||
"PrivacyPolicy": "Privacy policy",
|
||||
"TermsOfUse": "Terms of use"
|
||||
"TermsOfUse": "Terms of use",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all"
|
||||
}
|
@ -376,7 +376,7 @@
|
||||
"HeaderRemoteControl": "Remote Control",
|
||||
"Disconnect": "Disconnect",
|
||||
"EnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSelectPlayer": "Select Player",
|
||||
"HeaderPlayOn": "Play On",
|
||||
"Quality": "Quality",
|
||||
"Auto": "Auto",
|
||||
"AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.",
|
||||
@ -429,5 +429,8 @@
|
||||
"LandingScreensHelp": "Select the default landing screen when clicking on a library.",
|
||||
"HeaderTermsOfPurchase": "Terms of Purchase",
|
||||
"PrivacyPolicy": "Privacy policy",
|
||||
"TermsOfUse": "Terms of use"
|
||||
"TermsOfUse": "Terms of use",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Play On",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "Album:",
|
||||
"Artists": "Artists",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelWebsite": "Website:",
|
||||
"LabelTagline": "Tagline:",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "Select the default landing screen when clicking on a library.",
|
||||
"HeaderTermsOfPurchase": "Terms of Purchase",
|
||||
"PrivacyPolicy": "Privacy policy",
|
||||
"TermsOfUse": "Terms of use"
|
||||
"TermsOfUse": "Terms of use",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Play On",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "Desbloquee esta caracter\u00edstica con una peque\u00f1a compra \u00fanica, o con una suscripci\u00f3n activa de Emby Premier.",
|
||||
"MessageUnlockAppWithSupporter": "Desbloquee esta caracter\u00edstica con una suscripci\u00f3n activa de Emby Premier.",
|
||||
"MessageToValidateSupporter": "Si tiene una subscripci\u00f3n de Emby Premiere activa, aseg\u00farese de que ha configurado Emby Premiere en el Panel de Control del Servidor Emby, al cual puede acceder dando click en Emby Premiere dentro del men\u00fa principal.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "\u00c1lbum",
|
||||
"Artists": "Artistas",
|
||||
"LabelCommunityRating": "Calificaci\u00f3n de la comunidad:",
|
||||
"LabelVoteCount": "Cantidad de votos:",
|
||||
"LabelCriticRating": "Calificaci\u00f3n de la cr\u00edtica:",
|
||||
"LabelWebsite": "Sitio web:",
|
||||
"LabelTagline": "Eslogan",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "Seleccione la pantalla de llegada por defecto al dar clic sobre una biblioteca.",
|
||||
"HeaderTermsOfPurchase": "T\u00e9rminos de Compra",
|
||||
"PrivacyPolicy": "Pol\u00edtica de privacidad",
|
||||
"TermsOfUse": "T\u00e9rminos de uso"
|
||||
"TermsOfUse": "T\u00e9rminos de uso",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Play On",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "\u00c1lbum",
|
||||
"Artists": "Artists",
|
||||
"LabelCommunityRating": "Puntuaci\u00f3n de la comunidad",
|
||||
"LabelVoteCount": "Contador de votos:",
|
||||
"LabelCriticRating": "Valoraci\u00f3n de la cr\u00edtica:",
|
||||
"LabelWebsite": "Sitio web:",
|
||||
"LabelTagline": "Lema:",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "Select the default landing screen when clicking on a library.",
|
||||
"HeaderTermsOfPurchase": "Terms of Purchase",
|
||||
"PrivacyPolicy": "Privacy policy",
|
||||
"TermsOfUse": "Terms of use"
|
||||
"TermsOfUse": "Terms of use",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Play On",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "Album:",
|
||||
"Artists": "Artists",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelWebsite": "Website:",
|
||||
"LabelTagline": "Tagline:",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "Select the default landing screen when clicking on a library.",
|
||||
"HeaderTermsOfPurchase": "Terms of Purchase",
|
||||
"PrivacyPolicy": "Privacy policy",
|
||||
"TermsOfUse": "Terms of use"
|
||||
"TermsOfUse": "Terms of use",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Play On",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "D\u00e9verrouillez cette fonctionnalit\u00e9 avec un petit achat unique ou avec un abonnement Emby Premiere actif.",
|
||||
"MessageUnlockAppWithSupporter": "D\u00e9verrouillez cette fonctionnalit\u00e9 avec un abonnement Emby Premi\u00e8re actif.",
|
||||
"MessageToValidateSupporter": "Si vous avez un abonnement Emby Premi\u00e8re actif, assurez-vous d'avoir install\u00e9 Emby Premi\u00e8re sur le tableau de bord de votre serveur Emby, auquel vous pouvez acc\u00e9der en cliquant sur Emby Premi\u00e8re dans le menu principal.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "Album:",
|
||||
"Artists": "Artists",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelWebsite": "Website:",
|
||||
"LabelTagline": "Tagline:",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "Select the default landing screen when clicking on a library.",
|
||||
"HeaderTermsOfPurchase": "Terms of Purchase",
|
||||
"PrivacyPolicy": "Privacy policy",
|
||||
"TermsOfUse": "Terms of use"
|
||||
"TermsOfUse": "Terms of use",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Jouer sur",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "D\u00e9verrouillez cette fonctionnalit\u00e9 avec un petit achat en une fois, ou avec une souscription Emby Premiere.",
|
||||
"MessageUnlockAppWithSupporter": "D\u00e9verrouillez cette fonctionnalit\u00e9 avec une souscription Emby Premiere.",
|
||||
"MessageToValidateSupporter": "Si vous avez un abonnement Emby Premiere, veuillez-vous assurer que vous avez configur\u00e9 Emby Premiere dans votre menu de gestion Emby Server auquel vous pouvez acc\u00e9der en cliquant sur Emby Premiere dans le menu principal",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "Album :",
|
||||
"Artists": "Artistes",
|
||||
"LabelCommunityRating": "Note de la communaut\u00e9",
|
||||
"LabelVoteCount": "Nombre de votes",
|
||||
"LabelCriticRating": "Note des critiques",
|
||||
"LabelWebsite": "Site Web",
|
||||
"LabelTagline": "Slogan",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "S\u00e9lectionner l'\u00e9cran d'accueil par d\u00e9faut lors d'un clic sur la biblioth\u00e8que",
|
||||
"HeaderTermsOfPurchase": "Conditions d'achat",
|
||||
"PrivacyPolicy": "Politique de confidentialit\u00e9",
|
||||
"TermsOfUse": "Conditions d'utilisation"
|
||||
"TermsOfUse": "Conditions d'utilisation",
|
||||
"RepeatMode": "Mode de r\u00e9p\u00e9tition",
|
||||
"RepeatOne": "R\u00e9p\u00e9ter une fois",
|
||||
"RepeatAll": "R\u00e9p\u00e9ter tout"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Play On",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "Album:",
|
||||
"Artists": "Artists",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelWebsite": "Website:",
|
||||
"LabelTagline": "Tagline:",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "Select the default landing screen when clicking on a library.",
|
||||
"HeaderTermsOfPurchase": "Terms of Purchase",
|
||||
"PrivacyPolicy": "Privacy policy",
|
||||
"TermsOfUse": "Terms of use"
|
||||
"TermsOfUse": "Terms of use",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Play On",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "\u05e0\u05e2\u05d9\u05dc\u05ea \u05ea\u05db\u05d5\u05e0\u05d4 \u05d6\u05d5 \u05e2\u05dd \u05e8\u05db\u05d9\u05e9\u05d4 \u05d7\u05d3 \u05e4\u05e2\u05de\u05d9\u05ea \u05e7\u05d8\u05e0\u05d4, \u05d0\u05d5 \u05e2\u05dd \u05de\u05e0\u05d5\u05d9 \u05e4\u05e2\u05d9\u05dc Premiere \u05d0\u05de\u05d1\u05d9.",
|
||||
"MessageUnlockAppWithSupporter": "\u05d1\u05d9\u05d8\u05d5\u05dc \u05e0\u05e2\u05d9\u05dc\u05d4 \u05e9\u05dc \u05ea\u05db\u05d5\u05e0\u05d4 \u05d6\u05d5 \u05e2\u05dd \u05de\u05e0\u05d5\u05d9 \u05e4\u05e2\u05d9\u05dc \u05e9\u05dc Emby Premiere.",
|
||||
"MessageToValidateSupporter": "\u05d0\u05dd \u05d9\u05e9 \u05dc\u05da \u05de\u05e0\u05d5\u05d9 \u05e4\u05e2\u05d9\u05dc \u05e9\u05dc Emby Premiere, \u05d5\u05d3\u05d0 \u05e9\u05d4\u05d2\u05d3\u05e8\u05ea \u05d0\u05ea Emby Premiere \u05d1\u05de\u05e8\u05db\u05d6 \u05d4\u05e9\u05dc\u05d9\u05d8\u05d4 \u05e9\u05dc \u200b\u200b\u05d0\u05de\u05d1\u05d9 \u05e9\u05e8\u05ea, \u05e9\u05d1\u05d5 \u05d1\u05d0\u05e4\u05e9\u05e8\u05d5\u05ea\u05da \u05dc\u05d2\u05e9\u05ea \u05e2\u05dc-\u05d9\u05d3\u05d9 \u05dc\u05d7\u05d9\u05e6\u05d4 \u05e2\u05dc Emby Premiere \u05d1\u05ea\u05e4\u05e8\u05d9\u05d8 \u05d4\u05e8\u05d0\u05e9\u05d9.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "\u05d0\u05dc\u05d1\u05d5\u05dd:",
|
||||
"Artists": "Artists",
|
||||
"LabelCommunityRating": "\u05d3\u05d9\u05e8\u05d5\u05d2 \u05d4\u05e7\u05d4\u05d9\u05dc\u05d4:",
|
||||
"LabelVoteCount": "\u05e1\u05e4\u05d9\u05e8\u05ea \u05d4\u05e6\u05d1\u05e2\u05d5\u05ea:",
|
||||
"LabelCriticRating": "\u05d3\u05d9\u05e8\u05d5\u05d2 \u05d1\u05d9\u05e7\u05d5\u05e8\u05ea:",
|
||||
"LabelWebsite": "\u05d0\u05ea\u05e8:",
|
||||
"LabelTagline": "\u05e9\u05d5\u05e8\u05ea \u05ea\u05d9\u05d5\u05d2:",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "Select the default landing screen when clicking on a library.",
|
||||
"HeaderTermsOfPurchase": "Terms of Purchase",
|
||||
"PrivacyPolicy": "Privacy policy",
|
||||
"TermsOfUse": "Terms of use"
|
||||
"TermsOfUse": "Terms of use",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Play On",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "Otklju\u010daj ovu mogu\u0107nost s malom jednokratnom kupnjom ili s aktivnom pretplatom Emby Premijere.",
|
||||
"MessageUnlockAppWithSupporter": "Otklju\u010daj ovu mogu\u0107nost sa pretplatom Emby Premijere.",
|
||||
"MessageToValidateSupporter": "Ako imate aktivnu pretplatu Emby Premijere provjerite dali ste postavili Emby Premijeru u svojoj nadzornoj plo\u010di Emby Server-a kojoj mo\u017eete pristupiti klikom Emby Premijera u glavnom izborniku.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "Album:",
|
||||
"Artists": "Artists",
|
||||
"LabelCommunityRating": "Ocjene zajednice:",
|
||||
"LabelVoteCount": "Prebrojavanje glasova:",
|
||||
"LabelCriticRating": "Ocjene kritike:",
|
||||
"LabelWebsite": "Web stranica:",
|
||||
"LabelTagline": "Slogan:",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "Select the default landing screen when clicking on a library.",
|
||||
"HeaderTermsOfPurchase": "Terms of Purchase",
|
||||
"PrivacyPolicy": "Privacy policy",
|
||||
"TermsOfUse": "Terms of use"
|
||||
"TermsOfUse": "Terms of use",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Play On",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "Album:",
|
||||
"Artists": "Artists",
|
||||
"LabelCommunityRating": "K\u00f6z\u00f6ss\u00e9gi \u00e9rt\u00e9kel\u00e9s:",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelWebsite": "Website:",
|
||||
"LabelTagline": "Tagline:",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "Select the default landing screen when clicking on a library.",
|
||||
"HeaderTermsOfPurchase": "Terms of Purchase",
|
||||
"PrivacyPolicy": "Privacy policy",
|
||||
"TermsOfUse": "Terms of use"
|
||||
"TermsOfUse": "Terms of use",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Play On",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "Album:",
|
||||
"Artists": "Artists",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelWebsite": "Website:",
|
||||
"LabelTagline": "Tagline:",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "Select the default landing screen when clicking on a library.",
|
||||
"HeaderTermsOfPurchase": "Terms of Purchase",
|
||||
"PrivacyPolicy": "Privacy policy",
|
||||
"TermsOfUse": "Terms of use"
|
||||
"TermsOfUse": "Terms of use",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Play On",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "Sblocca questa funzionalit\u00e0 con un piccolo acquisto singolo, o con un abbonamento Emby Premiere.",
|
||||
"MessageUnlockAppWithSupporter": "Sblocca questa funzionalit\u00e0 con un abbonamento Emby Premiere",
|
||||
"MessageToValidateSupporter": "Se hai un abbonamento Emby Premiere, assicurati di averlo configurato nel Pannello di Controllo del Server, a cui puoi accedere cliccando su Emby Premiere dal menu principale.",
|
||||
@ -43,7 +44,7 @@
|
||||
"CloudSyncFeatureDescription": "Sincronizza i tuoi media nel cloud per un facile backup, archiviazione e conversione.",
|
||||
"DvrFeatureDescription": "Pianifica le registrazioni di Live TV, registrazioni di serie e altro ancora con Emby DVR.",
|
||||
"ButtonCancelSyncJob": "Annulla download",
|
||||
"CancelSyncJobConfirmation": "La cancellazione dell'attivit\u00e0 di sincronizzazione causer\u00e0, alla prossima sincronizzazione, la rimozione di tutti i media scaricati dal dispositivo. Sei sicuro di voler procedere?",
|
||||
"CancelSyncJobConfirmation": "La cancellazione dell'attivit\u00e0 di download causer\u00e0 la rimozione di tutti i media scaricati dal dispositivo al prossimo processo in background di sincronizzazione. Sei sicuro di voler procedere?",
|
||||
"CinemaModeFeatureDescription": "Modalit\u00e0 Cinema ti fa provare la vera esperienza del cinema con trailer ed intro personalizzate prima del contenuto principale.",
|
||||
"HeaderFreeApps": "App Gratuite Emby",
|
||||
"FreeAppsFeatureDescription": "Godi dell'accesso gratuito alle App Emby dai tuoi dispositivi.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "Album:",
|
||||
"Artists": "Artisti",
|
||||
"LabelCommunityRating": "Voto del pubblico:",
|
||||
"LabelVoteCount": "Numero di voti:",
|
||||
"LabelCriticRating": "Voto della critica:",
|
||||
"LabelWebsite": "Sito Web:",
|
||||
"LabelTagline": "Slogan:",
|
||||
@ -223,7 +223,7 @@
|
||||
"GuestStar": "Personaggio famoso",
|
||||
"Producer": "Produttore",
|
||||
"Writer": "Scrittore",
|
||||
"MessageNoSyncJobsFound": "Nessuna attivit\u00e0 di sincronizzazione trovata. Le attivit\u00e0 di sincronizzazione vengono create quando usi il pulsanti Sincronizza sull'applicazione.",
|
||||
"MessageNoSyncJobsFound": "Nessun download trovato. Puoi creare un'attivit\u00e0 di download usando il bottone di Download presente nell'applicazione.",
|
||||
"MessageNoDownloadsFound": "Nessuno scaricamento trovato. Rendi i tuoi media disponibili offline usando l'opzione Rendi Disponibile Offline sull'applicazione.",
|
||||
"InstallingPackage": "Installazione di {0}",
|
||||
"PackageInstallCompleted": "Installazione di {0} completa.",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "Selezionare la schermata di destinazione predefinita quando si fa clic su una libreria",
|
||||
"HeaderTermsOfPurchase": "Termini di pagamento",
|
||||
"PrivacyPolicy": "Informativa sulla privacy",
|
||||
"TermsOfUse": "Termini di utilizzo"
|
||||
"TermsOfUse": "Termini di utilizzo",
|
||||
"RepeatMode": "Modalit\u00e0 Ripeti",
|
||||
"RepeatOne": "Ripeti uno",
|
||||
"RepeatAll": "Ripeti tutti"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Play On",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "\u041e\u0441\u044b \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u0442\u044b \u0431\u0456\u0440 \u0436\u043e\u043b\u0493\u044b \u0441\u0430\u0442\u044b\u043f \u0430\u043b\u0443, \u043d\u0435\u043c\u0435\u0441\u0435 \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby Premiere \u0436\u0430\u0437\u044b\u043b\u044b\u043c\u044b \u0430\u0440\u049b\u044b\u043b\u044b \u049b\u04b1\u0440\u0441\u0430\u0443\u0434\u0430\u043d \u0431\u043e\u0441\u0430\u0442\u0443.",
|
||||
"MessageUnlockAppWithSupporter": "\u041e\u0441\u044b \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u0442\u044b \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby Premiere \u0436\u0430\u0437\u044b\u043b\u044b\u043c\u044b \u0430\u0440\u049b\u044b\u043b\u044b \u049b\u04b1\u0440\u0441\u0430\u0443\u0434\u0430\u043d \u0431\u043e\u0441\u0430\u0442\u0443.",
|
||||
"MessageToValidateSupporter": "\u0415\u0433\u0435\u0440 \u0441\u0456\u0437\u0434\u0435 \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby Premiere \u0436\u0430\u0437\u044b\u043b\u044b\u043c\u044b \u0431\u043e\u043b\u0441\u0430, Emby Server \u0442\u0430\u049b\u0442\u0430\u0441\u044b\u043d\u0434\u0430\u0493\u044b Emby Premiere \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u044b\u043f \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d\u0456\u043d\u0435 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437. \u0411\u04b1\u043b \u0431\u0430\u0441\u0442\u044b \u043c\u04d9\u0437\u0456\u0440\u0434\u0435 Emby Premiere \u0434\u0435\u0433\u0435\u043d\u0434\u0456 \u043d\u04b1\u049b\u044b\u043f \u049b\u0430\u0442\u044b\u043d\u0430\u0443\u043b\u044b.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "\u0410\u043b\u044c\u0431\u043e\u043c:",
|
||||
"Artists": "\u041e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440",
|
||||
"LabelCommunityRating": "\u049a\u0430\u0443\u044b\u043c \u0431\u0430\u0493\u0430\u043b\u0430\u0443\u044b:",
|
||||
"LabelVoteCount": "\u0414\u0430\u0443\u044b\u0441 \u0435\u0441\u0435\u0431\u0456:",
|
||||
"LabelCriticRating": "\u0421\u044b\u043d\u0448\u044b\u043b\u0430\u0440 \u0431\u0430\u0493\u0430\u043b\u0430\u0443\u044b:",
|
||||
"LabelWebsite": "\u0492\u0430\u043b\u0430\u043c\u0442\u043e\u0440 \u0441\u0430\u0439\u0442\u044b:",
|
||||
"LabelTagline": "\u041d\u0435\u0433\u0456\u0437\u0433\u0456 \u0441\u04e9\u0439\u043b\u0435\u043c:",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u0493\u0430 \u0431\u0430\u0441\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u043a\u04e9\u0440\u0441\u0435\u0442\u0456\u043b\u0435\u0442\u0456\u043d \u04d9\u0434\u0435\u043f\u043a\u0456 \u043c\u0430\u049b\u0441\u0430\u0442\u0442\u044b \u044d\u043a\u0440\u0430\u043d\u0434\u044b \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437.",
|
||||
"HeaderTermsOfPurchase": "\u0421\u0430\u0442\u044b\u043f \u0430\u043b\u0443 \u0448\u0430\u0440\u0442\u0442\u0430\u0440\u044b",
|
||||
"PrivacyPolicy": "\u049a\u04b1\u043f\u0438\u044f\u043b\u044b\u043b\u044b\u049b \u0441\u0430\u044f\u0441\u0430\u0442\u044b",
|
||||
"TermsOfUse": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443 \u0448\u0430\u0440\u0442\u0442\u0430\u0440\u044b"
|
||||
"TermsOfUse": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443 \u0448\u0430\u0440\u0442\u0442\u0430\u0440\u044b",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Play On",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "\uc568\ubc94",
|
||||
"Artists": "Artists",
|
||||
"LabelCommunityRating": "\ucee4\ubba4\ub2c8\ud2f0 \ud3c9\uc810:",
|
||||
"LabelVoteCount": "\ud3c9\uac00 \ud69f\uc218:",
|
||||
"LabelCriticRating": "Critic \ud3c9\uc810:",
|
||||
"LabelWebsite": "\uc6f9\uc0ac\uc774\ud2b8:",
|
||||
"LabelTagline": "\ud0dc\uadf8\ub77c\uc778:",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "Select the default landing screen when clicking on a library.",
|
||||
"HeaderTermsOfPurchase": "Terms of Purchase",
|
||||
"PrivacyPolicy": "Privacy policy",
|
||||
"TermsOfUse": "Terms of use"
|
||||
"TermsOfUse": "Terms of use",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Play On",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "Atrakinkite \u0161i\u0105 funkcij\u0105 nedideliu vienkartiniu mokes\u010diu arba \u012fsigij\u0119 Emby Premiere prenumerat\u0105.",
|
||||
"MessageUnlockAppWithSupporter": "Atrakinkite \u0161i\u0105 funkcij\u0105 \u012fsigij\u0119 Emby Premiere prenumerat\u0105.",
|
||||
"MessageToValidateSupporter": "Jei turite aktyvi\u0105 Emby Premiere prenumerat\u0105, sutvarkykite Emby Premiere savo Emby Serverio skydelyje. Tai galite atlikti paspaud\u0117 Emby Premiere u\u017era\u0161\u0105 pagrindiniame meniu.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "Albumas:",
|
||||
"Artists": "Artists",
|
||||
"LabelCommunityRating": "Bendruomen\u0117s vertinimas:",
|
||||
"LabelVoteCount": "Bals\u0173 skai\u010dius:",
|
||||
"LabelCriticRating": "Kritik\u0173 vertinimas:",
|
||||
"LabelWebsite": "Tinklapis:",
|
||||
"LabelTagline": "\u0160\u016bkis:",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "Select the default landing screen when clicking on a library.",
|
||||
"HeaderTermsOfPurchase": "Terms of Purchase",
|
||||
"PrivacyPolicy": "Privacy policy",
|
||||
"TermsOfUse": "Terms of use"
|
||||
"TermsOfUse": "Terms of use",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Play On",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "Album:",
|
||||
"Artists": "Artists",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelWebsite": "Website:",
|
||||
"LabelTagline": "Tagline:",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "Select the default landing screen when clicking on a library.",
|
||||
"HeaderTermsOfPurchase": "Terms of Purchase",
|
||||
"PrivacyPolicy": "Privacy policy",
|
||||
"TermsOfUse": "Terms of use"
|
||||
"TermsOfUse": "Terms of use",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Play On",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "Album:",
|
||||
"Artists": "Artists",
|
||||
"LabelCommunityRating": "Fellesskap anmeldelse:",
|
||||
"LabelVoteCount": "Stemme tall:",
|
||||
"LabelCriticRating": "Kritiker anmeldelse:",
|
||||
"LabelWebsite": "Nettsted:",
|
||||
"LabelTagline": "Slagord:",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "Select the default landing screen when clicking on a library.",
|
||||
"HeaderTermsOfPurchase": "Terms of Purchase",
|
||||
"PrivacyPolicy": "Privacy policy",
|
||||
"TermsOfUse": "Terms of use"
|
||||
"TermsOfUse": "Terms of use",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Play On",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "Ontgrendel deze functie met een kleine eenmalige aankoop, of met een actief Emby Premiere abonnement.",
|
||||
"MessageUnlockAppWithSupporter": "Ontgrendel deze functie met een actief Emby Premiere abonnement.",
|
||||
"MessageToValidateSupporter": "Als u een actieve Emby Premiere abonnement heeft, zorg er dan voor dat u deze activeert in uw Emby Server Dashboard door te klikken op Emby Premiere in het hoofdmenu.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "Album:",
|
||||
"Artists": "Artists",
|
||||
"LabelCommunityRating": "Beoordeling gemeenschap:",
|
||||
"LabelVoteCount": "Aantal stemmen:",
|
||||
"LabelCriticRating": "Beoordeling critici:",
|
||||
"LabelWebsite": "Website:",
|
||||
"LabelTagline": "Tagline:",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "Selecteer de standaard sectie wanneer op een bibliotheek wordt geklikt.",
|
||||
"HeaderTermsOfPurchase": "Aankoop Voorwaarden",
|
||||
"PrivacyPolicy": "Privacy beleid",
|
||||
"TermsOfUse": "Gebruiksvoorwaarden"
|
||||
"TermsOfUse": "Gebruiksvoorwaarden",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Play On",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "Album",
|
||||
"Artists": "Artists",
|
||||
"LabelCommunityRating": "Ocena spo\u0142eczno\u015bci:",
|
||||
"LabelVoteCount": "Liczba g\u0142os\u00f3w:",
|
||||
"LabelCriticRating": "Ocena krytyk\u00f3w:",
|
||||
"LabelWebsite": "Strona internetowa",
|
||||
"LabelTagline": "Tagi",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "Select the default landing screen when clicking on a library.",
|
||||
"HeaderTermsOfPurchase": "Terms of Purchase",
|
||||
"PrivacyPolicy": "Privacy policy",
|
||||
"TermsOfUse": "Terms of use"
|
||||
"TermsOfUse": "Terms of use",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Play On",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "Desbloqueie esta funcionalidade com uma pequena compra \u00fanica, ou com uma assinatura ativa do Emby Premiere.",
|
||||
"MessageUnlockAppWithSupporter": "Desbloqueie esta funcionalidade com uma assinatura ativa do Emby Premiere.",
|
||||
"MessageToValidateSupporter": "Se tiver uma assinatura ativa do Emby Premiere, assegure-se que configurou o Emby Premiere no Painel do Servidor Emby, que pode ser acessado clicando Emby Premiere no menu principal.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "\u00c1lbum:",
|
||||
"Artists": "Artistas",
|
||||
"LabelCommunityRating": "Avalia\u00e7\u00e3o da comunidade:",
|
||||
"LabelVoteCount": "Contagem de votos:",
|
||||
"LabelCriticRating": "Avalia\u00e7\u00e3o da cr\u00edtica:",
|
||||
"LabelWebsite": "Website:",
|
||||
"LabelTagline": "Slogan:",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "Selecione a tela de entrada padr\u00e3o quando clicar em uma biblioteca.",
|
||||
"HeaderTermsOfPurchase": "Termos de Compra",
|
||||
"PrivacyPolicy": "Pol\u00edtica de privacidade",
|
||||
"TermsOfUse": "Termos de uso"
|
||||
"TermsOfUse": "Termos de uso",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Play On",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "\u00c1lbum:",
|
||||
"Artists": "Artists",
|
||||
"LabelCommunityRating": "Avalia\u00e7\u00e3o da comunidade:",
|
||||
"LabelVoteCount": "Contagem de votos:",
|
||||
"LabelCriticRating": "Avalia\u00e7\u00e3o da cr\u00edtica:",
|
||||
"LabelWebsite": "Website:",
|
||||
"LabelTagline": "Slogan:",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "Select the default landing screen when clicking on a library.",
|
||||
"HeaderTermsOfPurchase": "Terms of Purchase",
|
||||
"PrivacyPolicy": "Privacy policy",
|
||||
"TermsOfUse": "Terms of use"
|
||||
"TermsOfUse": "Terms of use",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Play On",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "Album:",
|
||||
"Artists": "Artists",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelWebsite": "Website:",
|
||||
"LabelTagline": "Tagline:",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "Select the default landing screen when clicking on a library.",
|
||||
"HeaderTermsOfPurchase": "Terms of Purchase",
|
||||
"PrivacyPolicy": "Privacy policy",
|
||||
"TermsOfUse": "Terms of use"
|
||||
"TermsOfUse": "Terms of use",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Play On",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u0443\u0439\u0442\u0435 \u0434\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442 \u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u043e\u043c \u043d\u0435\u0431\u043e\u043b\u044c\u0448\u043e\u0439 \u043e\u0434\u043d\u043e\u043a\u0440\u0430\u0442\u043d\u043e\u0439 \u043e\u043f\u043b\u0430\u0442\u044b, \u0438\u043b\u0438 \u0441 \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0439 \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u043e\u0439 Emby Premiere .",
|
||||
"MessageUnlockAppWithSupporter": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u0443\u0439\u0442\u0435 \u0434\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442 \u0441 \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0439 \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u043e\u0439 Emby Premiere.",
|
||||
"MessageToValidateSupporter": "\u0415\u0441\u043b\u0438 \u0443 \u0432\u0430\u0441 \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0430\u044f \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u0430 Emby Premiere, \u0443\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e Emby Premiere \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0430 \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043d\u0430 \u0432 \u0432\u0430\u0448\u0435\u0439 \u041f\u0430\u043d\u0435\u043b\u0438 Emby Server, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u043f\u043e \u0449\u0435\u043b\u0447\u043a\u0443 \u043f\u043e Emby Premiere \u0432 \u0433\u043b\u0430\u0432\u043d\u043e\u043c \u043c\u0435\u043d\u044e.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "\u0410\u043b\u044c\u0431\u043e\u043c",
|
||||
"Artists": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438",
|
||||
"LabelCommunityRating": "\u041e\u0431\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u0430\u044f \u043e\u0446\u0435\u043d\u043a\u0430:",
|
||||
"LabelVoteCount": "\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0433\u043e\u043b\u043e\u0441\u043e\u0432:",
|
||||
"LabelCriticRating": "\u041e\u0446\u0435\u043d\u043a\u0430 \u043a\u0440\u0438\u0442\u0438\u043a\u043e\u0432:",
|
||||
"LabelWebsite": "\u0412\u0435\u0431\u0441\u0430\u0439\u0442:",
|
||||
"LabelTagline": "\u041a\u043b\u044e\u0447\u0435\u0432\u0430\u044f \u0444\u0440\u0430\u0437\u0430:",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0446\u0435\u043b\u0435\u0432\u043e\u0439 \u044d\u043a\u0440\u0430\u043d \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0431\u0443\u0434\u0435\u0442 \u043f\u043e\u044f\u0432\u043b\u044f\u0442\u044c\u0441\u044f \u043f\u0440\u0438 \u0449\u0435\u043b\u0447\u043a\u0435 \u043f\u043e \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0435.",
|
||||
"HeaderTermsOfPurchase": "\u0423\u0441\u043b\u043e\u0432\u0438\u044f \u043f\u0440\u0438\u043e\u0431\u0440\u0435\u0435\u0442\u0435\u043d\u0438\u044f",
|
||||
"PrivacyPolicy": "\u041f\u043e\u043b\u0438\u0442\u0438\u043a\u0430 \u043a\u043e\u043d\u0444\u0438\u0434\u0435\u043d\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0441\u0442\u0438",
|
||||
"TermsOfUse": "\u0423\u0441\u043b\u043e\u0432\u0438\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f"
|
||||
"TermsOfUse": "\u0423\u0441\u043b\u043e\u0432\u0438\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Play On",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "Album:",
|
||||
"Artists": "Artists",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelWebsite": "Website:",
|
||||
"LabelTagline": "Tagline:",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "Select the default landing screen when clicking on a library.",
|
||||
"HeaderTermsOfPurchase": "Terms of Purchase",
|
||||
"PrivacyPolicy": "Privacy policy",
|
||||
"TermsOfUse": "Terms of use"
|
||||
"TermsOfUse": "Terms of use",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Play On",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "Album:",
|
||||
"Artists": "Artists",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelWebsite": "Website:",
|
||||
"LabelTagline": "Tagline:",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "Select the default landing screen when clicking on a library.",
|
||||
"HeaderTermsOfPurchase": "Terms of Purchase",
|
||||
"PrivacyPolicy": "Privacy policy",
|
||||
"TermsOfUse": "Terms of use"
|
||||
"TermsOfUse": "Terms of use",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Play On",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "L\u00e5s upp denna feature med ett eng\u00e5ngsk\u00f6p, eller med ett aktivt Emby Premium-medlemskap.",
|
||||
"MessageUnlockAppWithSupporter": "L\u00e5s upp den h\u00e4r funktionen med en aktiv Emby Premium prenumeration.",
|
||||
"MessageToValidateSupporter": "Om du har ett aktivt Emby Premium-medlemskap, se till att du har st\u00e4llt in Emby Premium i Emby Server Dashboard, som du kommer \u00e5t genom att klicka p\u00e5 Emby Premium i huvudmenyn.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "Album:",
|
||||
"Artists": "Artists",
|
||||
"LabelCommunityRating": "Anv\u00e4ndaromd\u00f6me:",
|
||||
"LabelVoteCount": "Antal r\u00f6ster:",
|
||||
"LabelCriticRating": "Kritikerbetyg:",
|
||||
"LabelWebsite": "Hemsida:",
|
||||
"LabelTagline": "Slogan:",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "Select the default landing screen when clicking on a library.",
|
||||
"HeaderTermsOfPurchase": "Terms of Purchase",
|
||||
"PrivacyPolicy": "Privacy policy",
|
||||
"TermsOfUse": "Terms of use"
|
||||
"TermsOfUse": "Terms of use",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Play On",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "Album:",
|
||||
"Artists": "Artists",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelWebsite": "Website:",
|
||||
"LabelTagline": "Tagline:",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "Select the default landing screen when clicking on a library.",
|
||||
"HeaderTermsOfPurchase": "Terms of Purchase",
|
||||
"PrivacyPolicy": "Privacy policy",
|
||||
"TermsOfUse": "Terms of use"
|
||||
"TermsOfUse": "Terms of use",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Play On",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "Album:",
|
||||
"Artists": "Artists",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelWebsite": "Website:",
|
||||
"LabelTagline": "Tagline:",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "Select the default landing screen when clicking on a library.",
|
||||
"HeaderTermsOfPurchase": "Terms of Purchase",
|
||||
"PrivacyPolicy": "Privacy policy",
|
||||
"TermsOfUse": "Terms of use"
|
||||
"TermsOfUse": "Terms of use",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Play On",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "Album:",
|
||||
"Artists": "Artists",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelWebsite": "Website:",
|
||||
"LabelTagline": "Tagline:",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "Select the default landing screen when clicking on a library.",
|
||||
"HeaderTermsOfPurchase": "Terms of Purchase",
|
||||
"PrivacyPolicy": "Privacy policy",
|
||||
"TermsOfUse": "Terms of use"
|
||||
"TermsOfUse": "Terms of use",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Play On",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "\u4e13\u8f91\uff1a",
|
||||
"Artists": "Artists",
|
||||
"LabelCommunityRating": "\u516c\u4f17\u8bc4\u5206\uff1a",
|
||||
"LabelVoteCount": "\u6295\u7968\u8ba1\u6570\uff1a",
|
||||
"LabelCriticRating": "\u5f71\u8bc4\u4eba\u8bc4\u5206\uff1a",
|
||||
"LabelWebsite": "\u7f51\u7ad9\uff1a",
|
||||
"LabelTagline": "\u53e3\u53f7\uff1a",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "Select the default landing screen when clicking on a library.",
|
||||
"HeaderTermsOfPurchase": "Terms of Purchase",
|
||||
"PrivacyPolicy": "Privacy policy",
|
||||
"TermsOfUse": "Terms of use"
|
||||
"TermsOfUse": "Terms of use",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Play On",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "Album:",
|
||||
"Artists": "Artists",
|
||||
"LabelCommunityRating": "\u8a0e\u8ad6\u5340\u8a55\u5206",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelWebsite": "Website:",
|
||||
"LabelTagline": "Tagline:",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "Select the default landing screen when clicking on a library.",
|
||||
"HeaderTermsOfPurchase": "Terms of Purchase",
|
||||
"PrivacyPolicy": "Privacy policy",
|
||||
"TermsOfUse": "Terms of use"
|
||||
"TermsOfUse": "Terms of use",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
{
|
||||
"HeaderPlayOn": "Play On",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||
@ -148,7 +149,6 @@
|
||||
"LabelAlbum": "Album:",
|
||||
"Artists": "Artists",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelWebsite": "Website:",
|
||||
"LabelTagline": "Tagline:",
|
||||
@ -430,5 +430,8 @@
|
||||
"LandingScreensHelp": "Select the default landing screen when clicking on a library.",
|
||||
"HeaderTermsOfPurchase": "Terms of Purchase",
|
||||
"PrivacyPolicy": "Privacy policy",
|
||||
"TermsOfUse": "Terms of use"
|
||||
"TermsOfUse": "Terms of use",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all"
|
||||
}
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
.osdPoster img,.pageContainer,.videoOsdBottom{bottom:0;left:0;right:0}.osdHeader{padding-bottom:3vh;-webkit-transition:-webkit-transform .3s ease-out,opacity .3s ease-out;-o-transition:transform .3s ease-out,opacity .3s ease-out;transition:transform .3s ease-out,opacity .3s ease-out;will-change:transform;position:relative;z-index:1;background-color:rgba(0,0,0,.3);background:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.6)),to(rgba(0,0,0,0)));background:-webkit-linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,0));background:-o-linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,0));background:linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,0));backdrop-filter:none!important}.osdHeader .headerButton:not(.headerBackButton):not(.libraryMenuButtonText){display:none}.osdHeader-hidden{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);opacity:0}.chapterThumbContainer{-webkit-box-shadow:0 0 1.9vh #000;box-shadow:0 0 1.9vh #000;-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1;position:relative}.chapterThumb{background-position:center center;-webkit-background-size:contain;background-size:contain;background-repeat:no-repeat;border:0;height:20vh;min-width:20vh}@media all and (orientation:portrait){.chapterThumb{height:30vw;min-width:30vw}}@media all and (max-height:50em) and (orientation:landscape){.chapterThumb{height:30vh;min-width:30vh}}.chapterThumbTextContainer{position:absolute;bottom:0;left:0;right:0;background:rgba(0,0,0,.7);padding:.25em .5em;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.chapterThumbText{padding:.25em 0;margin:0;opacity:1}.chapterThumbText-dim{opacity:.6}.videoOsdBottom{position:fixed;background-color:rgba(0,0,0,.7);padding:1%;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;flex-direction:row;will-change:transform;-webkit-transition:-webkit-transform .3s ease-out,opacity .3s ease-out;-o-transition:transform .3s ease-out,opacity .3s ease-out;transition:transform .3s ease-out,opacity .3s ease-out;background:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.3)),to(rgba(0,0,0,1)));background:-webkit-linear-gradient(rgba(0,0,0,.3),rgba(0,0,0,1));background:-o-linear-gradient(rgba(0,0,0,.3),rgba(0,0,0,1));background:linear-gradient(rgba(0,0,0,.3),rgba(0,0,0,1));color:#fff}.videoOsdBottom-hidden{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);opacity:0}.osdControls{-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1}.videoOsdBottom .buttons{padding:.25em 0 0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.osdVolumeSliderContainer{width:6.5em;-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1}.osdMediaInfo,.volumeButtons{display:-webkit-box;display:-webkit-flex;-webkit-box-align:center}.volumeButtons{margin:0 .5em 0 auto;display:flex;-webkit-align-items:center;align-items:center}.osdTimeText{margin-left:1em;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mouseIdle .videoOsdBottom .volumeButtons{display:none}.osdPoster{width:10%;position:relative;margin-right:.5em}.osdPoster img{position:absolute;height:auto;width:100%;-webkit-box-shadow:0 0 1.9vh #000;box-shadow:0 0 1.9vh #000;border:1px solid #222;user-drag:none;user-select:none;-moz-user-select:none;-webkit-user-drag:none;-webkit-user-select:none;-ms-user-select:none}.osdTitle,.osdTitleSmall{margin:0 1em 0 0}.osdMediaInfo{display:flex;-webkit-align-items:center;align-items:center}.osdSecondaryMediaInfo{padding-left:.6em}.osdTextContainer{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;margin-bottom:.7em;padding-left:.5em}.osdMainTextContainer{-webkit-box-align:baseline;-webkit-align-items:baseline;align-items:baseline}.pageContainer{top:0;position:fixed}@media all and (max-width:30em){.btnFastForward,.btnRewind,.osdMediaInfo,.osdPoster{display:none!important}}@media all and (max-width:33.75em){.videoOsdBottom .paper-icon-button-light{margin:0}}@media all and (max-width:37.5em){.videoOsdBottom .volumeButtons{display:none!important}}@media all and (max-width:75em){.videoOsdBottom .endsAtText{display:none!important}}
|
||||
.osdPoster img,.pageContainer,.videoOsdBottom{bottom:0;left:0;right:0}.osdHeader{padding-bottom:3vh;-webkit-transition:-webkit-transform .3s ease-out,opacity .3s ease-out;-o-transition:transform .3s ease-out,opacity .3s ease-out;transition:transform .3s ease-out,opacity .3s ease-out;will-change:transform;position:relative;z-index:1;background-color:rgba(0,0,0,.3);background:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.6)),to(rgba(0,0,0,0)));background:-webkit-linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,0));background:-o-linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,0));background:linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,0));-webkit-backdrop-filter:none!important;backdrop-filter:none!important}.osdHeader .headerButton:not(.headerBackButton):not(.libraryMenuButtonText){display:none}.osdHeader-hidden{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);opacity:0}.chapterThumbContainer{-webkit-box-shadow:0 0 1.9vh #000;box-shadow:0 0 1.9vh #000;-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1;position:relative}.chapterThumb{background-position:center center;-webkit-background-size:contain;background-size:contain;background-repeat:no-repeat;border:0;height:20vh;min-width:20vh}@media all and (orientation:portrait){.chapterThumb{height:30vw;min-width:30vw}}@media all and (max-height:50em) and (orientation:landscape){.chapterThumb{height:30vh;min-width:30vh}}.chapterThumbTextContainer{position:absolute;bottom:0;left:0;right:0;background:rgba(0,0,0,.7);padding:.25em .5em;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.chapterThumbText{padding:.25em 0;margin:0;opacity:1}.chapterThumbText-dim{opacity:.6}.videoOsdBottom{position:fixed;background-color:rgba(0,0,0,.7);padding:1%;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;flex-direction:row;will-change:transform;-webkit-transition:-webkit-transform .3s ease-out,opacity .3s ease-out;-o-transition:transform .3s ease-out,opacity .3s ease-out;transition:transform .3s ease-out,opacity .3s ease-out;background:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.4)),to(rgba(0,0,0,.8)));background:-webkit-linear-gradient(rgba(0,0,0,.4),rgba(0,0,0,.8));background:-o-linear-gradient(rgba(0,0,0,.4),rgba(0,0,0,.8));background:linear-gradient(rgba(0,0,0,.4),rgba(0,0,0,.8));color:#fff}.videoOsdBottom-hidden{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);opacity:0}.osdControls{-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1}.videoOsdBottom .buttons{padding:.25em 0 0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.osdVolumeSliderContainer{width:6.5em;-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1}.osdMediaInfo,.volumeButtons{display:-webkit-box;display:-webkit-flex;-webkit-box-align:center}.volumeButtons{margin:0 .5em 0 auto;display:flex;-webkit-align-items:center;align-items:center}.osdTimeText{margin-left:1em;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mouseIdle .videoOsdBottom .volumeButtons{display:none}.osdPoster{width:10%;position:relative;margin-right:.5em}.osdPoster img{position:absolute;height:auto;width:100%;-webkit-box-shadow:0 0 1.9vh #000;box-shadow:0 0 1.9vh #000;border:1px solid #222;user-drag:none;user-select:none;-moz-user-select:none;-webkit-user-drag:none;-webkit-user-select:none;-ms-user-select:none}.osdTitle,.osdTitleSmall{margin:0 1em 0 0}.osdMediaInfo{display:flex;-webkit-align-items:center;align-items:center}.osdSecondaryMediaInfo{padding-left:.6em!important}.osdTextContainer{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;margin-bottom:.7em;padding-left:.5em}.osdMainTextContainer{-webkit-box-align:baseline;-webkit-align-items:baseline;align-items:baseline}.pageContainer{top:0;position:fixed}@media all and (max-width:30em){.btnFastForward,.btnRewind,.osdMediaInfo,.osdPoster{display:none!important}}@media all and (max-width:33.75em){.videoOsdBottom .paper-icon-button-light{margin:0}}@media all and (max-width:37.5em){.videoOsdBottom .volumeButtons{display:none!important}}@media all and (max-width:75em){.videoOsdBottom .endsAtText{display:none!important}}
|
@ -13,54 +13,59 @@
|
||||
<div is="emby-itemscontainer" class="recordingItems itemsContainer padded-left padded-right"></div>
|
||||
</div>
|
||||
<div id="activePrograms" class="verticalSection">
|
||||
<div class="sectionTitleContainer">
|
||||
<h2 class="sectionTitle sectionTitle-cards padded-left" style="display: inline-block; vertical-align: middle;">${HeaderOnNow}</h2>
|
||||
<a href="livetvitems.html?type=Programs&IsAiring=true" class="clearLinksectionTitleButton" style="margin-left: 1em; vertical-align: middle;"><button is="emby-button" type="button" class="raised more raised-mini noIcon">${ButtonMoreItems}</button></a>
|
||||
<div class="sectionTitleContainer padded-left">
|
||||
<a href="livetvitems.html?type=Programs&IsAiring=true" is="emby-linkbutton" class="button-flat button-flat-mini sectionTitleTextButton">
|
||||
<h2 class="sectionTitle sectionTitle-cards" style="display: inline-block; vertical-align: middle;">${HeaderOnNow}</h2>
|
||||
<i class="md-icon"></i>
|
||||
</a>
|
||||
</div>
|
||||
<div is="emby-itemscontainer" class="activeProgramItems itemsContainer padded-left padded-right"></div>
|
||||
</div>
|
||||
<div id="upcomingEpisodes" class="verticalSection">
|
||||
<div class="sectionTitleContainer">
|
||||
<h2 class="sectionTitle sectionTitle-cards padded-left" style="display: inline-block; vertical-align: middle;">${HeaderUpcomingEpisodes}</h2>
|
||||
<a href="livetvitems.html?type=Programs&IsSeries=true&IsMovie=false&IsNews=false" class="clearLinksectionTitleButton" style="margin-left: 1em; vertical-align: middle;"><button is="emby-button" type="button" class="raised more raised-mini noIcon">${ButtonMoreItems}</button></a>
|
||||
<div class="sectionTitleContainer padded-left">
|
||||
<a href="livetvitems.html?type=Programs&IsSeries=true&IsMovie=false&IsNews=false" is="emby-linkbutton" class="button-flat button-flat-mini sectionTitleTextButton">
|
||||
<h2 class="sectionTitle sectionTitle-cards" style="display: inline-block; vertical-align: middle;">${HeaderEpisodes}</h2>
|
||||
<i class="md-icon"></i>
|
||||
</a>
|
||||
</div>
|
||||
<div is="emby-itemscontainer" class="upcomingEpisodeItems itemsContainer padded-left padded-right"></div>
|
||||
</div>
|
||||
<div id="upcomingTvMovies" class="verticalSection">
|
||||
<div class="sectionTitleContainer">
|
||||
<h2 class="sectionTitle sectionTitle-cards padded-left" style="display: inline-block; vertical-align: middle;">${HeaderUpcomingMovies}</h2>
|
||||
<a href="livetvitems.html?type=Programs&IsMovie=true" class="clearLinksectionTitleButton" style="margin-left: 1em; vertical-align: middle;"><button is="emby-button" type="button" class="raised more raised-mini noIcon">${ButtonMoreItems}</button></a>
|
||||
<div class="sectionTitleContainer padded-left">
|
||||
<a href="livetvitems.html?type=Programs&IsMovie=true" is="emby-linkbutton" class="button-flat button-flat-mini sectionTitleTextButton">
|
||||
<h2 class="sectionTitle sectionTitle-cards" style="display: inline-block; vertical-align: middle;">${HeaderMovies}</h2>
|
||||
<i class="md-icon"></i>
|
||||
</a>
|
||||
</div>
|
||||
<div is="emby-itemscontainer" class="upcomingTvMovieItems itemsContainer padded-left padded-right"></div>
|
||||
</div>
|
||||
<div id="upcomingSports" class="verticalSection">
|
||||
<div class="sectionTitleContainer">
|
||||
<h2 class="sectionTitle sectionTitle-cards padded-left" style="display: inline-block; vertical-align: middle;">${HeaderUpcomingSports}</h2>
|
||||
<a href="livetvitems.html?type=Programs&IsSports=true" class="clearLinksectionTitleButton" style="margin-left: 1em; vertical-align: middle;"><button is="emby-button" type="button" class="raised more raised-mini noIcon">${ButtonMoreItems}</button></a>
|
||||
<div class="sectionTitleContainer padded-left">
|
||||
<a href="livetvitems.html?type=Programs&IsSports=true" is="emby-linkbutton" class="button-flat button-flat-mini sectionTitleTextButton">
|
||||
<h2 class="sectionTitle sectionTitle-cards" style="display: inline-block; vertical-align: middle;">${Sports}</h2>
|
||||
<i class="md-icon"></i>
|
||||
</a>
|
||||
</div>
|
||||
<div is="emby-itemscontainer" class="upcomingSportsItems itemsContainer padded-left padded-right"></div>
|
||||
</div>
|
||||
<div id="upcomingKids" class="verticalSection">
|
||||
<div class="sectionTitleContainer">
|
||||
<h2 class="sectionTitle sectionTitle-cards padded-left" style="display: inline-block; vertical-align: middle;">${HeaderUpcomingForKids}</h2>
|
||||
<a href="livetvitems.html?type=Programs&IsKids=true" class="clearLinksectionTitleButton" style="margin-left: 1em; vertical-align: middle;"><button is="emby-button" type="button" class="raised more raised-mini noIcon">${ButtonMoreItems}</button></a>
|
||||
<div class="sectionTitleContainer padded-left">
|
||||
<a href="livetvitems.html?type=Programs&IsKids=true" is="emby-linkbutton" class="button-flat button-flat-mini sectionTitleTextButton">
|
||||
<h2 class="sectionTitle sectionTitle-cards" style="display: inline-block; vertical-align: middle;">${HeaderForKids}</h2>
|
||||
<i class="md-icon"></i>
|
||||
</a>
|
||||
</div>
|
||||
<div is="emby-itemscontainer" class="upcomingKidsItems itemsContainer padded-left padded-right"></div>
|
||||
</div>
|
||||
<div id="upcomingNews" class="verticalSection">
|
||||
<div class="sectionTitleContainer">
|
||||
<h2 class="sectionTitle sectionTitle-cards padded-left" style="display: inline-block; vertical-align: middle;">${HeaderUpcomingNews}</h2>
|
||||
<a href="livetvitems.html?type=Programs&IsNews=true" class="clearLinksectionTitleButton" style="margin-left: 1em; vertical-align: middle;"><button is="emby-button" type="button" class="raised more raised-mini noIcon">${ButtonMoreItems}</button></a>
|
||||
<div class="sectionTitleContainer padded-left">
|
||||
<a href="livetvitems.html?type=Programs&IsNews=true" is="emby-linkbutton" class="button-flat button-flat-mini sectionTitleTextButton">
|
||||
<h2 class="sectionTitle sectionTitle-cards" style="display: inline-block; vertical-align: middle;">${News}</h2>
|
||||
<i class="md-icon"></i>
|
||||
</a>
|
||||
</div>
|
||||
<div is="emby-itemscontainer" class="upcomingNewsItems itemsContainer padded-left padded-right"></div>
|
||||
</div>
|
||||
<div id="upcomingPrograms" class="upcomingPrograms verticalSection hide">
|
||||
<div class="sectionTitleContainer">
|
||||
<h2 class="sectionTitle sectionTitle-cards padded-left" style="display: inline-block; vertical-align: middle;">${HeaderUpcomingPrograms}</h2>
|
||||
<a href="livetvitems.html?type=Programs&IsKids=false&IsMovie=false&IsSports=false&IsSeries=false" class="clearLinksectionTitleButton" style="margin-left: 1em; vertical-align: middle;"><button is="emby-button" type="button" class="raised more raised-mini noIcon">${ButtonMoreItems}</button></a>
|
||||
</div>
|
||||
<div is="emby-itemscontainer" class="upcomingProgramItems itemsContainer padded-left padded-right"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="pageTabContent flexPageTabContent absolutePageTabContent" id="guideTab" data-index="1" style="width:auto;padding-top:0; padding-bottom: 0!important;">
|
||||
</div>
|
||||
@ -77,46 +82,57 @@
|
||||
<div is="emby-itemscontainer" class="recordingItems itemsContainer padded-left padded-right"></div>
|
||||
</div>
|
||||
<div id="latestRecordings" class="verticalSection hide">
|
||||
<div class="sectionTitleContainer">
|
||||
<h2 class="sectionTitle sectionTitle-cards padded-left" style="display: inline-block; vertical-align: middle;">${HeaderLatestRecordings}</h2>
|
||||
<button is="emby-button" type="button" class="raised more raised-mini sectionTitleButton" data-type="latest">${ButtonMore}</button>
|
||||
<button is="emby-button" type="button" class="raised submit raised-mini button-accent categorySyncButton" data-category="Latest">
|
||||
<div class="sectionTitleContainer padded-left">
|
||||
<button type="button" is="emby-button" class="button-flat button-flat-mini sectionTitleTextButton more" data-type="latest">
|
||||
<h2 class="sectionTitle sectionTitle-cards">${HeaderLatestRecordings}</h2>
|
||||
<i class="md-icon"></i>
|
||||
</button>
|
||||
|
||||
<button is="emby-button" type="button" class="raised submit raised-mini button-accent categorySyncButton" data-category="Latest" style="margin-left: 2em;">
|
||||
<span>${ButtonDownload}</span>
|
||||
</button>
|
||||
</div>
|
||||
<div is="emby-itemscontainer" class="recordingItems itemsContainer padded-left padded-right"></div>
|
||||
</div>
|
||||
<div id="movieRecordings" class="verticalSection hide">
|
||||
<div class="sectionTitleContainer">
|
||||
<h2 class="sectionTitle sectionTitle-cards padded-left" style="display: inline-block; vertical-align: middle;">${TabMovies}</h2>
|
||||
<button is="emby-button" type="button" class="raised more raised-mini sectionTitleButton" data-type="movies">${ButtonMore}</button>
|
||||
<div class="sectionTitleContainer padded-left">
|
||||
<button type="button" is="emby-button" class="button-flat button-flat-mini sectionTitleTextButton more" data-type="movies">
|
||||
<h2 class="sectionTitle sectionTitle-cards">${TabMovies}</h2>
|
||||
<i class="md-icon"></i>
|
||||
</button>
|
||||
</div>
|
||||
<div is="emby-itemscontainer" class="recordingItems itemsContainer padded-left padded-right"></div>
|
||||
</div>
|
||||
<div id="episodeRecordings" class="verticalSection hide">
|
||||
<div class="sectionTitleContainer">
|
||||
<h2 class="sectionTitle sectionTitle-cards padded-left" style="display: inline-block; vertical-align: middle;">${TabShows}</h2>
|
||||
<button is="emby-button" type="button" class="raised more raised-mini sectionTitleButton" data-type="episodes">${ButtonMore}</button>
|
||||
<div class="sectionTitleContainer padded-left">
|
||||
<button type="button" is="emby-button" class="button-flat button-flat-mini sectionTitleTextButton more" data-type="episodes">
|
||||
<h2 class="sectionTitle sectionTitle-cards">${TabShows}</h2>
|
||||
<i class="md-icon"></i>
|
||||
</button>
|
||||
</div>
|
||||
<div is="emby-itemscontainer" class="recordingItems itemsContainer padded-left padded-right"></div>
|
||||
</div>
|
||||
<div id="sportsRecordings" class="verticalSection hide">
|
||||
<div class="sectionTitleContainer">
|
||||
<h2 class="sectionTitle sectionTitle-cards padded-left" style="display: inline-block; vertical-align: middle;">${Sports}</h2>
|
||||
<button is="emby-button" type="button" class="raised more raised-mini sectionTitleButton" data-type="sports">${ButtonMore}</button>
|
||||
<div class="sectionTitleContainer padded-left">
|
||||
<button type="button" is="emby-button" class="button-flat button-flat-mini sectionTitleTextButton more" data-type="sports">
|
||||
<h2 class="sectionTitle sectionTitle-cards">${Sports}</h2>
|
||||
<i class="md-icon"></i>
|
||||
</button>
|
||||
</div>
|
||||
<div is="emby-itemscontainer" class="recordingItems itemsContainer padded-left padded-right"></div>
|
||||
</div>
|
||||
<div id="kidsRecordings" class="verticalSection hide">
|
||||
<div class="sectionTitleContainer">
|
||||
<h2 class="sectionTitle sectionTitle-cards padded-left" style="display: inline-block; vertical-align: middle;">${HeaderForKids}</h2>
|
||||
<button is="emby-button" type="button" class="raised more raised-mini sectionTitleButton" data-type="kids">${ButtonMore}</button>
|
||||
<div class="sectionTitleContainer padded-left">
|
||||
<button type="button" is="emby-button" class="button-flat button-flat-mini sectionTitleTextButton more" data-type="kids">
|
||||
<h2 class="sectionTitle sectionTitle-cards">${HeaderForKids}</h2>
|
||||
<i class="md-icon"></i>
|
||||
</button>
|
||||
</div>
|
||||
<div is="emby-itemscontainer" class="recordingItems itemsContainer padded-left padded-right"></div>
|
||||
</div>
|
||||
<div id="recordingGroups" class="hide verticalSection">
|
||||
<div class="sectionTitleContainer">
|
||||
<h2 class="sectionTitle sectionTitle-cards padded-left" style="display: inline-block; vertical-align: middle;">${HeaderRecordingGroups}</h2>
|
||||
<h2 class="sectionTitle sectionTitle-cards padded-left">${HeaderRecordingGroups}</h2>
|
||||
</div>
|
||||
<div id="recordingGroupItems" class="padded-left padded-right"></div>
|
||||
</div>
|
||||
|
@ -1 +1 @@
|
||||
define(["layoutManager","datetime","cardBuilder","apphost"],function(layoutManager,datetime,cardBuilder,appHost){"use strict";function enableScrollX(){return!layoutManager.desktop}function getBackdropShape(){return enableScrollX()?"overflowBackdrop":"backdrop"}function getTimersHtml(timers,options){options=options||{};var i,length,items=timers.map(function(t){return t.Type="Timer",t}),groups=[],currentGroupName="",currentGroup=[];for(i=0,length=items.length;i<length;i++){var item=items[i],dateText="";if(options.indexByDate!==!1&&item.StartDate)try{var premiereDate=datetime.parseISO8601Date(item.StartDate,!0);dateText=datetime.toLocaleDateString(premiereDate,{weekday:"long",month:"short",day:"numeric"})}catch(err){}dateText!=currentGroupName?(currentGroup.length&&groups.push({name:currentGroupName,items:currentGroup}),currentGroupName=dateText,currentGroup=[item]):currentGroup.push(item)}currentGroup.length&&groups.push({name:currentGroupName,items:currentGroup});var html="";for(i=0,length=groups.length;i<length;i++){var group=groups[i];group.name&&(html+='<div class="verticalSection">',html+='<h2 class="sectionTitle sectionTitle-cards padded-left">'+group.name+"</h2>"),html+=enableScrollX()?'<div is="emby-itemscontainer" class="itemsContainer hiddenScrollX padded-left padded-right">':'<div is="emby-itemscontainer" class="itemsContainer vertical-wrap padded-left padded-right">';var supportsImageAnalysis=appHost.supports("imageanalysis"),cardLayout=appHost.preferVisualCards||supportsImageAnalysis;cardLayout=!1,html+=cardBuilder.getCardsHtml({items:group.items,shape:getBackdropShape(),showParentTitleOrTitle:!0,showAirTime:!0,showAirEndTime:!0,showChannelName:!0,cardLayout:cardLayout,centerText:!cardLayout,vibrant:cardLayout&&supportsImageAnalysis,action:"edit",cardFooterAside:"none",preferThumb:!0,coverImage:!0,allowBottomPadding:!enableScrollX(),overlayText:!1}),html+="</div>",group.name&&(html+="</div>")}return Promise.resolve(html)}window.LiveTvHelpers={getTimersHtml:getTimersHtml}});
|
||||
define(["layoutManager","datetime","cardBuilder","apphost"],function(layoutManager,datetime,cardBuilder,appHost){"use strict";function enableScrollX(){return!layoutManager.desktop}function getBackdropShape(){return enableScrollX()?"overflowBackdrop":"backdrop"}function getTimersHtml(timers,options){options=options||{};var i,length,items=timers.map(function(t){return t.Type="Timer",t}),groups=[],currentGroupName="",currentGroup=[];for(i=0,length=items.length;i<length;i++){var item=items[i],dateText="";if(options.indexByDate!==!1&&item.StartDate)try{var premiereDate=datetime.parseISO8601Date(item.StartDate,!0);dateText=datetime.toLocaleDateString(premiereDate,{weekday:"long",month:"short",day:"numeric"})}catch(err){}dateText!=currentGroupName?(currentGroup.length&&groups.push({name:currentGroupName,items:currentGroup}),currentGroupName=dateText,currentGroup=[item]):currentGroup.push(item)}currentGroup.length&&groups.push({name:currentGroupName,items:currentGroup});var html="";for(i=0,length=groups.length;i<length;i++){var group=groups[i];group.name&&(html+='<div class="verticalSection">',html+='<h2 class="sectionTitle sectionTitle-cards padded-left">'+group.name+"</h2>"),html+=enableScrollX()?'<div is="emby-itemscontainer" class="itemsContainer hiddenScrollX padded-left padded-right">':'<div is="emby-itemscontainer" class="itemsContainer vertical-wrap padded-left padded-right">';var supportsImageAnalysis=appHost.supports("imageanalysis"),cardLayout=appHost.preferVisualCards||supportsImageAnalysis;cardLayout=!1,html+=cardBuilder.getCardsHtml({items:group.items,shape:getBackdropShape(),showParentTitleOrTitle:!0,showAirTime:!0,showAirEndTime:!0,showChannelName:!0,cardLayout:cardLayout,centerText:!cardLayout,vibrant:cardLayout&&supportsImageAnalysis,action:"edit",cardFooterAside:"none",preferThumb:!0,coverImage:!0,allowBottomPadding:!1,overlayText:!1}),html+="</div>",group.name&&(html+="</div>")}return Promise.resolve(html)}window.LiveTvHelpers={getTimersHtml:getTimersHtml}});
|
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
define(["layoutManager","loading","libraryBrowser","cardBuilder","lazyLoader","apphost","globalize","embyRouter","dom","emby-linkbutton"],function(layoutManager,loading,libraryBrowser,cardBuilder,lazyLoader,appHost,globalize,embyRouter,dom){"use strict";return function(view,params,tabContent){function getPageData(){var key=getSavedQueryKey(),pageData=data[key];return pageData||(pageData=data[key]={query:{SortBy:"SortName",SortOrder:"Ascending",IncludeItemTypes:"Movie",Recursive:!0,EnableTotalRecordCount:!1},view:"Poster"},pageData.query.ParentId=params.topParentId,libraryBrowser.loadSavedQueryValues(key,pageData.query)),pageData}function getQuery(){return getPageData().query}function getSavedQueryKey(){return libraryBrowser.getSavedQueryKey("moviegenres")}function getPromise(){loading.show();var query=getQuery();return ApiClient.getGenres(Dashboard.getCurrentUserId(),query)}function enableScrollX(){return!layoutManager.desktop}function getThumbShape(){return enableScrollX()?"overflowBackdrop":"backdrop"}function getPortraitShape(){return enableScrollX()?"overflowPortrait":"portrait"}function fillItemsContainer(elem){var id=elem.getAttribute("data-id"),viewStyle=self.getCurrentViewStyle(),limit="Thumb"==viewStyle||"ThumbCard"==viewStyle?5:8;enableScrollX()&&(limit=10);var enableImageTypes="Thumb"==viewStyle||"ThumbCard"==viewStyle?"Primary,Backdrop,Thumb":"Primary",query={SortBy:"SortName",SortOrder:"Ascending",IncludeItemTypes:"Movie",Recursive:!0,Fields:"PrimaryImageAspectRatio,MediaSourceCount,BasicSyncInfo",ImageTypeLimit:1,EnableImageTypes:enableImageTypes,Limit:limit,GenreIds:id,EnableTotalRecordCount:!1,ParentId:params.topParentId};ApiClient.getItems(Dashboard.getCurrentUserId(),query).then(function(result){var supportsImageAnalysis=appHost.supports("imageanalysis");"Thumb"==viewStyle?cardBuilder.buildCards(result.Items,{itemsContainer:elem,shape:getThumbShape(),preferThumb:!0,showTitle:!0,scalable:!0,centerText:!0,overlayMoreButton:!0,allowBottomPadding:!1}):"ThumbCard"==viewStyle?cardBuilder.buildCards(result.Items,{itemsContainer:elem,shape:getThumbShape(),preferThumb:!0,showTitle:!0,scalable:!0,centerText:!1,cardLayout:!0,vibrant:supportsImageAnalysis,showYear:!0}):"PosterCard"==viewStyle?cardBuilder.buildCards(result.Items,{itemsContainer:elem,shape:getPortraitShape(),showTitle:!0,scalable:!0,centerText:!1,cardLayout:!0,vibrant:supportsImageAnalysis,showYear:!0}):"Poster"==viewStyle&&cardBuilder.buildCards(result.Items,{itemsContainer:elem,shape:getPortraitShape(),scalable:!0,overlayMoreButton:!0,allowBottomPadding:!1}),result.Items.length>=query.Limit&&tabContent.querySelector(".btnMoreFromGenre"+id).classList.remove("hide")})}function reloadItems(context,promise){var query=getQuery();promise.then(function(result){for(var elem=context.querySelector("#items"),html="",items=result.Items,i=0,length=items.length;i<length;i++){var item=items[i];html+='<div class="verticalSection">',html+='<div class="sectionTitleContainer padded-left">',html+='<h2 class="sectionTitle sectionTitle-cards">',html+=item.Name,html+="</h2>",html+='<a is="emby-linkbutton" href="'+embyRouter.getRouteUrl(item,{context:"movies",parentId:params.topParentId})+'" class="raised more raised-mini hide sectionTitleButton btnMoreFromGenre'+item.Id+'">',html+=globalize.translate("ButtonMore"),html+="</a>",html+="</div>",html+=enableScrollX()?'<div is="emby-itemscontainer" class="itemsContainer hiddenScrollX lazy padded-left padded-right" data-id="'+item.Id+'">':'<div is="emby-itemscontainer" class="itemsContainer vertical-wrap lazy padded-left padded-right" data-id="'+item.Id+'">',html+="</div>",html+="</div>"}elem.innerHTML=html,lazyLoader.lazyChildren(elem,fillItemsContainer),libraryBrowser.saveQueryValues(getSavedQueryKey(),query),loading.hide()})}function fullyReload(){self.preRender(),self.renderTab()}var self=this,data={};self.getViewStyles=function(){return"Poster,PosterCard,Thumb,ThumbCard".split(",")},self.getCurrentViewStyle=function(){return getPageData(tabContent).view},self.setCurrentViewStyle=function(viewStyle){getPageData(tabContent).view=viewStyle,libraryBrowser.saveViewSetting(getSavedQueryKey(tabContent),viewStyle),fullyReload()},self.enableViewSelection=!0;var promise;self.preRender=function(){promise=getPromise()},self.renderTab=function(){reloadItems(tabContent,promise)}}});
|
||||
define(["layoutManager","loading","libraryBrowser","cardBuilder","lazyLoader","apphost","globalize","embyRouter","dom","emby-linkbutton"],function(layoutManager,loading,libraryBrowser,cardBuilder,lazyLoader,appHost,globalize,embyRouter,dom){"use strict";return function(view,params,tabContent){function getPageData(){var key=getSavedQueryKey(),pageData=data[key];return pageData||(pageData=data[key]={query:{SortBy:"SortName",SortOrder:"Ascending",IncludeItemTypes:"Movie",Recursive:!0,EnableTotalRecordCount:!1},view:"Poster"},pageData.query.ParentId=params.topParentId,libraryBrowser.loadSavedQueryValues(key,pageData.query)),pageData}function getQuery(){return getPageData().query}function getSavedQueryKey(){return libraryBrowser.getSavedQueryKey("moviegenres")}function getPromise(){loading.show();var query=getQuery();return ApiClient.getGenres(Dashboard.getCurrentUserId(),query)}function enableScrollX(){return!layoutManager.desktop}function getThumbShape(){return enableScrollX()?"overflowBackdrop":"backdrop"}function getPortraitShape(){return enableScrollX()?"overflowPortrait":"portrait"}function fillItemsContainer(elem){var id=elem.getAttribute("data-id"),viewStyle=self.getCurrentViewStyle(),limit="Thumb"==viewStyle||"ThumbCard"==viewStyle?5:8;enableScrollX()&&(limit=10);var enableImageTypes="Thumb"==viewStyle||"ThumbCard"==viewStyle?"Primary,Backdrop,Thumb":"Primary",query={SortBy:"SortName",SortOrder:"Ascending",IncludeItemTypes:"Movie",Recursive:!0,Fields:"PrimaryImageAspectRatio,MediaSourceCount,BasicSyncInfo",ImageTypeLimit:1,EnableImageTypes:enableImageTypes,Limit:limit,GenreIds:id,EnableTotalRecordCount:!1,ParentId:params.topParentId};ApiClient.getItems(Dashboard.getCurrentUserId(),query).then(function(result){var supportsImageAnalysis=appHost.supports("imageanalysis");"Thumb"==viewStyle?cardBuilder.buildCards(result.Items,{itemsContainer:elem,shape:getThumbShape(),preferThumb:!0,showTitle:!0,scalable:!0,centerText:!0,overlayMoreButton:!0,allowBottomPadding:!1}):"ThumbCard"==viewStyle?cardBuilder.buildCards(result.Items,{itemsContainer:elem,shape:getThumbShape(),preferThumb:!0,showTitle:!0,scalable:!0,centerText:!1,cardLayout:!0,vibrant:supportsImageAnalysis,showYear:!0}):"PosterCard"==viewStyle?cardBuilder.buildCards(result.Items,{itemsContainer:elem,shape:getPortraitShape(),showTitle:!0,scalable:!0,centerText:!1,cardLayout:!0,vibrant:supportsImageAnalysis,showYear:!0}):"Poster"==viewStyle&&cardBuilder.buildCards(result.Items,{itemsContainer:elem,shape:getPortraitShape(),scalable:!0,overlayMoreButton:!0,allowBottomPadding:!1}),result.Items.length>=query.Limit&&tabContent.querySelector(".btnMoreFromGenre"+id+" i").classList.remove("hide")})}function reloadItems(context,promise){var query=getQuery();promise.then(function(result){for(var elem=context.querySelector("#items"),html="",items=result.Items,i=0,length=items.length;i<length;i++){var item=items[i];html+='<div class="verticalSection">',html+='<div class="sectionTitleContainer padded-left">',html+='<a is="emby-linkbutton" href="'+embyRouter.getRouteUrl(item,{context:"movies",parentId:params.topParentId})+'" class="more button-flat button-flat-mini sectionTitleTextButton btnMoreFromGenre'+item.Id+'">',html+='<h2 class="sectionTitle sectionTitle-cards">',html+=item.Name,html+="</h2>",html+='<i class="md-icon hide"></i>',html+="</a>",html+="</div>",html+=enableScrollX()?'<div is="emby-itemscontainer" class="itemsContainer hiddenScrollX lazy padded-left padded-right" data-id="'+item.Id+'">':'<div is="emby-itemscontainer" class="itemsContainer vertical-wrap lazy padded-left padded-right" data-id="'+item.Id+'">',html+="</div>",html+="</div>"}elem.innerHTML=html,lazyLoader.lazyChildren(elem,fillItemsContainer),libraryBrowser.saveQueryValues(getSavedQueryKey(),query),loading.hide()})}function fullyReload(){self.preRender(),self.renderTab()}var self=this,data={};self.getViewStyles=function(){return"Poster,PosterCard,Thumb,ThumbCard".split(",")},self.getCurrentViewStyle=function(){return getPageData(tabContent).view},self.setCurrentViewStyle=function(viewStyle){getPageData(tabContent).view=viewStyle,libraryBrowser.saveViewSetting(getSavedQueryKey(tabContent),viewStyle),fullyReload()},self.enableViewSelection=!0;var promise;self.preRender=function(){promise=getPromise()},self.renderTab=function(){reloadItems(tabContent,promise)}}});
|
@ -1 +1 @@
|
||||
define(["layoutManager","loading","libraryBrowser","cardBuilder","lazyLoader","apphost","globalize","embyRouter","dom","emby-linkbutton"],function(layoutManager,loading,libraryBrowser,cardBuilder,lazyLoader,appHost,globalize,embyRouter,dom){"use strict";return function(view,params,tabContent){function getPageData(){var key=getSavedQueryKey(),pageData=data[key];return pageData||(pageData=data[key]={query:{SortBy:"SortName",SortOrder:"Ascending",IncludeItemTypes:"Series",Recursive:!0,EnableTotalRecordCount:!1},view:"Poster"},pageData.query.ParentId=params.topParentId,libraryBrowser.loadSavedQueryValues(key,pageData.query)),pageData}function getQuery(){return getPageData().query}function getSavedQueryKey(){return libraryBrowser.getSavedQueryKey("seriesgenres")}function getPromise(){loading.show();var query=getQuery();return ApiClient.getGenres(Dashboard.getCurrentUserId(),query)}function enableScrollX(){return!layoutManager.desktop}function getThumbShape(){return enableScrollX()?"overflowBackdrop":"backdrop"}function getPortraitShape(){return enableScrollX()?"overflowPortrait":"portrait"}function fillItemsContainer(elem){var id=elem.getAttribute("data-id"),viewStyle=self.getCurrentViewStyle(),limit="Thumb"==viewStyle||"ThumbCard"==viewStyle?5:8;enableScrollX()&&(limit=10);var enableImageTypes="Thumb"==viewStyle||"ThumbCard"==viewStyle?"Primary,Backdrop,Thumb":"Primary",query={SortBy:"SortName",SortOrder:"Ascending",IncludeItemTypes:"Series",Recursive:!0,Fields:"PrimaryImageAspectRatio,MediaSourceCount,BasicSyncInfo",ImageTypeLimit:1,EnableImageTypes:enableImageTypes,Limit:limit,GenreIds:id,EnableTotalRecordCount:!1,ParentId:params.topParentId};ApiClient.getItems(Dashboard.getCurrentUserId(),query).then(function(result){var supportsImageAnalysis=appHost.supports("imageanalysis");"Thumb"==viewStyle?cardBuilder.buildCards(result.Items,{itemsContainer:elem,shape:getThumbShape(),preferThumb:!0,showTitle:!0,scalable:!0,centerText:!0,overlayMoreButton:!0,allowBottomPadding:!1}):"ThumbCard"==viewStyle?cardBuilder.buildCards(result.Items,{itemsContainer:elem,shape:getThumbShape(),preferThumb:!0,showTitle:!0,scalable:!0,centerText:!1,cardLayout:!0,vibrant:supportsImageAnalysis,showYear:!0}):"PosterCard"==viewStyle?cardBuilder.buildCards(result.Items,{itemsContainer:elem,shape:getPortraitShape(),showTitle:!0,scalable:!0,centerText:!1,cardLayout:!0,vibrant:supportsImageAnalysis,showYear:!0}):"Poster"==viewStyle&&cardBuilder.buildCards(result.Items,{itemsContainer:elem,shape:getPortraitShape(),scalable:!0,overlayMoreButton:!0,allowBottomPadding:!1}),result.Items.length>=query.Limit&&tabContent.querySelector(".btnMoreFromGenre"+id).classList.remove("hide")})}function reloadItems(context,promise){var query=getQuery();promise.then(function(result){for(var elem=context.querySelector("#items"),html="",items=result.Items,i=0,length=items.length;i<length;i++){var item=items[i];html+='<div class="verticalSection">',html+='<div class="sectionTitleContainer padded-left">',html+='<h2 class="sectionTitle sectionTitle-cards">',html+=item.Name,html+="</h2>",html+='<a is="emby-linkbutton" href="'+embyRouter.getRouteUrl(item,{context:"tvshows",parentId:params.topParentId})+'" class="raised more raised-mini hide sectionTitleButton btnMoreFromGenre'+item.Id+'">',html+=globalize.translate("ButtonMore"),html+="</a>",html+="</div>",html+=enableScrollX()?'<div is="emby-itemscontainer" class="itemsContainer hiddenScrollX lazy padded-left padded-right" data-id="'+item.Id+'">':'<div is="emby-itemscontainer" class="itemsContainer vertical-wrap lazy padded-left padded-right" data-id="'+item.Id+'">',html+="</div>",html+="</div>"}elem.innerHTML=html,lazyLoader.lazyChildren(elem,fillItemsContainer),libraryBrowser.saveQueryValues(getSavedQueryKey(),query),loading.hide()})}function fullyReload(){self.preRender(),self.renderTab()}var self=this,data={};self.getViewStyles=function(){return"Poster,PosterCard,Thumb,ThumbCard".split(",")},self.getCurrentViewStyle=function(){return getPageData(tabContent).view},self.setCurrentViewStyle=function(viewStyle){getPageData(tabContent).view=viewStyle,libraryBrowser.saveViewSetting(getSavedQueryKey(tabContent),viewStyle),fullyReload()},self.enableViewSelection=!0;var promise;self.preRender=function(){promise=getPromise()},self.renderTab=function(){reloadItems(tabContent,promise)}}});
|
||||
define(["layoutManager","loading","libraryBrowser","cardBuilder","lazyLoader","apphost","globalize","embyRouter","dom","emby-linkbutton"],function(layoutManager,loading,libraryBrowser,cardBuilder,lazyLoader,appHost,globalize,embyRouter,dom){"use strict";return function(view,params,tabContent){function getPageData(){var key=getSavedQueryKey(),pageData=data[key];return pageData||(pageData=data[key]={query:{SortBy:"SortName",SortOrder:"Ascending",IncludeItemTypes:"Series",Recursive:!0,EnableTotalRecordCount:!1},view:"Poster"},pageData.query.ParentId=params.topParentId,libraryBrowser.loadSavedQueryValues(key,pageData.query)),pageData}function getQuery(){return getPageData().query}function getSavedQueryKey(){return libraryBrowser.getSavedQueryKey("seriesgenres")}function getPromise(){loading.show();var query=getQuery();return ApiClient.getGenres(Dashboard.getCurrentUserId(),query)}function enableScrollX(){return!layoutManager.desktop}function getThumbShape(){return enableScrollX()?"overflowBackdrop":"backdrop"}function getPortraitShape(){return enableScrollX()?"overflowPortrait":"portrait"}function fillItemsContainer(elem){var id=elem.getAttribute("data-id"),viewStyle=self.getCurrentViewStyle(),limit="Thumb"==viewStyle||"ThumbCard"==viewStyle?5:8;enableScrollX()&&(limit=10);var enableImageTypes="Thumb"==viewStyle||"ThumbCard"==viewStyle?"Primary,Backdrop,Thumb":"Primary",query={SortBy:"SortName",SortOrder:"Ascending",IncludeItemTypes:"Series",Recursive:!0,Fields:"PrimaryImageAspectRatio,MediaSourceCount,BasicSyncInfo",ImageTypeLimit:1,EnableImageTypes:enableImageTypes,Limit:limit,GenreIds:id,EnableTotalRecordCount:!1,ParentId:params.topParentId};ApiClient.getItems(Dashboard.getCurrentUserId(),query).then(function(result){var supportsImageAnalysis=appHost.supports("imageanalysis");"Thumb"==viewStyle?cardBuilder.buildCards(result.Items,{itemsContainer:elem,shape:getThumbShape(),preferThumb:!0,showTitle:!0,scalable:!0,centerText:!0,overlayMoreButton:!0,allowBottomPadding:!1}):"ThumbCard"==viewStyle?cardBuilder.buildCards(result.Items,{itemsContainer:elem,shape:getThumbShape(),preferThumb:!0,showTitle:!0,scalable:!0,centerText:!1,cardLayout:!0,vibrant:supportsImageAnalysis,showYear:!0}):"PosterCard"==viewStyle?cardBuilder.buildCards(result.Items,{itemsContainer:elem,shape:getPortraitShape(),showTitle:!0,scalable:!0,centerText:!1,cardLayout:!0,vibrant:supportsImageAnalysis,showYear:!0}):"Poster"==viewStyle&&cardBuilder.buildCards(result.Items,{itemsContainer:elem,shape:getPortraitShape(),scalable:!0,overlayMoreButton:!0,allowBottomPadding:!1}),result.Items.length>=query.Limit&&tabContent.querySelector(".btnMoreFromGenre"+id+" i").classList.remove("hide")})}function reloadItems(context,promise){var query=getQuery();promise.then(function(result){for(var elem=context.querySelector("#items"),html="",items=result.Items,i=0,length=items.length;i<length;i++){var item=items[i];html+='<div class="verticalSection">',html+='<div class="sectionTitleContainer padded-left">',html+='<a is="emby-linkbutton" href="'+embyRouter.getRouteUrl(item,{context:"tvshows",parentId:params.topParentId})+'" class="more button-flat button-flat-mini sectionTitleTextButton btnMoreFromGenre'+item.Id+'">',html+='<h2 class="sectionTitle sectionTitle-cards">',html+=item.Name,html+="</h2>",html+='<i class="md-icon hide"></i>',html+="</a>",html+="</div>",html+=enableScrollX()?'<div is="emby-itemscontainer" class="itemsContainer hiddenScrollX lazy padded-left padded-right" data-id="'+item.Id+'">':'<div is="emby-itemscontainer" class="itemsContainer vertical-wrap lazy padded-left padded-right" data-id="'+item.Id+'">',html+="</div>",html+="</div>"}elem.innerHTML=html,lazyLoader.lazyChildren(elem,fillItemsContainer),libraryBrowser.saveQueryValues(getSavedQueryKey(),query),loading.hide()})}function fullyReload(){self.preRender(),self.renderTab()}var self=this,data={};self.getViewStyles=function(){return"Poster,PosterCard,Thumb,ThumbCard".split(",")},self.getCurrentViewStyle=function(){return getPageData(tabContent).view},self.setCurrentViewStyle=function(viewStyle){getPageData(tabContent).view=viewStyle,libraryBrowser.saveViewSetting(getSavedQueryKey(tabContent),viewStyle),fullyReload()},self.enableViewSelection=!0;var promise;self.preRender=function(){promise=getPromise()},self.renderTab=function(){reloadItems(tabContent,promise)}}});
|
File diff suppressed because one or more lines are too long
@ -1,4 +1,6 @@
|
||||
{
|
||||
"News": "News",
|
||||
"Programs": "Programs",
|
||||
"LabelPrevious": "\u0627\u0644\u0633\u0627\u0628\u0642",
|
||||
"LabelFinish": "\u0627\u0646\u0647\u0627\u0621",
|
||||
"LabelNext": "\u0627\u0644\u062a\u0627\u0644\u064a",
|
||||
@ -940,7 +942,6 @@
|
||||
"LabelAlbumArtists": "\u0641\u0646\u0627\u0646\u0648 \u0627\u0644\u0623\u0644\u0628\u0648\u0645\u0627\u062a:",
|
||||
"LabelAlbum": "\u0627\u0644\u0623\u0644\u0628\u0648\u0645",
|
||||
"LabelCommunityRating": "\u062a\u0642\u064a\u064a\u0645 \u0627\u0644\u0645\u062c\u062a\u0645\u0639:",
|
||||
"LabelAwardSummary": "\u0645\u0644\u062e\u0635 \u0627\u0644\u062c\u0648\u0627\u0626\u0632:",
|
||||
"LabelReleaseDate": "\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0625\u0635\u062f\u0627\u0631",
|
||||
"LabelEndDate": "\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0627\u0646\u062a\u0647\u0627\u0621",
|
||||
"LabelAirDate": "\u062a\u0648\u0627\u0631\u064a\u062e \u0627\u0644\u0628\u062b:",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"News": "News",
|
||||
"Programs": "Programs",
|
||||
"LabelPrevious": "\u041f\u0430\u043f\u044f\u0440\u044d\u0434\u043d\u044f\u0435",
|
||||
"LabelFinish": "\u0413\u0430\u0442\u043e\u0432\u0430",
|
||||
"LabelNext": "\u041d\u0430\u0441\u0442\u0443\u043f\u043d\u0430\u0435",
|
||||
@ -532,7 +534,7 @@
|
||||
"ButtonShutdown": "Shutdown",
|
||||
"ButtonUpdateNow": "Update Now",
|
||||
"TabHosting": "Hosting",
|
||||
"PleaseUpdateManually": "Please shutdown the server and update manually.",
|
||||
"PleaseUpdateManually": "Please shutdown Emby Server and install the latest version.",
|
||||
"NewServerVersionAvailable": "A new version of Emby Server is available!",
|
||||
"ServerUpToDate": "Emby Server is up to date",
|
||||
"LabelComponentsUpdated": "The following components have been installed or updated:",
|
||||
@ -940,7 +942,6 @@
|
||||
"LabelAlbumArtists": "Album artists:",
|
||||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
"LabelReleaseDate": "Release date:",
|
||||
"LabelEndDate": "End date:",
|
||||
"LabelAirDate": "Air days:",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"News": "News",
|
||||
"Programs": "Programs",
|
||||
"LabelPrevious": "\u041f\u0440\u0435\u0434\u0438\u0448\u0435\u043d",
|
||||
"LabelFinish": "\u041a\u0440\u0430\u0439",
|
||||
"LabelNext": "\u0421\u043b\u0435\u0434\u0432\u0430\u0449",
|
||||
@ -940,7 +942,6 @@
|
||||
"LabelAlbumArtists": "Album artists:",
|
||||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
"LabelReleaseDate": "Release date:",
|
||||
"LabelEndDate": "End date:",
|
||||
"LabelAirDate": "Air days:",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"News": "News",
|
||||
"Programs": "Programs",
|
||||
"LabelPrevious": "Anterior",
|
||||
"LabelFinish": "Finalitzar",
|
||||
"LabelNext": "Seg\u00fcent",
|
||||
@ -940,7 +942,6 @@
|
||||
"LabelAlbumArtists": "Album artists:",
|
||||
"LabelAlbum": "\u00c0lbum:",
|
||||
"LabelCommunityRating": "Valoraci\u00f3 de la comunitat:",
|
||||
"LabelAwardSummary": "Resum de premis:",
|
||||
"LabelReleaseDate": "Data de publicaci\u00f3:",
|
||||
"LabelEndDate": "End date:",
|
||||
"LabelAirDate": "Air days:",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"News": "News",
|
||||
"Programs": "Programs",
|
||||
"LabelPrevious": "P\u0159edchoz\u00ed",
|
||||
"LabelFinish": "Dokon\u010dit",
|
||||
"LabelNext": "Dal\u0161\u00ed",
|
||||
@ -940,7 +942,6 @@
|
||||
"LabelAlbumArtists": "Alba \u00fam\u011blce:",
|
||||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Hodnocen\u00ed komunity:",
|
||||
"LabelAwardSummary": "P\u0159ehled ocen\u011bn\u00ed:",
|
||||
"LabelReleaseDate": "Datum vyd\u00e1n\u00ed:",
|
||||
"LabelEndDate": "Datum ukon\u010den\u00ed:",
|
||||
"LabelAirDate": "Dny vys\u00edl\u00e1n\u00ed",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"News": "News",
|
||||
"Programs": "Programs",
|
||||
"LabelPrevious": "Forrige",
|
||||
"LabelFinish": "Afslut",
|
||||
"LabelNext": "N\u00e6ste",
|
||||
@ -940,7 +942,6 @@
|
||||
"LabelAlbumArtists": "Albumartister:",
|
||||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "F\u00e6llesskabsvurdering:",
|
||||
"LabelAwardSummary": "Resum\u00e9 af priser:",
|
||||
"LabelReleaseDate": "Udgivelsesdato:",
|
||||
"LabelEndDate": "Slutdato:",
|
||||
"LabelAirDate": "Sendedage:",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"News": "News",
|
||||
"Programs": "Programs",
|
||||
"LabelPrevious": "Previous",
|
||||
"LabelFinish": "Finish",
|
||||
"LabelNext": "Next",
|
||||
@ -532,7 +534,7 @@
|
||||
"ButtonShutdown": "Shutdown",
|
||||
"ButtonUpdateNow": "Update Now",
|
||||
"TabHosting": "Hosting",
|
||||
"PleaseUpdateManually": "Please shutdown the server and update manually.",
|
||||
"PleaseUpdateManually": "Please shutdown Emby Server and install the latest version.",
|
||||
"NewServerVersionAvailable": "A new version of Emby Server is available!",
|
||||
"ServerUpToDate": "Emby Server is up to date",
|
||||
"LabelComponentsUpdated": "The following components have been installed or updated:",
|
||||
@ -940,7 +942,6 @@
|
||||
"LabelAlbumArtists": "Album artists:",
|
||||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
"LabelReleaseDate": "Release date:",
|
||||
"LabelEndDate": "End date:",
|
||||
"LabelAirDate": "Air days:",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"News": "News",
|
||||
"Programs": "Programs",
|
||||
"LabelPrevious": "Vorheriges",
|
||||
"LabelFinish": "Fertig",
|
||||
"LabelNext": "N\u00e4chstes",
|
||||
@ -96,7 +98,7 @@
|
||||
"DeviceAccessHelp": "Dies wird nur auf Ger\u00e4te angewandt die eindeutig identifiziert werden k\u00f6nnen und verhindert nicht den Web-Zugriff. Gefilterter Zugriff auf Ger\u00e4te verhindert die Nutzung neuer Ger\u00e4te solange, bis der Zugriff f\u00fcr diese freigegeben wird.",
|
||||
"LabelDisplayMissingEpisodesWithinSeasons": "Zeige fehlende Episoden innerhalb von Staffeln",
|
||||
"LabelDisplayMissingEpisodesWithinSeasonsHelp": "Dies sollte f\u00fcr Serien in der Bibliothek in den Emby Einstellungen aktiviert sein.",
|
||||
"LabelUnairedMissingEpisodesWithinSeasons": "Zeige noch nicht ausgestahlte Episoden innerhalb von Staffeln",
|
||||
"LabelUnairedMissingEpisodesWithinSeasons": "Zeige noch nicht ausgestrahlte Episoden innerhalb von Staffeln",
|
||||
"ImportMissingEpisodesHelp": "Wenn aktiviert, werden Informationen \u00fcber fehlende Episoden in Deine Emby Datenbank importiert und innerhalb von Staffeln angezeigt. Dies kann zu deutlich l\u00e4ngeren Bibliothek Scans f\u00fchren.",
|
||||
"MessageEnablingOptionLongerScans": "Die Aktivierung dieser Option kann erheblich l\u00e4ngere Bibliotheks-Scans verursachen.",
|
||||
"HeaderVideoPlaybackSettings": "Videowiedergabe Einstellungen",
|
||||
@ -940,7 +942,6 @@
|
||||
"LabelAlbumArtists": "Alben Interpreten:",
|
||||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community Bewertung:",
|
||||
"LabelAwardSummary": "Auszeichnungen:",
|
||||
"LabelReleaseDate": "Ver\u00f6ffentlichungsdatum:",
|
||||
"LabelEndDate": "Endzeit:",
|
||||
"LabelAirDate": "Ausstrahlungstage:",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"News": "News",
|
||||
"Programs": "Programs",
|
||||
"LabelPrevious": "\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf\u03c2",
|
||||
"LabelFinish": "\u03a4\u03ad\u03bb\u03bf\u03c2",
|
||||
"LabelNext": "\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf",
|
||||
@ -532,7 +534,7 @@
|
||||
"ButtonShutdown": "Shutdown",
|
||||
"ButtonUpdateNow": "Update Now",
|
||||
"TabHosting": "Hosting",
|
||||
"PleaseUpdateManually": "Please shutdown the server and update manually.",
|
||||
"PleaseUpdateManually": "Please shutdown Emby Server and install the latest version.",
|
||||
"NewServerVersionAvailable": "A new version of Emby Server is available!",
|
||||
"ServerUpToDate": "Emby Server is up to date",
|
||||
"LabelComponentsUpdated": "The following components have been installed or updated:",
|
||||
@ -940,7 +942,6 @@
|
||||
"LabelAlbumArtists": "Album artists:",
|
||||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
"LabelReleaseDate": "Release date:",
|
||||
"LabelEndDate": "End date:",
|
||||
"LabelAirDate": "Air days:",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"News": "News",
|
||||
"Programs": "Programs",
|
||||
"LabelPrevious": "Previous",
|
||||
"LabelFinish": "Finish",
|
||||
"LabelNext": "Next",
|
||||
@ -532,7 +534,7 @@
|
||||
"ButtonShutdown": "Shutdown",
|
||||
"ButtonUpdateNow": "Update Now",
|
||||
"TabHosting": "Hosting",
|
||||
"PleaseUpdateManually": "Please shutdown the server and update manually.",
|
||||
"PleaseUpdateManually": "Please shutdown Emby Server and install the latest version.",
|
||||
"NewServerVersionAvailable": "A new version of Emby Server is available!",
|
||||
"ServerUpToDate": "Emby Server is up to date",
|
||||
"LabelComponentsUpdated": "The following components have been installed or updated:",
|
||||
@ -940,7 +942,6 @@
|
||||
"LabelAlbumArtists": "Album artists:",
|
||||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
"LabelReleaseDate": "Release date:",
|
||||
"LabelEndDate": "End date:",
|
||||
"LabelAirDate": "Air days:",
|
||||
@ -1094,7 +1095,7 @@
|
||||
"OptionAllowContentDownloading": "Allow media downloading",
|
||||
"NameSeasonUnknown": "Season Unknown",
|
||||
"NameSeasonNumber": "Series {0}",
|
||||
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)",
|
||||
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and full stops (.)",
|
||||
"TabJobs": "Jobs",
|
||||
"TabSyncJobs": "Sync Jobs",
|
||||
"HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled",
|
||||
|
@ -1978,5 +1978,7 @@
|
||||
"HeaderOnNow": "On Now",
|
||||
"Downloading": "Downloading",
|
||||
"LabelCertificatePassword": "Certificate password:",
|
||||
"LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here."
|
||||
"LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.",
|
||||
"Programs": "Programs",
|
||||
"News": "News"
|
||||
}
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"News": "News",
|
||||
"Programs": "Programs",
|
||||
"LabelPrevious": "Previous",
|
||||
"LabelFinish": "Finish",
|
||||
"LabelNext": "Next",
|
||||
@ -532,7 +534,7 @@
|
||||
"ButtonShutdown": "Shutdown",
|
||||
"ButtonUpdateNow": "Update Now",
|
||||
"TabHosting": "Hosting",
|
||||
"PleaseUpdateManually": "Please shutdown the server and update manually.",
|
||||
"PleaseUpdateManually": "Please shutdown Emby Server and install the latest version.",
|
||||
"NewServerVersionAvailable": "A new version of Emby Server is available!",
|
||||
"ServerUpToDate": "Emby Server is up to date",
|
||||
"LabelComponentsUpdated": "The following components have been installed or updated:",
|
||||
@ -940,7 +942,6 @@
|
||||
"LabelAlbumArtists": "Album artists:",
|
||||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
"LabelReleaseDate": "Release date:",
|
||||
"LabelEndDate": "End date:",
|
||||
"LabelAirDate": "Air days:",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"News": "News",
|
||||
"Programs": "Programs",
|
||||
"LabelPrevious": "Anterior",
|
||||
"LabelFinish": "Terminar",
|
||||
"LabelNext": "Siguiente",
|
||||
@ -532,7 +534,7 @@
|
||||
"ButtonShutdown": "Shutdown",
|
||||
"ButtonUpdateNow": "Update Now",
|
||||
"TabHosting": "Hosting",
|
||||
"PleaseUpdateManually": "Please shutdown the server and update manually.",
|
||||
"PleaseUpdateManually": "Please shutdown Emby Server and install the latest version.",
|
||||
"NewServerVersionAvailable": "A new version of Emby Server is available!",
|
||||
"ServerUpToDate": "Emby Server is up to date",
|
||||
"LabelComponentsUpdated": "The following components have been installed or updated:",
|
||||
@ -940,7 +942,6 @@
|
||||
"LabelAlbumArtists": "Album artists:",
|
||||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
"LabelReleaseDate": "Release date:",
|
||||
"LabelEndDate": "End date:",
|
||||
"LabelAirDate": "Air days:",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"News": "News",
|
||||
"Programs": "Programs",
|
||||
"LabelPrevious": "Anterior",
|
||||
"LabelFinish": "Terminar",
|
||||
"LabelNext": "Siguiente",
|
||||
@ -940,7 +942,6 @@
|
||||
"LabelAlbumArtists": "Artistas del \u00e1lbum:",
|
||||
"LabelAlbum": "\u00c1lbum",
|
||||
"LabelCommunityRating": "Calificaci\u00f3n de la comunidad:",
|
||||
"LabelAwardSummary": "Res\u00famen de premios:",
|
||||
"LabelReleaseDate": "Fecha de estreno:",
|
||||
"LabelEndDate": "Fecha de Fin:",
|
||||
"LabelAirDate": "D\u00edas al aire:",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"News": "News",
|
||||
"Programs": "Programs",
|
||||
"LabelPrevious": "Anterior",
|
||||
"LabelFinish": "Terminar",
|
||||
"LabelNext": "Siguiente",
|
||||
@ -940,7 +942,6 @@
|
||||
"LabelAlbumArtists": "Artistas de los \u00e1lbumes",
|
||||
"LabelAlbum": "\u00c1lbum",
|
||||
"LabelCommunityRating": "Puntuaci\u00f3n de la comunidad",
|
||||
"LabelAwardSummary": "Resumen de premios:",
|
||||
"LabelReleaseDate": "Fecha de lanzamiento:",
|
||||
"LabelEndDate": "Fecha de fin:",
|
||||
"LabelAirDate": "D\u00edas de emisi\u00f3n:",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"News": "News",
|
||||
"Programs": "Programs",
|
||||
"LabelPrevious": "\u0642\u0628\u0644\u06cc",
|
||||
"LabelFinish": "\u067e\u0627\u06cc\u0627\u0646",
|
||||
"LabelNext": "\u0628\u0639\u062f\u06cc",
|
||||
@ -532,7 +534,7 @@
|
||||
"ButtonShutdown": "Shutdown",
|
||||
"ButtonUpdateNow": "Update Now",
|
||||
"TabHosting": "Hosting",
|
||||
"PleaseUpdateManually": "Please shutdown the server and update manually.",
|
||||
"PleaseUpdateManually": "Please shutdown Emby Server and install the latest version.",
|
||||
"NewServerVersionAvailable": "A new version of Emby Server is available!",
|
||||
"ServerUpToDate": "Emby Server is up to date",
|
||||
"LabelComponentsUpdated": "The following components have been installed or updated:",
|
||||
@ -940,7 +942,6 @@
|
||||
"LabelAlbumArtists": "Album artists:",
|
||||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
"LabelReleaseDate": "Release date:",
|
||||
"LabelEndDate": "End date:",
|
||||
"LabelAirDate": "Air days:",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"News": "News",
|
||||
"Programs": "Programs",
|
||||
"LabelPrevious": "Edellinen",
|
||||
"LabelFinish": "Valmis",
|
||||
"LabelNext": "Seuraava",
|
||||
@ -532,7 +534,7 @@
|
||||
"ButtonShutdown": "Shutdown",
|
||||
"ButtonUpdateNow": "Update Now",
|
||||
"TabHosting": "Hosting",
|
||||
"PleaseUpdateManually": "Please shutdown the server and update manually.",
|
||||
"PleaseUpdateManually": "Please shutdown Emby Server and install the latest version.",
|
||||
"NewServerVersionAvailable": "A new version of Emby Server is available!",
|
||||
"ServerUpToDate": "Emby Server is up to date",
|
||||
"LabelComponentsUpdated": "The following components have been installed or updated:",
|
||||
@ -940,7 +942,6 @@
|
||||
"LabelAlbumArtists": "Album artists:",
|
||||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
"LabelReleaseDate": "Release date:",
|
||||
"LabelEndDate": "End date:",
|
||||
"LabelAirDate": "Air days:",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"News": "News",
|
||||
"Programs": "Programs",
|
||||
"LabelPrevious": "Pr\u00e9c\u00e9dent",
|
||||
"LabelFinish": "Terminer",
|
||||
"LabelNext": "Suivant",
|
||||
@ -532,7 +534,7 @@
|
||||
"ButtonShutdown": "Shutdown",
|
||||
"ButtonUpdateNow": "Update Now",
|
||||
"TabHosting": "Hosting",
|
||||
"PleaseUpdateManually": "Please shutdown the server and update manually.",
|
||||
"PleaseUpdateManually": "Please shutdown Emby Server and install the latest version.",
|
||||
"NewServerVersionAvailable": "A new version of Emby Server is available!",
|
||||
"ServerUpToDate": "Emby Server is up to date",
|
||||
"LabelComponentsUpdated": "The following components have been installed or updated:",
|
||||
@ -940,7 +942,6 @@
|
||||
"LabelAlbumArtists": "Album artists:",
|
||||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
"LabelReleaseDate": "Release date:",
|
||||
"LabelEndDate": "End date:",
|
||||
"LabelAirDate": "Air days:",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"News": "News",
|
||||
"Programs": "Programs",
|
||||
"LabelPrevious": "Pr\u00e9c\u00e9dent",
|
||||
"LabelFinish": "Terminer",
|
||||
"LabelNext": "Suivant",
|
||||
@ -940,7 +942,6 @@
|
||||
"LabelAlbumArtists": "Album artists:",
|
||||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
"LabelReleaseDate": "Release date:",
|
||||
"LabelEndDate": "End date:",
|
||||
"LabelAirDate": "Air days:",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"News": "News",
|
||||
"Programs": "Programs",
|
||||
"LabelPrevious": "Pr\u00e9c\u00e9dent",
|
||||
"LabelFinish": "Terminer",
|
||||
"LabelNext": "Suivant",
|
||||
@ -940,7 +942,6 @@
|
||||
"LabelAlbumArtists": "Artistes de l'album :",
|
||||
"LabelAlbum": "Album :",
|
||||
"LabelCommunityRating": "Note de la communaut\u00e9\u00a0:",
|
||||
"LabelAwardSummary": "R\u00e9compenses\u00a0:",
|
||||
"LabelReleaseDate": "Date de sortie\u00a0:",
|
||||
"LabelEndDate": "Date de fin\u00a0:",
|
||||
"LabelAirDate": "Jours de diffusion\u00a0:",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"News": "News",
|
||||
"Programs": "Programs",
|
||||
"LabelPrevious": "Vorher",
|
||||
"LabelFinish": "Beende",
|
||||
"LabelNext": "N\u00f6chst",
|
||||
@ -532,7 +534,7 @@
|
||||
"ButtonShutdown": "Shutdown",
|
||||
"ButtonUpdateNow": "Update Now",
|
||||
"TabHosting": "Hosting",
|
||||
"PleaseUpdateManually": "Please shutdown the server and update manually.",
|
||||
"PleaseUpdateManually": "Please shutdown Emby Server and install the latest version.",
|
||||
"NewServerVersionAvailable": "A new version of Emby Server is available!",
|
||||
"ServerUpToDate": "Emby Server is up to date",
|
||||
"LabelComponentsUpdated": "The following components have been installed or updated:",
|
||||
@ -940,7 +942,6 @@
|
||||
"LabelAlbumArtists": "Album artists:",
|
||||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
"LabelReleaseDate": "Release date:",
|
||||
"LabelEndDate": "End date:",
|
||||
"LabelAirDate": "Air days:",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"News": "News",
|
||||
"Programs": "Programs",
|
||||
"LabelPrevious": "\u05d4\u05e7\u05d5\u05d3\u05dd",
|
||||
"LabelFinish": "\u05e1\u05d9\u05d9\u05dd",
|
||||
"LabelNext": "\u05d4\u05d1\u05d0",
|
||||
@ -940,7 +942,6 @@
|
||||
"LabelAlbumArtists": "Album artists:",
|
||||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
"LabelReleaseDate": "Release date:",
|
||||
"LabelEndDate": "End date:",
|
||||
"LabelAirDate": "Air days:",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"News": "News",
|
||||
"Programs": "Programs",
|
||||
"LabelPrevious": "Prethodni",
|
||||
"LabelFinish": "Kraj",
|
||||
"LabelNext": "Sljede\u0107i",
|
||||
@ -940,7 +942,6 @@
|
||||
"LabelAlbumArtists": "Izvo\u0111a\u010di albuma:",
|
||||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Ocjene zajednice",
|
||||
"LabelAwardSummary": "Sa\u017eetak nagrada:",
|
||||
"LabelReleaseDate": "Datum izdavanja:",
|
||||
"LabelEndDate": "Datum zavr\u0161etka:",
|
||||
"LabelAirDate": "Dani emitiranja:",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"News": "News",
|
||||
"Programs": "Programs",
|
||||
"LabelPrevious": "El\u0151z\u0151",
|
||||
"LabelFinish": "Befejez",
|
||||
"LabelNext": "K\u00f6vetkez\u0151",
|
||||
@ -532,7 +534,7 @@
|
||||
"ButtonShutdown": "Le\u00e1ll\u00edt\u00e1s",
|
||||
"ButtonUpdateNow": "Friss\u00edtsd most",
|
||||
"TabHosting": "Hosting",
|
||||
"PleaseUpdateManually": "Please shutdown the server and update manually.",
|
||||
"PleaseUpdateManually": "Please shutdown Emby Server and install the latest version.",
|
||||
"NewServerVersionAvailable": "El\u00e9rhet\u0151 az Emby Szerver \u00fajabb verzi\u00f3ja!",
|
||||
"ServerUpToDate": "Emby szerver naprak\u00e9sz",
|
||||
"LabelComponentsUpdated": "A k\u00f6vetkez\u0151 komponensek telep\u00edtve, vagy friss\u00edtve lettek.",
|
||||
@ -940,7 +942,6 @@
|
||||
"LabelAlbumArtists": "Album artists:",
|
||||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "K\u00f6z\u00f6ss\u00e9gi \u00e9rt\u00e9kel\u00e9s:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
"LabelReleaseDate": "Megjelen\u00e9s d\u00e1tuma:",
|
||||
"LabelEndDate": "End date:",
|
||||
"LabelAirDate": "Air days:",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"News": "News",
|
||||
"Programs": "Programs",
|
||||
"LabelPrevious": "Sebelumnya",
|
||||
"LabelFinish": "Selesai",
|
||||
"LabelNext": "Berikutnya",
|
||||
@ -532,7 +534,7 @@
|
||||
"ButtonShutdown": "Shutdown",
|
||||
"ButtonUpdateNow": "Update Now",
|
||||
"TabHosting": "Hosting",
|
||||
"PleaseUpdateManually": "Please shutdown the server and update manually.",
|
||||
"PleaseUpdateManually": "Please shutdown Emby Server and install the latest version.",
|
||||
"NewServerVersionAvailable": "A new version of Emby Server is available!",
|
||||
"ServerUpToDate": "Emby Server is up to date",
|
||||
"LabelComponentsUpdated": "The following components have been installed or updated:",
|
||||
@ -940,7 +942,6 @@
|
||||
"LabelAlbumArtists": "Album artists:",
|
||||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
"LabelReleaseDate": "Release date:",
|
||||
"LabelEndDate": "End date:",
|
||||
"LabelAirDate": "Air days:",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"News": "News",
|
||||
"Programs": "Programs",
|
||||
"LabelPrevious": "Precedente",
|
||||
"LabelFinish": "Finito",
|
||||
"LabelNext": "Prossimo",
|
||||
@ -532,7 +534,7 @@
|
||||
"ButtonShutdown": "Arresta Server",
|
||||
"ButtonUpdateNow": "Aggiorna Adesso",
|
||||
"TabHosting": "Hosting",
|
||||
"PleaseUpdateManually": "Per favore Arresta il server ed aggiorna manualmente",
|
||||
"PleaseUpdateManually": "Per favore Arresta il server ed installa l'ultima versione.",
|
||||
"NewServerVersionAvailable": "E' disponibile una nuova versione del Server Emby!",
|
||||
"ServerUpToDate": "Il Server Emby \u00e8 aggiornato",
|
||||
"LabelComponentsUpdated": "I seguenti componenti sono stati installati o aggiornati:",
|
||||
@ -550,7 +552,7 @@
|
||||
"LabelEmailAddress": "Indirizzo email",
|
||||
"LabelSupporterEmailAddress": "La mail che \u00e8 stata utilizzata per acquistare la chiave",
|
||||
"ButtonRetrieveKey": "Recupera chiave",
|
||||
"LabelSupporterKey": "Chiave Emby Premiere (incollala dallla e-mail)",
|
||||
"LabelSupporterKey": "Chiave Emby Premiere (incollala dalla e-mail)",
|
||||
"LabelSupporterKeyHelp": "Inserisci la tua chiave Emby Premiere per iniziare a godere subito di tutti i privilegi aggiuntivi che la community ha sviluppato per Emby.",
|
||||
"MessageInvalidKey": "La chiave Emby Premiere \u00e8 mancante o non valida.",
|
||||
"ErrorMessageInvalidKey": "Per far si che qualunque contenuto premium venga registrato, devi avere anche una sottoscrizione Emby Premiere attiva.",
|
||||
@ -940,7 +942,6 @@
|
||||
"LabelAlbumArtists": "Artisti:",
|
||||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Voto Comunit\u00e0:",
|
||||
"LabelAwardSummary": "Sintesi Premio:",
|
||||
"LabelReleaseDate": "Data di rilascio:",
|
||||
"LabelEndDate": "Fine data:",
|
||||
"LabelAirDate": "In onda da (gg):",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"News": "News",
|
||||
"Programs": "Programs",
|
||||
"LabelPrevious": "\u0410\u043b\u0434\u044b\u04a3\u0493\u044b",
|
||||
"LabelFinish": "\u0410\u044f\u049b\u0442\u0430\u0443",
|
||||
"LabelNext": "\u041a\u0435\u043b\u0435\u0441\u0456",
|
||||
@ -532,7 +534,7 @@
|
||||
"ButtonShutdown": "\u0416\u04b1\u043c\u044b\u0441\u0442\u044b \u0430\u044f\u049b\u0442\u0430\u0443",
|
||||
"ButtonUpdateNow": "\u049a\u0430\u0437\u0456\u0440 \u0436\u0430\u04a3\u0430\u0440\u0442\u0443",
|
||||
"TabHosting": "\u041e\u0440\u043d\u0430\u043b\u0430\u0441\u0443",
|
||||
"PleaseUpdateManually": "\u0421\u0435\u0440\u0432\u0435\u0440 \u0436\u04b1\u043c\u044b\u0441\u044b\u043d \u0430\u044f\u049b\u0442\u0430\u04a3\u044b\u0437 \u0434\u0430 \u049b\u043e\u043b\u043c\u0435\u043d \u0436\u0430\u04a3\u0430\u0440\u0442\u044b\u04a3\u044b\u0437.",
|
||||
"PleaseUpdateManually": "Emby Server \u0436\u04b1\u043c\u044b\u0441\u044b\u043d \u0430\u044f\u049b\u0442\u0430\u04a3\u044b\u0437 \u0434\u0430 \u0441\u043e\u04a3\u0493\u044b \u043d\u0443\u0441\u049b\u0430\u0441\u044b\u043d \u043e\u0440\u043d\u0430\u0442\u044b\u04a3\u044b\u0437.",
|
||||
"NewServerVersionAvailable": "\u0416\u0430\u04a3\u0430 Emby Server \u043d\u04b1\u0441\u049b\u0430\u0441\u044b \u049b\u043e\u043b\u0436\u0435\u0442\u0456\u043c\u0434\u0456!",
|
||||
"ServerUpToDate": "Emby Server \u04af\u0448\u0456\u043d \u0435\u04a3 \u043a\u0435\u0439\u043d\u0433\u0456 \u0436\u0430\u04a3\u0430\u0440\u0442\u0443\u043b\u0430\u0440 \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0493\u0430\u043d",
|
||||
"LabelComponentsUpdated": "\u041a\u0435\u043b\u0435\u0441\u0456 \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u0442\u0430\u0440 \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0434\u044b \u043d\u0435 \u0436\u0430\u04a3\u0430\u0440\u0442\u044b\u043b\u0434\u044b:",
|
||||
@ -940,7 +942,6 @@
|
||||
"LabelAlbumArtists": "\u0410\u043b\u044c\u0431\u043e\u043c \u043e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440\u044b:",
|
||||
"LabelAlbum": "\u0410\u043b\u044c\u0431\u043e\u043c:",
|
||||
"LabelCommunityRating": "\u049a\u0430\u0443\u044b\u043c \u0431\u0430\u0493\u0430\u043b\u0430\u0443\u044b:",
|
||||
"LabelAwardSummary": "\u041c\u0430\u0440\u0430\u043f\u0430\u0442 \u0430\u049b\u043f\u0430\u0440\u044b:",
|
||||
"LabelReleaseDate": "\u0428\u044b\u0493\u0430\u0440\u0443 \u043a\u04af\u043d\u0456:",
|
||||
"LabelEndDate": "\u0410\u044f\u049b\u0442\u0430\u043b\u0443 \u043a\u04af\u043d\u0456:",
|
||||
"LabelAirDate": "\u042d\u0444\u0438\u0440 \u043a\u04af\u043d\u0434\u0435\u0440\u0456:",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"News": "News",
|
||||
"Programs": "Programs",
|
||||
"LabelPrevious": "\uc774\uc804",
|
||||
"LabelFinish": "\ub05d\ub0b4\uae30",
|
||||
"LabelNext": "\ub2e4\uc74c",
|
||||
@ -24,7 +26,7 @@
|
||||
"LabelAddConnectSupporterHelp": "\ubaa9\ub85d\uc5d0 \uc5c6\ub294 \uc0ac\uc6a9\uc790\ub97c \ucd94\uac00\ud558\ub824\uba74 \uc0ac\uc6a9\uc790 \ud504\ub85c\ud30c\uc77c \ud398\uc774\uc9c0\uc5d0\uc11c Emby Connect\uc5d0 \uba3c\uc800 \uc5f0\uacb0\ud558\uc5ec\uc57c \ud569\ub2c8\ub2e4.",
|
||||
"LabelPinCode": "PIN \ucf54\ub4dc:",
|
||||
"OptionHideWatchedContentFromLatestMedia": "\ucd5c\uadfc \ubbf8\ub514\uc5b4\uc5d0\uc11c \uc2dc\uccad\ud55c \ucf58\ud150\uce20 \uc228\uae40",
|
||||
"DeleteMedia": "Delete media",
|
||||
"DeleteMedia": "\ubbf8\ub514\uc5b4 \uc9c0\uc6b0\uae30",
|
||||
"HeaderSync": "\ub3d9\uae30\ud654",
|
||||
"HeaderUpcomingNews": "Upcoming News",
|
||||
"ButtonOk": "OK",
|
||||
@ -113,7 +115,7 @@
|
||||
"OptionOnlyForcedSubtitlesHelp": "forced\ub85c \ud45c\uc2dc\ub41c \uc790\ub9c9\ub9cc \ubd88\ub7ec \uc635\ub2c8\ub2e4.",
|
||||
"OptionAlwaysPlaySubtitlesHelp": "\uc624\ub514\uc624 \uc5b8\uc5b4\uc640 \uc0c1\uad00\uc5c6\uc774 \uc790\ub9c9 \ub9e4\uce6d \uc5b8\uc5b4 \uc124\uc815\uc744 \ubd88\ub7ec\uc635\ub2c8\ub2e4.",
|
||||
"OptionNoSubtitlesHelp": "\uae30\ubcf8\uc801\uc73c\ub85c \uc790\ub9c9\uc744 \ubd88\ub7ec\uc624\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.",
|
||||
"TabProfiles": "Profiles",
|
||||
"TabProfiles": "\ud504\ub85c\ud544",
|
||||
"TabSecurity": "\ubcf4\uc548",
|
||||
"ButtonAddUser": "\uc0ac\uc6a9\uc790 \ucd94\uac00",
|
||||
"ButtonInviteUser": "\uc0ac\uc6a9\uc790 \ucd08\ub300",
|
||||
@ -132,19 +134,19 @@
|
||||
"ButtonUpload": "\uc5c5\ub85c\ub4dc",
|
||||
"HeaderUploadNewImage": "\uc0c8 \uc774\ubbf8\uc9c0 \uc5c5\ub85c\ub4dc",
|
||||
"ImageUploadAspectRatioHelp": "1:1 \ube44\uc728\uc744 \ucd94\ucc9c\ud569\ub2c8\ub2e4. JPG\/PNG\ub9cc \uc0ac\uc6a9.",
|
||||
"MessageNothingHere": "Nothing here.",
|
||||
"MessageNothingHere": "\uc544\ubb34\uac83\ub3c4 \uc5c6\uc2b5\ub2c8\ub2e4.",
|
||||
"MessagePleaseEnsureInternetMetadata": "\uc778\ud130\ub137 \uba54\ud0c0\ub370\uc774\ud130 \ub2e4\uc6b4\ub85c\ub4dc\uac00 \ucf1c\uc838 \uc788\ub294\uc9c0 \ud655\uc778\ud558\uc138\uc694.",
|
||||
"AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.",
|
||||
"AlreadyPaidHelp1": "\uc774\ubbf8 \uc61b \ubc84\uc804\uc758 \uc548\ub4dc\ub85c\uc774\ub4dc \ubbf8\ub514\uc5b4 \ube0c\ub77c\uc6b0\uc800\uc5d0 \uacb0\uc81c\ud558\uc168\ub2e4\uba74, \uc774 \uc571\uc744 \ud65c\uc131\ud654\ud558\uae30 \uc704\ud574 \ub610 \ub2e4\uc2dc \uacb0\uc81c\ud560 \ud544\uc694\uac00 \uc5c6\uc2b5\ub2c8\ub2e4. \ud655\uc778\uc744 \ud074\ub9ad\ud558\uc5ec \uc800\ud76c\uc5d0\uac8c {0}\ub85c \uc774\uba54\uc77c\uc744 \ubcf4\ub0b4\uc8fc\uc2dc\uba74, \ud65c\uc131\ud654\uac00 \ub418\ub3c4\ub85d \uc870\uce58\ud558\uaca0\uc2b5\ub2c8\ub2e4.",
|
||||
"AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.",
|
||||
"TabSuggestions": "\ucd94\ucc9c",
|
||||
"TabLatest": "\ucd5c\uadfc",
|
||||
"TabUpcoming": "Upcoming",
|
||||
"TabShows": "Shows",
|
||||
"TabShows": "\ubcf4\uc774\uae30",
|
||||
"TabEpisodes": "\uc5d0\ud53c\uc18c\ub4dc",
|
||||
"TabGenres": "\uc7a5\ub974",
|
||||
"TabNetworks": "\ub124\ud2b8\uc6cc\ud06c",
|
||||
"HeaderUsers": "\uc0ac\uc6a9\uc790",
|
||||
"HeaderFilters": "Filters",
|
||||
"HeaderFilters": "\ud544\ud130",
|
||||
"ButtonFilter": "\ud544\ud130",
|
||||
"OptionFavorite": "\uc990\uaca8\ucc3e\uae30",
|
||||
"OptionLikes": "\uc88b\uc544\ud568",
|
||||
@ -155,12 +157,12 @@
|
||||
"OptionWriters": "\uc791\uac00",
|
||||
"OptionProducers": "\ud504\ub85c\ub4c0\uc11c",
|
||||
"HeaderResume": "\uc774\uc5b4\uc11c \uc7ac\uc0dd",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderContinueWatching": "\uacc4\uc18d \uc2dc\uccad\ud558\uae30",
|
||||
"HeaderContinueListening": "\uacc4\uc18d \ub4e3\uae30",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"NoNextUpItemsMessage": "None found. Start watching your shows!",
|
||||
"HeaderLatestEpisodes": "Latest Episodes",
|
||||
"HeaderPersonTypes": "Person Types:",
|
||||
"HeaderLatestEpisodes": "\ucd5c\uadfc \uc5d0\ud53c\uc18c\ub4dc",
|
||||
"HeaderPersonTypes": "\uc778\ubb3c \uc720\ud615:",
|
||||
"TabSongs": "\ub178\ub798",
|
||||
"TabAlbums": "\uc568\ubc94",
|
||||
"TabArtists": "\uc544\ud2f0\uc2a4\ud2b8",
|
||||
@ -174,7 +176,7 @@
|
||||
"OptionRuntime": "\uc0c1\uc601 \uc2dc\uac04",
|
||||
"OptionReleaseDate": "\uac1c\ubd09\uc77c",
|
||||
"OptionPlayCount": "\uc7ac\uc0dd \ud69f\uc218",
|
||||
"OptionDatePlayed": "Date Played",
|
||||
"OptionDatePlayed": "\uc7ac\uc0dd\ub41c \ub0a0\uc9dc",
|
||||
"OptionDateAdded": "\ucd94\uac00\ud55c \ub0a0\uc9dc",
|
||||
"OptionAlbumArtist": "\uc568\ubc94 \uc544\ud2f0\uc2a4\ud2b8",
|
||||
"OptionArtist": "\uc544\ud2f0\uc2a4\ud2b8",
|
||||
@ -188,7 +190,7 @@
|
||||
"OptionPoster": "\ud3ec\uc2a4\ud130",
|
||||
"OptionPosterCard": "\ud3ec\uc2a4\ud130 \uce74\ub4dc",
|
||||
"OptionBackdrop": "\ubc30\uacbd",
|
||||
"OptionTimeline": "Timeline",
|
||||
"OptionTimeline": "\ud0c0\uc784\ub77c\uc778",
|
||||
"OptionThumb": "\uc378\ub124\uc77c",
|
||||
"OptionThumbCard": "\uc378\ub124\uc77c \uce74\ub4dc",
|
||||
"OptionBanner": "\ubc30\ub108",
|
||||
@ -222,7 +224,7 @@
|
||||
"LabelArtists": "\uc544\ud2f0\uc2a4\ud2b8:",
|
||||
"LabelArtistsHelp": "Separate multiple using ;",
|
||||
"HeaderLatestTrailers": "\ucd5c\uadfc \uc608\uace0\ud3b8",
|
||||
"OptionHasSpecialFeatures": "Special Features",
|
||||
"OptionHasSpecialFeatures": "\ud2b9\ubcc4\ud55c \uae30\ub2a5",
|
||||
"OptionImdbRating": "IMDb \ud3c9\uc810",
|
||||
"OptionParentalRating": "\ub4f1\uae09",
|
||||
"OptionPremiereDate": "Premiere Date",
|
||||
@ -231,13 +233,13 @@
|
||||
"OptionContinuing": "Continuing",
|
||||
"OptionEnded": "Ended",
|
||||
"HeaderAirDays": "\ubc29\uc1a1\uc77c",
|
||||
"OptionSundayShort": "Sun",
|
||||
"OptionMondayShort": "Mon",
|
||||
"OptionTuesdayShort": "Tue",
|
||||
"OptionWednesdayShort": "Wed",
|
||||
"OptionThursdayShort": "Thu",
|
||||
"OptionFridayShort": "Fri",
|
||||
"OptionSaturdayShort": "Sat",
|
||||
"OptionSundayShort": "\uc77c",
|
||||
"OptionMondayShort": "\uc6d4",
|
||||
"OptionTuesdayShort": "\ud654",
|
||||
"OptionWednesdayShort": "\uc218",
|
||||
"OptionThursdayShort": "\ubaa9",
|
||||
"OptionFridayShort": "\uae08",
|
||||
"OptionSaturdayShort": "\ud1a0",
|
||||
"OptionSunday": "\ub300\uae30",
|
||||
"OptionMonday": "\uc6d4\uc694\uc77c",
|
||||
"OptionTuesday": "\ud654\uc694\uc77c",
|
||||
@ -266,7 +268,7 @@
|
||||
"OptionHideUserFromLoginHelp": "\ube44\uacf5\uac1c \ub610\ub294 \uc228\uae40 \uad00\ub9ac\uc790 \uacc4\uc815\uc5d0 \uc720\uc6a9\ud569\ub2c8\ub2e4. \uc0ac\uc6a9\uc790\ub294 \uc218\ub3d9\uc73c\ub85c \uc0ac\uc6a9\uc790\uba85\uacfc \ube44\ubc00\ubc88\ud638\ub97c \uc785\ub825\ud558\uc5ec \ub85c\uadf8\uc778 \ud558\uc5ec\uc57c \ud569\ub2c8\ub2e4.",
|
||||
"OptionDisableUser": "\uc774 \uc0ac\uc6a9\uc790 \uc0ac\uc6a9 \uc548 \ud568",
|
||||
"OptionDisableUserHelp": "\uc11c\ubc84\uac00 \uc774 \uc0ac\uc6a9\uc790\uc758 \uc5f0\uacb0\uc744 \ud5c8\uc6a9\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. \ud604\uc7ac \uc5f0\uacb0\uc774 \uc608\uace0\uc5c6\uc774 \uc885\ub8cc\ub429\ub2c8\ub2e4.",
|
||||
"LabelName": "Name:",
|
||||
"LabelName": "\uc774\ub984:",
|
||||
"ButtonHelp": "\ub3c4\uc6c0\ub9d0",
|
||||
"OptionAllowUserToManageServer": "\uc774 \uc0ac\uc6a9\uc790\uc5d0\uac8c \uc774 \uc11c\ubc84\uc758 \uad00\ub9ac\ub97c \ud5c8\uc6a9\ud569\ub2c8\ub2e4",
|
||||
"HeaderFeatureAccess": "\uae30\ub2a5 \uc811\uadfc",
|
||||
@ -303,7 +305,7 @@
|
||||
"DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.",
|
||||
"LabelCachePathHelp": "\uc774\ubbf8\uc9c0\uc640 \uac19\uc740 \uc11c\ubc84 \uce90\uc2dc \ud30c\uc77c\uc744 \uc704\ud55c \uc0ac\uc6a9\uc790 \uc704\uce58\ub97c \uc9c0\uc815\ud569\ub2c8\ub2e4. \uc11c\ubc84 \uae30\ubcf8\uac12\uc744 \uc0ac\uc6a9\ud558\ub824\uba74 \ube44\uc6cc\ub461\ub2c8\ub2e4.",
|
||||
"LabelRecordingPath": "Default recording path:",
|
||||
"LabelMovieRecordingPath": "Movie recording path (optional):",
|
||||
"LabelMovieRecordingPath": "\uc601\ud654 \ub179\ud654 \uacbd\ub85c (\uc635\uc158):",
|
||||
"LabelSeriesRecordingPath": "Series recording path (optional):",
|
||||
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
|
||||
"LabelMetadataPath": "\uba54\ud0c0\ub370\uc774\ud130 \uacbd\ub85c:",
|
||||
@ -940,7 +942,6 @@
|
||||
"LabelAlbumArtists": "\uc568\ubc94 \uc544\ud2f0\uc2a4\ud2b8:",
|
||||
"LabelAlbum": "\uc568\ubc94",
|
||||
"LabelCommunityRating": "\ucee4\ubba4\ub2c8\ud2f0 \ud3c9\uc810:",
|
||||
"LabelAwardSummary": "\uc218\uc0c1 \uc694\uc57d:",
|
||||
"LabelReleaseDate": "\uac1c\ubd09\uc77c:",
|
||||
"LabelEndDate": "End date:",
|
||||
"LabelAirDate": "\ubc29\uc1a1\uc77c:",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"News": "News",
|
||||
"Programs": "Programs",
|
||||
"LabelPrevious": "Ankstesnis",
|
||||
"LabelFinish": "Baigti",
|
||||
"LabelNext": "Kitas",
|
||||
@ -532,7 +534,7 @@
|
||||
"ButtonShutdown": "Shutdown",
|
||||
"ButtonUpdateNow": "Update Now",
|
||||
"TabHosting": "Hosting",
|
||||
"PleaseUpdateManually": "Please shutdown the server and update manually.",
|
||||
"PleaseUpdateManually": "Please shutdown Emby Server and install the latest version.",
|
||||
"NewServerVersionAvailable": "A new version of Emby Server is available!",
|
||||
"ServerUpToDate": "Emby Server is up to date",
|
||||
"LabelComponentsUpdated": "The following components have been installed or updated:",
|
||||
@ -940,7 +942,6 @@
|
||||
"LabelAlbumArtists": "Album artists:",
|
||||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
"LabelReleaseDate": "Release date:",
|
||||
"LabelEndDate": "End date:",
|
||||
"LabelAirDate": "Air days:",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"News": "News",
|
||||
"Programs": "Programs",
|
||||
"LabelPrevious": "Sebelumnya",
|
||||
"LabelFinish": "Habis",
|
||||
"LabelNext": "Seterusnya",
|
||||
@ -532,7 +534,7 @@
|
||||
"ButtonShutdown": "Shutdown",
|
||||
"ButtonUpdateNow": "Update Now",
|
||||
"TabHosting": "Hosting",
|
||||
"PleaseUpdateManually": "Please shutdown the server and update manually.",
|
||||
"PleaseUpdateManually": "Please shutdown Emby Server and install the latest version.",
|
||||
"NewServerVersionAvailable": "A new version of Emby Server is available!",
|
||||
"ServerUpToDate": "Emby Server is up to date",
|
||||
"LabelComponentsUpdated": "The following components have been installed or updated:",
|
||||
@ -940,7 +942,6 @@
|
||||
"LabelAlbumArtists": "Album artists:",
|
||||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
"LabelReleaseDate": "Release date:",
|
||||
"LabelEndDate": "End date:",
|
||||
"LabelAirDate": "Air days:",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"News": "News",
|
||||
"Programs": "Programs",
|
||||
"LabelPrevious": "Forrige",
|
||||
"LabelFinish": "Ferdig",
|
||||
"LabelNext": "Neste",
|
||||
@ -940,7 +942,6 @@
|
||||
"LabelAlbumArtists": "Album artister:",
|
||||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Fellesskap anmeldelse:",
|
||||
"LabelAwardSummary": "Pris sammendrag:",
|
||||
"LabelReleaseDate": "Utgivelsesdato:",
|
||||
"LabelEndDate": "Slutt dato:",
|
||||
"LabelAirDate": "Sendings dager:",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"News": "News",
|
||||
"Programs": "Programs",
|
||||
"LabelPrevious": "Vorige",
|
||||
"LabelFinish": "Voltooien",
|
||||
"LabelNext": "Volgende",
|
||||
@ -940,7 +942,6 @@
|
||||
"LabelAlbumArtists": "Album artiesten:",
|
||||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Beoordeling gemeenschap:",
|
||||
"LabelAwardSummary": "Samenvatting prijzen:",
|
||||
"LabelReleaseDate": "Uitgave datum:",
|
||||
"LabelEndDate": "Eind datum|",
|
||||
"LabelAirDate": "Uitzend dagen:",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"News": "News",
|
||||
"Programs": "Programs",
|
||||
"LabelPrevious": "Wstecz",
|
||||
"LabelFinish": "Koniec",
|
||||
"LabelNext": "Dalej",
|
||||
@ -940,7 +942,6 @@
|
||||
"LabelAlbumArtists": "Wynonawcy albumu",
|
||||
"LabelAlbum": "Album",
|
||||
"LabelCommunityRating": "Ocena spo\u0142eczno\u015bci:",
|
||||
"LabelAwardSummary": "Zdobyte nagrody:",
|
||||
"LabelReleaseDate": "Data wydania:",
|
||||
"LabelEndDate": "Data zako\u0144czenia:",
|
||||
"LabelAirDate": "Dni wy\u015bwietlania:",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"News": "News",
|
||||
"Programs": "Programs",
|
||||
"LabelPrevious": "Anterior",
|
||||
"LabelFinish": "Finalizar",
|
||||
"LabelNext": "Pr\u00f3ximo",
|
||||
@ -940,7 +942,6 @@
|
||||
"LabelAlbumArtists": "Artistas do \u00c1lbum:",
|
||||
"LabelAlbum": "\u00c1lbum:",
|
||||
"LabelCommunityRating": "Avalia\u00e7\u00e3o da comunidade:",
|
||||
"LabelAwardSummary": "Resumo da premia\u00e7\u00e3o:",
|
||||
"LabelReleaseDate": "Data do lan\u00e7amento:",
|
||||
"LabelEndDate": "Data final:",
|
||||
"LabelAirDate": "Dias da exibi\u00e7\u00e3o:",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"News": "News",
|
||||
"Programs": "Programs",
|
||||
"LabelPrevious": "Anterior",
|
||||
"LabelFinish": "Terminar",
|
||||
"LabelNext": "Seguinte",
|
||||
@ -940,7 +942,6 @@
|
||||
"LabelAlbumArtists": "Artistas do \u00c1lbum:",
|
||||
"LabelAlbum": "\u00c1lbum:",
|
||||
"LabelCommunityRating": "Avalia\u00e7\u00e3o da comunidade:",
|
||||
"LabelAwardSummary": "Resumo da premia\u00e7\u00e3o:",
|
||||
"LabelReleaseDate": "Data do lan\u00e7amento:",
|
||||
"LabelEndDate": "Data final:",
|
||||
"LabelAirDate": "Dias da exibi\u00e7\u00e3o:",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"News": "News",
|
||||
"Programs": "Programs",
|
||||
"LabelPrevious": "Anteriorul",
|
||||
"LabelFinish": "Termina",
|
||||
"LabelNext": "Urmatorul",
|
||||
@ -532,7 +534,7 @@
|
||||
"ButtonShutdown": "Shutdown",
|
||||
"ButtonUpdateNow": "Update Now",
|
||||
"TabHosting": "Hosting",
|
||||
"PleaseUpdateManually": "Please shutdown the server and update manually.",
|
||||
"PleaseUpdateManually": "Please shutdown Emby Server and install the latest version.",
|
||||
"NewServerVersionAvailable": "A new version of Emby Server is available!",
|
||||
"ServerUpToDate": "Emby Server is up to date",
|
||||
"LabelComponentsUpdated": "The following components have been installed or updated:",
|
||||
@ -940,7 +942,6 @@
|
||||
"LabelAlbumArtists": "Album artists:",
|
||||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
"LabelReleaseDate": "Release date:",
|
||||
"LabelEndDate": "End date:",
|
||||
"LabelAirDate": "Air days:",
|
||||
|
@ -1,29 +1,31 @@
|
||||
{
|
||||
"News": "News",
|
||||
"Programs": "Programs",
|
||||
"LabelPrevious": "\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0435\u0435",
|
||||
"LabelFinish": "\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c",
|
||||
"LabelNext": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435",
|
||||
"LabelYoureDone": "\u0412\u044b \u0433\u043e\u0442\u043e\u0432\u044b!",
|
||||
"WelcomeToProject": "\u041d\u0430\u0447\u0430\u043b\u043e \u0440\u0430\u0431\u043e\u0442\u044b \u0432 Emby",
|
||||
"WelcomeToProject": "Emby \u043f\u0440\u0438\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u0432\u0430\u0441!",
|
||||
"ThisWizardWillGuideYou": "\u042d\u0442\u043e\u0442 \u043f\u043e\u043c\u043e\u0449\u043d\u0438\u043a \u043f\u0440\u043e\u0432\u0435\u0434\u0451\u0442 \u0432\u0430\u0441 \u0447\u0435\u0440\u0435\u0437 \u0432\u0441\u0435 \u0444\u0430\u0437\u044b \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438. \u0421\u043d\u0430\u0447\u0430\u043b\u0430 \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u043f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u0435\u043c\u044b\u0439 \u044f\u0437\u044b\u043a.",
|
||||
"TellUsAboutYourself": "\u0420\u0430\u0441\u0441\u043a\u0430\u0436\u0438\u0442\u0435 \u043e \u0441\u0435\u0431\u0435",
|
||||
"ButtonQuickStartGuide": "\u0420\u0443\u043a\u043e\u0432\u043e\u0434\u0441\u0442\u0432\u043e \u043f\u043e \u0437\u0430\u043f\u0443\u0441\u043a\u0443...",
|
||||
"LabelYourFirstName": "\u0412\u0430\u0448\u0435 \u0438\u043c\u044f:",
|
||||
"MoreUsersCanBeAddedLater": "\u041f\u043e\u0442\u043e\u043c \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0435\u0449\u0451 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u0432 \u00ab\u041f\u0430\u043d\u0435\u043b\u0438\u00bb.",
|
||||
"UserProfilesIntro": "\u0412 Emby \u043d\u0430\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u0443\u0435\u0442 \u0432\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u0430\u044f \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430 \u0434\u043b\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0445 \u043f\u0440\u043e\u0444\u0438\u043b\u0435\u0439, \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u044f \u043a\u0430\u0436\u0434\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u043e\u0431\u043b\u0430\u0434\u0430\u0442\u044c \u0441\u0432\u043e\u0438\u043c\u0438 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u043c\u0438 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0430\u043c\u0438 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f, \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435\u043c \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0438 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435\u043c \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f.",
|
||||
"WizardCompleted": "\u042d\u0442\u043e \u0432\u0441\u0451, \u0447\u0442\u043e \u043d\u0430\u043c \u043d\u0443\u0436\u043d\u043e \u0441\u0435\u0439\u0447\u0430\u0441. Emby \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442 \u0441\u043e\u0431\u0438\u0440\u0430\u0442\u044c \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e \u0432\u0430\u0448\u0435\u0439 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0435. \u041e\u0437\u043d\u0430\u043a\u043e\u043c\u044c\u0442\u0435\u0441\u044c \u043f\u043e\u043a\u0430 \u0441 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u043d\u0430\u0448\u0438\u043c\u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u043c\u0438, \u0430 \u0437\u0430\u0442\u0435\u043c \u043d\u0430\u0436\u043c\u0438\u0442\u0435 <b>\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c<\/b>, \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c <b>\u041f\u0430\u043d\u0435\u043b\u044c \u0441\u0435\u0440\u0432\u0435\u0440\u0430<\/b>.",
|
||||
"UserProfilesIntro": "\u0412 Emby \u0435\u0441\u0442\u044c \u0432\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u0430\u044f \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430 \u0434\u043b\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0445 \u043f\u0440\u043e\u0444\u0438\u043b\u0435\u0439, \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u044e\u0449\u0430\u044f \u043a\u0430\u0436\u0434\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u043e\u0431\u043b\u0430\u0434\u0430\u0442\u044c \u0441\u0432\u043e\u0438\u043c\u0438 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u043c\u0438 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0430\u043c\u0438 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f, \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435\u043c \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0439 \u0438 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435\u043c \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f.",
|
||||
"WizardCompleted": "\u042d\u0442\u043e \u0432\u0441\u0451, \u0447\u0442\u043e \u043d\u0430\u043c \u0431\u044b\u043b\u043e \u043d\u0443\u0436\u043d\u043e . Emby \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442 \u0441\u043e\u0431\u0438\u0440\u0430\u0442\u044c \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e \u0432\u0430\u0448\u0435\u0439 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0435. \u041e\u0437\u043d\u0430\u043a\u043e\u043c\u044c\u0442\u0435\u0441\u044c \u043f\u043e\u043a\u0430 \u0441 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u043d\u0430\u0448\u0438\u043c\u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u043c\u0438, \u0430 \u0437\u0430\u0442\u0435\u043c \u043d\u0430\u0436\u043c\u0438\u0442\u0435 <b>\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c<\/b>, \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c <b>\u041f\u0430\u043d\u0435\u043b\u044c \u0441\u0435\u0440\u0432\u0435\u0440\u0430<\/b>.",
|
||||
"LabelConfigureSettings": "\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b",
|
||||
"HeaderTermsOfService": "\u0423\u0441\u043b\u043e\u0432\u0438\u044f \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0443\u0441\u043b\u0443\u0433 Emby",
|
||||
"MessagePleaseAcceptTermsOfService": "\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0435 \u0441\u043e\u0433\u043b\u0430\u0441\u0438\u0435 \u0441 \u0423\u0441\u043b\u043e\u0432\u0438\u044f\u043c\u0438 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0443\u0441\u043b\u0443\u0433 \u0438 \u041f\u043e\u043b\u0438\u0442\u0438\u043a\u043e\u0439 \u043a\u043e\u043d\u0444\u0438\u0434\u0435\u043d\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0441\u0442\u0438, \u043f\u0440\u0435\u0436\u0434\u0435 \u0447\u0435\u043c \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c.",
|
||||
"OptionIAcceptTermsOfService": "\u042f \u0441\u043e\u0433\u043b\u0430\u0448\u0430\u044e\u0441\u044c \u0441 \u0423\u0441\u043b\u043e\u0432\u0438\u044f\u043c\u0438 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0443\u0441\u043b\u0443\u0433",
|
||||
"ButtonPrivacyPolicy": "\u041f\u043e\u043b\u0438\u0442\u0438\u043a\u0430 \u043a\u043e\u043d\u0444\u0438\u0434\u0435\u043d\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0441\u0442\u0438...",
|
||||
"ButtonTermsOfService": "\u0423\u0441\u043b\u043e\u0432\u0438\u044f \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0443\u0441\u043b\u0443\u0433...",
|
||||
"ButtonPrivacyPolicy": "\u041f\u043e\u043b\u0438\u0442\u0438\u043a\u0430 \u043a\u043e\u043d\u0444\u0438\u0434\u0435\u043d\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0441\u0442\u0438",
|
||||
"ButtonTermsOfService": "\u0423\u0441\u043b\u043e\u0432\u0438\u044f \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0443\u0441\u043b\u0443\u0433",
|
||||
"ButtonConvertMedia": "\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435",
|
||||
"ButtonOrganize": "\u0423\u043f\u043e\u0440\u044f\u0434\u043e\u0447\u0438\u0442\u044c",
|
||||
"HeaderSupporterBenefits": "\u041a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b Emby Premiere",
|
||||
"HeaderAddUser": "\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f",
|
||||
"LabelAddConnectSupporterHelp": "\u0427\u0442\u043e\u0431\u044b \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f, \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043d\u0435\u0442 \u0432 \u0441\u043f\u0438\u0441\u043a\u0435, \u0441\u043d\u0430\u0447\u0430\u043b\u0430 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u043f\u0440\u0438\u0432\u044f\u0437\u0430\u0442\u044c \u0435\u0433\u043e \u0443\u0447\u0451\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c \u043a Emby Connect \u0441 \u0435\u0433\u043e \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u043f\u0440\u043e\u0444\u0438\u043b\u044f.",
|
||||
"HeaderSupporterBenefits": "\u041f\u0440\u0435\u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0430 Emby Premiere",
|
||||
"HeaderAddUser": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f",
|
||||
"LabelAddConnectSupporterHelp": "\u0427\u0442\u043e\u0431\u044b \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f, \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043d\u0435\u0442 \u0432 \u0441\u043f\u0438\u0441\u043a\u0435, \u0441\u043d\u0430\u0447\u0430\u043b\u0430 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0441\u0432\u044f\u0437\u0430\u0442\u044c \u0435\u0433\u043e \u0443\u0447\u0451\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c \u0441 Emby Connect.",
|
||||
"LabelPinCode": "PIN-\u043a\u043e\u0434:",
|
||||
"OptionHideWatchedContentFromLatestMedia": "\u0421\u043a\u0440\u044b\u0442\u044c \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u0438\u0437 \u041d\u043e\u0432\u0435\u0439\u0448\u0438\u0445 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445",
|
||||
"OptionHideWatchedContentFromLatestMedia": "\u0421\u043a\u0440\u044b\u0442\u044c \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u043e\u0435 \u0438\u0437 \u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0445 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u043d\u044b\u0445",
|
||||
"DeleteMedia": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435",
|
||||
"HeaderSync": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f",
|
||||
"HeaderUpcomingNews": "\u041e\u0436\u0438\u0434\u0430\u0435\u043c\u044b\u0435 \u043d\u043e\u0432\u043e\u0441\u0442\u0438",
|
||||
@ -32,7 +34,7 @@
|
||||
"ButtonExit": "\u0412\u044b\u0439\u0442\u0438",
|
||||
"ButtonNew": "\u041d\u043e\u0432\u043e\u0435",
|
||||
"All": "\u0412\u0441\u0435",
|
||||
"OptionDev": "\u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043e\u0447\u043d\u0430\u044f",
|
||||
"OptionDev": "\u0414\u043b\u044f \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u043e\u0432",
|
||||
"OptionBeta": "\u0411\u0435\u0442\u0430",
|
||||
"HeaderTaskTriggers": "\u0422\u0440\u0438\u0433\u0433\u0435\u0440\u044b \u0437\u0430\u0434\u0430\u0447\u0438",
|
||||
"HeaderTV": "\u0422\u0412",
|
||||
@ -43,47 +45,47 @@
|
||||
"TabPlaylist": "\u041f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442",
|
||||
"HeaderInstantMix": "\u0410\u0432\u0442\u043e\u043c\u0438\u043a\u0441",
|
||||
"HeaderEasyPinCode": "\u041f\u0440\u043e\u0441\u0442\u043e\u0439 PIN-\u043a\u043e\u0434",
|
||||
"HeaderInstalledServices": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044b\u0435 \u0443\u0441\u043b\u0443\u0433\u0438",
|
||||
"HeaderAvailableServices": "\u0418\u043c\u0435\u044e\u0449\u0438\u0435\u0441\u044f \u0443\u0441\u043b\u0443\u0433\u0438",
|
||||
"MessageNoServicesInstalled": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u043d\u0435\u0442 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u043d\u044b\u0445 \u0443\u0441\u043b\u0443\u0433",
|
||||
"HeaderInstalledServices": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044b\u0435 \u0441\u043b\u0443\u0436\u0431\u044b",
|
||||
"HeaderAvailableServices": "\u0414\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435 \u0421\u043b\u0443\u0436\u0431\u044b",
|
||||
"MessageNoServicesInstalled": "\u0412 \u0442\u0435\u043a\u0443\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u0441\u043b\u0443\u0436\u0431 \u043d\u0435 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e.",
|
||||
"HeaderToAccessPleaseEnterEasyPinCode": "\u0414\u043b\u044f \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0441\u0432\u043e\u0439 \u043f\u0440\u043e\u0441\u0442\u043e\u0439 PIN-\u043a\u043e\u0434",
|
||||
"ButtonConfigurePinCode": "\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c PIN-\u043a\u043e\u0434",
|
||||
"RegisterWithPayPal": "\u0417\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0447\u0435\u0440\u0435\u0437 PayPal",
|
||||
"LabelSyncTempPath": "\u041f\u0443\u0442\u044c \u043a\u043e \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e\u043c\u0443 \u0444\u0430\u0439\u043b\u0443:",
|
||||
"LabelSyncTempPathHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u0443\u044e \u0440\u0430\u0431\u043e\u0447\u0443\u044e \u043f\u0430\u043f\u043a\u0443 \u0434\u043b\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438. \u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435, \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u0435\u043c\u044b\u0435 \u0432 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438, \u0431\u0443\u0434\u0443\u0442 \u0441\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c\u0441\u044f \u0437\u0434\u0435\u0441\u044c.",
|
||||
"LabelSyncTempPathHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u0440\u0430\u0431\u043e\u0447\u0443\u044e \u043f\u0430\u043f\u043a\u0443 \u0434\u043b\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438. \u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0444\u0430\u0439\u043b\u044b, \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u0435\u043c\u044b\u0435 \u0432 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438, \u0431\u0443\u0434\u0443\u0442 \u0445\u0440\u0430\u043d\u0438\u0442\u0441\u044f \u0442\u0430\u043c.",
|
||||
"LabelCustomCertificatePath": "\u041f\u0443\u0442\u044c \u043a \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u043e\u043c\u0443 \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u0443:",
|
||||
"LabelCustomCertificatePathHelp": "\u041f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u0441\u0432\u043e\u0439 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u0444\u0430\u0439\u043b .pfx SSL-\u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u0430. \u041f\u0440\u0438 \u0435\u0433\u043e \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u0438 \u0441\u0435\u0440\u0432\u0435\u0440 \u0441\u043e\u0437\u0434\u0430\u0441\u0442 \u0441\u0430\u043c\u043e\u043f\u043e\u0434\u043f\u0438\u0441\u0430\u043d\u043d\u044b\u0439 \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442.",
|
||||
"TitleNotifications": "\u0423\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f",
|
||||
"OptionDetectArchiveFilesAsMedia": "\u0424\u0430\u0439\u043b\u044b \u0430\u0440\u0445\u0438\u0432\u043e\u0432 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u044e\u0442\u0441\u044f \u043a\u0430\u043a \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435",
|
||||
"OptionDetectArchiveFilesAsMedia": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0442\u044c \u0430\u0440\u0445\u0438\u0432\u044b \u043a\u0430\u043a \u043c\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043b\u044b",
|
||||
"OptionDetectArchiveFilesAsMediaHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0444\u0430\u0439\u043b\u044b \u0441 \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u044f\u043c\u0438 .RAR \u0438 .ZIP \u0431\u0443\u0434\u0443\u0442 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u044b \u043a\u0430\u043a \u043c\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043b\u044b.",
|
||||
"LabelEnterConnectUserName": "\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0438\u043b\u0438 \u042d-\u043f\u043e\u0447\u0442\u0430:",
|
||||
"LabelEnterConnectUserNameHelp": "\u042d\u0442\u043e - \u0432\u0430\u0448\u0435 \u0438\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0432 \u0441\u0435\u0442\u0435\u0432\u043e\u0439 \u0443\u0447\u0451\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438 Emby \u0438\u043b\u0438 \u0430\u0434\u0440\u0435\u0441 \u042d-\u043f\u043e\u0447\u0442\u044b.",
|
||||
"LabelEnterConnectUserName": "\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0438\u043b\u0438 email:",
|
||||
"LabelEnterConnectUserNameHelp": "\u0417\u0434\u0435\u0441\u044c \u0443\u043a\u0430\u0437\u044b\u0432\u0430\u0435\u0442\u0441\u044f \u0438\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0438\u043b\u0438 email \u043e\u0442 Emby Online.",
|
||||
"HeaderSyncJobInfo": "\u0417\u0430\u0434\u0430\u043d\u0438\u0435 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438",
|
||||
"FolderTypeMixed": "\u0421\u043c\u0435\u0448\u0430\u043d\u043d\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435",
|
||||
"FolderTypeMovies": "\u041a\u0438\u043d\u043e",
|
||||
"FolderTypeMovies": "\u0424\u0438\u043b\u044c\u043c\u044b",
|
||||
"FolderTypeMusic": "\u041c\u0443\u0437\u044b\u043a\u0430",
|
||||
"FolderTypePhotos": "\u0424\u043e\u0442\u043e",
|
||||
"FolderTypePhotos": "\u0424\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438",
|
||||
"FolderTypeMusicVideos": "\u041c\u0443\u0437\u044b\u043a\u0430\u043b\u044c\u043d\u044b\u0435 \u0432\u0438\u0434\u0435\u043e",
|
||||
"FolderTypeGames": "\u0418\u0433\u0440\u044b",
|
||||
"FolderTypeBooks": "\u041b\u0438\u0442\u0435\u0440\u0430\u0442\u0443\u0440\u0430",
|
||||
"FolderTypeTvShows": "\u0422\u0412",
|
||||
"FolderTypeBooks": "\u041a\u043d\u0438\u0433\u0438",
|
||||
"FolderTypeTvShows": "\u0421\u0435\u0440\u0438\u0430\u043b\u044b",
|
||||
"FolderTypeInherit": "\u041d\u0430\u0441\u043b\u0435\u0434\u0443\u0435\u043c\u043e\u0435",
|
||||
"LabelContentType": "\u0422\u0438\u043f \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f:",
|
||||
"LabelContentType": "\u0422\u0438\u043f \u0434\u0430\u043d\u043d\u044b\u0445:",
|
||||
"TitleScheduledTasks": "\u041d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044b\u0435 \u0437\u0430\u0434\u0430\u0447\u0438",
|
||||
"HeaderSetupLibrary": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a",
|
||||
"HeaderSetupLibrary": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438",
|
||||
"LabelFolderType": "\u0422\u0438\u043f \u043f\u0430\u043f\u043a\u0438:",
|
||||
"LabelCountry": "\u0421\u0442\u0440\u0430\u043d\u0430:",
|
||||
"LabelLanguage": "\u042f\u0437\u044b\u043a:",
|
||||
"LabelTimeLimitHours": "\u0412\u0440\u0435\u043c\u0435\u043d\u043d\u043e\u0439 \u043b\u0438\u043c\u0438\u0442 (\u0447\u0430\u0441):",
|
||||
"HeaderPreferredMetadataLanguage": "\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u0435\u043c\u044b\u0439 \u044f\u0437\u044b\u043a \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445",
|
||||
"LabelSaveLocalMetadata": "\u0421\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c \u0438\u043b\u043b\u044e\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u0438 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0432\u043d\u0443\u0442\u0440\u044c \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043e\u043a",
|
||||
"LabelSaveLocalMetadataHelp": "\u041f\u0440\u0438 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0438 \u0438\u043b\u043b\u044e\u0441\u0442\u0440\u0430\u0446\u0438\u0439 \u0438 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u043d\u0435\u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0435\u043d\u043d\u043e \u0432\u043d\u0443\u0442\u0440\u044c \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043e\u043a, \u043e\u043d\u0438 \u0431\u0443\u0434\u0443\u0442 \u0432 \u0442\u0430\u043a\u043e\u043c \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0438, \u0433\u0434\u0435 \u0438\u0445 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043b\u0435\u0433\u043a\u043e \u043f\u0440\u0430\u0432\u0438\u0442\u044c.",
|
||||
"LabelSaveLocalMetadataHelp": "\u041f\u0440\u0438 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0438 \u0438\u043b\u043b\u044e\u0441\u0442\u0440\u0430\u0446\u0438\u0439 \u0438 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u043d\u0435\u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0435\u043d\u043d\u043e \u0432\u043d\u0443\u0442\u0440\u044c \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043e\u043a, \u043e\u043d\u0438 \u0431\u0443\u0434\u0443\u0442 \u0432 \u0442\u043e\u043c \u043c\u0435\u0441\u0442\u0435, \u0433\u0434\u0435 \u0438\u0445 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043b\u0435\u0433\u043a\u043e \u043f\u0440\u0430\u0432\u0438\u0442\u044c.",
|
||||
"LabelDownloadInternetMetadata": "\u0417\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c \u0438\u043b\u043b\u044e\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u0438 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0438\u0437 \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0430",
|
||||
"LabelDownloadInternetMetadataHelp": "\u0412 Emby Server \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e \u0441\u0432\u043e\u0438\u0445 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445, \u0447\u0442\u043e\u0431\u044b \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043d\u0430\u0441\u044b\u0449\u0435\u043d\u043d\u044b\u0435 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f.",
|
||||
"LabelDownloadInternetMetadataHelp": "Emby Server \u043c\u043e\u0436\u0435\u0442 \u0441\u043a\u0430\u0447\u0438\u0432\u0430\u0442\u044c \u0434\u043e\u043f. \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e \u0432\u0430\u0448\u0435\u043c \u043a\u043e\u043d\u0442\u0435\u043d\u0442\u0435 \u0434\u043b\u044f \u0431\u043e\u043b\u0435\u0435 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0433\u043e \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f.",
|
||||
"TabPassword": "\u041f\u0430\u0440\u043e\u043b\u044c",
|
||||
"TabLibraryAccess": "\u0414\u043e\u0441\u0442\u0443\u043f \u043a \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0435",
|
||||
"TabAccess": "\u0414\u043e\u0441\u0442\u0443\u043f",
|
||||
"TabImage": "\u0420\u0438\u0441\u0443\u043d\u043e\u043a",
|
||||
"TabImage": "\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435",
|
||||
"TabProfile": "\u041f\u0440\u043e\u0444\u0438\u043b\u044c",
|
||||
"TabMetadata": "\u041c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435",
|
||||
"TabImages": "\u0420\u0438\u0441\u0443\u043d\u043a\u0438",
|
||||
@ -93,24 +95,24 @@
|
||||
"OptionEnableAccessFromAllDevices": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f \u0441\u043e \u0432\u0441\u0435\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432",
|
||||
"OptionEnableAccessToAllChannels": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f \u043a\u043e \u0432\u0441\u0435\u043c \u043a\u0430\u043d\u0430\u043b\u0430\u043c",
|
||||
"OptionEnableAccessToAllLibraries": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f \u043a\u043e \u0432\u0441\u0435\u043c \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0430\u043c",
|
||||
"DeviceAccessHelp": "\u042d\u0442\u043e \u043f\u0440\u0438\u043c\u0435\u043d\u0438\u043c\u043e \u0442\u043e\u043b\u044c\u043a\u043e \u043a \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u043c, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0440\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u0432\u0430\u0435\u043c\u044b \u043e\u0434\u043d\u043e\u0437\u043d\u0430\u0447\u043d\u043e, \u0438 \u043d\u0435 \u0437\u0430\u043f\u0440\u0435\u0449\u0430\u0435\u0442 \u0434\u043e\u0441\u0442\u0443\u043f \u0441 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0430. \u0424\u0438\u043b\u044c\u0442\u0440\u0430\u0446\u0438\u044f \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043f\u0440\u0435\u043f\u044f\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u0438\u043c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u043d\u043e\u0432\u044b\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0434\u043e \u0442\u0435\u0445 \u043f\u043e\u0440, \u043f\u043e\u043a\u0430 \u043e\u043d\u0438 \u043d\u0435 \u043f\u043e\u043b\u0443\u0447\u0430\u0442 \u0437\u0434\u0435\u0441\u044c \u043e\u0434\u043e\u0431\u0440\u0435\u043d\u0438\u0435.",
|
||||
"DeviceAccessHelp": "\u042d\u0442\u043e \u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u043a \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u043c, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043e\u0434\u043d\u043e\u0437\u043d\u0430\u0447\u043d\u043e \u0440\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d\u044b \u0438 \u043d\u0435 \u043f\u0440\u0435\u043f\u044f\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u0434\u043e\u0441\u0442\u0443\u043f\u0443 \u0447\u0435\u0440\u0435\u0437 \u0431\u0440\u0430\u0443\u0437\u0435\u0440. \u0424\u0438\u043b\u044c\u0442\u0440\u0430\u0446\u0438\u044f \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0437\u0430\u043f\u0440\u0435\u0442\u0438\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u043d\u043e\u0432\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 \u0434\u043e \u0442\u0435\u0445 \u043f\u043e\u0440, \u043f\u043e\u043a\u0430 \u043e\u043d\u0438 \u043d\u0435 \u0431\u0443\u0434\u0443\u0442 \u043e\u0434\u043e\u0431\u0440\u0435\u043d\u044b.",
|
||||
"LabelDisplayMissingEpisodesWithinSeasons": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b \u0432 \u043f\u0440\u0435\u0434\u0435\u043b\u0430\u0445 \u0441\u0435\u0437\u043e\u043d\u043e\u0432",
|
||||
"LabelDisplayMissingEpisodesWithinSeasonsHelp": "\u042d\u0442\u043e \u0442\u0430\u043a\u0436\u0435 \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u043e \u0434\u043b\u044f \u0422\u0412-\u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a \u043f\u0440\u0438 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0435 \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0435 Emby Server.",
|
||||
"LabelDisplayMissingEpisodesWithinSeasonsHelp": "\u042d\u0442\u043e \u0442\u0430\u043a\u0436\u0435 \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u043e \u0434\u043b\u044f \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a \u0441 \u0441\u0435\u0440\u0438\u0430\u043b\u0430\u043c\u0438 \u043f\u0440\u0438 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0435 \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0435 Emby Server.",
|
||||
"LabelUnairedMissingEpisodesWithinSeasons": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c \u043e\u0436\u0438\u0434\u0430\u0435\u043c\u044b\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b \u0432 \u043f\u0440\u0435\u0434\u0435\u043b\u0430\u0445 \u0441\u0435\u0437\u043e\u043d\u043e\u0432",
|
||||
"ImportMissingEpisodesHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043e\u0431 \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0438\u0445 \u044d\u043f\u0438\u0437\u043e\u0434\u0430\u0445 \u0431\u0443\u0434\u0435\u0442 \u0438\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0430 \u0432 \u0432\u0430\u0448\u0443 \u0431\u0430\u0437\u0443 \u0434\u0430\u043d\u043d\u044b\u0445 Emby \u0438 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u0432 \u043f\u0440\u0435\u0434\u0435\u043b\u0430\u0445 \u0441\u0435\u0437\u043e\u043d\u043e\u0432 \u0438 \u0441\u0435\u0440\u0438\u0430\u043b\u043e\u0432. \u042d\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u043f\u0440\u0438\u0432\u0435\u0441\u0442\u0438 \u043a \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f\u043c \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438.",
|
||||
"ImportMissingEpisodesHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043e\u0431 \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0445 \u044d\u043f\u0438\u0437\u043e\u0434\u0430\u0445 \u0431\u0443\u0434\u0435\u0442 \u0438\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0430 \u0432 \u0432\u0430\u0448\u0443 \u0431\u0430\u0437\u0443 \u0434\u0430\u043d\u043d\u044b\u0445 Emby \u0438 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u0432 \u043f\u0440\u0435\u0434\u0435\u043b\u0430\u0445 \u0441\u0435\u0437\u043e\u043d\u043e\u0432 \u0438 \u0441\u0435\u0440\u0438\u0430\u043b\u043e\u0432. \u042d\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u0443\u0432\u0435\u043b\u0438\u0447\u0438\u0442\u044c \u0432\u0440\u0435\u043c\u044f \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438.",
|
||||
"MessageEnablingOptionLongerScans": "\u0412\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u044d\u0442\u043e\u0439 \u043e\u043f\u0446\u0438\u0438 \u043c\u043e\u0436\u0435\u0442 \u043f\u0440\u0438\u0432\u0435\u0441\u0442\u0438 \u043a \u0437\u043d\u0430\u0447\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u043c\u0443 \u0443\u0432\u0435\u043b\u0438\u0447\u0435\u043d\u0438\u044e \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438.",
|
||||
"HeaderVideoPlaybackSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0432\u0438\u0434\u0435\u043e",
|
||||
"OptionDownloadInternetMetadataTvPrograms": "\u0417\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0438\u0437 \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0430 \u0434\u043b\u044f \u043f\u0435\u0440\u0435\u0434\u0430\u0447 \u043f\u0435\u0440\u0435\u0447\u0438\u0441\u043b\u0435\u043d\u043d\u044b\u0445 \u0432 \u0442\u0435\u043b\u0435\u0433\u0438\u0434\u0435",
|
||||
"HeaderPlaybackSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f",
|
||||
"LabelAudioLanguagePreference": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u044f\u0437\u044b\u043a\u0430 \u0430\u0443\u0434\u0438\u043e:",
|
||||
"LabelSubtitleLanguagePreference": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u044f\u0437\u044b\u043a\u0430 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432:",
|
||||
"LabelAudioLanguagePreference": "\u0412\u044b\u0431\u043e\u0440 \u044f\u0437\u044b\u043a\u0430 \u0430\u0443\u0434\u0438\u043e:",
|
||||
"LabelSubtitleLanguagePreference": "\u0412\u044b\u0431\u043e\u0440 \u044f\u0437\u044b\u043a\u0430 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432:",
|
||||
"OptionDefaultSubtitles": "\u041f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e",
|
||||
"OptionSmartSubtitles": "\u0423\u043c\u043d\u044b\u0439",
|
||||
"OptionSmartSubtitlesHelp": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u044b, \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0435 \u044f\u0437\u044b\u043a\u0430, \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c\u0441\u044f, \u0435\u0441\u043b\u0438 \u0430\u0443\u0434\u0438\u043e \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0438\u043d\u043e\u044f\u0437\u044b\u0447\u043d\u044b\u043c.",
|
||||
"OptionSmartSubtitlesHelp": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u044b, \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u043e\u043c\u0443 \u044f\u0437\u044b\u043a\u0443, \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c\u0441\u044f, \u0435\u0441\u043b\u0438 \u0430\u0443\u0434\u0438\u043e \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0438\u043d\u043e\u044f\u0437\u044b\u0447\u043d\u044b\u043c.",
|
||||
"OptionOnlyForcedSubtitles": "\u0422\u043e\u043b\u044c\u043a\u043e \u0444\u043e\u0440\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u044b",
|
||||
"OptionAlwaysPlaySubtitles": "\u0412\u0441\u0435\u0433\u0434\u0430 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u044c \u0441 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u0430\u043c\u0438",
|
||||
"OptionDefaultSubtitlesHelp": "\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0438 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u044e\u0442\u0441\u044f \u0444\u043b\u0430\u0433\u0430\u043c\u0438 \"\u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u0435\" \u0438 \"\u0444\u043e\u0440\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435\" \u0432\u043e \u0432\u043d\u0435\u0434\u0440\u0451\u043d\u043d\u044b\u0445 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445. \u042f\u0437\u044b\u043a\u043e\u0432\u044b\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0443\u0447\u0438\u0442\u044b\u0432\u0430\u044e\u0442\u0441\u044f \u043f\u0440\u0438 \u043d\u0430\u043b\u0438\u0447\u0438\u0438 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u043e\u043f\u0446\u0438\u0439.",
|
||||
"OptionOnlyForcedSubtitlesHelp": "\u0411\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u044b, \u043e\u0431\u043e\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044b\u0435 \u043a\u0430\u043a \u0444\u043e\u0440\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435.",
|
||||
"OptionDefaultSubtitlesHelp": "\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0438 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u044e\u0442\u0441\u044f \u0444\u043b\u0430\u0433\u0430\u043c\u0438 \"\u041f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e\" \u0438 \"\u0444\u043e\u0440\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435\" \u0432\u043e \u0432\u043d\u0435\u0434\u0440\u0451\u043d\u043d\u044b\u0445 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445. \u0412\u044b\u0431\u0440\u0430\u043d\u044b\u0435 \u044f\u0437\u044b\u043a\u0438 \u0443\u0447\u0438\u0442\u044b\u0432\u0430\u044e\u0442\u0441\u044f \u043f\u0440\u0438 \u043d\u0430\u043b\u0438\u0447\u0438\u0438 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a.",
|
||||
"OptionOnlyForcedSubtitlesHelp": "\u0417\u0430\u0433\u0440\u0443\u0436\u0435\u043d\u044b \u0431\u0443\u0434\u0443\u0442 \u0442\u043e\u043b\u044c\u043a\u043e \u0444\u043e\u0440\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u044b.",
|
||||
"OptionAlwaysPlaySubtitlesHelp": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u044b, \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0435 \u044f\u0437\u044b\u043a\u0430, \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c\u0441\u044f \u043d\u0435\u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e \u043e\u0442 \u044f\u0437\u044b\u043a\u0430 \u0430\u0443\u0434\u0438\u043e.",
|
||||
"OptionNoSubtitlesHelp": "\u041f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e, \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u044b \u043d\u0435 \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c\u0441\u044f.",
|
||||
"TabProfiles": "\u041f\u0440\u043e\u0444\u0438\u043b\u0438",
|
||||
@ -125,7 +127,7 @@
|
||||
"LabelCurrentPassword": "\u0422\u0435\u043a\u0443\u0449\u0438\u0439 \u043f\u0430\u0440\u043e\u043b\u044c",
|
||||
"LabelMaxParentalRating": "\u041c\u0430\u043a\u0441. \u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u0430\u044f \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u0430\u044f \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f:",
|
||||
"MaxParentalRatingHelp": "\u0421\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u0441 \u0431\u043e\u043b\u0435\u0435 \u0432\u044b\u0441\u043e\u043a\u043e\u0439 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u043e\u0439 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0435\u0439 \u0431\u0443\u0434\u0435\u0442 \u0441\u043a\u0440\u044b\u0442\u043e \u043e\u0442 \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f",
|
||||
"LibraryAccessHelp": "\u0412\u044b\u0434\u0435\u043b\u0438\u0442\u0435 \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0438, \u0447\u0442\u043e\u0431\u044b \u0434\u0430\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f \u044d\u0442\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e. \u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u044b \u0441\u043c\u043e\u0433\u0443\u0442 \u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0432\u0441\u0435 \u043f\u0430\u043f\u043a\u0438 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u00ab\u0414\u0438\u0441\u043f\u0435\u0442\u0447\u0435\u0440\u0430 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445\u00bb.",
|
||||
"LibraryAccessHelp": "\u0412\u044b\u0434\u0435\u043b\u0438\u0442\u0435 \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0438, \u0447\u0442\u043e\u0431\u044b \u0434\u0430\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f \u044d\u0442\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e. \u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u044b \u0441\u043c\u043e\u0433\u0443\u0442 \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0432\u0441\u0435 \u043f\u0430\u043f\u043a\u0438 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u00ab\u0414\u0438\u0441\u043f\u0435\u0442\u0447\u0435\u0440\u0430 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445\u00bb.",
|
||||
"ChannelAccessHelp": "\u0412\u044b\u0434\u0435\u043b\u0438\u0442\u0435 \u043a\u0430\u043d\u0430\u043b\u044b, \u0447\u0442\u043e\u0431\u044b \u0434\u0430\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f \u044d\u0442\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e. \u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u044b \u043c\u043e\u0433\u0443\u0442 \u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0432\u0441\u0435 \u043a\u0430\u043d\u0430\u043b\u044b \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u00ab\u0414\u0438\u0441\u043f\u0435\u0442\u0447\u0435\u0440\u0430 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445\u00bb.",
|
||||
"ButtonDeleteImage": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0440\u0438\u0441\u0443\u043d\u043e\u043a",
|
||||
"LabelSelectUsers": "\u0412\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438:",
|
||||
@ -532,7 +534,7 @@
|
||||
"ButtonShutdown": "\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0440\u0430\u0431\u043e\u0442\u0443",
|
||||
"ButtonUpdateNow": "\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u043d\u0435\u043c\u0435\u0434\u043b\u0435\u043d\u043d\u043e",
|
||||
"TabHosting": "\u0420\u0430\u0437\u043c\u0435\u0449\u0435\u043d\u0438\u0435",
|
||||
"PleaseUpdateManually": "\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u0435 \u0440\u0430\u0431\u043e\u0442\u0443 \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u0438 \u043e\u0431\u043d\u043e\u0432\u0438\u0442\u0435 \u0432\u0440\u0443\u0447\u043d\u0443\u044e.",
|
||||
"PleaseUpdateManually": "\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u0435 \u0440\u0430\u0431\u043e\u0442\u0443 Emby Server \u0438 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0435 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u044e\u044e \u0432\u0435\u0440\u0441\u0438\u044e.",
|
||||
"NewServerVersionAvailable": "\u0418\u043c\u0435\u0435\u0442\u0441\u044f \u043d\u043e\u0432\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f Emby Server!",
|
||||
"ServerUpToDate": "Emby Server - \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d",
|
||||
"LabelComponentsUpdated": "\u0411\u044b\u043b\u0438 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u044b \u0438\u043b\u0438 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u044b \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0435 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b:",
|
||||
@ -940,7 +942,6 @@
|
||||
"LabelAlbumArtists": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438 \u0430\u043b\u044c\u0431\u043e\u043c\u0430:",
|
||||
"LabelAlbum": "\u0410\u043b\u044c\u0431\u043e\u043c",
|
||||
"LabelCommunityRating": "\u041e\u0431\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u0430\u044f \u043e\u0446\u0435\u043d\u043a\u0430:",
|
||||
"LabelAwardSummary": "\u0421\u0432\u043e\u0434\u043a\u0430 \u043d\u0430\u0433\u0440\u0430\u0436\u0434\u0435\u043d\u0438\u0439:",
|
||||
"LabelReleaseDate": "\u0414\u0430\u0442\u0430 \u0432\u044b\u043f\u0443\u0441\u043a\u0430:",
|
||||
"LabelEndDate": "\u041a\u043e\u043d\u0435\u0447\u043d\u0430\u044f \u0434\u0430\u0442\u0430:",
|
||||
"LabelAirDate": "\u0414\u043d\u0438 \u044d\u0444\u0438\u0440\u0430:",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"News": "News",
|
||||
"Programs": "Programs",
|
||||
"LabelPrevious": "Previous",
|
||||
"LabelFinish": "Finish",
|
||||
"LabelNext": "Next",
|
||||
@ -532,7 +534,7 @@
|
||||
"ButtonShutdown": "Shutdown",
|
||||
"ButtonUpdateNow": "Update Now",
|
||||
"TabHosting": "Hosting",
|
||||
"PleaseUpdateManually": "Please shutdown the server and update manually.",
|
||||
"PleaseUpdateManually": "Please shutdown Emby Server and install the latest version.",
|
||||
"NewServerVersionAvailable": "A new version of Emby Server is available!",
|
||||
"ServerUpToDate": "Emby Server is up to date",
|
||||
"LabelComponentsUpdated": "The following components have been installed or updated:",
|
||||
@ -940,7 +942,6 @@
|
||||
"LabelAlbumArtists": "Album artists:",
|
||||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
"LabelReleaseDate": "Release date:",
|
||||
"LabelEndDate": "End date:",
|
||||
"LabelAirDate": "Air days:",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"News": "News",
|
||||
"Programs": "Programs",
|
||||
"LabelPrevious": "Nazaj",
|
||||
"LabelFinish": "Konec",
|
||||
"LabelNext": "Naprej",
|
||||
@ -532,7 +534,7 @@
|
||||
"ButtonShutdown": "Shutdown",
|
||||
"ButtonUpdateNow": "Update Now",
|
||||
"TabHosting": "Hosting",
|
||||
"PleaseUpdateManually": "Please shutdown the server and update manually.",
|
||||
"PleaseUpdateManually": "Please shutdown Emby Server and install the latest version.",
|
||||
"NewServerVersionAvailable": "A new version of Emby Server is available!",
|
||||
"ServerUpToDate": "Emby Server is up to date",
|
||||
"LabelComponentsUpdated": "The following components have been installed or updated:",
|
||||
@ -940,7 +942,6 @@
|
||||
"LabelAlbumArtists": "Album artists:",
|
||||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
"LabelReleaseDate": "Release date:",
|
||||
"LabelEndDate": "End date:",
|
||||
"LabelAirDate": "Air days:",
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user