mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 10:58:20 -07:00
update components
This commit is contained in:
parent
8c0010c65b
commit
9117e72214
@ -0,0 +1 @@
|
||||
define(["dom","focusManager"],function(dom,focusManager){"use strict";function onKeyDown(e){if(!e.ctrlKey&&!e.shiftKey&&!e.altKey){var key=e.key,chr=key?alphanumeric(key):null;chr&&(chr=chr.toString().toUpperCase(),1===chr.length&&(currentDisplayTextContainer=this.options.itemsContainer,onAlphanumericKeyPress(e,chr)))}}function alphanumeric(value){var letterNumber=/^[0-9a-zA-Z]+$/;return value.match(letterNumber)}function ensureInputDisplayElement(){inputDisplayElement||(inputDisplayElement=document.createElement("div"),inputDisplayElement.classList.add("alphanumeric-shortcut"),inputDisplayElement.classList.add("hide"),document.body.appendChild(inputDisplayElement))}function clearAlphaNumericShortcutTimeout(){alpanumericShortcutTimeout&&(clearTimeout(alpanumericShortcutTimeout),alpanumericShortcutTimeout=null)}function resetAlphaNumericShortcutTimeout(){clearAlphaNumericShortcutTimeout(),alpanumericShortcutTimeout=setTimeout(onAlphanumericShortcutTimeout,2e3)}function onAlphanumericKeyPress(e,chr){currentDisplayText.length>=3||(ensureInputDisplayElement(),currentDisplayText+=chr,inputDisplayElement.innerHTML=currentDisplayText,inputDisplayElement.classList.remove("hide"),resetAlphaNumericShortcutTimeout())}function onAlphanumericShortcutTimeout(){var value=currentDisplayText,container=currentDisplayTextContainer;currentDisplayText="",currentDisplayTextContainer=null,inputDisplayElement.innerHTML="",inputDisplayElement.classList.add("hide"),clearAlphaNumericShortcutTimeout(),selectByShortcutValue(container,value)}function selectByShortcutValue(container,value){value=value.toUpperCase();var focusElem;"#"===value&&(focusElem=container.querySelector("*[data-prefix]")),focusElem||(focusElem=container.querySelector("*[data-prefix^='"+value+"']")),focusElem&&focusManager.focus(focusElem)}function AlphaNumericShortcuts(options){this.options=options;var keyDownHandler=onKeyDown.bind(this);dom.addEventListener(window,"keydown",keyDownHandler,{passive:!0}),this.keyDownHandler=keyDownHandler}var inputDisplayElement,currentDisplayTextContainer,alpanumericShortcutTimeout,currentDisplayText="";return AlphaNumericShortcuts.prototype.destroy=function(){var keyDownHandler=this.keyDownHandler;keyDownHandler&&(dom.removeEventListener(window,"keydown",keyDownHandler,{passive:!0}),this.keyDownHandler=null),this.options=null},AlphaNumericShortcuts});
|
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
@ -54,7 +54,7 @@
|
||||
</select>
|
||||
<div class="fieldDescription">
|
||||
<div>${LabelDisplayLanguageHelp}</div>
|
||||
<div style="margin-top: .25em;">
|
||||
<div class="learnHowToContributeContainer hide" style="margin-top: .25em;">
|
||||
<a is="emby-linkbutton" class="button-link" href="http://emby.media/community/index.php?/topic/5727-join-our-translation-team" target="_blank">${LearnHowYouCanContribute}</a>
|
||||
</div>
|
||||
</div>
|
||||
@ -130,7 +130,7 @@
|
||||
<div class="fieldDescription">${FeatureRequiresEmbyPremiere}</div>
|
||||
</div>
|
||||
|
||||
<div class="checkboxContainer checkboxContainer-withDescription">
|
||||
<div class="checkboxContainer checkboxContainer-withDescription fldSeasonalThemes hide">
|
||||
<label>
|
||||
<input type="checkbox" is="emby-checkbox" id="chkSeasonalThemes" />
|
||||
<span>${AllowSeasonalThemes}</span>
|
||||
|
@ -1 +1 @@
|
||||
define(["globalize","loading","alert","emby-linkbutton"],function(globalize,loading,alert){"use strict";function resolvePromise(){return Promise.resolve()}function rejectPromise(){return Promise.reject()}function showNewUserInviteMessage(result){if(!result.IsNewUserInvitation&&!result.IsPending)return Promise.resolve();var message=result.IsNewUserInvitation?globalize.translate("sharedcomponents#MessageInvitationSentToNewUser",result.GuestDisplayName):globalize.translate("sharedcomponents#MessageInvitationSentToUser",result.GuestDisplayName);return alert({text:message,title:globalize.translate("sharedcomponents#HeaderInvitationSent")}).then(resolvePromise,resolvePromise)}function inviteGuest(options){var apiClient=options.apiClient;return loading.show(),apiClient.ajax({type:"POST",url:apiClient.getUrl("Connect/Invite"),dataType:"json",data:options.guestOptions||{}}).then(function(result){return loading.hide(),showNewUserInviteMessage(result)},function(response){loading.hide();var statusCode=response?response.status:0;return 502===statusCode?showConnectServerUnreachableErrorMessage().then(rejectPromise,rejectPromise):404===statusCode?alert({text:globalize.translate("sharedcomponents#GuestUserNotFound")}).then(rejectPromise,rejectPromise):(statusCode||0)>=500?alert({text:globalize.translate("sharedcomponents#ErrorReachingEmbyConnect")}).then(rejectPromise,rejectPromise):showGuestGeneralErrorMessage().then(rejectPromise,rejectPromise)})}function showGuestGeneralErrorMessage(){var html=globalize.translate("sharedcomponents#ErrorAddingGuestAccount1",'<a is="emby-linkbutton" class="button-link" href="https://emby.media/connect" target="_blank">https://emby.media/connect</a>');html+="<br/><br/>"+globalize.translate("sharedcomponents#ErrorAddingGuestAccount2","apps@emby.media");var text=globalize.translate("sharedcomponents#ErrorAddingGuestAccount1","https://emby.media/connect");return text+="\n\n"+globalize.translate("sharedcomponents#ErrorAddingGuestAccount2","apps@emby.media"),alert({text:text,html:html})}function showConnectServerUnreachableErrorMessage(){var text=globalize.translate("sharedcomponents#ErrorConnectServerUnreachable","https://connect.emby.media");return alert({text:text})}function showLinkUserErrorMessage(username,statusCode){var html,text;return 502===statusCode?showConnectServerUnreachableErrorMessage():(username?(html=globalize.translate("sharedcomponents#ErrorAddingEmbyConnectAccount1",'<a is="emby-linkbutton" class="button-link" href="https://emby.media/connect" target="_blank">https://emby.media/connect</a>'),html+="<br/><br/>"+globalize.translate("sharedcomponents#ErrorAddingEmbyConnectAccount2","apps@emby.media"),text=globalize.translate("sharedcomponents#ErrorAddingEmbyConnectAccount1","https://emby.media/connect"),text+="\n\n"+globalize.translate("sharedcomponents#ErrorAddingEmbyConnectAccount2","apps@emby.media")):html=text=globalize.translate("sharedcomponents#DefaultErrorMessage"),alert({text:text,html:html}))}function updateUserLink(apiClient,user,newConnectUsername){var currentConnectUsername=user.ConnectUserName||"",enteredConnectUsername=newConnectUsername,linkUrl=apiClient.getUrl("Users/"+user.Id+"/Connect/Link");return currentConnectUsername&&!enteredConnectUsername?apiClient.ajax({type:"DELETE",url:linkUrl}).then(function(){return alert({text:globalize.translate("sharedcomponents#MessageEmbyAccontRemoved"),title:globalize.translate("sharedcomponents#HeaderEmbyAccountRemoved")}).catch(resolvePromise)},function(response){var statusCode=response?response.status:0;return 502===statusCode?showConnectServerUnreachableErrorMessage().then(rejectPromise):alert({text:globalize.translate("sharedcomponents#ErrorRemovingEmbyConnectAccount")}).then(rejectPromise)}):currentConnectUsername!==enteredConnectUsername?apiClient.ajax({type:"POST",url:linkUrl,data:{ConnectUsername:enteredConnectUsername},dataType:"json"}).then(function(result){var msgKey=result.IsPending?"sharedcomponents#MessagePendingEmbyAccountAdded":"sharedcomponents#MessageEmbyAccountAdded";return alert({text:globalize.translate(msgKey),title:globalize.translate("sharedcomponents#HeaderEmbyAccountAdded")}).catch(resolvePromise)},function(response){var statusCode=response?response.status:0;return 502===statusCode?showConnectServerUnreachableErrorMessage().then(rejectPromise):showLinkUserErrorMessage(".",statusCode).then(rejectPromise)}):Promise.reject()}return{inviteGuest:inviteGuest,updateUserLink:updateUserLink,showLinkUserErrorMessage:showLinkUserErrorMessage,showConnectServerUnreachableErrorMessage:showConnectServerUnreachableErrorMessage}});
|
||||
define(["globalize","apphost","loading","alert","emby-linkbutton"],function(globalize,appHost,loading,alert){"use strict";function resolvePromise(){return Promise.resolve()}function rejectPromise(){return Promise.reject()}function showNewUserInviteMessage(result){if(!result.IsNewUserInvitation&&!result.IsPending)return Promise.resolve();var message=result.IsNewUserInvitation?globalize.translate("sharedcomponents#MessageInvitationSentToNewUser",result.GuestDisplayName):globalize.translate("sharedcomponents#MessageInvitationSentToUser",result.GuestDisplayName);return alert({text:message,title:globalize.translate("sharedcomponents#HeaderInvitationSent")}).then(resolvePromise,resolvePromise)}function inviteGuest(options){var apiClient=options.apiClient;return loading.show(),apiClient.ajax({type:"POST",url:apiClient.getUrl("Connect/Invite"),dataType:"json",data:options.guestOptions||{}}).then(function(result){return loading.hide(),showNewUserInviteMessage(result)},function(response){loading.hide();var statusCode=response?response.status:0;return 502===statusCode?showConnectServerUnreachableErrorMessage().then(rejectPromise,rejectPromise):404===statusCode?alert({text:globalize.translate("sharedcomponents#GuestUserNotFound")}).then(rejectPromise,rejectPromise):(statusCode||0)>=500?alert({text:globalize.translate("sharedcomponents#ErrorReachingEmbyConnect")}).then(rejectPromise,rejectPromise):showGuestGeneralErrorMessage().then(rejectPromise,rejectPromise)})}function showGuestGeneralErrorMessage(){var html;appHost.supports("externallinks")&&(html=globalize.translate("sharedcomponents#ErrorAddingGuestAccount1",'<a is="emby-linkbutton" class="button-link" href="https://emby.media/connect" target="_blank">https://emby.media/connect</a>'),html+="<br/><br/>"+globalize.translate("sharedcomponents#ErrorAddingGuestAccount2","apps@emby.media"));var text=globalize.translate("sharedcomponents#ErrorAddingGuestAccount1","https://emby.media/connect");return text+="\n\n"+globalize.translate("sharedcomponents#ErrorAddingGuestAccount2","apps@emby.media"),alert({text:text,html:html})}function showConnectServerUnreachableErrorMessage(){var text=globalize.translate("sharedcomponents#ErrorConnectServerUnreachable","https://connect.emby.media");return alert({text:text})}function showLinkUserErrorMessage(username,statusCode){var html,text;return 502===statusCode?showConnectServerUnreachableErrorMessage():(username?(appHost.supports("externallinks")&&(html=globalize.translate("sharedcomponents#ErrorAddingEmbyConnectAccount1",'<a is="emby-linkbutton" class="button-link" href="https://emby.media/connect" target="_blank">https://emby.media/connect</a>'),html+="<br/><br/>"+globalize.translate("sharedcomponents#ErrorAddingEmbyConnectAccount2","apps@emby.media")),text=globalize.translate("sharedcomponents#ErrorAddingEmbyConnectAccount1","https://emby.media/connect"),text+="\n\n"+globalize.translate("sharedcomponents#ErrorAddingEmbyConnectAccount2","apps@emby.media")):html=text=globalize.translate("sharedcomponents#DefaultErrorMessage"),alert({text:text,html:html}))}function updateUserLink(apiClient,user,newConnectUsername){var currentConnectUsername=user.ConnectUserName||"",enteredConnectUsername=newConnectUsername,linkUrl=apiClient.getUrl("Users/"+user.Id+"/Connect/Link");return currentConnectUsername&&!enteredConnectUsername?apiClient.ajax({type:"DELETE",url:linkUrl}).then(function(){return alert({text:globalize.translate("sharedcomponents#MessageEmbyAccontRemoved"),title:globalize.translate("sharedcomponents#HeaderEmbyAccountRemoved")}).catch(resolvePromise)},function(response){var statusCode=response?response.status:0;return 502===statusCode?showConnectServerUnreachableErrorMessage().then(rejectPromise):alert({text:globalize.translate("sharedcomponents#ErrorRemovingEmbyConnectAccount")}).then(rejectPromise)}):currentConnectUsername!==enteredConnectUsername?apiClient.ajax({type:"POST",url:linkUrl,data:{ConnectUsername:enteredConnectUsername},dataType:"json"}).then(function(result){var msgKey=result.IsPending?"sharedcomponents#MessagePendingEmbyAccountAdded":"sharedcomponents#MessageEmbyAccountAdded";return alert({text:globalize.translate(msgKey),title:globalize.translate("sharedcomponents#HeaderEmbyAccountAdded")}).catch(resolvePromise)},function(response){var statusCode=response?response.status:0;return 502===statusCode?showConnectServerUnreachableErrorMessage().then(rejectPromise):showLinkUserErrorMessage(".",statusCode).then(rejectPromise)}):Promise.reject()}return{inviteGuest:inviteGuest,updateUserLink:updateUserLink,showLinkUserErrorMessage:showLinkUserErrorMessage,showConnectServerUnreachableErrorMessage:showConnectServerUnreachableErrorMessage}});
|
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(["connectionManager","playbackManager","events","inputManager","focusManager","appRouter"],function(connectionManager,playbackManager,events,inputManager,focusManager,appRouter){"use strict";function notifyApp(){inputManager.notify()}function displayMessage(cmd){var args=cmd.Arguments;args.TimeoutMs?require(["toast"],function(toast){toast({title:args.Header,text:args.Text})}):require(["alert"],function(alert){alert({title:args.Header,text:args.Text})})}function displayContent(cmd,apiClient){playbackManager.isPlayingLocally(["Video","Book","Game"])||appRouter.showItem(cmd.Arguments.ItemId,apiClient.serverId())}function processGeneralCommand(cmd,apiClient){switch(cmd.Name){case"Select":return void inputManager.trigger("select");case"Back":return void inputManager.trigger("back");case"MoveUp":return void inputManager.trigger("up");case"MoveDown":return void inputManager.trigger("down");case"MoveLeft":return void inputManager.trigger("left");case"MoveRight":return void inputManager.trigger("right");case"PageUp":return void inputManager.trigger("pageup");case"PageDown":return void inputManager.trigger("pagedown");case"SetRepeatMode":playbackManager.setRepeatMode(cmd.Arguments.RepeatMode);break;case"VolumeUp":return void inputManager.trigger("volumeup");case"VolumeDown":return void inputManager.trigger("volumedown");case"ChannelUp":return void inputManager.trigger("channelup");case"ChannelDown":return void inputManager.trigger("channeldown");case"Mute":return void inputManager.trigger("mute");case"Unmute":return void inputManager.trigger("unmute");case"ToggleMute":return void inputManager.trigger("togglemute");case"SetVolume":notifyApp(),playbackManager.setVolume(cmd.Arguments.Volume);break;case"SetAudioStreamIndex":notifyApp(),playbackManager.setAudioStreamIndex(parseInt(cmd.Arguments.Index));break;case"SetSubtitleStreamIndex":notifyApp(),playbackManager.setSubtitleStreamIndex(parseInt(cmd.Arguments.Index));break;case"ToggleFullscreen":return void inputManager.trigger("togglefullscreen");case"GoHome":return void inputManager.trigger("home");case"GoToSettings":return void inputManager.trigger("settings");case"DisplayContent":displayContent(cmd,apiClient);break;case"GoToSearch":return void inputManager.trigger("search");case"DisplayMessage":displayMessage(cmd);break;case"ToggleOsd":break;case"ToggleContextMenu":break;case"TakeScreenShot":break;case"SendKey":break;case"SendString":focusManager.sendText(cmd.Arguments.String);break;default:console.log("processGeneralCommand does not recognize: "+cmd.Name)}notifyApp()}function onWebSocketMessageReceived(e,msg){var apiClient=this;if("Play"===msg.MessageType){notifyApp();var serverId=apiClient.serverInfo().Id;"PlayNext"===msg.Data.PlayCommand?playbackManager.queueNext({ids:msg.Data.ItemIds,serverId:serverId}):"PlayLast"===msg.Data.PlayCommand?playbackManager.queue({ids:msg.Data.ItemIds,serverId:serverId}):playbackManager.play({ids:msg.Data.ItemIds,startPositionTicks:msg.Data.StartPositionTicks,mediaSourceId:msg.Data.MediaSourceId,audioStreamIndex:msg.Data.AudioStreamIndex,subtitleStreamIndex:msg.Data.SubtitleStreamIndex,serverId:serverId})}else if("Playstate"===msg.MessageType)"Stop"===msg.Data.Command?inputManager.trigger("stop"):"Pause"===msg.Data.Command?inputManager.trigger("pause"):"Unpause"===msg.Data.Command?inputManager.trigger("play"):"PlayPause"===msg.Data.Command?inputManager.trigger("playpause"):"Seek"===msg.Data.Command?playbackManager.seek(msg.Data.SeekPositionTicks):"NextTrack"===msg.Data.Command?inputManager.trigger("next"):"PreviousTrack"===msg.Data.Command?inputManager.trigger("previous"):notifyApp();else if("GeneralCommand"===msg.MessageType){var cmd=msg.Data;processGeneralCommand(cmd,apiClient)}else if("UserDataChanged"===msg.MessageType){if(msg.Data.UserId===apiClient.getCurrentUserId())for(var i=0,length=msg.Data.UserDataList.length;i<length;i++)events.trigger(serverNotifications,"UserDataChanged",[apiClient,msg.Data.UserDataList[i]])}else events.trigger(serverNotifications,msg.MessageType,[apiClient,msg.Data])}function bindEvents(apiClient){events.off(apiClient,"websocketmessage",onWebSocketMessageReceived),events.on(apiClient,"websocketmessage",onWebSocketMessageReceived)}var serverNotifications={};return connectionManager.getApiClients().forEach(bindEvents),events.on(connectionManager,"apiclientcreated",function(e,newApiClient){bindEvents(newApiClient)}),serverNotifications});
|
||||
define(["connectionManager","playbackManager","events","inputManager","focusManager","appRouter"],function(connectionManager,playbackManager,events,inputManager,focusManager,appRouter){"use strict";function notifyApp(){inputManager.notify()}function displayMessage(cmd){var args=cmd.Arguments;args.TimeoutMs?require(["toast"],function(toast){toast({title:args.Header,text:args.Text})}):require(["alert"],function(alert){alert({title:args.Header,text:args.Text})})}function displayContent(cmd,apiClient){playbackManager.isPlayingLocally(["Video","Book","Game"])||appRouter.showItem(cmd.Arguments.ItemId,apiClient.serverId())}function processGeneralCommand(cmd,apiClient){switch(cmd.Name){case"Select":return void inputManager.trigger("select");case"Back":return void inputManager.trigger("back");case"MoveUp":return void inputManager.trigger("up");case"MoveDown":return void inputManager.trigger("down");case"MoveLeft":return void inputManager.trigger("left");case"MoveRight":return void inputManager.trigger("right");case"PageUp":return void inputManager.trigger("pageup");case"PageDown":return void inputManager.trigger("pagedown");case"SetRepeatMode":playbackManager.setRepeatMode(cmd.Arguments.RepeatMode);break;case"VolumeUp":return void inputManager.trigger("volumeup");case"VolumeDown":return void inputManager.trigger("volumedown");case"ChannelUp":return void inputManager.trigger("channelup");case"ChannelDown":return void inputManager.trigger("channeldown");case"Mute":return void inputManager.trigger("mute");case"Unmute":return void inputManager.trigger("unmute");case"ToggleMute":return void inputManager.trigger("togglemute");case"SetVolume":notifyApp(),playbackManager.setVolume(cmd.Arguments.Volume);break;case"SetAudioStreamIndex":notifyApp(),playbackManager.setAudioStreamIndex(parseInt(cmd.Arguments.Index));break;case"SetSubtitleStreamIndex":notifyApp(),playbackManager.setSubtitleStreamIndex(parseInt(cmd.Arguments.Index));break;case"ToggleFullscreen":return void inputManager.trigger("togglefullscreen");case"GoHome":return void inputManager.trigger("home");case"GoToSettings":return void inputManager.trigger("settings");case"DisplayContent":displayContent(cmd,apiClient);break;case"GoToSearch":return void inputManager.trigger("search");case"DisplayMessage":displayMessage(cmd);break;case"ToggleOsd":break;case"ToggleContextMenu":break;case"TakeScreenShot":break;case"SendKey":break;case"SendString":focusManager.sendText(cmd.Arguments.String);break;default:console.log("processGeneralCommand does not recognize: "+cmd.Name)}notifyApp()}function onWebSocketMessageReceived(e,msg){var apiClient=this;if("Play"===msg.MessageType){notifyApp();var serverId=apiClient.serverInfo().Id;"PlayNext"===msg.Data.PlayCommand?playbackManager.queueNext({ids:msg.Data.ItemIds,serverId:serverId}):"PlayLast"===msg.Data.PlayCommand?playbackManager.queue({ids:msg.Data.ItemIds,serverId:serverId}):playbackManager.play({ids:msg.Data.ItemIds,startPositionTicks:msg.Data.StartPositionTicks,mediaSourceId:msg.Data.MediaSourceId,audioStreamIndex:msg.Data.AudioStreamIndex,subtitleStreamIndex:msg.Data.SubtitleStreamIndex,startIndex:msg.Data.StartIndex,serverId:serverId})}else if("Playstate"===msg.MessageType)"Stop"===msg.Data.Command?inputManager.trigger("stop"):"Pause"===msg.Data.Command?inputManager.trigger("pause"):"Unpause"===msg.Data.Command?inputManager.trigger("play"):"PlayPause"===msg.Data.Command?inputManager.trigger("playpause"):"Seek"===msg.Data.Command?playbackManager.seek(msg.Data.SeekPositionTicks):"NextTrack"===msg.Data.Command?inputManager.trigger("next"):"PreviousTrack"===msg.Data.Command?inputManager.trigger("previous"):notifyApp();else if("GeneralCommand"===msg.MessageType){var cmd=msg.Data;processGeneralCommand(cmd,apiClient)}else if("UserDataChanged"===msg.MessageType){if(msg.Data.UserId===apiClient.getCurrentUserId())for(var i=0,length=msg.Data.UserDataList.length;i<length;i++)events.trigger(serverNotifications,"UserDataChanged",[apiClient,msg.Data.UserDataList[i]])}else events.trigger(serverNotifications,msg.MessageType,[apiClient,msg.Data])}function bindEvents(apiClient){events.off(apiClient,"websocketmessage",onWebSocketMessageReceived),events.on(apiClient,"websocketmessage",onWebSocketMessageReceived)}var serverNotifications={};return connectionManager.getApiClients().forEach(bindEvents),events.on(connectionManager,"apiclientcreated",function(e,newApiClient){bindEvents(newApiClient)}),serverNotifications});
|
@ -1 +1 @@
|
||||
define(["browser","require","events","apphost","loading","dom","playbackManager","appRouter","appSettings","connectionManager"],function(browser,require,events,appHost,loading,dom,playbackManager,appRouter,appSettings,connectionManager){"use strict";function PhotoPlayer(){var self=this;self.name="Photo Player",self.type="mediaplayer",self.id="photoplayer",self.priority=1}return PhotoPlayer.prototype.play=function(options){return new Promise(function(resolve,reject){require(["slideshow"],function(slideshow){var index=options.playStartIndex||0,newSlideShow=new slideshow({showTitle:!1,cover:!1,items:options.items,startIndex:index,interval:11e3,interactive:!0});newSlideShow.show(),resolve()})})},PhotoPlayer.prototype.canPlayMediaType=function(mediaType){return"photo"===(mediaType||"").toLowerCase()},PhotoPlayer});
|
||||
define(["browser","require","events","apphost","loading","dom","playbackManager","appRouter","appSettings","connectionManager"],function(browser,require,events,appHost,loading,dom,playbackManager,appRouter,appSettings,connectionManager){"use strict";function PhotoPlayer(){var self=this;self.name="Photo Player",self.type="mediaplayer",self.id="photoplayer",self.priority=1}return PhotoPlayer.prototype.play=function(options){return new Promise(function(resolve,reject){require(["slideshow"],function(slideshow){var index=options.startIndex||0,newSlideShow=new slideshow({showTitle:!1,cover:!1,items:options.items,startIndex:index,interval:11e3,interactive:!0});newSlideShow.show(),resolve()})})},PhotoPlayer.prototype.canPlayMediaType=function(mediaType){return"photo"===(mediaType||"").toLowerCase()},PhotoPlayer});
|
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(["focusManager","dom","scrollStyles"],function(focusManager,dom){"use strict";function getBoundingClientRect(elem){return elem.getBoundingClientRect?elem.getBoundingClientRect():{top:0,left:0}}function getPosition(scrollContainer,item,horizontal){var slideeOffset=getBoundingClientRect(scrollContainer),itemOffset=getBoundingClientRect(item),offset=horizontal?itemOffset.left-slideeOffset.left:itemOffset.top-slideeOffset.top,size=horizontal?itemOffset.width:itemOffset.height;size||0===size||(size=item[horizontal?"offsetWidth":"offsetHeight"]),offset+=horizontal?scrollContainer.scrollLeft:scrollContainer.scrollTop;var frameSize=horizontal?scrollContainer.offsetWidth:scrollContainer.offsetHeight;return{start:offset,center:offset-frameSize/2+size/2,end:offset-frameSize+size,size:size}}function toCenter(container,elem,horizontal){var pos=getPosition(container,elem,horizontal);container.scrollTo?horizontal?container.scrollTo(pos.center,0):container.scrollTo(0,pos.center):horizontal?container.scrollLeft=Math.round(pos.center):container.scrollTop=Math.round(pos.center)}function toStart(container,elem,horizontal){var pos=getPosition(container,elem,horizontal);container.scrollTo?horizontal?container.scrollTo(pos.start,0):container.scrollTo(0,pos.start):horizontal?container.scrollLeft=Math.round(pos.start):container.scrollTop=Math.round(pos.start)}function centerOnFocus(e,scrollSlider,horizontal){var focused=focusManager.focusableParent(e.target);focused&&toCenter(scrollSlider,focused,horizontal)}function centerOnFocusHorizontal(e){centerOnFocus(e,this,!0)}function centerOnFocusVertical(e){centerOnFocus(e,this,!1)}return{getPosition:getPosition,centerFocus:{on:function(element,horizontal){horizontal?dom.addEventListener(element,"focus",centerOnFocusHorizontal,{capture:!0,passive:!0}):dom.addEventListener(element,"focus",centerOnFocusVertical,{capture:!0,passive:!0})},off:function(element,horizontal){horizontal?dom.removeEventListener(element,"focus",centerOnFocusHorizontal,{capture:!0,passive:!0}):dom.removeEventListener(element,"focus",centerOnFocusVertical,{capture:!0,passive:!0})}},toCenter:toCenter,toStart:toStart}});
|
||||
define(["focusManager","dom","scrollStyles"],function(focusManager,dom){"use strict";function getBoundingClientRect(elem){return elem.getBoundingClientRect?elem.getBoundingClientRect():{top:0,left:0}}function getPosition(scrollContainer,item,horizontal){var slideeOffset=getBoundingClientRect(scrollContainer),itemOffset=getBoundingClientRect(item),offset=horizontal?itemOffset.left-slideeOffset.left:itemOffset.top-slideeOffset.top,size=horizontal?itemOffset.width:itemOffset.height;size||0===size||(size=item[horizontal?"offsetWidth":"offsetHeight"]);var currentStart=horizontal?scrollContainer.scrollLeft:scrollContainer.scrollTop;offset+=currentStart;var frameSize=horizontal?scrollContainer.offsetWidth:scrollContainer.offsetHeight,currentEnd=currentStart+frameSize,isVisible=offset>=currentStart&&offset+size<=currentEnd;return{start:offset,center:offset-frameSize/2+size/2,end:offset-frameSize+size,size:size,isVisible:isVisible}}function toCenter(container,elem,horizontal,skipWhenVisible){var pos=getPosition(container,elem,horizontal);skipWhenVisible&&pos.isVisible||(container.scrollTo?horizontal?container.scrollTo(pos.center,0):container.scrollTo(0,pos.center):horizontal?container.scrollLeft=Math.round(pos.center):container.scrollTop=Math.round(pos.center))}function toStart(container,elem,horizontal,skipWhenVisible){var pos=getPosition(container,elem,horizontal);skipWhenVisible&&pos.isVisible||(container.scrollTo?horizontal?container.scrollTo(pos.start,0):container.scrollTo(0,pos.start):horizontal?container.scrollLeft=Math.round(pos.start):container.scrollTop=Math.round(pos.start))}function centerOnFocus(e,scrollSlider,horizontal){var focused=focusManager.focusableParent(e.target);focused&&toCenter(scrollSlider,focused,horizontal)}function centerOnFocusHorizontal(e){centerOnFocus(e,this,!0)}function centerOnFocusVertical(e){centerOnFocus(e,this,!1)}return{getPosition:getPosition,centerFocus:{on:function(element,horizontal){horizontal?dom.addEventListener(element,"focus",centerOnFocusHorizontal,{capture:!0,passive:!0}):dom.addEventListener(element,"focus",centerOnFocusVertical,{capture:!0,passive:!0})},off:function(element,horizontal){horizontal?dom.removeEventListener(element,"focus",centerOnFocusHorizontal,{capture:!0,passive:!0}):dom.removeEventListener(element,"focus",centerOnFocusVertical,{capture:!0,passive:!0})}},toCenter:toCenter,toStart:toStart}});
|
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,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "Version:",
|
||||
"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.",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "Channels:",
|
||||
"ChannelNameOnly": "Channel {0} only",
|
||||
"Anytime": "Anytime",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "Around {0}",
|
||||
"All": "All",
|
||||
"AllChannels": "All channels",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "Sync to:",
|
||||
"Next": "Next",
|
||||
"LabelSource": "Source:",
|
||||
"LabelVersion": "Version:",
|
||||
"AllLanguages": "All languages",
|
||||
"Previous": "Previous",
|
||||
"HeaderNextUp": "Next Up",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "Version:",
|
||||
"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.",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "Channels:",
|
||||
"ChannelNameOnly": "Channel {0} only",
|
||||
"Anytime": "Anytime",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "Around {0}",
|
||||
"All": "All",
|
||||
"AllChannels": "All channels",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "Sync to:",
|
||||
"Next": "Next",
|
||||
"LabelSource": "Source:",
|
||||
"LabelVersion": "Version:",
|
||||
"AllLanguages": "All languages",
|
||||
"Previous": "Previous",
|
||||
"HeaderNextUp": "Next Up",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "Version:",
|
||||
"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.",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "Channels:",
|
||||
"ChannelNameOnly": "Channel {0} only",
|
||||
"Anytime": "Anytime",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "Around {0}",
|
||||
"All": "All",
|
||||
"AllChannels": "All channels",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "Sync to:",
|
||||
"Next": "Next",
|
||||
"LabelSource": "Source:",
|
||||
"LabelVersion": "Version:",
|
||||
"AllLanguages": "All languages",
|
||||
"Previous": "Previous",
|
||||
"HeaderNextUp": "Next Up",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "Version:",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "Activa aquesta funcionalitat amb un \u00fanic pagament, o amb una subscripci\u00f3 activa d'Emby Premiere.",
|
||||
"MessageUnlockAppWithSupporter": "Activa aquesta funcionalitat amb una subscripci\u00f3 activa d'Emby Premiere.",
|
||||
"MessageToValidateSupporter": "Si tens una subscripci\u00f3 activa d'Emby Premiere assegura't que l'has configurat al teu tauler de control de l'Emby Server, on pots accedir clicant a l'opci\u00f3 d'Emby Premiere al men\u00fa principal.",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "Canals:",
|
||||
"ChannelNameOnly": "Channel {0} only",
|
||||
"Anytime": "Anytime",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "Cap a les {0}",
|
||||
"All": "All",
|
||||
"AllChannels": "Tots els canals",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "Sync to:",
|
||||
"Next": "Next",
|
||||
"LabelSource": "Source:",
|
||||
"LabelVersion": "Version:",
|
||||
"AllLanguages": "All languages",
|
||||
"Previous": "Previous",
|
||||
"HeaderNextUp": "A continuaci\u00f3",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "Version:",
|
||||
"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.",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "Kan\u00e1ly:",
|
||||
"ChannelNameOnly": "Kan\u00e1l {0} jen",
|
||||
"Anytime": "Kdykoliv",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "Okolo {0}",
|
||||
"All": "V\u0161e",
|
||||
"AllChannels": "V\u0161echny kan\u00e1ly",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "Sync do:",
|
||||
"Next": "Dal\u0161\u00ed",
|
||||
"LabelSource": "Zdroj:",
|
||||
"LabelVersion": "Version:",
|
||||
"AllLanguages": "V\u0161echny jazyky",
|
||||
"Previous": "P\u0159edchoz\u00ed",
|
||||
"HeaderNextUp": "Nadch\u00e1zej\u00edc\u00ed",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "Version:",
|
||||
"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.",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "Kanaler:",
|
||||
"ChannelNameOnly": "Udelukkende kanal {0}",
|
||||
"Anytime": "Altid",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "Omkring {0}",
|
||||
"All": "All",
|
||||
"AllChannels": "Alle kanaler",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "Synkroniser til:",
|
||||
"Next": "Next",
|
||||
"LabelSource": "Source:",
|
||||
"LabelVersion": "Version:",
|
||||
"AllLanguages": "All languages",
|
||||
"Previous": "Previous",
|
||||
"HeaderNextUp": "Next Up",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "Version:",
|
||||
"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).",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "Kan\u00e4le:",
|
||||
"ChannelNameOnly": "Nur Kanal {0}",
|
||||
"Anytime": "Jederzeit",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "Um {0}",
|
||||
"All": "Alle",
|
||||
"AllChannels": "Alle Kan\u00e4le:",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "Synchronisiere mit:",
|
||||
"Next": "N\u00e4chstes",
|
||||
"LabelSource": "Quelle:",
|
||||
"LabelVersion": "Version:",
|
||||
"AllLanguages": "Alle Sprachen",
|
||||
"Previous": "Vorheriges",
|
||||
"HeaderNextUp": "Als N\u00e4chstes",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "\u0388\u03ba\u03b4\u03bf\u03c3\u03b7:",
|
||||
"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": "\u0391\u03bd \u03ad\u03c7\u03b5\u03c4\u03b5 \u03b5\u03bd\u03b5\u03c1\u03b3\u03ae \u03c3\u03c5\u03bd\u03b4\u03c1\u03bf\u03bc\u03ae Emby Premiere, \u03b2\u03b5\u03b2\u03b1\u03b9\u03c9\u03b8\u03b5\u03af\u03c4\u03b5 \u03cc\u03c4\u03b9 \u03ad\u03c7\u03b5\u03c4\u03b5 \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9 \u03c4\u03bf Emby Premiere \u03c3\u03c4\u03bf\u03bd \u03c0\u03af\u03bd\u03b1\u03ba\u03b1 \u03b5\u03bb\u03ad\u03b3\u03c7\u03bf\u03c5 \u03c4\u03bf\u03c5 Emby Server, \u03c3\u03c4\u03bf\u03bd \u03bf\u03c0\u03bf\u03af\u03bf \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03ad\u03c7\u03b5\u03c4\u03b5 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03ba\u03ac\u03bd\u03bf\u03bd\u03c4\u03b1\u03c2 \u03ba\u03bb\u03b9\u03ba \u03c3\u03c4\u03bf Emby Premiere \u03c3\u03c4\u03bf \u03ba\u03cd\u03c1\u03b9\u03bf \u03bc\u03b5\u03bd\u03bf\u03cd.",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "\u039a\u03b1\u03bd\u03ac\u03bb\u03b9\u03b1:",
|
||||
"ChannelNameOnly": "\u039c\u03cc\u03bd\u03bf \u03c4\u03bf {0} \u03ba\u03b1\u03bd\u03ac\u03bb\u03b9",
|
||||
"Anytime": "\u039f\u03c0\u03bf\u03c4\u03b5\u03b4\u03ae\u03c0\u03bf\u03c4\u03b5",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "\u03a0\u03b5\u03c1\u03af\u03c0\u03bf\u03c5 {0}",
|
||||
"All": "\u038c\u03bb\u03b1",
|
||||
"AllChannels": "\u038c\u03bb\u03b1 \u03c4\u03b1 \u03ba\u03b1\u03bd\u03ac\u03bb\u03b9\u03b1",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "\u03a3\u03c5\u03b3\u03c7\u03c1\u03bf\u03bd\u03b9\u03c3\u03bc\u03cc\u03c2 \u03c3\u03b5:",
|
||||
"Next": "\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf",
|
||||
"LabelSource": "\u03a0\u03b7\u03b3\u03ae:",
|
||||
"LabelVersion": "\u0388\u03ba\u03b4\u03bf\u03c3\u03b7:",
|
||||
"AllLanguages": "\u038c\u03bb\u03b5\u03c2 \u03bf\u03b9 \u03b3\u03bb\u03ce\u03c3\u03c3\u03b5\u03c2",
|
||||
"Previous": "\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf",
|
||||
"HeaderNextUp": "\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf \u03b3\u03b9\u03b1 \u03b1\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "Version:",
|
||||
"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.",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "Channels:",
|
||||
"ChannelNameOnly": "Channel {0} only",
|
||||
"Anytime": "Anytime",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "Around {0}",
|
||||
"All": "All",
|
||||
"AllChannels": "All channels",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "Sync to:",
|
||||
"Next": "Next",
|
||||
"LabelSource": "Source:",
|
||||
"LabelVersion": "Version:",
|
||||
"AllLanguages": "All languages",
|
||||
"Previous": "Previous",
|
||||
"HeaderNextUp": "Next Up",
|
||||
|
@ -334,6 +334,7 @@
|
||||
"LabelChannels": "Channels:",
|
||||
"ChannelNameOnly": "Channel {0} only",
|
||||
"Anytime": "Anytime",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "Around {0}",
|
||||
"All": "All",
|
||||
"AllChannels": "All channels",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "Version:",
|
||||
"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.",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "Channels:",
|
||||
"ChannelNameOnly": "Channel {0} only",
|
||||
"Anytime": "Anytime",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "Around {0}",
|
||||
"All": "All",
|
||||
"AllChannels": "All channels",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "Sync to:",
|
||||
"Next": "Next",
|
||||
"LabelSource": "Source:",
|
||||
"LabelVersion": "Version:",
|
||||
"AllLanguages": "All languages",
|
||||
"Previous": "Previous",
|
||||
"HeaderNextUp": "Next Up",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "Versi\u00f3n:",
|
||||
"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.",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "Canales:",
|
||||
"ChannelNameOnly": "Canal {0} solamente",
|
||||
"Anytime": "En cualquier momento",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "Alrededor de {0}",
|
||||
"All": "Todo",
|
||||
"AllChannels": "Todos los canales",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "Sincronizar con:",
|
||||
"Next": "Siguiente",
|
||||
"LabelSource": "Fuente:",
|
||||
"LabelVersion": "Versi\u00f3n:",
|
||||
"AllLanguages": "Todos los idiomas",
|
||||
"Previous": "Anterior",
|
||||
"HeaderNextUp": "A Continuaci\u00f3n",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "Version:",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "Desbloquea esta caracter\u00edstica con una peque\u00f1a compra una vez o con una suscripci\u00f3n a Emby Premiere.",
|
||||
"MessageUnlockAppWithSupporter": "Desbloquea esta caracter\u00edstica con una suscripci\u00f3n a Emby Premiere.",
|
||||
"MessageToValidateSupporter": "Si tienes una suscripci\u00f3n a Emby Premiere aseg\u00farate de que la has configurado en el Panel de Control de tu servidor Emby en Ayuda -> Emby Premiere.",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "Canales",
|
||||
"ChannelNameOnly": "Canal {0} solo",
|
||||
"Anytime": "Anytime",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "Around {0}",
|
||||
"All": "Todo",
|
||||
"AllChannels": "Todos los canales",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "Sincronizar en:",
|
||||
"Next": "Siguiente",
|
||||
"LabelSource": "Source:",
|
||||
"LabelVersion": "Version:",
|
||||
"AllLanguages": "Todos los idiomas",
|
||||
"Previous": "Anterior",
|
||||
"HeaderNextUp": "Siguiendo",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "Version:",
|
||||
"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.",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "Channels:",
|
||||
"ChannelNameOnly": "Channel {0} only",
|
||||
"Anytime": "Anytime",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "Around {0}",
|
||||
"All": "All",
|
||||
"AllChannels": "All channels",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "Sync to:",
|
||||
"Next": "Next",
|
||||
"LabelSource": "Source:",
|
||||
"LabelVersion": "Version:",
|
||||
"AllLanguages": "All languages",
|
||||
"Previous": "Previous",
|
||||
"HeaderNextUp": "Next Up",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "Version:",
|
||||
"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.",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "Channels:",
|
||||
"ChannelNameOnly": "Channel {0} only",
|
||||
"Anytime": "Anytime",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "Around {0}",
|
||||
"All": "All",
|
||||
"AllChannels": "All channels",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "Sync to:",
|
||||
"Next": "Next",
|
||||
"LabelSource": "Source:",
|
||||
"LabelVersion": "Version:",
|
||||
"AllLanguages": "All languages",
|
||||
"Previous": "Previous",
|
||||
"HeaderNextUp": "\u00c0 Suivre",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "Version :",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "D\u00e9verrouillez cette fonctionnalit\u00e9 avec un petit achat unique, ou avec un abonnement Emby Premiere.",
|
||||
"MessageUnlockAppWithSupporter": "D\u00e9verrouillez cette fonctionnalit\u00e9 avec un abonnement Emby Premiere.",
|
||||
"MessageToValidateSupporter": "Si vous avez un abonnement Emby Premiere, veuillez vous assurer que vous avez configur\u00e9 Emby Premiere dans le tableau de bord de votre serveur Emby auquel vous pouvez acc\u00e9der en cliquant sur Emby Premiere dans le menu principal",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "Cha\u00eenes\u00a0:",
|
||||
"ChannelNameOnly": "Seulement la cha\u00eene {0}",
|
||||
"Anytime": "N'importe quand",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "Aux environs de {0}",
|
||||
"All": "Tout",
|
||||
"AllChannels": "Toutes les cha\u00eenes",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "Synchroniser avec :",
|
||||
"Next": "Prochain",
|
||||
"LabelSource": "Source:",
|
||||
"LabelVersion": "Version :",
|
||||
"AllLanguages": "Tous les langages",
|
||||
"Previous": "Pr\u00e9c\u00e9dent",
|
||||
"HeaderNextUp": "En Cours",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "Version:",
|
||||
"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.",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "Channels:",
|
||||
"ChannelNameOnly": "Channel {0} only",
|
||||
"Anytime": "Anytime",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "Around {0}",
|
||||
"All": "All",
|
||||
"AllChannels": "All channels",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "Sync to:",
|
||||
"Next": "Next",
|
||||
"LabelSource": "Source:",
|
||||
"LabelVersion": "Version:",
|
||||
"AllLanguages": "All languages",
|
||||
"Previous": "Previous",
|
||||
"HeaderNextUp": "Next Up",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "Version:",
|
||||
"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.",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "\u05e2\u05e8\u05d5\u05e6\u05d9\u05dd:",
|
||||
"ChannelNameOnly": "\u05e2\u05e8\u05d5\u05e5 {0} \u05d1\u05dc\u05d1\u05d3",
|
||||
"Anytime": "\u05d1\u05db\u05dc \u05e2\u05ea",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "\u05d1\u05e1\u05d1\u05d9\u05d1\u05d5\u05ea {0}",
|
||||
"All": "All",
|
||||
"AllChannels": "\u05db\u05dc \u05d4\u05e2\u05e8\u05d5\u05e6\u05d9\u05dd",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "\u05e1\u05e0\u05db\u05e8\u05df \u05dc:",
|
||||
"Next": "Next",
|
||||
"LabelSource": "Source:",
|
||||
"LabelVersion": "Version:",
|
||||
"AllLanguages": "All languages",
|
||||
"Previous": "Previous",
|
||||
"HeaderNextUp": "Next Up",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "Version:",
|
||||
"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.",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "Kanali:",
|
||||
"ChannelNameOnly": "Kanali {0} samo",
|
||||
"Anytime": "Bilo kada",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "Oko {0}",
|
||||
"All": "All",
|
||||
"AllChannels": "Svi kanali",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "Sinkroniziraj na:",
|
||||
"Next": "Next",
|
||||
"LabelSource": "Source:",
|
||||
"LabelVersion": "Version:",
|
||||
"AllLanguages": "All languages",
|
||||
"Previous": "Previous",
|
||||
"HeaderNextUp": "Next Up",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "Version:",
|
||||
"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.",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "Channels:",
|
||||
"ChannelNameOnly": "Channel {0} only",
|
||||
"Anytime": "Anytime",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "Around {0}",
|
||||
"All": "All",
|
||||
"AllChannels": "All channels",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "Sync to:",
|
||||
"Next": "Next",
|
||||
"LabelSource": "Source:",
|
||||
"LabelVersion": "Version:",
|
||||
"AllLanguages": "All languages",
|
||||
"Previous": "Previous",
|
||||
"HeaderNextUp": "K\u00f6vetkezik",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "Version:",
|
||||
"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.",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "Channels:",
|
||||
"ChannelNameOnly": "Channel {0} only",
|
||||
"Anytime": "Anytime",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "Around {0}",
|
||||
"All": "All",
|
||||
"AllChannels": "All channels",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "Sync to:",
|
||||
"Next": "Next",
|
||||
"LabelSource": "Source:",
|
||||
"LabelVersion": "Version:",
|
||||
"AllLanguages": "All languages",
|
||||
"Previous": "Previous",
|
||||
"HeaderNextUp": "Next Up",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "Version:",
|
||||
"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.",
|
||||
@ -163,7 +162,7 @@
|
||||
"VoiceInput": "Comandi Vocali",
|
||||
"LabelContentType": "Tipo di contenuto:",
|
||||
"LabelPath": "Percorso:",
|
||||
"Playlists": "Playlists",
|
||||
"Playlists": "Playlist",
|
||||
"LabelTitle": "Titolo:",
|
||||
"LabelOriginalTitle": "Titolo originale:",
|
||||
"LabelSortTitle": "Titolo per ordinamento:",
|
||||
@ -172,7 +171,7 @@
|
||||
"LabelStatus": "Stato:",
|
||||
"LabelArtists": "Artisti:",
|
||||
"LabelArtistsHelp": "Separa valori multipli usando ;",
|
||||
"HeaderAlbumArtists": "Album Artists",
|
||||
"HeaderAlbumArtists": "Artisti Album",
|
||||
"LabelAlbumArtists": "Artisti album:",
|
||||
"LabelAlbum": "Album:",
|
||||
"Artists": "Artisti",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "Canali:",
|
||||
"ChannelNameOnly": "Solo il canale {0}",
|
||||
"Anytime": "In qualsiasi momento",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "Circa {0}",
|
||||
"All": "Tutto",
|
||||
"AllChannels": "Tutti i canali",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "Sincronizza su:",
|
||||
"Next": "Prossimo",
|
||||
"LabelSource": "Origine:",
|
||||
"LabelVersion": "Versione:",
|
||||
"AllLanguages": "Tutte le lingue",
|
||||
"Previous": "Precedente",
|
||||
"HeaderNextUp": "Prossimo",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "\u041d\u04b1\u0441\u049b\u0430:",
|
||||
"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.",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "\u0410\u0440\u043d\u0430\u043b\u0430\u0440:",
|
||||
"ChannelNameOnly": "\u0422\u0435\u043a \u049b\u0430\u043d\u0430 {0} \u0430\u0440\u043d\u0430\u0441\u044b",
|
||||
"Anytime": "\u04d8\u0440\u043a\u0435\u0437\u0434\u0435",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "{0} \u0430\u0439\u043d\u0430\u043b\u0430\u0441\u044b\u043d\u0434\u0430",
|
||||
"All": "\u0411\u04d9\u0440\u0456",
|
||||
"AllChannels": "\u0411\u0430\u0440\u043b\u044b\u049b \u0430\u0440\u043d\u0430\u043b\u0430\u0440",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "\u041e\u0441\u044b\u043c\u0435\u043d \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443:",
|
||||
"Next": "\u041a\u0435\u043b\u0435\u0441\u0456",
|
||||
"LabelSource": "\u049a\u0430\u0439\u043d\u0430\u0440 \u043a\u04e9\u0437\u0456:",
|
||||
"LabelVersion": "\u041d\u04b1\u0441\u049b\u0430:",
|
||||
"AllLanguages": "\u0411\u0430\u0440\u043b\u044b\u049b \u0442\u0456\u043b\u0434\u0435\u0440",
|
||||
"Previous": "\u0410\u043b\u0434\u044b\u04a3\u0493\u044b",
|
||||
"HeaderNextUp": "\u041a\u0435\u0437\u0435\u043a\u0442\u0456",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "Version:",
|
||||
"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.",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "Channels:",
|
||||
"ChannelNameOnly": "Channel {0} only",
|
||||
"Anytime": "Anytime",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "Around {0}",
|
||||
"All": "\ubaa8\ub450",
|
||||
"AllChannels": "\ubaa8\ub4e0 \ucc44\ub110",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "\ub3d9\uae30\ud654 \uc7a5\uce58:",
|
||||
"Next": "Next",
|
||||
"LabelSource": "Source:",
|
||||
"LabelVersion": "Version:",
|
||||
"AllLanguages": "\ubaa8\ub4e0 \uc5b8\uc5b4",
|
||||
"Previous": "Previous",
|
||||
"HeaderNextUp": "Next Up",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "Version:",
|
||||
"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.",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "Kanalai:",
|
||||
"ChannelNameOnly": "Kanalas tik {0}",
|
||||
"Anytime": "Bet kada",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "Ma\u017edaug {0}",
|
||||
"All": "All",
|
||||
"AllChannels": "Visi kanalai",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "Sinchronizuoti \u012f:",
|
||||
"Next": "Next",
|
||||
"LabelSource": "Source:",
|
||||
"LabelVersion": "Version:",
|
||||
"AllLanguages": "All languages",
|
||||
"Previous": "Previous",
|
||||
"HeaderNextUp": "Next Up",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "Version:",
|
||||
"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.",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "Channels:",
|
||||
"ChannelNameOnly": "Channel {0} only",
|
||||
"Anytime": "Anytime",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "Around {0}",
|
||||
"All": "All",
|
||||
"AllChannels": "All channels",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "Sync to:",
|
||||
"Next": "Next",
|
||||
"LabelSource": "Source:",
|
||||
"LabelVersion": "Version:",
|
||||
"AllLanguages": "All languages",
|
||||
"Previous": "Previous",
|
||||
"HeaderNextUp": "Next Up",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "Version:",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "L\u00e5s opp denne funksjonen med et engangskj\u00f8p, eller med et aktivt Emby Premiere abonnement.",
|
||||
"MessageUnlockAppWithSupporter": "L\u00e5s opp denne funksjonen med et aktivt Emby Premiere abonnement.",
|
||||
"MessageToValidateSupporter": "Hvis du har et aktivt Emby Premiere-abonnement, m\u00e5 du s\u00f8rge for at du har konfigurert Emby Premiere i Emby Server Dashboard, som du f\u00e5r tilgang til ved \u00e5 klikke Emby Premiere i hovedmenyen.",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "Kanal",
|
||||
"ChannelNameOnly": "Kun kanal {0}",
|
||||
"Anytime": "Enhver tid",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "Rundt {0}",
|
||||
"All": "All",
|
||||
"AllChannels": "Alle kanaler",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "Synkroniser til:",
|
||||
"Next": "Next",
|
||||
"LabelSource": "Source:",
|
||||
"LabelVersion": "Version:",
|
||||
"AllLanguages": "All languages",
|
||||
"Previous": "Previous",
|
||||
"HeaderNextUp": "Neste",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "Version:",
|
||||
"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.",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "Kanalen:",
|
||||
"ChannelNameOnly": "Alleen kanaal {0}",
|
||||
"Anytime": "Op elk moment",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "Rond {0}",
|
||||
"All": "All",
|
||||
"AllChannels": "Alle kanalen",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "Synchroniseer naar:",
|
||||
"Next": "Next",
|
||||
"LabelSource": "Source:",
|
||||
"LabelVersion": "Version:",
|
||||
"AllLanguages": "All languages",
|
||||
"Previous": "Previous",
|
||||
"HeaderNextUp": "Volgende",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "Wersja:",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "Odblokuj t\u0119 funkcj\u0119, za niewielk\u0105 jednorazow\u0105 op\u0142at\u0105 lub przy u\u017cyciu aktywnej subskrypcji Emby Premium.",
|
||||
"MessageUnlockAppWithSupporter": "Odblokuj t\u0119 funkcj\u0119 przy u\u017cyciu subskrypcji Emby Premium.",
|
||||
"MessageToValidateSupporter": "Je\u015bli posiadasz aktywn\u0105 subskrypcj\u0119 Emby Premium, upewnij si\u0119, \u017ce j\u0105 poprawnie skonfigurowa\u0142e\u015b przy pomocy Kokpitu serwera Emby, do kt\u00f3rego mo\u017cesz uzyska\u0107 dost\u0119p, klikaj\u0105c na pozycj\u0119 Premium menu startowego.",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "Kana\u0142y:",
|
||||
"ChannelNameOnly": "Tylko kana\u0142 {0}",
|
||||
"Anytime": "O dowolnej porze",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "Oko\u0142o {0}",
|
||||
"All": "Wszystkie",
|
||||
"AllChannels": "Wszystkie kana\u0142y",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "Synchronizuj do:",
|
||||
"Next": "Nast\u0119pny",
|
||||
"LabelSource": "\u0179r\u00f3d\u0142o:",
|
||||
"LabelVersion": "Wersja:",
|
||||
"AllLanguages": "Wszystkie j\u0119zyki",
|
||||
"Previous": "Poprzedni",
|
||||
"HeaderNextUp": "Do obejrzenia",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "Version:",
|
||||
"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.",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "Canais:",
|
||||
"ChannelNameOnly": "Somente canal {0}",
|
||||
"Anytime": "A qualquer momento",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "Em torno de {0}",
|
||||
"All": "All",
|
||||
"AllChannels": "Todos os canais",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "Sincronizar para:",
|
||||
"Next": "Next",
|
||||
"LabelSource": "Source:",
|
||||
"LabelVersion": "Version:",
|
||||
"AllLanguages": "All languages",
|
||||
"Previous": "Previous",
|
||||
"HeaderNextUp": "Pr\u00f3ximos",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "Version:",
|
||||
"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.",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "Channels:",
|
||||
"ChannelNameOnly": "Channel {0} only",
|
||||
"Anytime": "Anytime",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "Around {0}",
|
||||
"All": "All",
|
||||
"AllChannels": "All channels",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "Sync to:",
|
||||
"Next": "Next",
|
||||
"LabelSource": "Source:",
|
||||
"LabelVersion": "Version:",
|
||||
"AllLanguages": "All languages",
|
||||
"Previous": "Previous",
|
||||
"HeaderNextUp": "Next Up",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "Version:",
|
||||
"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.",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "Channels:",
|
||||
"ChannelNameOnly": "Channel {0} only",
|
||||
"Anytime": "Anytime",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "Around {0}",
|
||||
"All": "All",
|
||||
"AllChannels": "All channels",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "Sync to:",
|
||||
"Next": "Next",
|
||||
"LabelSource": "Source:",
|
||||
"LabelVersion": "Version:",
|
||||
"AllLanguages": "All languages",
|
||||
"Previous": "Previous",
|
||||
"HeaderNextUp": "Next Up",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "\u0412\u0435\u0440\u0441\u0438\u044f:",
|
||||
"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.",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "\u041a\u0430\u043d\u0430\u043b\u044b:",
|
||||
"ChannelNameOnly": "\u0422\u043e\u043b\u044c\u043a\u043e \u043a\u0430\u043d\u0430\u043b {0}",
|
||||
"Anytime": "\u0412 \u043b\u044e\u0431\u043e\u0435 \u0432\u0440\u0435\u043c\u044f",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "\u041e\u043a\u043e\u043b\u043e {0}",
|
||||
"All": "\u0412\u0441\u0435",
|
||||
"AllChannels": "\u0412\u0441\u0435 \u043a\u0430\u043d\u0430\u043b\u044b",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f \u0441:",
|
||||
"Next": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435",
|
||||
"LabelSource": "\u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a:",
|
||||
"LabelVersion": "\u0412\u0435\u0440\u0441\u0438\u044f:",
|
||||
"AllLanguages": "\u0412\u0441\u0435 \u044f\u0437\u044b\u043a\u0438",
|
||||
"Previous": "\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0435\u0435",
|
||||
"HeaderNextUp": "\u041e\u0447\u0435\u0440\u0435\u0434\u043d\u043e\u0435",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "Verzia:",
|
||||
"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.",
|
||||
@ -16,7 +15,7 @@
|
||||
"ItemCount": "{0} polo\u017eiek",
|
||||
"OriginalAirDateValue": "P\u00f4vodn\u00fd d\u00e1tum vysielania: {0}",
|
||||
"EndsAtValue": "Kon\u010d\u00ed o {0}",
|
||||
"HeaderSelectDate": "Select Date",
|
||||
"HeaderSelectDate": "Vyberte d\u00e1tum",
|
||||
"Watched": "Watched",
|
||||
"Played": "Prehran\u00e9",
|
||||
"ButtonOk": "Ok",
|
||||
@ -74,8 +73,8 @@
|
||||
"LabelCollection": "Zbierka:",
|
||||
"Help": "Pomoc",
|
||||
"LabelDisplayMode": "Display mode:",
|
||||
"Desktop": "Desktop",
|
||||
"Mobile": "Mobile \/ Tablet",
|
||||
"Desktop": "Stoln\u00fd po\u010d\u00edta\u010d",
|
||||
"Mobile": "Mobil \/ Tablet",
|
||||
"TV": "TV",
|
||||
"DisplayModeHelp": "Select the type of screen you're running Emby on.",
|
||||
"LabelDisplayLanguage": "Jazyk rozhrania:",
|
||||
@ -98,7 +97,7 @@
|
||||
"LabelName": "Meno:",
|
||||
"NewCollectionNameExample": "Pr\u00edklad: Kolekcia Star Wars",
|
||||
"MessageItemsAdded": "Polo\u017eky pridan\u00e9.",
|
||||
"OptionNew": "New...",
|
||||
"OptionNew": "Nov\u00e9...",
|
||||
"LabelPlaylist": "Playlist:",
|
||||
"AddToPlaylist": "Add to playlist",
|
||||
"HeaderAddToPlaylist": "Add to Playlist",
|
||||
@ -114,7 +113,7 @@
|
||||
"ConfirmDeletion": "Confirm Deletion",
|
||||
"MySubtitles": "Moje titulky",
|
||||
"MessageDownloadQueued": "Download queued.",
|
||||
"EditSubtitles": "Edit subtitles",
|
||||
"EditSubtitles": "Upravi\u0165 titulky",
|
||||
"UnlockGuide": "Unlock Guide",
|
||||
"RefreshMetadata": "Obnovi\u0165 metad\u00e1ta",
|
||||
"ReplaceExistingImages": "Nahradi\u0165 existuj\u00face obr\u00e1zky",
|
||||
@ -127,7 +126,7 @@
|
||||
"HeaderYouSaid": "You Said...",
|
||||
"MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.",
|
||||
"MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.",
|
||||
"ValueDiscNumber": "Disc {0}",
|
||||
"ValueDiscNumber": "Disk {0}",
|
||||
"Unrated": "Unrated",
|
||||
"Favorite": "Ob\u013e\u00faben\u00e9",
|
||||
"Like": "Like",
|
||||
@ -150,7 +149,7 @@
|
||||
"ResumeAt": "Pokra\u010dova\u0165 od {0}",
|
||||
"RemoveFromPlaylist": "Remove from playlist",
|
||||
"RemoveFromCollection": "Odobra\u0165 zo zbierky",
|
||||
"Trailer": "Trailer",
|
||||
"Trailer": "Uk\u00e1\u017eka",
|
||||
"MarkPlayed": "Ozna\u010di\u0165 ako prehran\u00e9",
|
||||
"MarkUnplayed": "Ozna\u010di\u0165 ako neprehran\u00e9",
|
||||
"GroupVersions": "Group versions",
|
||||
@ -207,14 +206,14 @@
|
||||
"LabelAirsBeforeEpisode": "Airs before episode:",
|
||||
"HeaderExternalIds": "External Ids:",
|
||||
"HeaderDisplaySettings": "Display Settings",
|
||||
"LabelDisplayOrder": "Display order:",
|
||||
"LabelDisplayOrder": "Poradie zobrazenia:",
|
||||
"Display": "Display",
|
||||
"Countries": "Krajiny",
|
||||
"Genres": "\u017d\u00e1nre",
|
||||
"Studios": "Studios",
|
||||
"Studios": "\u0160t\u00fadi\u00e1",
|
||||
"Tags": "Tags",
|
||||
"HeaderMetadataSettings": "Nastavenia metad\u00e1t",
|
||||
"People": "People",
|
||||
"People": "\u013dudia",
|
||||
"LabelMetadataDownloadLanguage": "Preferovan\u00fd jazyk:",
|
||||
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
|
||||
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
|
||||
@ -227,8 +226,8 @@
|
||||
"LabelSeasonNumber": "\u010c\u00edslo sez\u00f3ny:",
|
||||
"LabelEpisodeNumber": "\u010c\u00edslo epiz\u00f3dy:",
|
||||
"LabelTrackNumber": "Track number:",
|
||||
"LabelNumber": "Number:",
|
||||
"LabelDiscNumber": "Disc number:",
|
||||
"LabelNumber": "\u010c\u00edslo:",
|
||||
"LabelDiscNumber": "\u010c\u00edslo disku:",
|
||||
"LabelParentNumber": "Parent number:",
|
||||
"SortName": "Sort name",
|
||||
"ReleaseDate": "D\u00e1tum vydania",
|
||||
@ -256,9 +255,9 @@
|
||||
"MessageNoSyncJobsFound": "No downloads found. Create download jobs using the Download buttons found throughout the app.",
|
||||
"MessageNoDownloadsFound": "No offline downloads. Download your media for offline use by clicking Download throughout the app.",
|
||||
"InstallingPackage": "In\u0161talujem {0}",
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"PackageInstallCompleted": "{0} in\u0161tal\u00e1cia dokon\u010den\u00e1.",
|
||||
"PackageInstallFailed": "{0} in\u0161tal\u00e1cia zlyhala.",
|
||||
"PackageInstallCancelled": "{0} in\u0161tal\u00e1cia zru\u0161en\u00e1.",
|
||||
"SeriesYearToPresent": "{0} - Present",
|
||||
"ValueOneItem": "1 polo\u017eka",
|
||||
"ValueOneSong": "1 skladba",
|
||||
@ -280,8 +279,8 @@
|
||||
"Songs": "Skladby",
|
||||
"Books": "Knihy",
|
||||
"HeaderAudioBooks": "Audio knihy",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"HeaderIdentifyItemHelp": "Zadajte jedno alebo viacero krit\u00e9ri\u00ed. Odstr\u00e1nenie krit\u00e9ria zv\u00fd\u0161i po\u010det v\u00fdsledkov.",
|
||||
"PleaseEnterNameOrId": "Zadajte meno alebo extern\u00e9 ID pros\u00edm.",
|
||||
"MessageItemSaved": "Polo\u017eka ulo\u017een\u00e1.",
|
||||
"SearchResults": "V\u00fdsledky vyh\u013ead\u00e1vania",
|
||||
"ServerNameIsRestarting": "Emby Server - {0} sa re\u0161tartuje.",
|
||||
@ -306,8 +305,8 @@
|
||||
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.",
|
||||
"PleaseSelectDeviceToSyncTo": "Please select a device to download to.",
|
||||
"Screenshots": "Screenshots",
|
||||
"MoveRight": "Move right",
|
||||
"MoveLeft": "Move left",
|
||||
"MoveRight": "Posun\u00fa\u0165 vpravo",
|
||||
"MoveLeft": "Posun\u00fa\u0165 v\u013eavo",
|
||||
"ConfirmDeleteImage": "Zmaza\u0165 obr\u00e1zok?",
|
||||
"HeaderEditImages": "Upravi\u0165 obr\u00e1zky",
|
||||
"Settings": "Nastavenia",
|
||||
@ -335,9 +334,10 @@
|
||||
"LabelChannels": "Kan\u00e1ly:",
|
||||
"ChannelNameOnly": "Channel {0} only",
|
||||
"Anytime": "Anytime",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "Okolo {0}",
|
||||
"All": "All",
|
||||
"AllChannels": "All channels",
|
||||
"All": "V\u0161etko",
|
||||
"AllChannels": "V\u0161etky kan\u00e1ly",
|
||||
"LabelRecord": "Record:",
|
||||
"NewEpisodesOnly": "Iba nov\u00e9 epiz\u00f3dy",
|
||||
"AllEpisodes": "V\u0161etky epiz\u00f3dy",
|
||||
@ -365,7 +365,7 @@
|
||||
"HeaderBenefitsEmbyPremiere": "V\u00fdhody Emby Premiere",
|
||||
"ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.",
|
||||
"HeaderTryPlayback": "Try Playback",
|
||||
"HowDidYouPay": "How did you pay?",
|
||||
"HowDidYouPay": "Ako ste platili?",
|
||||
"IHaveEmbyPremiere": "U\u017e m\u00e1m Emby Premiere",
|
||||
"IPurchasedThisApp": "I purchased this app",
|
||||
"ButtonRestorePreviousPurchase": "Obnovi\u0165 n\u00e1kup",
|
||||
@ -373,15 +373,15 @@
|
||||
"ButtonUnlockPrice": "Odomkn\u00fa\u0165 {0}",
|
||||
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
|
||||
"HeaderAlreadyPaid": "Already Paid?",
|
||||
"ButtonPlayOneMinute": "Play One Minute",
|
||||
"PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning",
|
||||
"ButtonPlayOneMinute": "Prehra\u0165 jednu min\u00fatu",
|
||||
"PlaceFavoriteChannelsAtBeginning": "Umiestni\u0165 ob\u013e\u00faben\u00e9 kan\u00e1ly na za\u010diatok",
|
||||
"HeaderUnlockFeature": "Unlock Feature",
|
||||
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||
"HeaderPlayMyMedia": "Play my Media",
|
||||
"HeaderDiscoverEmbyPremiere": "Discover Emby Premiere",
|
||||
"Items": "Items",
|
||||
"OneChannel": "One channel",
|
||||
"Items": "Polo\u017eky",
|
||||
"OneChannel": "Jeden kan\u00e1l",
|
||||
"ConfirmRemoveDownload": "Remove download?",
|
||||
"RemoveDownload": "Remove download",
|
||||
"KeepDownload": "Keep download",
|
||||
@ -396,11 +396,11 @@
|
||||
"SyncJobItemStatusTransferring": "Transferring",
|
||||
"SyncJobItemStatusSynced": "Stiahnut\u00e9",
|
||||
"SyncJobItemStatusFailed": "Failed",
|
||||
"SyncJobItemStatusRemovedFromDevice": "Removed from device",
|
||||
"SyncJobItemStatusRemovedFromDevice": "Odstr\u00e1nen\u00e9 zo zariadenia",
|
||||
"SyncJobItemStatusCancelled": "Zru\u0161en\u00e9",
|
||||
"Retry": "Sk\u00fasi\u0165 znova",
|
||||
"HeaderMyDevice": "Moje zariadenie",
|
||||
"Continue": "Continue",
|
||||
"Continue": "Pokra\u010dova\u0165",
|
||||
"ContinueInSecondsValue": "Continue in {0} seconds.",
|
||||
"HeaderRemoteControl": "\u010eia\u013ekov\u00e9 ovl\u00e1danie",
|
||||
"Disconnect": "Odpoji\u0165",
|
||||
@ -423,12 +423,13 @@
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Pokra\u010dova\u0165 v pozeran\u00ed",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderContinueListening": "Pokra\u010dova\u0165 v po\u010d\u00favan\u00ed",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelSyncTo": "Sync to:",
|
||||
"Next": "\u010eal\u0161ie",
|
||||
"LabelSource": "Zdroj:",
|
||||
"LabelVersion": "Verzia:",
|
||||
"AllLanguages": "V\u0161etky jazyky",
|
||||
"Previous": "Predch\u00e1dzaj\u00face",
|
||||
"HeaderNextUp": "Nasleduje",
|
||||
@ -497,7 +498,7 @@
|
||||
"InterlacedVideoNotSupported": "Interlaced video not supported",
|
||||
"SecondaryAudioNotSupported": "Audio track switching not supported",
|
||||
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
||||
"HeaderEmbyAccountRemoved": "Emby Account Removed",
|
||||
"HeaderEmbyAccountRemoved": "Emby \u00fa\u010det odstr\u00e1nen\u00fd",
|
||||
"MessageEmbyAccontRemoved": "The Emby account has been removed from this user.",
|
||||
"HeaderInvitationSent": "Pozv\u00e1nka odoslan\u00e1",
|
||||
"MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.",
|
||||
@ -526,7 +527,7 @@
|
||||
"SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
|
||||
"HeaderSubtitleSettings": "Nastavenia titulkov",
|
||||
"HeaderSubtitleAppearance": "Vzh\u013ead titulkov",
|
||||
"OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
|
||||
"OnlyForcedSubtitlesHelp": "Bud\u00fa zobrazen\u00e9 iba titulky ozna\u010den\u00e9 ako vyn\u00faten\u00e9.",
|
||||
"AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
|
||||
"NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.",
|
||||
"LabelPreferredSubtitleLanguage": "Preferovan\u00fd jazyk titulkov:",
|
||||
@ -554,8 +555,8 @@
|
||||
"HeaderDownloadSettings": "Nastavenia s\u0165ahovania",
|
||||
"Hide": "Skry\u0165",
|
||||
"HeaderStartNow": "Za\u010da\u0165 teraz",
|
||||
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
||||
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
||||
"HeaderNextVideoPlayingInValue": "\u010eal\u0161ie video sa spust\u00ed o {0}",
|
||||
"HeaderNextEpisodePlayingInValue": "\u010eal\u0161ia epiz\u00f3da sa spust\u00ed o {0}",
|
||||
"HeaderSecondsValue": "{0} sek\u00fand",
|
||||
"AudioBitDepthNotSupported": "Audio bit depth not supported",
|
||||
"VideoProfileNotSupported": "Video profile not supported",
|
||||
@ -578,7 +579,7 @@
|
||||
"Banner": "Banner",
|
||||
"Box": "Box",
|
||||
"BoxRear": "Box (rear)",
|
||||
"Disc": "Disc",
|
||||
"Disc": "Disk",
|
||||
"Logo": "Logo",
|
||||
"Menu": "Menu",
|
||||
"Screenshot": "Sn\u00edmka obrazovky",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "Version:",
|
||||
"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.",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "Channels:",
|
||||
"ChannelNameOnly": "Channel {0} only",
|
||||
"Anytime": "Anytime",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "Around {0}",
|
||||
"All": "All",
|
||||
"AllChannels": "All channels",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "Sync to:",
|
||||
"Next": "Next",
|
||||
"LabelSource": "Source:",
|
||||
"LabelVersion": "Version:",
|
||||
"AllLanguages": "All languages",
|
||||
"Previous": "Previous",
|
||||
"HeaderNextUp": "Next Up",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "Version:",
|
||||
"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.",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "Kanaler:",
|
||||
"ChannelNameOnly": "Endast kanal {0}",
|
||||
"Anytime": "N\u00e4r som helst",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "Runt {0}",
|
||||
"All": "All",
|
||||
"AllChannels": "Alla kanaler",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "Synka till:",
|
||||
"Next": "Next",
|
||||
"LabelSource": "Source:",
|
||||
"LabelVersion": "Version:",
|
||||
"AllLanguages": "All languages",
|
||||
"Previous": "Previous",
|
||||
"HeaderNextUp": "N\u00e4sta p\u00e5 tur",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "Version:",
|
||||
"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.",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "Channels:",
|
||||
"ChannelNameOnly": "Channel {0} only",
|
||||
"Anytime": "Anytime",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "Around {0}",
|
||||
"All": "All",
|
||||
"AllChannels": "All channels",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "Sync to:",
|
||||
"Next": "Next",
|
||||
"LabelSource": "Source:",
|
||||
"LabelVersion": "Version:",
|
||||
"AllLanguages": "All languages",
|
||||
"Previous": "Previous",
|
||||
"HeaderNextUp": "Next Up",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "Version:",
|
||||
"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.",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "Channels:",
|
||||
"ChannelNameOnly": "Channel {0} only",
|
||||
"Anytime": "Anytime",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "Around {0}",
|
||||
"All": "All",
|
||||
"AllChannels": "All channels",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "Sync to:",
|
||||
"Next": "Next",
|
||||
"LabelSource": "Source:",
|
||||
"LabelVersion": "Version:",
|
||||
"AllLanguages": "All languages",
|
||||
"Previous": "Previous",
|
||||
"HeaderNextUp": "Next Up",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "Version:",
|
||||
"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.",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "Channels:",
|
||||
"ChannelNameOnly": "Channel {0} only",
|
||||
"Anytime": "Anytime",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "Around {0}",
|
||||
"All": "All",
|
||||
"AllChannels": "All channels",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "Sync to:",
|
||||
"Next": "Next",
|
||||
"LabelSource": "Source:",
|
||||
"LabelVersion": "Version:",
|
||||
"AllLanguages": "All languages",
|
||||
"Previous": "Previous",
|
||||
"HeaderNextUp": "Next Up",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "Version:",
|
||||
"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.",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "\u9891\u9053\uff1a",
|
||||
"ChannelNameOnly": "\u53ea\u5728\u9891\u9053 {0}",
|
||||
"Anytime": "\u4efb\u4f55\u65f6\u95f4",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "{0} \u5de6\u53f3",
|
||||
"All": "All",
|
||||
"AllChannels": "\u6240\u6709\u9891\u9053",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "\u540c\u6b65\u5230\uff1a",
|
||||
"Next": "Next",
|
||||
"LabelSource": "Source:",
|
||||
"LabelVersion": "Version:",
|
||||
"AllLanguages": "All languages",
|
||||
"Previous": "Previous",
|
||||
"HeaderNextUp": "Next Up",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "Version:",
|
||||
"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.",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "Channels:",
|
||||
"ChannelNameOnly": "Channel {0} only",
|
||||
"Anytime": "Anytime",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "Around {0}",
|
||||
"All": "All",
|
||||
"AllChannels": "All channels",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "Sync to:",
|
||||
"Next": "Next",
|
||||
"LabelSource": "Source:",
|
||||
"LabelVersion": "Version:",
|
||||
"AllLanguages": "All languages",
|
||||
"Previous": "Previous",
|
||||
"HeaderNextUp": "Next Up",
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
"LabelVersion": "Version:",
|
||||
"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.",
|
||||
@ -335,6 +334,7 @@
|
||||
"LabelChannels": "Channels:",
|
||||
"ChannelNameOnly": "Channel {0} only",
|
||||
"Anytime": "Anytime",
|
||||
"AnyLanguage": "Any language",
|
||||
"AroundTime": "Around {0}",
|
||||
"All": "All",
|
||||
"AllChannels": "All channels",
|
||||
@ -429,6 +429,7 @@
|
||||
"LabelSyncTo": "Sync to:",
|
||||
"Next": "Next",
|
||||
"LabelSource": "Source:",
|
||||
"LabelVersion": "Version:",
|
||||
"AllLanguages": "All languages",
|
||||
"Previous": "Previous",
|
||||
"HeaderNextUp": "Next Up",
|
||||
|
@ -2,7 +2,7 @@
|
||||
<button is="paper-icon-button-light" class="btnCancel autoSize" tabindex="-1"><i class="md-icon"></i></button>
|
||||
<h3 class="formDialogHeaderTitle">${Subtitles}</h3>
|
||||
|
||||
<a is="emby-linkbutton" class="button-link btnHelp flex align-items-center" href="https://github.com/MediaBrowser/Wiki/wiki/Subtitles" target="_blank" style="margin-left:auto;margin-right:.5em;padding:.25em;" title="${Help}"><i class="md-icon"></i><span style="margin-left:.25em;">${Help}</span></a>
|
||||
<a is="emby-linkbutton" data-autohide="true" class="button-link btnHelp flex align-items-center" href="https://github.com/MediaBrowser/Wiki/wiki/Subtitles" target="_blank" style="margin-left:auto;margin-right:.5em;padding:.25em;" title="${Help}"><i class="md-icon"></i><span style="margin-left:.25em;">${Help}</span></a>
|
||||
|
||||
</div>
|
||||
<div class="formDialogContent smoothScrollY">
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
4
dashboard-ui/bower_components/howlerjs/dist/howler.min.js
vendored
Normal file
4
dashboard-ui/bower_components/howlerjs/dist/howler.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1 +0,0 @@
|
||||
.dockedtabs-tabs{-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1;display:-webkit-box;display:-webkit-flex;display:flex;padding:.5em 0}.dockedtabs-tab-button{-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;text-transform:none!important;font-size:82%!important;padding:0!important;margin:0!important;text-align:center;border-color:transparent!important;border-width:0!important;font-weight:400!important;display:-webkit-box;display:-webkit-flex;display:flex}.dockedtabs-tab-button-noflex{display:block}.dockedtabs-tab-button-icon{margin-bottom:.25em;font-size:190%}@media all and (max-width:640px){.dockedtab-midsize{display:none!important}}
|
@ -1 +0,0 @@
|
||||
define(["apphost","connectionManager","events","globalize","browser","require","dom","appRouter","emby-tabs"],function(appHost,connectionManager,events,globalize,browser,require,dom,appRouter){"use strict";function render(options){var elem=document.createElement("div");elem.classList.add("hide"),elem.classList.add("dockedtabs"),elem.classList.add("dockedtabs-bottom");var html="";html+=' <div is="emby-tabs" class="dockedtabs-tabs" data-selectionbar="false"> <button is="emby-button" class="dockedtabs-tab-button emby-tab-button emby-tab-button-active" data-index="0"> <div class="dockedtabs-tab-button-foreground emby-button-foreground"><i class="dockedtabs-tab-button-icon md-icon">home</i><div>'+globalize.translate("TabHome")+'</div></div> </button> <button is="emby-button" class="dockedtabs-tab-button emby-tab-button docked-tab-livetv hide" data-index="2"> <div class="dockedtabs-tab-button-foreground emby-button-foreground"><i class="dockedtabs-tab-button-icon md-icon">live_tv</i><div>'+globalize.translate("HeaderLiveTV")+"</div></div> </button>",appHost.supports("sync")&&(html+='<button is="emby-button" class="dockedtabs-tab-button docked-tab-syncdownloads emby-tab-button hide" data-index="3"> <div class="dockedtabs-tab-button-foreground emby-button-foreground"><i class="dockedtabs-tab-button-icon md-icon">file_download</i><div>'+globalize.translate("Downloads")+"</div></div> </button> "),html+='<button is="emby-button" class="dockedtabs-tab-button emby-tab-button" data-index="4"> <div class="dockedtabs-tab-button-foreground emby-button-foreground"><i class="dockedtabs-tab-button-icon md-icon"></i><div>'+globalize.translate("HeaderNowPlaying")+"</div></div> </button> ",html+='<button is="emby-button" class="dockedtabs-tab-button emby-tab-button" data-index="5"> <div class="dockedtabs-tab-button-foreground emby-button-foreground"><i class="dockedtabs-tab-button-icon md-icon">menu</i><div>'+globalize.translate("ButtonMore")+"</div></div> </button> </div>",elem.innerHTML=html;for(var buttons=elem.querySelectorAll(".emby-tab-button"),i=0,length=buttons.length;i<length;i++){var button=buttons[i];button.addEventListener("click",onTabClick)}return addNoFlexClass(buttons),options.appFooter.add(elem),elem}function DockedTabs(options){var self=this;instance=self,self.element=render(options),events.on(connectionManager,"localusersignedin",function(e,user){self.show(),showUserTabs(user,self.element)}),events.on(connectionManager,"localusersignedout",function(){self.hide()}),document.addEventListener("viewshow",onViewShow)}require(["css!./dockedtabs"]);return DockedTabs.prototype.destroy=function(){document.removeEventListener("viewshow",onViewShow),instance=null;var self=this;self.element;self.element=null},DockedTabs.prototype.show=function(){this.element.classList.remove("hide")},DockedTabs.prototype.hide=function(){this.element.classList.add("hide")},DockedTabs});
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -215,10 +215,10 @@
|
||||
"OptionHasThemeVideo": "Theme Video",
|
||||
"TabMovies": "Filmy",
|
||||
"TabStudios": "Studios",
|
||||
"TabTrailers": "Trailers",
|
||||
"TabTrailers": "Uk\u00e1\u017eky",
|
||||
"LabelArtists": "Umelci:",
|
||||
"LabelArtistsHelp": "Odde\u013ete pomocou ;",
|
||||
"HeaderLatestTrailers": "Latest Trailers",
|
||||
"HeaderLatestTrailers": "Najnov\u0161ie uk\u00e1\u017eky",
|
||||
"OptionHasSpecialFeatures": "Special Features",
|
||||
"OptionImdbRating": "Hodnotenie IMDb",
|
||||
"OptionParentalRating": "Parental Rating",
|
||||
@ -377,7 +377,7 @@
|
||||
"OptionWeekly": "T\u00fd\u017edenne",
|
||||
"OptionOnInterval": "On an interval",
|
||||
"OptionOnAppStartup": "Pri spusten\u00ed aplik\u00e1cie",
|
||||
"OptionAfterSystemEvent": "After a system event",
|
||||
"OptionAfterSystemEvent": "Po syst\u00e9movej udalosti",
|
||||
"LabelDay": "De\u0148:",
|
||||
"LabelTime": "\u010cas:",
|
||||
"LabelEvent": "Udalos\u0165:",
|
||||
@ -416,7 +416,7 @@
|
||||
"OptionTvdbRating": "TVDB hodnotenie",
|
||||
"HeaderAddTitles": "Add Titles",
|
||||
"LabelEnableDlnaPlayTo": "Enable DLNA Play To",
|
||||
"LabelEnableDlnaPlayToHelp": "Emby can detect devices within your network and offer the ability to remote control them.",
|
||||
"LabelEnableDlnaPlayToHelp": "Emby dok\u00e1\u017ee objavi\u0165 zariadenia vo va\u0161ej sieti a poskytn\u00fa\u0165 mo\u017enos\u0165 ich dia\u013ekov\u00e9ho ovl\u00e1dania.",
|
||||
"LabelEnableDlnaDebugLogging": "Enable DLNA debug logging",
|
||||
"LabelEnableDlnaDebugLoggingHelp": "This will create large log files and should only be used as needed for troubleshooting purposes.",
|
||||
"LabelEnableDlnaClientDiscoveryInterval": "Client discovery interval (seconds)",
|
||||
@ -447,7 +447,7 @@
|
||||
"LabelPublicHttpsPort": "Verejn\u00fd HTTPS port:",
|
||||
"LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
|
||||
"RequireHttps": "Po\u017eadova\u0165 HTTPS pre extern\u00e9 pripojenia",
|
||||
"RequireHttpsHelp": "If enabled, connections over http will be redirected to https.",
|
||||
"RequireHttpsHelp": "Ak je povolen\u00e9, spojenia cez HTTP bud\u00fa presmerovan\u00e9 na HTTPS.",
|
||||
"LabelHttpsPort": "Lok\u00e1lny HTTPS port:",
|
||||
"LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
|
||||
"LabelEnableAutomaticPortMap": "Povoli\u0165 automatick\u00e9 mapovanie portov",
|
||||
@ -509,7 +509,7 @@
|
||||
"ButtonRetrieveKey": "Z\u00edska\u0165 k\u013e\u00fa\u010d",
|
||||
"LabelSupporterKey": "Emby Premiere key (paste from email):",
|
||||
"LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
|
||||
"MessageInvalidKey": "Emby Premiere key is missing or invalid.",
|
||||
"MessageInvalidKey": "K\u013e\u00fa\u010d k Emby Premiere ch\u00fdba alebo je neplatn\u00fd.",
|
||||
"ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
|
||||
"HeaderDisplaySettings": "Nastavenia zobrazenia",
|
||||
"LabelEnableDlnaServer": "Povoli\u0165 DLNA server",
|
||||
@ -548,8 +548,8 @@
|
||||
"ButtonSearch": "H\u013eada\u0165",
|
||||
"ButtonSettings": "Nastavenia",
|
||||
"Settings": "Nastavenia",
|
||||
"Mute": "Mute",
|
||||
"Unmute": "Unmute",
|
||||
"Mute": "St\u00ed\u0161i\u0165",
|
||||
"Unmute": "Zapn\u00fa\u0165 zvuk",
|
||||
"Subtitles": "Titulky",
|
||||
"Audio": "Audio",
|
||||
"Rewind": "Rewind",
|
||||
|
Loading…
Reference in New Issue
Block a user