mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
3.2.36.13
This commit is contained in:
parent
a353ee8a9f
commit
6ee217dff4
105 changed files with 665 additions and 455 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1 +1 @@
|
||||||
define(["dom","layoutManager","browser","css!./headroom"],function(dom,layoutManager,browser){"use strict";function Debouncer(callback){this.callback=callback,this.ticking=!1}function Headroom(elems,options){options=Object.assign(Headroom.options,options||{}),this.lastKnownScrollY=0,this.elems=elems,this.scroller=options.scroller,this.debouncer=onScroll.bind(this),this.offset=options.offset,this.initialised=!1,this.initialClass=options.initialClass,this.unPinnedClass=options.unPinnedClass,this.pinnedClass=options.pinnedClass,this.state="clear"}function onScroll(){requestAnimationFrame(this.rafCallback||(this.rafCallback=this.update.bind(this)))}var requestAnimationFrame=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame;return Debouncer.prototype={constructor:Debouncer,update:function(){this.callback&&this.callback(),this.ticking=!1},handleEvent:function(){this.ticking||(requestAnimationFrame(this.rafCallback||(this.rafCallback=this.update.bind(this))),this.ticking=!0)}},Headroom.prototype={constructor:Headroom,init:function(){if(browser.supportsCssAnimation()){for(var i=0,length=this.elems.length;i<length;i++)this.elems[i].classList.add(this.initialClass);this.attachEvent()}return this},add:function(elem){browser.supportsCssAnimation()&&(elem.classList.add(this.initialClass),this.elems.push(elem))},remove:function(elem){elem.classList.remove(this.unPinnedClass),elem.classList.remove(this.initialClass),elem.classList.remove(this.pinnedClass);var i=this.elems.indexOf(elem);i!==-1&&this.elems.splice(i,1)},destroy:function(){this.initialised=!1;for(var i=0,length=this.elems.length;i<length;i++){var classList=this.elems[i].classList;classList.remove(this.unPinnedClass),classList.remove(this.initialClass),classList.remove(this.pinnedClass)}var scrollEventName=this.scroller.getScrollEventName?this.scroller.getScrollEventName():"scroll";dom.removeEventListener(this.scroller,scrollEventName,this.debouncer,{capture:!1,passive:!0})},attachEvent:function(){if(!this.initialised){this.lastKnownScrollY=this.getScrollY(),this.initialised=!0;var scrollEventName=this.scroller.getScrollEventName?this.scroller.getScrollEventName():"scroll";dom.addEventListener(this.scroller,scrollEventName,this.debouncer,{capture:!1,passive:!0}),this.update()}},clear:function(){if("clear"!==this.state){this.state="clear";for(var unpinnedClass=this.unPinnedClass,i=(this.pinnedClass,0),length=this.elems.length;i<length;i++){var classList=this.elems[i].classList;classList.remove(unpinnedClass)}}},pin:function(){if("pin"!==this.state){this.state="pin";for(var unpinnedClass=this.unPinnedClass,pinnedClass=this.pinnedClass,i=0,length=this.elems.length;i<length;i++){var classList=this.elems[i].classList;classList.remove(unpinnedClass),classList.add(pinnedClass)}}},unpin:function(){if("unpin"!==this.state){this.state="unpin";for(var unpinnedClass=this.unPinnedClass,i=(this.pinnedClass,0),length=this.elems.length;i<length;i++){var classList=this.elems[i].classList;classList.add(unpinnedClass)}}},getScrollY:function(){var scroller=this.scroller;if(scroller.getScrollPosition)return scroller.getScrollPosition();var pageYOffset=scroller.pageYOffset;if(void 0!==pageYOffset)return pageYOffset;var scrollTop=scroller.scrollTop;return void 0!==scrollTop?scrollTop:(document.documentElement||document.body).scrollTop},shouldUnpin:function(currentScrollY){var scrollingDown=currentScrollY>this.lastKnownScrollY,pastOffset=currentScrollY>=this.offset;return scrollingDown&&pastOffset},shouldPin:function(currentScrollY){var scrollingUp=currentScrollY<this.lastKnownScrollY,pastOffset=currentScrollY<=this.offset;return scrollingUp||pastOffset},update:function(){var currentScrollY=this.getScrollY(),lastKnownScrollY=this.lastKnownScrollY,isTv=layoutManager.tv;if(isTv&¤tScrollY<=70)this.clear();else if(this.shouldUnpin(currentScrollY))this.unpin();else if(this.shouldPin(currentScrollY)){var toleranceExceeded=Math.abs(currentScrollY-lastKnownScrollY)>=10;currentScrollY&&isTv?this.unpin():toleranceExceeded&&this.clear()}else isTv&&this.clear();this.lastKnownScrollY=currentScrollY}},Headroom.options={offset:0,scroller:window,initialClass:"headroom",unPinnedClass:"headroom--unpinned",pinnedClass:"headroom--pinned"},Headroom});
|
define(["dom","layoutManager","browser","css!./headroom"],function(dom,layoutManager,browser){"use strict";function Debouncer(callback){this.callback=callback,this.ticking=!1}function Headroom(elems,options){options=Object.assign(Headroom.options,options||{}),this.lastKnownScrollY=0,this.elems=elems,this.scroller=options.scroller,this.debouncer=onScroll.bind(this),this.offset=options.offset,this.initialised=!1,this.initialClass=options.initialClass,this.unPinnedClass=options.unPinnedClass,this.pinnedClass=options.pinnedClass,this.state="clear"}function onScroll(){requestAnimationFrame(this.rafCallback||(this.rafCallback=this.update.bind(this)))}var requestAnimationFrame=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame;return Debouncer.prototype={constructor:Debouncer,update:function(){this.callback&&this.callback(),this.ticking=!1},handleEvent:function(){this.ticking||(requestAnimationFrame(this.rafCallback||(this.rafCallback=this.update.bind(this))),this.ticking=!0)}},Headroom.prototype={constructor:Headroom,init:function(){if(browser.supportsCssAnimation()){for(var i=0,length=this.elems.length;i<length;i++)this.elems[i].classList.add(this.initialClass);this.attachEvent()}return this},add:function(elem){browser.supportsCssAnimation()&&(elem.classList.add(this.initialClass),this.elems.push(elem))},remove:function(elem){elem.classList.remove(this.unPinnedClass),elem.classList.remove(this.initialClass),elem.classList.remove(this.pinnedClass);var i=this.elems.indexOf(elem);i!==-1&&this.elems.splice(i,1)},destroy:function(){this.initialised=!1;for(var i=0,length=this.elems.length;i<length;i++){var classList=this.elems[i].classList;classList.remove(this.unPinnedClass),classList.remove(this.initialClass),classList.remove(this.pinnedClass)}var scrollEventName=this.scroller.getScrollEventName?this.scroller.getScrollEventName():"scroll";dom.removeEventListener(this.scroller,scrollEventName,this.debouncer,{capture:!1,passive:!0})},attachEvent:function(){if(!this.initialised){this.lastKnownScrollY=this.getScrollY(),this.initialised=!0;var scrollEventName=this.scroller.getScrollEventName?this.scroller.getScrollEventName():"scroll";dom.addEventListener(this.scroller,scrollEventName,this.debouncer,{capture:!1,passive:!0}),this.update()}},clear:function(){if("clear"!==this.state){this.state="clear";for(var unpinnedClass=this.unPinnedClass,i=(this.pinnedClass,0),length=this.elems.length;i<length;i++){var classList=this.elems[i].classList;classList.remove(unpinnedClass)}}},pin:function(){if("pin"!==this.state){this.state="pin";for(var unpinnedClass=this.unPinnedClass,pinnedClass=this.pinnedClass,i=0,length=this.elems.length;i<length;i++){var classList=this.elems[i].classList;classList.remove(unpinnedClass),classList.add(pinnedClass)}}},unpin:function(){if("unpin"!==this.state){this.state="unpin";for(var unpinnedClass=this.unPinnedClass,i=(this.pinnedClass,0),length=this.elems.length;i<length;i++){var classList=this.elems[i].classList;classList.add(unpinnedClass)}}},getScrollY:function(){var scroller=this.scroller;if(scroller.getScrollPosition)return scroller.getScrollPosition();var pageYOffset=scroller.pageYOffset;if(void 0!==pageYOffset)return pageYOffset;var scrollTop=scroller.scrollTop;return void 0!==scrollTop?scrollTop:(document.documentElement||document.body).scrollTop},shouldUnpin:function(currentScrollY){var scrollingDown=currentScrollY>this.lastKnownScrollY,pastOffset=currentScrollY>=this.offset;return scrollingDown&&pastOffset},shouldPin:function(currentScrollY){var scrollingUp=currentScrollY<this.lastKnownScrollY,pastOffset=currentScrollY<=this.offset;return scrollingUp||pastOffset},update:function(){var currentScrollY=this.getScrollY(),lastKnownScrollY=this.lastKnownScrollY,isTv=layoutManager.tv;if(currentScrollY<=(isTv?70:10))this.clear();else if(this.shouldUnpin(currentScrollY))this.unpin();else if(this.shouldPin(currentScrollY)){var toleranceExceeded=Math.abs(currentScrollY-lastKnownScrollY)>=10;currentScrollY&&isTv?this.unpin():toleranceExceeded&&this.clear()}else isTv&&this.clear();this.lastKnownScrollY=currentScrollY}},Headroom.options={offset:0,scroller:window,initialClass:"headroom",unPinnedClass:"headroom--unpinned",pinnedClass:"headroom--pinned"},Headroom});
|
File diff suppressed because one or more lines are too long
|
@ -1 +1 @@
|
||||||
define(["apphost","globalize"],function(appHost,globalize){"use strict";function getDisplayName(item,options){if(!item)throw new Error("null item passed into getDisplayName");options=options||{},"Timer"===item.Type&&(item=item.ProgramInfo||item);var name=("Program"!==item.Type&&"Recording"!==item.Type||!item.IsSeries&&!item.EpisodeTitle?item.Name:item.EpisodeTitle)||"";if("TvChannel"===item.Type)return item.ChannelNumber?item.ChannelNumber+" "+name:name;if("Episode"===item.Type&&0===item.ParentIndexNumber)name=globalize.translate("sharedcomponents#ValueSpecialEpisodeName",name);else if(("Episode"===item.Type||"Program"===item.Type)&&null!=item.IndexNumber&&null!=item.ParentIndexNumber&&options.includeIndexNumber!==!1){var displayIndexNumber=item.IndexNumber,number=displayIndexNumber,nameSeparator=" - ";options.includeParentInfo!==!1?number="S"+item.ParentIndexNumber+":E"+number:nameSeparator=". ",item.IndexNumberEnd&&(displayIndexNumber=item.IndexNumberEnd,number+="-"+displayIndexNumber),number&&(name=name?number+nameSeparator+name:number)}return name}function supportsAddingToCollection(item){var invalidTypes=["Person","Genre","MusicGenre","Studio","GameGenre","BoxSet","Playlist","UserView","CollectionFolder","Audio","Program","Timer","SeriesTimer"];return("Recording"!==item.Type||"Completed"===item.Status)&&(!item.CollectionType&&invalidTypes.indexOf(item.Type)===-1&&"Photo"!==item.MediaType&&!isLocalItem(item))}function supportsAddingToPlaylist(item){return"Program"!==item.Type&&("TvChannel"!==item.Type&&("Timer"!==item.Type&&("SeriesTimer"!==item.Type&&("Photo"!==item.MediaType&&(("Recording"!==item.Type||"Completed"===item.Status)&&(!isLocalItem(item)&&(item.MediaType||item.IsFolder||"Genre"===item.Type||"MusicGenre"===item.Type||"MusicArtist"===item.Type)))))))}function canEdit(user,item){var itemType=item.Type;return"UserRootFolder"!==itemType&&"UserView"!==itemType&&("Program"!==itemType&&(("Recording"!==item.Type||"Completed"===item.Status)&&(!isLocalItem(item)&&user.Policy.IsAdministrator)))}function isLocalItem(item){return!(!item||!item.Id||0!==item.Id.indexOf("local"))}return{getDisplayName:getDisplayName,supportsAddingToCollection:supportsAddingToCollection,supportsAddingToPlaylist:supportsAddingToPlaylist,isLocalItem:isLocalItem,canIdentify:function(user,item){var itemType=item.Type;return!("Movie"!==itemType&&"Trailer"!==itemType&&"Series"!==itemType&&"Game"!==itemType&&"BoxSet"!==itemType&&"Person"!==itemType&&"Book"!==itemType&&"MusicAlbum"!==itemType&&"MusicArtist"!==itemType||!user.Policy.IsAdministrator||isLocalItem(item))},canEdit:canEdit,canEditImages:function(user,item){var itemType=item.Type;return"Photo"!==item.MediaType&&("UserView"===itemType?!!user.Policy.IsAdministrator:("Recording"!==item.Type||"Completed"===item.Status)&&("Timer"!==itemType&&"SeriesTimer"!==itemType&&canEdit(user,item)&&!isLocalItem(item)))},canSync:function(user,item){return!(user&&!user.Policy.EnableContentDownloading)&&(!isLocalItem(item)&&item.SupportsSync)},canShare:function(item,user){return"Program"!==item.Type&&("TvChannel"!==item.Type&&("Timer"!==item.Type&&("SeriesTimer"!==item.Type&&(("Recording"!==item.Type||"Completed"===item.Status)&&(!isLocalItem(item)&&(user.Policy.EnablePublicSharing&&appHost.supports("sharing")))))))},enableDateAddedDisplay:function(item){return!item.IsFolder&&item.MediaType&&"Program"!==item.Type&&"TvChannel"!==item.Type&&"Trailer"!==item.Type},canMarkPlayed:function(item){if("Program"===item.Type)return!1;if("Video"===item.MediaType){if("TvChannel"!==item.Type)return!0}else if("Audio"===item.MediaType){if("AudioPodcast"===item.Type)return!0;if("AudioBook"===item.Type)return!0}return"Series"===item.Type||"Season"===item.Type||"BoxSet"===item.Type||"Game"===item.MediaType||"Book"===item.MediaType||"Recording"===item.MediaType},canRate:function(item){return"Program"!==item.Type&&"Timer"!==item.Type&&"SeriesTimer"!==item.Type},supportsMediaSourceSelection:function(item){return"Video"===item.MediaType&&("TvChannel"!==item.Type&&(!item.SourceType||"Library"===item.SourceType))}}});
|
define(["apphost","globalize"],function(appHost,globalize){"use strict";function getDisplayName(item,options){if(!item)throw new Error("null item passed into getDisplayName");options=options||{},"Timer"===item.Type&&(item=item.ProgramInfo||item);var name=("Program"!==item.Type&&"Recording"!==item.Type||!item.IsSeries&&!item.EpisodeTitle?item.Name:item.EpisodeTitle)||"";if("TvChannel"===item.Type)return item.ChannelNumber?item.ChannelNumber+" "+name:name;if("Episode"===item.Type&&0===item.ParentIndexNumber)name=globalize.translate("sharedcomponents#ValueSpecialEpisodeName",name);else if(("Episode"===item.Type||"Program"===item.Type)&&null!=item.IndexNumber&&null!=item.ParentIndexNumber&&options.includeIndexNumber!==!1){var displayIndexNumber=item.IndexNumber,number=displayIndexNumber,nameSeparator=" - ";options.includeParentInfo!==!1?number="S"+item.ParentIndexNumber+":E"+number:nameSeparator=". ",item.IndexNumberEnd&&(displayIndexNumber=item.IndexNumberEnd,number+="-"+displayIndexNumber),number&&(name=name?number+nameSeparator+name:number)}return name}function supportsAddingToCollection(item){var invalidTypes=["Person","Genre","MusicGenre","Studio","GameGenre","BoxSet","Playlist","UserView","CollectionFolder","Audio","Program","Timer","SeriesTimer"];return("Recording"!==item.Type||"Completed"===item.Status)&&(!item.CollectionType&&invalidTypes.indexOf(item.Type)===-1&&"Photo"!==item.MediaType&&!isLocalItem(item))}function supportsAddingToPlaylist(item){return"Program"!==item.Type&&("TvChannel"!==item.Type&&("Timer"!==item.Type&&("SeriesTimer"!==item.Type&&("Photo"!==item.MediaType&&(("Recording"!==item.Type||"Completed"===item.Status)&&(!isLocalItem(item)&&(item.MediaType||item.IsFolder||"Genre"===item.Type||"MusicGenre"===item.Type||"MusicArtist"===item.Type)))))))}function canEdit(user,item){var itemType=item.Type;return"UserRootFolder"!==itemType&&"UserView"!==itemType&&("Program"!==itemType&&(("Recording"!==item.Type||"Completed"===item.Status)&&(!isLocalItem(item)&&user.Policy.IsAdministrator)))}function isLocalItem(item){return!(!item||!item.Id||0!==item.Id.indexOf("local"))}return{getDisplayName:getDisplayName,supportsAddingToCollection:supportsAddingToCollection,supportsAddingToPlaylist:supportsAddingToPlaylist,isLocalItem:isLocalItem,canIdentify:function(user,item){var itemType=item.Type;return!("Movie"!==itemType&&"Trailer"!==itemType&&"Series"!==itemType&&"Game"!==itemType&&"BoxSet"!==itemType&&"Person"!==itemType&&"Book"!==itemType&&"MusicAlbum"!==itemType&&"MusicArtist"!==itemType||!user.Policy.IsAdministrator||isLocalItem(item))},canEdit:canEdit,canEditImages:function(user,item){var itemType=item.Type;return"Photo"!==item.MediaType&&("UserView"===itemType?!!user.Policy.IsAdministrator:("Recording"!==item.Type||"Completed"===item.Status)&&("Timer"!==itemType&&"SeriesTimer"!==itemType&&canEdit(user,item)&&!isLocalItem(item)))},canSync:function(user,item){return!(user&&!user.Policy.EnableContentDownloading)&&(!isLocalItem(item)&&item.SupportsSync)},canShare:function(item,user){return"Program"!==item.Type&&("TvChannel"!==item.Type&&("Timer"!==item.Type&&("SeriesTimer"!==item.Type&&(("Recording"!==item.Type||"Completed"===item.Status)&&(!isLocalItem(item)&&(user.Policy.EnablePublicSharing&&appHost.supports("sharing")))))))},enableDateAddedDisplay:function(item){return!item.IsFolder&&item.MediaType&&"Program"!==item.Type&&"TvChannel"!==item.Type&&"Trailer"!==item.Type},canMarkPlayed:function(item){if("Program"===item.Type)return!1;if("Video"===item.MediaType){if("TvChannel"!==item.Type)return!0}else if("Audio"===item.MediaType){if("AudioPodcast"===item.Type)return!0;if("AudioBook"===item.Type)return!0}return"Series"===item.Type||"Season"===item.Type||"BoxSet"===item.Type||"Game"===item.MediaType||"Book"===item.MediaType||"Recording"===item.MediaType},canRate:function(item){return"Program"!==item.Type&&"Timer"!==item.Type&&"SeriesTimer"!==item.Type},supportsMediaSourceSelection:function(item){return"Video"===item.MediaType&&("TvChannel"!==item.Type&&(!(!item.MediaSources||1===item.MediaSources.length&&"Placeholder"===item.MediaSources[0].Type)&&(!item.SourceType||"Library"===item.SourceType)))}}});
|
|
@ -1 +1 @@
|
||||||
.nowPlayingBarInfoContainer{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;height:100%;-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1;overflow:hidden}.nowPlayingBar{text-align:center;will-change:transform;contain:layout style;-webkit-transition:-webkit-transform .2s ease-out;-o-transition:transform .2s ease-out;transition:transform .2s ease-out}.nowPlayingBar-hidden{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.nowPlayingBarTop{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;flex-direction:row;-webkit-box-align:center;-webkit-align-items:center;align-items:center;height:4.2em;position:relative;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.mediaButton,.nowPlayingBarUserDataButtons .btnUserItemRating{vertical-align:middle;margin:0;text-align:center}.mediaButton i{height:1em;width:1em;font-size:200%}.nowPlayingBar .nowPlayingImage{background-position:center center;background-repeat:no-repeat;-webkit-background-size:contain;background-size:contain;height:70%;width:4.2em;-webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.2);box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.2);-webkit-flex-shrink:0;flex-shrink:0}.nowPlayingBarText{overflow:hidden;white-space:nowrap;-o-text-overflow:ellipsis;text-overflow:ellipsis;vertical-align:middle;text-align:left;-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1;font-size:92%;margin-right:2.4em;margin-left:1em}.nowPlayingBarCenter{vertical-align:middle;text-align:center;z-index:2;-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;position:absolute}.nowPlayingBarPositionContainer{position:absolute!important;left:0;top:-8px;right:0;z-index:1}.headroom--unpinned .nowPlayingBarPositionContainer,.noMediaProgress .nowPlayingBarPositionContainer{display:none}.nowPlayingBarRight{position:relative;margin:0 .5em 0 auto;z-index:2;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-flex-shrink:0;flex-shrink:0}.nowPlayingBarCurrentTime{vertical-align:middle;text-align:center;display:inline-block;padding-left:1.5em}.nowPlayingBarVolumeSliderContainer{margin-right:2em}.nowPlayingBarUserDataButtons{display:inline-block;margin-left:1em;margin-right:1em}.nowPlayingBarPositionSlider::-webkit-slider-thumb{width:1.2em!important;height:1.2em!important}@media all and (max-width:87.5em){.nowPlayingBarUserDataButtons{display:none}}@media all and (max-width:68.75em){.nowPlayingBar .muteButton,.nowPlayingBar .unmuteButton,.nowPlayingBarVolumeSliderContainer{display:none!important}}@media all and (max-width:50em){.nowPlayingBarCenter{display:none!important}.toggleRepeatButton{display:none}}@media all and (min-width:50em){.nowPlayingBarRight .playPauseButton{display:none}.nowPlayingBarInfoContainer{max-width:40%}}
|
.nowPlayingBarInfoContainer{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;height:100%;-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1;overflow:hidden}.nowPlayingBar{text-align:center;will-change:transform;contain:layout style;-webkit-transition:-webkit-transform .2s ease-out;-o-transition:transform .2s ease-out;transition:transform .2s ease-out}.nowPlayingBar-hidden{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.nowPlayingBarTop{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;flex-direction:row;-webkit-box-align:center;-webkit-align-items:center;align-items:center;height:4.2em;position:relative;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.mediaButton,.nowPlayingBarUserDataButtons .btnUserItemRating{vertical-align:middle;margin:0;text-align:center}.mediaButton{font-size:120%}.nowPlayingBar .nowPlayingImage{background-position:center center;background-repeat:no-repeat;-webkit-background-size:contain;background-size:contain;height:70%;width:4.2em;-webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.2);box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.2);-webkit-flex-shrink:0;flex-shrink:0}.nowPlayingBarText{overflow:hidden;white-space:nowrap;-o-text-overflow:ellipsis;text-overflow:ellipsis;vertical-align:middle;text-align:left;-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1;font-size:92%;margin-right:2.4em;margin-left:1em}.nowPlayingBarCenter{vertical-align:middle;text-align:center;z-index:2;-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;position:absolute}.nowPlayingBarPositionContainer{position:absolute!important;left:0;top:-8px;right:0;z-index:1}.headroom--unpinned .nowPlayingBarPositionContainer,.noMediaProgress .nowPlayingBarPositionContainer{display:none}.nowPlayingBarRight{position:relative;margin:0 .5em 0 auto;z-index:2;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-flex-shrink:0;flex-shrink:0}.nowPlayingBarCurrentTime{vertical-align:middle;text-align:center;display:inline-block;padding-left:1.5em}.nowPlayingBarVolumeSliderContainer{margin-right:2em}.nowPlayingBarUserDataButtons{display:inline-block;margin-left:1em;margin-right:1em}.nowPlayingBarPositionSlider::-webkit-slider-thumb{width:1.2em!important;height:1.2em!important}@media all and (max-width:87.5em){.nowPlayingBarUserDataButtons{display:none}}@media all and (max-width:68.75em){.nowPlayingBar .muteButton,.nowPlayingBar .unmuteButton,.nowPlayingBarVolumeSliderContainer{display:none!important}}@media all and (max-width:50em){.nowPlayingBarCenter{display:none!important}.toggleRepeatButton{display:none}}@media all and (min-width:50em){.nowPlayingBarRight .playPauseButton{display:none}.nowPlayingBarInfoContainer{max-width:40%}}
|
File diff suppressed because one or more lines are too long
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"LabelVersion": "Version:",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"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.",
|
"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.",
|
"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.",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "Voice Input",
|
"VoiceInput": "Voice Input",
|
||||||
"LabelContentType": "Content type:",
|
"LabelContentType": "Content type:",
|
||||||
"LabelPath": "Path:",
|
"LabelPath": "Path:",
|
||||||
|
"Playlists": "Playlists",
|
||||||
"LabelTitle": "Title:",
|
"LabelTitle": "Title:",
|
||||||
"LabelOriginalTitle": "Original title:",
|
"LabelOriginalTitle": "Original title:",
|
||||||
"LabelSortTitle": "Sort title:",
|
"LabelSortTitle": "Sort title:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "Status:",
|
"LabelStatus": "Status:",
|
||||||
"LabelArtists": "Artists:",
|
"LabelArtists": "Artists:",
|
||||||
"LabelArtistsHelp": "Separate multiple using ;",
|
"LabelArtistsHelp": "Separate multiple using ;",
|
||||||
|
"HeaderAlbumArtists": "Album Artists",
|
||||||
"LabelAlbumArtists": "Album artists:",
|
"LabelAlbumArtists": "Album artists:",
|
||||||
"LabelAlbum": "Album:",
|
"LabelAlbum": "Album:",
|
||||||
"Artists": "Artists",
|
"Artists": "Artists",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"LabelVersion": "Version:",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"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.",
|
"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.",
|
"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.",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "Voice Input",
|
"VoiceInput": "Voice Input",
|
||||||
"LabelContentType": "Content type:",
|
"LabelContentType": "Content type:",
|
||||||
"LabelPath": "Path:",
|
"LabelPath": "Path:",
|
||||||
|
"Playlists": "Playlists",
|
||||||
"LabelTitle": "Title:",
|
"LabelTitle": "Title:",
|
||||||
"LabelOriginalTitle": "Original title:",
|
"LabelOriginalTitle": "Original title:",
|
||||||
"LabelSortTitle": "Sort title:",
|
"LabelSortTitle": "Sort title:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "Status:",
|
"LabelStatus": "Status:",
|
||||||
"LabelArtists": "Artists:",
|
"LabelArtists": "Artists:",
|
||||||
"LabelArtistsHelp": "Separate multiple using ;",
|
"LabelArtistsHelp": "Separate multiple using ;",
|
||||||
|
"HeaderAlbumArtists": "Album Artists",
|
||||||
"LabelAlbumArtists": "Album artists:",
|
"LabelAlbumArtists": "Album artists:",
|
||||||
"LabelAlbum": "Album:",
|
"LabelAlbum": "Album:",
|
||||||
"Artists": "Artists",
|
"Artists": "Artists",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"LabelVersion": "Version:",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"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.",
|
"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.",
|
"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.",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "Voice Input",
|
"VoiceInput": "Voice Input",
|
||||||
"LabelContentType": "\u0422\u0438\u043f \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e:",
|
"LabelContentType": "\u0422\u0438\u043f \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e:",
|
||||||
"LabelPath": "\u041f\u044a\u0442:",
|
"LabelPath": "\u041f\u044a\u0442:",
|
||||||
|
"Playlists": "Playlists",
|
||||||
"LabelTitle": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435:",
|
"LabelTitle": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435:",
|
||||||
"LabelOriginalTitle": "\u041e\u0440\u0438\u0433\u0438\u043d\u0430\u043b\u043d\u043e \u0437\u0430\u0433\u043b\u0430\u0432\u0438\u0435:",
|
"LabelOriginalTitle": "\u041e\u0440\u0438\u0433\u0438\u043d\u0430\u043b\u043d\u043e \u0437\u0430\u0433\u043b\u0430\u0432\u0438\u0435:",
|
||||||
"LabelSortTitle": "Sort title:",
|
"LabelSortTitle": "Sort title:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "\u0421\u044a\u0441\u0442\u043e\u044f\u043d\u0438\u0435:",
|
"LabelStatus": "\u0421\u044a\u0441\u0442\u043e\u044f\u043d\u0438\u0435:",
|
||||||
"LabelArtists": "\u0418\u0437\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u0438:",
|
"LabelArtists": "\u0418\u0437\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u0438:",
|
||||||
"LabelArtistsHelp": "\u041e\u0442\u0434\u0435\u043b\u0435\u0442\u0435 \u043d\u044f\u043a\u043e\u043b\u043a\u043e \u0441 ;",
|
"LabelArtistsHelp": "\u041e\u0442\u0434\u0435\u043b\u0435\u0442\u0435 \u043d\u044f\u043a\u043e\u043b\u043a\u043e \u0441 ;",
|
||||||
|
"HeaderAlbumArtists": "Album Artists",
|
||||||
"LabelAlbumArtists": "\u0418\u0437\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u0438 \u043d\u0430 \u0430\u043b\u0431\u0443\u043c\u0430:",
|
"LabelAlbumArtists": "\u0418\u0437\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u0438 \u043d\u0430 \u0430\u043b\u0431\u0443\u043c\u0430:",
|
||||||
"LabelAlbum": "\u0410\u043b\u0431\u0443\u043c:",
|
"LabelAlbum": "\u0410\u043b\u0431\u0443\u043c:",
|
||||||
"Artists": "\u0418\u0437\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u0438",
|
"Artists": "\u0418\u0437\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u0438",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"LabelVersion": "Version:",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Activa aquesta funcionalitat amb un \u00fanic pagament, o amb una subscripci\u00f3 activa d'Emby Premiere.",
|
"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.",
|
"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.",
|
"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.",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "Voice Input",
|
"VoiceInput": "Voice Input",
|
||||||
"LabelContentType": "Tipus de contingut:",
|
"LabelContentType": "Tipus de contingut:",
|
||||||
"LabelPath": "Directori:",
|
"LabelPath": "Directori:",
|
||||||
|
"Playlists": "Playlists",
|
||||||
"LabelTitle": "T\u00edtol:",
|
"LabelTitle": "T\u00edtol:",
|
||||||
"LabelOriginalTitle": "T\u00edtol original:",
|
"LabelOriginalTitle": "T\u00edtol original:",
|
||||||
"LabelSortTitle": "T\u00edtol d'endre\u00e7at:",
|
"LabelSortTitle": "T\u00edtol d'endre\u00e7at:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "Estat:",
|
"LabelStatus": "Estat:",
|
||||||
"LabelArtists": "Artistes:",
|
"LabelArtists": "Artistes:",
|
||||||
"LabelArtistsHelp": "Separa'n varis emprant ;",
|
"LabelArtistsHelp": "Separa'n varis emprant ;",
|
||||||
|
"HeaderAlbumArtists": "Album Artists",
|
||||||
"LabelAlbumArtists": "Album artists:",
|
"LabelAlbumArtists": "Album artists:",
|
||||||
"LabelAlbum": "\u00c0lbum:",
|
"LabelAlbum": "\u00c0lbum:",
|
||||||
"Artists": "Artists",
|
"Artists": "Artists",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"LabelVersion": "Version:",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Odemknout tuto funkci pomoc\u00ed jednor\u00e1zov\u00e9 platby, nebo pomoc\u00ed aktivace p\u0159edplatn\u00e9ho Emby Premiere.",
|
"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.",
|
"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.",
|
"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.",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "Hlasov\u00fd vstup",
|
"VoiceInput": "Hlasov\u00fd vstup",
|
||||||
"LabelContentType": "Typ obsahu:",
|
"LabelContentType": "Typ obsahu:",
|
||||||
"LabelPath": "Cesta k souboru:",
|
"LabelPath": "Cesta k souboru:",
|
||||||
|
"Playlists": "Playlists",
|
||||||
"LabelTitle": "N\u00e1zev:",
|
"LabelTitle": "N\u00e1zev:",
|
||||||
"LabelOriginalTitle": "Origin\u00e1ln\u00ed n\u00e1zev:",
|
"LabelOriginalTitle": "Origin\u00e1ln\u00ed n\u00e1zev:",
|
||||||
"LabelSortTitle": "T\u0159\u00eddit dle n\u00e1zvu:",
|
"LabelSortTitle": "T\u0159\u00eddit dle n\u00e1zvu:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "Stav:",
|
"LabelStatus": "Stav:",
|
||||||
"LabelArtists": "\u00dam\u011blci",
|
"LabelArtists": "\u00dam\u011blci",
|
||||||
"LabelArtistsHelp": "Odd\u011bl pomoc\u00ed ;",
|
"LabelArtistsHelp": "Odd\u011bl pomoc\u00ed ;",
|
||||||
|
"HeaderAlbumArtists": "Album Artists",
|
||||||
"LabelAlbumArtists": "Alba um\u011blce:",
|
"LabelAlbumArtists": "Alba um\u011blce:",
|
||||||
"LabelAlbum": "Album:",
|
"LabelAlbum": "Album:",
|
||||||
"Artists": "Um\u011blci",
|
"Artists": "Um\u011blci",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"LabelVersion": "Version:",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "L\u00e5s op for dette feature med en lille enkeltst\u00e5ende betaling, eller med et aktivt Emby Premiere abonnement.",
|
"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.",
|
"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.",
|
"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.",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "Taleinput",
|
"VoiceInput": "Taleinput",
|
||||||
"LabelContentType": "Indholdstype:",
|
"LabelContentType": "Indholdstype:",
|
||||||
"LabelPath": "Sti:",
|
"LabelPath": "Sti:",
|
||||||
|
"Playlists": "Playlists",
|
||||||
"LabelTitle": "Titel:",
|
"LabelTitle": "Titel:",
|
||||||
"LabelOriginalTitle": "Original titel:",
|
"LabelOriginalTitle": "Original titel:",
|
||||||
"LabelSortTitle": "Sort\u00e9r titel:",
|
"LabelSortTitle": "Sort\u00e9r titel:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "Status:",
|
"LabelStatus": "Status:",
|
||||||
"LabelArtists": "Artister:",
|
"LabelArtists": "Artister:",
|
||||||
"LabelArtistsHelp": "Angiv flere ved at s\u00e6tte ; mellem dem.",
|
"LabelArtistsHelp": "Angiv flere ved at s\u00e6tte ; mellem dem.",
|
||||||
|
"HeaderAlbumArtists": "Album Artists",
|
||||||
"LabelAlbumArtists": "Albumartister:",
|
"LabelAlbumArtists": "Albumartister:",
|
||||||
"LabelAlbum": "Album:",
|
"LabelAlbum": "Album:",
|
||||||
"Artists": "Artists",
|
"Artists": "Artists",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"LabelVersion": "Version:",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Schalte diese Funktion mit einer kleinen einmaligen Geb\u00fchr oder einem aktiven Emby Premium Abo frei.",
|
"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.",
|
"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).",
|
"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).",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "Spracheingabe",
|
"VoiceInput": "Spracheingabe",
|
||||||
"LabelContentType": "Typ des Inhalts:",
|
"LabelContentType": "Typ des Inhalts:",
|
||||||
"LabelPath": "Pfad:",
|
"LabelPath": "Pfad:",
|
||||||
|
"Playlists": "Playlists",
|
||||||
"LabelTitle": "Titel:",
|
"LabelTitle": "Titel:",
|
||||||
"LabelOriginalTitle": "Original Titel:",
|
"LabelOriginalTitle": "Original Titel:",
|
||||||
"LabelSortTitle": "Sortierungs Titel:",
|
"LabelSortTitle": "Sortierungs Titel:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "Status:",
|
"LabelStatus": "Status:",
|
||||||
"LabelArtists": "Interpreten:",
|
"LabelArtists": "Interpreten:",
|
||||||
"LabelArtistsHelp": "Trenne mehrere Eintr\u00e4ge durch ;",
|
"LabelArtistsHelp": "Trenne mehrere Eintr\u00e4ge durch ;",
|
||||||
|
"HeaderAlbumArtists": "Album Artists",
|
||||||
"LabelAlbumArtists": "Alben Interpreten:",
|
"LabelAlbumArtists": "Alben Interpreten:",
|
||||||
"LabelAlbum": "Album:",
|
"LabelAlbum": "Album:",
|
||||||
"Artists": "Interpreten",
|
"Artists": "Interpreten",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"LabelVersion": "Version:",
|
||||||
"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.",
|
"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.",
|
"MessageUnlockAppWithSupporter": "\u039e\u03b5\u03ba\u03bb\u03b5\u03b9\u03b4\u03ce\u03c3\u03c4\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03bc\u03b5 \u03bc\u03af\u03b1 \u03b5\u03bd\u03b5\u03c1\u03b3\u03ae \u03c3\u03c5\u03bd\u03b4\u03c1\u03bf\u03bc\u03ae \u03c3\u03c4\u03bf Emby Premiere.",
|
||||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
"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.",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "Voice Input",
|
"VoiceInput": "Voice Input",
|
||||||
"LabelContentType": "\u03a4\u03cd\u03c0\u03bf\u03c2 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5:",
|
"LabelContentType": "\u03a4\u03cd\u03c0\u03bf\u03c2 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5:",
|
||||||
"LabelPath": "Path:",
|
"LabelPath": "Path:",
|
||||||
|
"Playlists": "Playlists",
|
||||||
"LabelTitle": "Title:",
|
"LabelTitle": "Title:",
|
||||||
"LabelOriginalTitle": "Original title:",
|
"LabelOriginalTitle": "Original title:",
|
||||||
"LabelSortTitle": "Sort title:",
|
"LabelSortTitle": "Sort title:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7:",
|
"LabelStatus": "\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7:",
|
||||||
"LabelArtists": "\u039a\u03b1\u03bb\u03bb\u03b9\u03c4\u03ad\u03c7\u03bd\u03b5\u03c2:",
|
"LabelArtists": "\u039a\u03b1\u03bb\u03bb\u03b9\u03c4\u03ad\u03c7\u03bd\u03b5\u03c2:",
|
||||||
"LabelArtistsHelp": "Separate multiple using ;",
|
"LabelArtistsHelp": "Separate multiple using ;",
|
||||||
|
"HeaderAlbumArtists": "Album Artists",
|
||||||
"LabelAlbumArtists": "Album artists:",
|
"LabelAlbumArtists": "Album artists:",
|
||||||
"LabelAlbum": "Album:",
|
"LabelAlbum": "Album:",
|
||||||
"Artists": "Artists",
|
"Artists": "Artists",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"LabelVersion": "Version:",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"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.",
|
"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.",
|
"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.",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "Voice Input",
|
"VoiceInput": "Voice Input",
|
||||||
"LabelContentType": "Content type:",
|
"LabelContentType": "Content type:",
|
||||||
"LabelPath": "Path:",
|
"LabelPath": "Path:",
|
||||||
|
"Playlists": "Playlists",
|
||||||
"LabelTitle": "Title:",
|
"LabelTitle": "Title:",
|
||||||
"LabelOriginalTitle": "Original title:",
|
"LabelOriginalTitle": "Original title:",
|
||||||
"LabelSortTitle": "Sort title:",
|
"LabelSortTitle": "Sort title:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "Status:",
|
"LabelStatus": "Status:",
|
||||||
"LabelArtists": "Artists:",
|
"LabelArtists": "Artists:",
|
||||||
"LabelArtistsHelp": "Separate multiple using ;",
|
"LabelArtistsHelp": "Separate multiple using ;",
|
||||||
|
"HeaderAlbumArtists": "Album Artists",
|
||||||
"LabelAlbumArtists": "Album artists:",
|
"LabelAlbumArtists": "Album artists:",
|
||||||
"LabelAlbum": "Album:",
|
"LabelAlbum": "Album:",
|
||||||
"Artists": "Artists",
|
"Artists": "Artists",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"LabelVersion": "Version:",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"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.",
|
"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.",
|
"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.",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "Voice Input",
|
"VoiceInput": "Voice Input",
|
||||||
"LabelContentType": "Content type:",
|
"LabelContentType": "Content type:",
|
||||||
"LabelPath": "Path:",
|
"LabelPath": "Path:",
|
||||||
|
"Playlists": "Playlists",
|
||||||
"LabelTitle": "Title:",
|
"LabelTitle": "Title:",
|
||||||
"LabelOriginalTitle": "Original title:",
|
"LabelOriginalTitle": "Original title:",
|
||||||
"LabelSortTitle": "Sort title:",
|
"LabelSortTitle": "Sort title:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "Status:",
|
"LabelStatus": "Status:",
|
||||||
"LabelArtists": "Artists:",
|
"LabelArtists": "Artists:",
|
||||||
"LabelArtistsHelp": "Separate multiple using ;",
|
"LabelArtistsHelp": "Separate multiple using ;",
|
||||||
|
"HeaderAlbumArtists": "Album Artists",
|
||||||
"LabelAlbumArtists": "Album artists:",
|
"LabelAlbumArtists": "Album artists:",
|
||||||
"LabelAlbum": "Album:",
|
"LabelAlbum": "Album:",
|
||||||
"Artists": "Artists",
|
"Artists": "Artists",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"LabelVersion": "Versi\u00f3n:",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Desbloquee esta caracter\u00edstica con una peque\u00f1a compra \u00fanica, o con una suscripci\u00f3n activa de Emby Premier.",
|
"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.",
|
"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.",
|
"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.",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "Entrada de Voz",
|
"VoiceInput": "Entrada de Voz",
|
||||||
"LabelContentType": "Tipo de Contenido:",
|
"LabelContentType": "Tipo de Contenido:",
|
||||||
"LabelPath": "Ruta:",
|
"LabelPath": "Ruta:",
|
||||||
|
"Playlists": "Listas de reproducci\u00f3n",
|
||||||
"LabelTitle": "Titulo:",
|
"LabelTitle": "Titulo:",
|
||||||
"LabelOriginalTitle": "Titulo original:",
|
"LabelOriginalTitle": "Titulo original:",
|
||||||
"LabelSortTitle": "Titulo para ordenar:",
|
"LabelSortTitle": "Titulo para ordenar:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "Estado:",
|
"LabelStatus": "Estado:",
|
||||||
"LabelArtists": "Artistas:",
|
"LabelArtists": "Artistas:",
|
||||||
"LabelArtistsHelp": "Separar m\u00faltiples empleando:",
|
"LabelArtistsHelp": "Separar m\u00faltiples empleando:",
|
||||||
|
"HeaderAlbumArtists": "Artistas del \u00e1lbum",
|
||||||
"LabelAlbumArtists": "Artistas del \u00e1lbum:",
|
"LabelAlbumArtists": "Artistas del \u00e1lbum:",
|
||||||
"LabelAlbum": "\u00c1lbum",
|
"LabelAlbum": "\u00c1lbum",
|
||||||
"Artists": "Artistas",
|
"Artists": "Artistas",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"LabelVersion": "Version:",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Desbloquea esta caracter\u00edstica con una peque\u00f1a compra una vez o con una suscripci\u00f3n a Emby Premiere.",
|
"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.",
|
"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.",
|
"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.",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "Entrada de voz",
|
"VoiceInput": "Entrada de voz",
|
||||||
"LabelContentType": "Tipo de contenido:",
|
"LabelContentType": "Tipo de contenido:",
|
||||||
"LabelPath": "Ruta:",
|
"LabelPath": "Ruta:",
|
||||||
|
"Playlists": "Playlists",
|
||||||
"LabelTitle": "T\u00edtulo",
|
"LabelTitle": "T\u00edtulo",
|
||||||
"LabelOriginalTitle": "T\u00edtulo original",
|
"LabelOriginalTitle": "T\u00edtulo original",
|
||||||
"LabelSortTitle": "Clasificar por t\u00edtulo:",
|
"LabelSortTitle": "Clasificar por t\u00edtulo:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "Estado:",
|
"LabelStatus": "Estado:",
|
||||||
"LabelArtists": "Artistas:",
|
"LabelArtists": "Artistas:",
|
||||||
"LabelArtistsHelp": "Separar multiples usando ;",
|
"LabelArtistsHelp": "Separar multiples usando ;",
|
||||||
|
"HeaderAlbumArtists": "Album Artists",
|
||||||
"LabelAlbumArtists": "Artistas de los \u00e1lbumes",
|
"LabelAlbumArtists": "Artistas de los \u00e1lbumes",
|
||||||
"LabelAlbum": "\u00c1lbum",
|
"LabelAlbum": "\u00c1lbum",
|
||||||
"Artists": "Artistas",
|
"Artists": "Artistas",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"LabelVersion": "Version:",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"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.",
|
"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.",
|
"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.",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "Voice Input",
|
"VoiceInput": "Voice Input",
|
||||||
"LabelContentType": "Content type:",
|
"LabelContentType": "Content type:",
|
||||||
"LabelPath": "Path:",
|
"LabelPath": "Path:",
|
||||||
|
"Playlists": "Playlists",
|
||||||
"LabelTitle": "Title:",
|
"LabelTitle": "Title:",
|
||||||
"LabelOriginalTitle": "Original title:",
|
"LabelOriginalTitle": "Original title:",
|
||||||
"LabelSortTitle": "Sort title:",
|
"LabelSortTitle": "Sort title:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "Status:",
|
"LabelStatus": "Status:",
|
||||||
"LabelArtists": "Artists:",
|
"LabelArtists": "Artists:",
|
||||||
"LabelArtistsHelp": "Separate multiple using ;",
|
"LabelArtistsHelp": "Separate multiple using ;",
|
||||||
|
"HeaderAlbumArtists": "Album Artists",
|
||||||
"LabelAlbumArtists": "Album artists:",
|
"LabelAlbumArtists": "Album artists:",
|
||||||
"LabelAlbum": "Album:",
|
"LabelAlbum": "Album:",
|
||||||
"Artists": "Artists",
|
"Artists": "Artists",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"LabelVersion": "Version:",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "D\u00e9verrouillez cette fonctionnalit\u00e9 avec un petit achat unique ou avec un abonnement Emby Premiere actif.",
|
"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.",
|
"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.",
|
"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.",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "Voice Input",
|
"VoiceInput": "Voice Input",
|
||||||
"LabelContentType": "Content type:",
|
"LabelContentType": "Content type:",
|
||||||
"LabelPath": "Path:",
|
"LabelPath": "Path:",
|
||||||
|
"Playlists": "Playlists",
|
||||||
"LabelTitle": "Title:",
|
"LabelTitle": "Title:",
|
||||||
"LabelOriginalTitle": "Original title:",
|
"LabelOriginalTitle": "Original title:",
|
||||||
"LabelSortTitle": "Sort title:",
|
"LabelSortTitle": "Sort title:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "Status:",
|
"LabelStatus": "Status:",
|
||||||
"LabelArtists": "Artists:",
|
"LabelArtists": "Artists:",
|
||||||
"LabelArtistsHelp": "Separate multiple using ;",
|
"LabelArtistsHelp": "Separate multiple using ;",
|
||||||
|
"HeaderAlbumArtists": "Album Artists",
|
||||||
"LabelAlbumArtists": "Album artists:",
|
"LabelAlbumArtists": "Album artists:",
|
||||||
"LabelAlbum": "Album:",
|
"LabelAlbum": "Album:",
|
||||||
"Artists": "Artists",
|
"Artists": "Artists",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"LabelVersion": "Version :",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "D\u00e9verrouillez cette fonctionnalit\u00e9 avec un petit achat unique, ou avec un abonnement Emby Premiere.",
|
"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.",
|
"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",
|
"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",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "Entr\u00e9e vocale",
|
"VoiceInput": "Entr\u00e9e vocale",
|
||||||
"LabelContentType": "Type de contenu :",
|
"LabelContentType": "Type de contenu :",
|
||||||
"LabelPath": "Chemin\u00a0:",
|
"LabelPath": "Chemin\u00a0:",
|
||||||
|
"Playlists": "Listes de lecture",
|
||||||
"LabelTitle": "Titre\u00a0:",
|
"LabelTitle": "Titre\u00a0:",
|
||||||
"LabelOriginalTitle": "Titre original\u00a0:",
|
"LabelOriginalTitle": "Titre original\u00a0:",
|
||||||
"LabelSortTitle": "Titre de tri\u00a0:",
|
"LabelSortTitle": "Titre de tri\u00a0:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "\u00c9tat\u00a0:",
|
"LabelStatus": "\u00c9tat\u00a0:",
|
||||||
"LabelArtists": "Artistes\u00a0:",
|
"LabelArtists": "Artistes\u00a0:",
|
||||||
"LabelArtistsHelp": "S\u00e9parer les diff\u00e9rents \u00e9l\u00e9ments par ;",
|
"LabelArtistsHelp": "S\u00e9parer les diff\u00e9rents \u00e9l\u00e9ments par ;",
|
||||||
|
"HeaderAlbumArtists": "Artistes de l'album",
|
||||||
"LabelAlbumArtists": "Artistes de l'album :",
|
"LabelAlbumArtists": "Artistes de l'album :",
|
||||||
"LabelAlbum": "Album :",
|
"LabelAlbum": "Album :",
|
||||||
"Artists": "Artistes",
|
"Artists": "Artistes",
|
||||||
|
@ -613,5 +616,5 @@
|
||||||
"LabelAudio": "Audio:",
|
"LabelAudio": "Audio:",
|
||||||
"LabelVideo": "Vid\u00e9o:",
|
"LabelVideo": "Vid\u00e9o:",
|
||||||
"LabelSubtitles": "Sous-titres:",
|
"LabelSubtitles": "Sous-titres:",
|
||||||
"Off": "Arr\u00eat"
|
"Off": "D\u00e9sactiv\u00e9s"
|
||||||
}
|
}
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"LabelVersion": "Version:",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"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.",
|
"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.",
|
"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.",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "Voice Input",
|
"VoiceInput": "Voice Input",
|
||||||
"LabelContentType": "Date Art:",
|
"LabelContentType": "Date Art:",
|
||||||
"LabelPath": "Path:",
|
"LabelPath": "Path:",
|
||||||
|
"Playlists": "Playlists",
|
||||||
"LabelTitle": "Title:",
|
"LabelTitle": "Title:",
|
||||||
"LabelOriginalTitle": "Original title:",
|
"LabelOriginalTitle": "Original title:",
|
||||||
"LabelSortTitle": "Sort title:",
|
"LabelSortTitle": "Sort title:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "Status:",
|
"LabelStatus": "Status:",
|
||||||
"LabelArtists": "Artist:",
|
"LabelArtists": "Artist:",
|
||||||
"LabelArtistsHelp": "Trenn mehreri iistr\u00e4g dur es ;",
|
"LabelArtistsHelp": "Trenn mehreri iistr\u00e4g dur es ;",
|
||||||
|
"HeaderAlbumArtists": "Album Artists",
|
||||||
"LabelAlbumArtists": "Album artists:",
|
"LabelAlbumArtists": "Album artists:",
|
||||||
"LabelAlbum": "Album:",
|
"LabelAlbum": "Album:",
|
||||||
"Artists": "Artists",
|
"Artists": "Artists",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"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.",
|
"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.",
|
"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.",
|
"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.",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "\u05e7\u05dc\u05d8 \u05e7\u05d5\u05dc\u05d9",
|
"VoiceInput": "\u05e7\u05dc\u05d8 \u05e7\u05d5\u05dc\u05d9",
|
||||||
"LabelContentType": "\u05e1\u05d5\u05d2 \u05d4\u05ea\u05d5\u05db\u05df",
|
"LabelContentType": "\u05e1\u05d5\u05d2 \u05d4\u05ea\u05d5\u05db\u05df",
|
||||||
"LabelPath": "\u05e0\u05ea\u05d9\u05d1:",
|
"LabelPath": "\u05e0\u05ea\u05d9\u05d1:",
|
||||||
|
"Playlists": "Playlists",
|
||||||
"LabelTitle": "\u05db\u05d5\u05ea\u05e8\u05ea:",
|
"LabelTitle": "\u05db\u05d5\u05ea\u05e8\u05ea:",
|
||||||
"LabelOriginalTitle": "\u05db\u05d5\u05ea\u05e8\u05ea \u05de\u05e7\u05d5\u05e8\u05d9\u05ea:",
|
"LabelOriginalTitle": "\u05db\u05d5\u05ea\u05e8\u05ea \u05de\u05e7\u05d5\u05e8\u05d9\u05ea:",
|
||||||
"LabelSortTitle": "\u05de\u05d9\u05d9\u05df \u05db\u05d5\u05ea\u05e8\u05ea:",
|
"LabelSortTitle": "\u05de\u05d9\u05d9\u05df \u05db\u05d5\u05ea\u05e8\u05ea:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "\u05e1\u05d8\u05d8\u05d5\u05e1:",
|
"LabelStatus": "\u05e1\u05d8\u05d8\u05d5\u05e1:",
|
||||||
"LabelArtists": "\u05d0\u05d5\u05de\u05e0\u05d9\u05dd:",
|
"LabelArtists": "\u05d0\u05d5\u05de\u05e0\u05d9\u05dd:",
|
||||||
"LabelArtistsHelp": "\u05d4\u05e4\u05e8\u05d3 \u05de\u05e8\u05d5\u05d1\u05d9\u05dd \u05d1\u05d0\u05de\u05e6\u05e2\u05d5\u05ea;",
|
"LabelArtistsHelp": "\u05d4\u05e4\u05e8\u05d3 \u05de\u05e8\u05d5\u05d1\u05d9\u05dd \u05d1\u05d0\u05de\u05e6\u05e2\u05d5\u05ea;",
|
||||||
|
"HeaderAlbumArtists": "Album Artists",
|
||||||
"LabelAlbumArtists": "\u05d0\u05dc\u05d1\u05d5\u05dd \u05d0\u05d5\u05de\u05e0\u05d9\u05dd:",
|
"LabelAlbumArtists": "\u05d0\u05dc\u05d1\u05d5\u05dd \u05d0\u05d5\u05de\u05e0\u05d9\u05dd:",
|
||||||
"LabelAlbum": "\u05d0\u05dc\u05d1\u05d5\u05dd:",
|
"LabelAlbum": "\u05d0\u05dc\u05d1\u05d5\u05dd:",
|
||||||
"Artists": "Artists",
|
"Artists": "Artists",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"LabelVersion": "Version:",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Otklju\u010daj ovu mogu\u0107nost s malom jednokratnom kupnjom ili s aktivnom pretplatom Emby Premijere.",
|
"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.",
|
"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.",
|
"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.",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "Ulazni glas",
|
"VoiceInput": "Ulazni glas",
|
||||||
"LabelContentType": "Tip sadr\u017eaja:",
|
"LabelContentType": "Tip sadr\u017eaja:",
|
||||||
"LabelPath": "Putanja:",
|
"LabelPath": "Putanja:",
|
||||||
|
"Playlists": "Playlists",
|
||||||
"LabelTitle": "Naslov:",
|
"LabelTitle": "Naslov:",
|
||||||
"LabelOriginalTitle": "Originalni naslov:",
|
"LabelOriginalTitle": "Originalni naslov:",
|
||||||
"LabelSortTitle": "Naziv vrste:",
|
"LabelSortTitle": "Naziv vrste:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "Status:",
|
"LabelStatus": "Status:",
|
||||||
"LabelArtists": "Izvo\u0111a\u010di:",
|
"LabelArtists": "Izvo\u0111a\u010di:",
|
||||||
"LabelArtistsHelp": "Odvoji vi\u0161estruko koriste\u0107i ;",
|
"LabelArtistsHelp": "Odvoji vi\u0161estruko koriste\u0107i ;",
|
||||||
|
"HeaderAlbumArtists": "Album Artists",
|
||||||
"LabelAlbumArtists": "Izvo\u0111a\u010di albuma",
|
"LabelAlbumArtists": "Izvo\u0111a\u010di albuma",
|
||||||
"LabelAlbum": "Album:",
|
"LabelAlbum": "Album:",
|
||||||
"Artists": "Artists",
|
"Artists": "Artists",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"LabelVersion": "Version:",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"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.",
|
"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.",
|
"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.",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "Voice Input",
|
"VoiceInput": "Voice Input",
|
||||||
"LabelContentType": "Tartalom t\u00edpusa:",
|
"LabelContentType": "Tartalom t\u00edpusa:",
|
||||||
"LabelPath": "\u00datvonal:",
|
"LabelPath": "\u00datvonal:",
|
||||||
|
"Playlists": "Playlists",
|
||||||
"LabelTitle": "C\u00edm:",
|
"LabelTitle": "C\u00edm:",
|
||||||
"LabelOriginalTitle": "Eredeti c\u00edm:",
|
"LabelOriginalTitle": "Eredeti c\u00edm:",
|
||||||
"LabelSortTitle": "ABC szerinti c\u00edm:",
|
"LabelSortTitle": "ABC szerinti c\u00edm:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "St\u00e1tusz:",
|
"LabelStatus": "St\u00e1tusz:",
|
||||||
"LabelArtists": "El\u0151ad\u00f3k:",
|
"LabelArtists": "El\u0151ad\u00f3k:",
|
||||||
"LabelArtistsHelp": "Separate multiple using ;",
|
"LabelArtistsHelp": "Separate multiple using ;",
|
||||||
|
"HeaderAlbumArtists": "Album Artists",
|
||||||
"LabelAlbumArtists": "Album artists:",
|
"LabelAlbumArtists": "Album artists:",
|
||||||
"LabelAlbum": "Album:",
|
"LabelAlbum": "Album:",
|
||||||
"Artists": "Artists",
|
"Artists": "Artists",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"LabelVersion": "Version:",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"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.",
|
"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.",
|
"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.",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "Voice Input",
|
"VoiceInput": "Voice Input",
|
||||||
"LabelContentType": "Tipe konten:",
|
"LabelContentType": "Tipe konten:",
|
||||||
"LabelPath": "Path:",
|
"LabelPath": "Path:",
|
||||||
|
"Playlists": "Playlists",
|
||||||
"LabelTitle": "Title:",
|
"LabelTitle": "Title:",
|
||||||
"LabelOriginalTitle": "Original title:",
|
"LabelOriginalTitle": "Original title:",
|
||||||
"LabelSortTitle": "Sort title:",
|
"LabelSortTitle": "Sort title:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "Status:",
|
"LabelStatus": "Status:",
|
||||||
"LabelArtists": "Artists:",
|
"LabelArtists": "Artists:",
|
||||||
"LabelArtistsHelp": "Separate multiple using ;",
|
"LabelArtistsHelp": "Separate multiple using ;",
|
||||||
|
"HeaderAlbumArtists": "Album Artists",
|
||||||
"LabelAlbumArtists": "Album artists:",
|
"LabelAlbumArtists": "Album artists:",
|
||||||
"LabelAlbum": "Album:",
|
"LabelAlbum": "Album:",
|
||||||
"Artists": "Artists",
|
"Artists": "Artists",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"LabelVersion": "Version:",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Sblocca questa funzionalit\u00e0 con un piccolo acquisto singolo, o con un abbonamento Emby Premiere.",
|
"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",
|
"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.",
|
"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.",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "Comandi Vocali",
|
"VoiceInput": "Comandi Vocali",
|
||||||
"LabelContentType": "Tipo di contenuto:",
|
"LabelContentType": "Tipo di contenuto:",
|
||||||
"LabelPath": "Percorso:",
|
"LabelPath": "Percorso:",
|
||||||
|
"Playlists": "Playlists",
|
||||||
"LabelTitle": "Titolo:",
|
"LabelTitle": "Titolo:",
|
||||||
"LabelOriginalTitle": "Titolo originale:",
|
"LabelOriginalTitle": "Titolo originale:",
|
||||||
"LabelSortTitle": "Titolo per ordinamento:",
|
"LabelSortTitle": "Titolo per ordinamento:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "Stato:",
|
"LabelStatus": "Stato:",
|
||||||
"LabelArtists": "Artisti:",
|
"LabelArtists": "Artisti:",
|
||||||
"LabelArtistsHelp": "Separa valori multipli usando ;",
|
"LabelArtistsHelp": "Separa valori multipli usando ;",
|
||||||
|
"HeaderAlbumArtists": "Album Artists",
|
||||||
"LabelAlbumArtists": "Artisti album:",
|
"LabelAlbumArtists": "Artisti album:",
|
||||||
"LabelAlbum": "Album:",
|
"LabelAlbum": "Album:",
|
||||||
"Artists": "Artisti",
|
"Artists": "Artisti",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"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.",
|
"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.",
|
"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.",
|
"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.",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "\u0414\u0430\u0443\u044b\u0441\u0442\u044b\u049b \u0435\u043d\u0433\u0456\u0437\u0443",
|
"VoiceInput": "\u0414\u0430\u0443\u044b\u0441\u0442\u044b\u049b \u0435\u043d\u0433\u0456\u0437\u0443",
|
||||||
"LabelContentType": "\u041c\u0430\u0437\u043c\u04b1\u043d \u0442\u04af\u0440\u0456:",
|
"LabelContentType": "\u041c\u0430\u0437\u043c\u04b1\u043d \u0442\u04af\u0440\u0456:",
|
||||||
"LabelPath": "\u0416\u043e\u043b\u044b:",
|
"LabelPath": "\u0416\u043e\u043b\u044b:",
|
||||||
|
"Playlists": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0434\u0435\u0440\u0456",
|
||||||
"LabelTitle": "\u0410\u0442\u0430\u0443\u044b:",
|
"LabelTitle": "\u0410\u0442\u0430\u0443\u044b:",
|
||||||
"LabelOriginalTitle": "\u0411\u0430\u0441\u0442\u0430\u043f\u049b\u044b \u0430\u0442\u0430\u0443\u044b:",
|
"LabelOriginalTitle": "\u0411\u0430\u0441\u0442\u0430\u043f\u049b\u044b \u0430\u0442\u0430\u0443\u044b:",
|
||||||
"LabelSortTitle": "\u0410\u0442\u0430\u0443 \u0431\u043e\u0439\u044b\u043d\u0448\u0430 \u0441\u04b1\u0440\u044b\u043f\u0442\u0430\u0443",
|
"LabelSortTitle": "\u0410\u0442\u0430\u0443 \u0431\u043e\u0439\u044b\u043d\u0448\u0430 \u0441\u04b1\u0440\u044b\u043f\u0442\u0430\u0443",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "\u041a\u04af\u0439:",
|
"LabelStatus": "\u041a\u04af\u0439:",
|
||||||
"LabelArtists": "\u041e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440:",
|
"LabelArtists": "\u041e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440:",
|
||||||
"LabelArtistsHelp": "\u0411\u0456\u0440\u043d\u0435\u0448\u0443\u0456\u043d (;) \u0430\u0440\u049b\u044b\u043b\u044b \u0431\u04e9\u043b\u0456\u04a3\u0456\u0437",
|
"LabelArtistsHelp": "\u0411\u0456\u0440\u043d\u0435\u0448\u0443\u0456\u043d (;) \u0430\u0440\u049b\u044b\u043b\u044b \u0431\u04e9\u043b\u0456\u04a3\u0456\u0437",
|
||||||
|
"HeaderAlbumArtists": "\u0410\u043b\u044c\u0431\u043e\u043c \u043e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440\u044b",
|
||||||
"LabelAlbumArtists": "\u0410\u043b\u044c\u0431\u043e\u043c \u043e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440\u044b:",
|
"LabelAlbumArtists": "\u0410\u043b\u044c\u0431\u043e\u043c \u043e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440\u044b:",
|
||||||
"LabelAlbum": "\u0410\u043b\u044c\u0431\u043e\u043c:",
|
"LabelAlbum": "\u0410\u043b\u044c\u0431\u043e\u043c:",
|
||||||
"Artists": "\u041e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440",
|
"Artists": "\u041e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"LabelVersion": "Version:",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"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.",
|
"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.",
|
"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.",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "Voice Input",
|
"VoiceInput": "Voice Input",
|
||||||
"LabelContentType": "\ucf58\ud150\uce20 \uc885\ub958:",
|
"LabelContentType": "\ucf58\ud150\uce20 \uc885\ub958:",
|
||||||
"LabelPath": "Path:",
|
"LabelPath": "Path:",
|
||||||
|
"Playlists": "Playlists",
|
||||||
"LabelTitle": "Title:",
|
"LabelTitle": "Title:",
|
||||||
"LabelOriginalTitle": "Original title:",
|
"LabelOriginalTitle": "Original title:",
|
||||||
"LabelSortTitle": "Sort title:",
|
"LabelSortTitle": "Sort title:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "\uc0c1\ud0dc:",
|
"LabelStatus": "\uc0c1\ud0dc:",
|
||||||
"LabelArtists": "\uc544\ud2f0\uc2a4\ud2b8:",
|
"LabelArtists": "\uc544\ud2f0\uc2a4\ud2b8:",
|
||||||
"LabelArtistsHelp": "Separate multiple using ;",
|
"LabelArtistsHelp": "Separate multiple using ;",
|
||||||
|
"HeaderAlbumArtists": "Album Artists",
|
||||||
"LabelAlbumArtists": "\uc568\ubc94 \uc544\ud2f0\uc2a4\ud2b8:",
|
"LabelAlbumArtists": "\uc568\ubc94 \uc544\ud2f0\uc2a4\ud2b8:",
|
||||||
"LabelAlbum": "\uc568\ubc94",
|
"LabelAlbum": "\uc568\ubc94",
|
||||||
"Artists": "Artists",
|
"Artists": "Artists",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"LabelVersion": "Version:",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Atrakinkite \u0161i\u0105 funkcij\u0105 nedideliu vienkartiniu mokes\u010diu arba \u012fsigij\u0119 Emby Premiere prenumerat\u0105.",
|
"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.",
|
"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.",
|
"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.",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "Balso komandos",
|
"VoiceInput": "Balso komandos",
|
||||||
"LabelContentType": "Turinio tipas:",
|
"LabelContentType": "Turinio tipas:",
|
||||||
"LabelPath": "Kelias:",
|
"LabelPath": "Kelias:",
|
||||||
|
"Playlists": "Playlists",
|
||||||
"LabelTitle": "Pavadinimas:",
|
"LabelTitle": "Pavadinimas:",
|
||||||
"LabelOriginalTitle": "Originalus pavadinimas:",
|
"LabelOriginalTitle": "Originalus pavadinimas:",
|
||||||
"LabelSortTitle": "R\u016b\u0161iavimo pavadinimas:",
|
"LabelSortTitle": "R\u016b\u0161iavimo pavadinimas:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "B\u016bkl\u0117:",
|
"LabelStatus": "B\u016bkl\u0117:",
|
||||||
"LabelArtists": "Atlik\u0117jai:",
|
"LabelArtists": "Atlik\u0117jai:",
|
||||||
"LabelArtistsHelp": "Atskirti kelis naudojant:",
|
"LabelArtistsHelp": "Atskirti kelis naudojant:",
|
||||||
|
"HeaderAlbumArtists": "Album Artists",
|
||||||
"LabelAlbumArtists": "Albumo atlik\u0117jai:",
|
"LabelAlbumArtists": "Albumo atlik\u0117jai:",
|
||||||
"LabelAlbum": "Albumas:",
|
"LabelAlbum": "Albumas:",
|
||||||
"Artists": "Artists",
|
"Artists": "Artists",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"LabelVersion": "Version:",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"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.",
|
"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.",
|
"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.",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "Voice Input",
|
"VoiceInput": "Voice Input",
|
||||||
"LabelContentType": "Content type:",
|
"LabelContentType": "Content type:",
|
||||||
"LabelPath": "Path:",
|
"LabelPath": "Path:",
|
||||||
|
"Playlists": "Playlists",
|
||||||
"LabelTitle": "Title:",
|
"LabelTitle": "Title:",
|
||||||
"LabelOriginalTitle": "Original title:",
|
"LabelOriginalTitle": "Original title:",
|
||||||
"LabelSortTitle": "Sort title:",
|
"LabelSortTitle": "Sort title:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "Status:",
|
"LabelStatus": "Status:",
|
||||||
"LabelArtists": "Artists:",
|
"LabelArtists": "Artists:",
|
||||||
"LabelArtistsHelp": "Separate multiple using ;",
|
"LabelArtistsHelp": "Separate multiple using ;",
|
||||||
|
"HeaderAlbumArtists": "Album Artists",
|
||||||
"LabelAlbumArtists": "Album artists:",
|
"LabelAlbumArtists": "Album artists:",
|
||||||
"LabelAlbum": "Album:",
|
"LabelAlbum": "Album:",
|
||||||
"Artists": "Artists",
|
"Artists": "Artists",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"LabelVersion": "Version:",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "L\u00e5s opp denne funksjonen med et engangskj\u00f8p, eller med et aktivt Emby Premiere abonnement.",
|
"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.",
|
"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.",
|
"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.",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "Stemme input",
|
"VoiceInput": "Stemme input",
|
||||||
"LabelContentType": "Innholdstype:",
|
"LabelContentType": "Innholdstype:",
|
||||||
"LabelPath": "Sti:",
|
"LabelPath": "Sti:",
|
||||||
|
"Playlists": "Playlists",
|
||||||
"LabelTitle": "Tittel:",
|
"LabelTitle": "Tittel:",
|
||||||
"LabelOriginalTitle": "Original tittel:",
|
"LabelOriginalTitle": "Original tittel:",
|
||||||
"LabelSortTitle": "Forkortet tittel:",
|
"LabelSortTitle": "Forkortet tittel:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "Status:",
|
"LabelStatus": "Status:",
|
||||||
"LabelArtists": "Artister:",
|
"LabelArtists": "Artister:",
|
||||||
"LabelArtistsHelp": "Skill flere med semikolon ;",
|
"LabelArtistsHelp": "Skill flere med semikolon ;",
|
||||||
|
"HeaderAlbumArtists": "Album Artists",
|
||||||
"LabelAlbumArtists": "Album artister:",
|
"LabelAlbumArtists": "Album artister:",
|
||||||
"LabelAlbum": "Album:",
|
"LabelAlbum": "Album:",
|
||||||
"Artists": "Artister",
|
"Artists": "Artister",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"LabelVersion": "Version:",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Ontgrendel deze functie met een kleine eenmalige aankoop, of met een actief Emby Premiere abonnement.",
|
"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.",
|
"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.",
|
"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.",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "Spraak invoer",
|
"VoiceInput": "Spraak invoer",
|
||||||
"LabelContentType": "Inhoud type:",
|
"LabelContentType": "Inhoud type:",
|
||||||
"LabelPath": "Pad:",
|
"LabelPath": "Pad:",
|
||||||
|
"Playlists": "Playlists",
|
||||||
"LabelTitle": "Titel:",
|
"LabelTitle": "Titel:",
|
||||||
"LabelOriginalTitle": "Orginele titel:",
|
"LabelOriginalTitle": "Orginele titel:",
|
||||||
"LabelSortTitle": "Sorteer titel:",
|
"LabelSortTitle": "Sorteer titel:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "Status:",
|
"LabelStatus": "Status:",
|
||||||
"LabelArtists": "Artiest:",
|
"LabelArtists": "Artiest:",
|
||||||
"LabelArtistsHelp": "Scheidt meerdere met een ;",
|
"LabelArtistsHelp": "Scheidt meerdere met een ;",
|
||||||
|
"HeaderAlbumArtists": "Album Artists",
|
||||||
"LabelAlbumArtists": "Album artiesten:",
|
"LabelAlbumArtists": "Album artiesten:",
|
||||||
"LabelAlbum": "Album:",
|
"LabelAlbum": "Album:",
|
||||||
"Artists": "Artiesten",
|
"Artists": "Artiesten",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"LabelVersion": "Wersja:",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Odblokuj t\u0119 funkcj\u0119, za niewielk\u0105 jednorazow\u0105 op\u0142at\u0105 lub przy u\u017cyciu aktywnej subskrypcji Emby Premium.",
|
"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.",
|
"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.",
|
"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.",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "Wej\u015bcie g\u0142osowe",
|
"VoiceInput": "Wej\u015bcie g\u0142osowe",
|
||||||
"LabelContentType": "Typ zawarto\u015bci",
|
"LabelContentType": "Typ zawarto\u015bci",
|
||||||
"LabelPath": "Folder:",
|
"LabelPath": "Folder:",
|
||||||
|
"Playlists": "Listy",
|
||||||
"LabelTitle": "Tytu\u0142:",
|
"LabelTitle": "Tytu\u0142:",
|
||||||
"LabelOriginalTitle": "Tytu\u0142 oryginalny:",
|
"LabelOriginalTitle": "Tytu\u0142 oryginalny:",
|
||||||
"LabelSortTitle": "Tytu\u0142 sortowania:",
|
"LabelSortTitle": "Tytu\u0142 sortowania:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "Stan:",
|
"LabelStatus": "Stan:",
|
||||||
"LabelArtists": "Wykonawcy:",
|
"LabelArtists": "Wykonawcy:",
|
||||||
"LabelArtistsHelp": "Oddzielaj u\u017cywaj\u0105c ;",
|
"LabelArtistsHelp": "Oddzielaj u\u017cywaj\u0105c ;",
|
||||||
|
"HeaderAlbumArtists": "Wykonawcy album\u00f3w",
|
||||||
"LabelAlbumArtists": "Wykonawcy album\u00f3w",
|
"LabelAlbumArtists": "Wykonawcy album\u00f3w",
|
||||||
"LabelAlbum": "Album",
|
"LabelAlbum": "Album",
|
||||||
"Artists": "Wykonawcy",
|
"Artists": "Wykonawcy",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"LabelVersion": "Version:",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Desbloqueie esta funcionalidade com uma pequena compra \u00fanica, ou com uma assinatura ativa do Emby Premiere.",
|
"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.",
|
"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.",
|
"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.",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "Entrada de voz",
|
"VoiceInput": "Entrada de voz",
|
||||||
"LabelContentType": "Tipo de conte\u00fado:",
|
"LabelContentType": "Tipo de conte\u00fado:",
|
||||||
"LabelPath": "Local:",
|
"LabelPath": "Local:",
|
||||||
|
"Playlists": "Playlists",
|
||||||
"LabelTitle": "T\u00edtulo:",
|
"LabelTitle": "T\u00edtulo:",
|
||||||
"LabelOriginalTitle": "T\u00edtulo original:",
|
"LabelOriginalTitle": "T\u00edtulo original:",
|
||||||
"LabelSortTitle": "T\u00edtulo para ordena\u00e7\u00e3o:",
|
"LabelSortTitle": "T\u00edtulo para ordena\u00e7\u00e3o:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "Status:",
|
"LabelStatus": "Status:",
|
||||||
"LabelArtists": "Artistas:",
|
"LabelArtists": "Artistas:",
|
||||||
"LabelArtistsHelp": "Separar m\u00faltiplos usando ;",
|
"LabelArtistsHelp": "Separar m\u00faltiplos usando ;",
|
||||||
|
"HeaderAlbumArtists": "Album Artists",
|
||||||
"LabelAlbumArtists": "Artistas do \u00c1lbum:",
|
"LabelAlbumArtists": "Artistas do \u00c1lbum:",
|
||||||
"LabelAlbum": "\u00c1lbum:",
|
"LabelAlbum": "\u00c1lbum:",
|
||||||
"Artists": "Artistas",
|
"Artists": "Artistas",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"LabelVersion": "Version:",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"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.",
|
"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.",
|
"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.",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "Voice Input",
|
"VoiceInput": "Voice Input",
|
||||||
"LabelContentType": "Tipo de conte\u00fado:",
|
"LabelContentType": "Tipo de conte\u00fado:",
|
||||||
"LabelPath": "Local:",
|
"LabelPath": "Local:",
|
||||||
|
"Playlists": "Playlists",
|
||||||
"LabelTitle": "Title:",
|
"LabelTitle": "Title:",
|
||||||
"LabelOriginalTitle": "Original title:",
|
"LabelOriginalTitle": "Original title:",
|
||||||
"LabelSortTitle": "Sort title:",
|
"LabelSortTitle": "Sort title:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "Estado:",
|
"LabelStatus": "Estado:",
|
||||||
"LabelArtists": "Artistas:",
|
"LabelArtists": "Artistas:",
|
||||||
"LabelArtistsHelp": "Separa m\u00faltiplas com ;",
|
"LabelArtistsHelp": "Separa m\u00faltiplas com ;",
|
||||||
|
"HeaderAlbumArtists": "Album Artists",
|
||||||
"LabelAlbumArtists": "Artistas do \u00c1lbum:",
|
"LabelAlbumArtists": "Artistas do \u00c1lbum:",
|
||||||
"LabelAlbum": "\u00c1lbum:",
|
"LabelAlbum": "\u00c1lbum:",
|
||||||
"Artists": "Artists",
|
"Artists": "Artists",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"LabelVersion": "Version:",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"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.",
|
"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.",
|
"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.",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "Voice Input",
|
"VoiceInput": "Voice Input",
|
||||||
"LabelContentType": "Tip continut:",
|
"LabelContentType": "Tip continut:",
|
||||||
"LabelPath": "Path:",
|
"LabelPath": "Path:",
|
||||||
|
"Playlists": "Playlists",
|
||||||
"LabelTitle": "Title:",
|
"LabelTitle": "Title:",
|
||||||
"LabelOriginalTitle": "Original title:",
|
"LabelOriginalTitle": "Original title:",
|
||||||
"LabelSortTitle": "Sort title:",
|
"LabelSortTitle": "Sort title:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "Status:",
|
"LabelStatus": "Status:",
|
||||||
"LabelArtists": "Artisti:",
|
"LabelArtists": "Artisti:",
|
||||||
"LabelArtistsHelp": "Folosire separata multipla",
|
"LabelArtistsHelp": "Folosire separata multipla",
|
||||||
|
"HeaderAlbumArtists": "Album Artists",
|
||||||
"LabelAlbumArtists": "Album artists:",
|
"LabelAlbumArtists": "Album artists:",
|
||||||
"LabelAlbum": "Album:",
|
"LabelAlbum": "Album:",
|
||||||
"Artists": "Artists",
|
"Artists": "Artists",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"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 .",
|
"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.",
|
"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.",
|
"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.",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "\u0413\u043e\u043b\u043e\u0441\u043e\u0432\u043e\u0439 \u0432\u0432\u043e\u0434",
|
"VoiceInput": "\u0413\u043e\u043b\u043e\u0441\u043e\u0432\u043e\u0439 \u0432\u0432\u043e\u0434",
|
||||||
"LabelContentType": "\u0422\u0438\u043f \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f:",
|
"LabelContentType": "\u0422\u0438\u043f \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f:",
|
||||||
"LabelPath": "\u041f\u0443\u0442\u044c:",
|
"LabelPath": "\u041f\u0443\u0442\u044c:",
|
||||||
|
"Playlists": "\u041f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442\u044b",
|
||||||
"LabelTitle": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435:",
|
"LabelTitle": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435:",
|
||||||
"LabelOriginalTitle": "\u041e\u0440\u0438\u0433\u0438\u043d\u0430\u043b\u044c\u043d\u043e\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435:",
|
"LabelOriginalTitle": "\u041e\u0440\u0438\u0433\u0438\u043d\u0430\u043b\u044c\u043d\u043e\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435:",
|
||||||
"LabelSortTitle": "\u0421\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0430 \u043f\u043e \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u044e:",
|
"LabelSortTitle": "\u0421\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0430 \u043f\u043e \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u044e:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "\u0421\u0442\u0430\u0442\u0443\u0441:",
|
"LabelStatus": "\u0421\u0442\u0430\u0442\u0443\u0441:",
|
||||||
"LabelArtists": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438:",
|
"LabelArtists": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438:",
|
||||||
"LabelArtistsHelp": "\u0414\u043b\u044f \u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u0442\u043e\u0447\u043a\u0443 \u0441 \u0437\u0430\u043f\u044f\u0442\u043e\u0439 (;)",
|
"LabelArtistsHelp": "\u0414\u043b\u044f \u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u0442\u043e\u0447\u043a\u0443 \u0441 \u0437\u0430\u043f\u044f\u0442\u043e\u0439 (;)",
|
||||||
|
"HeaderAlbumArtists": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438 \u0430\u043b\u044c\u0431\u043e\u043c\u0430",
|
||||||
"LabelAlbumArtists": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438 \u0430\u043b\u044c\u0431\u043e\u043c\u0430:",
|
"LabelAlbumArtists": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438 \u0430\u043b\u044c\u0431\u043e\u043c\u0430:",
|
||||||
"LabelAlbum": "\u0410\u043b\u044c\u0431\u043e\u043c",
|
"LabelAlbum": "\u0410\u043b\u044c\u0431\u043e\u043c",
|
||||||
"Artists": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438",
|
"Artists": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"LabelVersion": "Verzia:",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"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.",
|
"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.",
|
"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.",
|
||||||
|
@ -25,7 +26,7 @@
|
||||||
"ButtonRestart": "Re\u0161tartova\u0165",
|
"ButtonRestart": "Re\u0161tartova\u0165",
|
||||||
"RecordingCancelled": "Nahr\u00e1vanie zru\u0161en\u00e9.",
|
"RecordingCancelled": "Nahr\u00e1vanie zru\u0161en\u00e9.",
|
||||||
"SeriesCancelled": "Series cancelled.",
|
"SeriesCancelled": "Series cancelled.",
|
||||||
"RecordingScheduled": "Recording scheduled.",
|
"RecordingScheduled": "Pl\u00e1n nahr\u00e1vania.",
|
||||||
"SeriesRecordingScheduled": "Series recording scheduled.",
|
"SeriesRecordingScheduled": "Series recording scheduled.",
|
||||||
"HeaderNewRecording": "New Recording",
|
"HeaderNewRecording": "New Recording",
|
||||||
"Sunday": "Nede\u013ea",
|
"Sunday": "Nede\u013ea",
|
||||||
|
@ -49,16 +50,16 @@
|
||||||
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
||||||
"HeaderFreeApps": "Emby Apps zdarma",
|
"HeaderFreeApps": "Emby Apps zdarma",
|
||||||
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
||||||
"HeaderBecomeProjectSupporter": "Get Emby Premiere",
|
"HeaderBecomeProjectSupporter": "Z\u00edska\u0165 Emby Premiere",
|
||||||
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
|
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
|
||||||
"LabelEmailAddress": "E-mailov\u00e1 adresa:",
|
"LabelEmailAddress": "E-mailov\u00e1 adresa:",
|
||||||
"PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Emby Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Emby server settings.",
|
"PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Emby Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Emby server settings.",
|
||||||
"FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.",
|
"FeatureRequiresEmbyPremiere": "T\u00e1to funkcia vy\u017eaduje akt\u00edvne predplatn\u00e9 Emby Premiere.",
|
||||||
"HeaderConvertYourRecordings": "Convert Your Recordings",
|
"HeaderConvertYourRecordings": "Convert Your Recordings",
|
||||||
"Record": "Record",
|
"Record": "Record",
|
||||||
"Save": "Ulo\u017ei\u0165",
|
"Save": "Ulo\u017ei\u0165",
|
||||||
"Edit": "Upravi\u0165",
|
"Edit": "Upravi\u0165",
|
||||||
"Download": "Download",
|
"Download": "Stiahnu\u0165",
|
||||||
"Downloaded": "Stiahnut\u00e9",
|
"Downloaded": "Stiahnut\u00e9",
|
||||||
"Downloading": "S\u0165ahuje sa",
|
"Downloading": "S\u0165ahuje sa",
|
||||||
"Advanced": "Pokro\u010dil\u00e9",
|
"Advanced": "Pokro\u010dil\u00e9",
|
||||||
|
@ -77,11 +78,11 @@
|
||||||
"Mobile": "Mobile \/ Tablet",
|
"Mobile": "Mobile \/ Tablet",
|
||||||
"TV": "TV",
|
"TV": "TV",
|
||||||
"DisplayModeHelp": "Select the type of screen you're running Emby on.",
|
"DisplayModeHelp": "Select the type of screen you're running Emby on.",
|
||||||
"LabelDisplayLanguage": "Display language:",
|
"LabelDisplayLanguage": "Jazyk rozhrania:",
|
||||||
"LabelDisplayLanguageHelp": "Translating Emby is an ongoing project.",
|
"LabelDisplayLanguageHelp": "Translating Emby is an ongoing project.",
|
||||||
"LearnHowYouCanContribute": "Learn how you can contribute.",
|
"LearnHowYouCanContribute": "Zistite ako m\u00f4\u017eete prispie\u0165.",
|
||||||
"NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
"NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||||
"SearchForCollectionInternetMetadata": "Search the internet for artwork and metadata",
|
"SearchForCollectionInternetMetadata": "Vyh\u013eada\u0165 metad\u00e1ta a obr\u00e1zky na Internete.",
|
||||||
"DisplayMissingEpisodesWithinSeasons": "Zobrazi\u0165 ch\u00fdbaj\u00face epiz\u00f3dy v r\u00e1mci sez\u00f3ny.",
|
"DisplayMissingEpisodesWithinSeasons": "Zobrazi\u0165 ch\u00fdbaj\u00face epiz\u00f3dy v r\u00e1mci sez\u00f3ny.",
|
||||||
"DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.",
|
"DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.",
|
||||||
"EnableThemeSongs": "Enable theme songs",
|
"EnableThemeSongs": "Enable theme songs",
|
||||||
|
@ -90,7 +91,7 @@
|
||||||
"EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.",
|
"EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.",
|
||||||
"EnableThemeVideos": "Enable theme videos",
|
"EnableThemeVideos": "Enable theme videos",
|
||||||
"EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.",
|
"EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.",
|
||||||
"RunAtStartup": "Run at startup",
|
"RunAtStartup": "Spusti\u0165 pri \u0161tarte",
|
||||||
"LabelScreensaver": "\u0160etri\u010d obrazokvy:",
|
"LabelScreensaver": "\u0160etri\u010d obrazokvy:",
|
||||||
"LabelSoundEffects": "Zvukov\u00e9 efekty:",
|
"LabelSoundEffects": "Zvukov\u00e9 efekty:",
|
||||||
"LabelSkin": "Skin:",
|
"LabelSkin": "Skin:",
|
||||||
|
@ -104,9 +105,9 @@
|
||||||
"Subtitles": "Titulky",
|
"Subtitles": "Titulky",
|
||||||
"LabelTheme": "Theme:",
|
"LabelTheme": "Theme:",
|
||||||
"LabelDashboardTheme": "Server dashboard theme:",
|
"LabelDashboardTheme": "Server dashboard theme:",
|
||||||
"SearchForSubtitles": "Search for Subtitles",
|
"SearchForSubtitles": "H\u013eada\u0165 titulky",
|
||||||
"LabelLanguage": "Jazyk:",
|
"LabelLanguage": "Jazyk:",
|
||||||
"Search": "Search",
|
"Search": "H\u013eada\u0165",
|
||||||
"NoSubtitleSearchResultsFound": "\u017diadne v\u00fdsledky.",
|
"NoSubtitleSearchResultsFound": "\u017diadne v\u00fdsledky.",
|
||||||
"File": "S\u00fabor",
|
"File": "S\u00fabor",
|
||||||
"MessageAreYouSureDeleteSubtitles": "Ste si ist\u00fd, \u017ee chcete zmaza\u0165 s\u00fabor s titulkami?",
|
"MessageAreYouSureDeleteSubtitles": "Ste si ist\u00fd, \u017ee chcete zmaza\u0165 s\u00fabor s titulkami?",
|
||||||
|
@ -128,12 +129,12 @@
|
||||||
"MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.",
|
"MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.",
|
||||||
"ValueDiscNumber": "Disc {0}",
|
"ValueDiscNumber": "Disc {0}",
|
||||||
"Unrated": "Unrated",
|
"Unrated": "Unrated",
|
||||||
"Favorite": "Favorite",
|
"Favorite": "Ob\u013e\u00faben\u00e9",
|
||||||
"Like": "Like",
|
"Like": "Like",
|
||||||
"Dislike": "Dislike",
|
"Dislike": "Dislike",
|
||||||
"RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Emby Server dashboard.",
|
"RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Emby Server dashboard.",
|
||||||
"Open": "Open",
|
"Open": "Otvori\u0165",
|
||||||
"Play": "Play",
|
"Play": "Prehra\u0165",
|
||||||
"AddToPlayQueue": "Add to play queue",
|
"AddToPlayQueue": "Add to play queue",
|
||||||
"Shuffle": "Zamie\u0161a\u0165",
|
"Shuffle": "Zamie\u0161a\u0165",
|
||||||
"Identify": "Identify",
|
"Identify": "Identify",
|
||||||
|
@ -145,7 +146,7 @@
|
||||||
"ViewArtist": "View artist",
|
"ViewArtist": "View artist",
|
||||||
"QueueAllFromHere": "Queue all from here",
|
"QueueAllFromHere": "Queue all from here",
|
||||||
"PlayAllFromHere": "Play all from here",
|
"PlayAllFromHere": "Play all from here",
|
||||||
"PlayFromBeginning": "Play from beginning",
|
"PlayFromBeginning": "Prehra\u0165 od za\u010diatku",
|
||||||
"ResumeAt": "Pokra\u010dova\u0165 od {0}",
|
"ResumeAt": "Pokra\u010dova\u0165 od {0}",
|
||||||
"RemoveFromPlaylist": "Remove from playlist",
|
"RemoveFromPlaylist": "Remove from playlist",
|
||||||
"RemoveFromCollection": "Odobra\u0165 zo zbierky",
|
"RemoveFromCollection": "Odobra\u0165 zo zbierky",
|
||||||
|
@ -159,9 +160,10 @@
|
||||||
"HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation",
|
"HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation",
|
||||||
"MessageConfirmRecordingCancellation": "Are you sure you wish to cancel this recording?",
|
"MessageConfirmRecordingCancellation": "Are you sure you wish to cancel this recording?",
|
||||||
"Error": "Chyba",
|
"Error": "Chyba",
|
||||||
"VoiceInput": "Voice Input",
|
"VoiceInput": "Hlasov\u00fd vstup",
|
||||||
"LabelContentType": "Typ obsahu:",
|
"LabelContentType": "Typ obsahu:",
|
||||||
"LabelPath": "Path:",
|
"LabelPath": "Cesta:",
|
||||||
|
"Playlists": "Playlists",
|
||||||
"LabelTitle": "Title:",
|
"LabelTitle": "Title:",
|
||||||
"LabelOriginalTitle": "Original title:",
|
"LabelOriginalTitle": "Original title:",
|
||||||
"LabelSortTitle": "Sort title:",
|
"LabelSortTitle": "Sort title:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "Status:",
|
"LabelStatus": "Status:",
|
||||||
"LabelArtists": "Umelci:",
|
"LabelArtists": "Umelci:",
|
||||||
"LabelArtistsHelp": "Separate multiple using ;",
|
"LabelArtistsHelp": "Separate multiple using ;",
|
||||||
|
"HeaderAlbumArtists": "Album Artists",
|
||||||
"LabelAlbumArtists": "Album artists:",
|
"LabelAlbumArtists": "Album artists:",
|
||||||
"LabelAlbum": "Album:",
|
"LabelAlbum": "Album:",
|
||||||
"Artists": "Umelci",
|
"Artists": "Umelci",
|
||||||
|
@ -188,8 +191,8 @@
|
||||||
"LabelParentalRating": "Parental rating:",
|
"LabelParentalRating": "Parental rating:",
|
||||||
"LabelCustomRating": "Custom rating:",
|
"LabelCustomRating": "Custom rating:",
|
||||||
"LabelOriginalAspectRatio": "P\u00f4vodn\u00fd pomer str\u00e1n:",
|
"LabelOriginalAspectRatio": "P\u00f4vodn\u00fd pomer str\u00e1n:",
|
||||||
"Label3DFormat": "3D format:",
|
"Label3DFormat": "3D form\u00e1t:",
|
||||||
"FormatValue": "Format: {0}",
|
"FormatValue": "Form\u00e1t: {0}",
|
||||||
"DownloadsValue": "Downloads: {0}",
|
"DownloadsValue": "Downloads: {0}",
|
||||||
"PerfectMatch": "Perfektn\u00e1 zhoda",
|
"PerfectMatch": "Perfektn\u00e1 zhoda",
|
||||||
"EnableExternalVideoPlayers": "Enable external video players",
|
"EnableExternalVideoPlayers": "Enable external video players",
|
||||||
|
@ -212,7 +215,7 @@
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"HeaderMetadataSettings": "Nastavenia metad\u00e1t",
|
"HeaderMetadataSettings": "Nastavenia metad\u00e1t",
|
||||||
"People": "People",
|
"People": "People",
|
||||||
"LabelMetadataDownloadLanguage": "Preferred download language:",
|
"LabelMetadataDownloadLanguage": "Preferovan\u00fd jazyk:",
|
||||||
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
|
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
|
||||||
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
|
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
|
||||||
"LabelCountry": "Krajina:",
|
"LabelCountry": "Krajina:",
|
||||||
|
@ -260,17 +263,17 @@
|
||||||
"ValueOneItem": "1 polo\u017eka",
|
"ValueOneItem": "1 polo\u017eka",
|
||||||
"ValueOneSong": "1 skladba",
|
"ValueOneSong": "1 skladba",
|
||||||
"ValueSongCount": "{0} songs",
|
"ValueSongCount": "{0} songs",
|
||||||
"ValueOneMovie": "1 movie",
|
"ValueOneMovie": "1 film",
|
||||||
"ValueMovieCount": "{0} movies",
|
"ValueMovieCount": "{0} filmov",
|
||||||
"ValueOneSeries": "1 series",
|
"ValueOneSeries": "1 series",
|
||||||
"ValueSeriesCount": "{0} series",
|
"ValueSeriesCount": "{0} series",
|
||||||
"ValueOneEpisode": "1 episode",
|
"ValueOneEpisode": "1 epiz\u00f3da",
|
||||||
"ValueEpisodeCount": "{0} epiz\u00f3d",
|
"ValueEpisodeCount": "{0} epiz\u00f3d",
|
||||||
"ValueOneGame": "1 hra",
|
"ValueOneGame": "1 hra",
|
||||||
"ValueGameCount": "{0} hier",
|
"ValueGameCount": "{0} hier",
|
||||||
"ValueOneAlbum": "1 album",
|
"ValueOneAlbum": "1 album",
|
||||||
"ValueAlbumCount": "{0} albumov",
|
"ValueAlbumCount": "{0} albumov",
|
||||||
"ValueOneMusicVideo": "1 music video",
|
"ValueOneMusicVideo": "1 hudobn\u00e9 video",
|
||||||
"ValueMusicVideoCount": "{0} music videos",
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
"ValueMinutes": "{0} min",
|
"ValueMinutes": "{0} min",
|
||||||
"Albums": "Albumy",
|
"Albums": "Albumy",
|
||||||
|
@ -283,21 +286,21 @@
|
||||||
"SearchResults": "V\u00fdsledky vyh\u013ead\u00e1vania",
|
"SearchResults": "V\u00fdsledky vyh\u013ead\u00e1vania",
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} sa re\u0161tartuje.",
|
"ServerNameIsRestarting": "Emby Server - {0} sa re\u0161tartuje.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} sa vyp\u00edna.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} sa vyp\u00edna.",
|
||||||
"HeaderDeleteItems": "Delete Items",
|
"HeaderDeleteItems": "Zmaza\u0165 polo\u017eky",
|
||||||
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
"PleaseRestartServerName": "Pros\u00edm re\u0161tartujte Emby Server - {0}.",
|
||||||
"LabelSyncJobName": "Sync job name:",
|
"LabelSyncJobName": "Sync job name:",
|
||||||
"SyncJobCreated": "Sync job created",
|
"SyncJobCreated": "Sync job created",
|
||||||
"LabelQuality": "Kvalita:",
|
"LabelQuality": "Kvalita:",
|
||||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support offline downloading.",
|
||||||
"DownloadingDots": "Downloading...",
|
"DownloadingDots": "Downloading...",
|
||||||
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
"HeaderSyncRequiresSub": "Downloading requires an active Emby Premiere subscription.",
|
||||||
"LearnMore": "Learn more",
|
"LearnMore": "Zisti\u0165 viac",
|
||||||
"LabelProfile": "Profile:",
|
"LabelProfile": "Profil:",
|
||||||
"LabelBitrateMbps": "Bitrate (Mbps):",
|
"LabelBitrateMbps": "D\u00e1tov\u00fd tok (Mbps):",
|
||||||
"SyncUnwatchedVideosOnly": "Download unwatched videos only",
|
"SyncUnwatchedVideosOnly": "Download unwatched videos only",
|
||||||
"SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.",
|
"SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.",
|
||||||
"AutomaticallySyncNewContent": "Automatically download new content",
|
"AutomaticallySyncNewContent": "Automaticky s\u0165ahova\u0165 nov\u00fd obsah",
|
||||||
"AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.",
|
"AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.",
|
||||||
"LabelItemLimit": "Item limit:",
|
"LabelItemLimit": "Item limit:",
|
||||||
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.",
|
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be downloaded.",
|
||||||
|
@ -311,8 +314,8 @@
|
||||||
"ShowIndicatorsFor": "Show indicators for:",
|
"ShowIndicatorsFor": "Show indicators for:",
|
||||||
"NewEpisodes": "Nov\u00e9 epiz\u00f3dy",
|
"NewEpisodes": "Nov\u00e9 epiz\u00f3dy",
|
||||||
"Episodes": "Epiz\u00f3dy",
|
"Episodes": "Epiz\u00f3dy",
|
||||||
"HDPrograms": "HD programs",
|
"HDPrograms": "HD programy",
|
||||||
"Programs": "Programs",
|
"Programs": "Programy",
|
||||||
"LiveBroadcasts": "\u017div\u00e9 vysielania",
|
"LiveBroadcasts": "\u017div\u00e9 vysielania",
|
||||||
"Premieres": "Premi\u00e9ry",
|
"Premieres": "Premi\u00e9ry",
|
||||||
"RepeatEpisodes": "Repeat episodes",
|
"RepeatEpisodes": "Repeat episodes",
|
||||||
|
@ -327,7 +330,7 @@
|
||||||
"SeriesSettings": "Series settings",
|
"SeriesSettings": "Series settings",
|
||||||
"HeaderRecordingOptions": "Recording Options",
|
"HeaderRecordingOptions": "Recording Options",
|
||||||
"CancelSeries": "Cancel series",
|
"CancelSeries": "Cancel series",
|
||||||
"DoNotRecord": "Do not record",
|
"DoNotRecord": "Nenahr\u00e1va\u0165",
|
||||||
"HeaderSeriesOptions": "Series Options",
|
"HeaderSeriesOptions": "Series Options",
|
||||||
"LabelChannels": "Kan\u00e1ly:",
|
"LabelChannels": "Kan\u00e1ly:",
|
||||||
"ChannelNameOnly": "Channel {0} only",
|
"ChannelNameOnly": "Channel {0} only",
|
||||||
|
@ -340,34 +343,34 @@
|
||||||
"AllEpisodes": "V\u0161etky epiz\u00f3dy",
|
"AllEpisodes": "V\u0161etky epiz\u00f3dy",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
"MinutesBefore": "minutes before",
|
"MinutesBefore": "min\u00fat pred",
|
||||||
"MinutesAfter": "minutes after",
|
"MinutesAfter": "min\u00fat po",
|
||||||
"SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library",
|
"SkipEpisodesAlreadyInMyLibrary": "Don't record episodes that are already in my library",
|
||||||
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
"LabelKeepUpTo": "Keep up to:",
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
"AsManyAsPossible": "As many as possible",
|
"AsManyAsPossible": "As many as possible",
|
||||||
"DefaultErrorMessage": "There was an error processing the request. Please try again later.",
|
"DefaultErrorMessage": "There was an error processing the request. Please try again later.",
|
||||||
"LabelKeep:": "Keep:",
|
"LabelKeep:": "Ponecha\u0165:",
|
||||||
"UntilIDelete": "Until I delete",
|
"UntilIDelete": "Until I delete",
|
||||||
"UntilSpaceNeeded": "Until space needed",
|
"UntilSpaceNeeded": "Until space needed",
|
||||||
"Categories": "Kateg\u00f3rie",
|
"Categories": "Kateg\u00f3rie",
|
||||||
"Sports": "\u0160porty",
|
"Sports": "\u0160porty",
|
||||||
"News": "News",
|
"News": "Spr\u00e1vy",
|
||||||
"Movies": "Filmy",
|
"Movies": "Filmy",
|
||||||
"Kids": "Kids",
|
"Kids": "Detsk\u00e9",
|
||||||
"EnableColorCodedBackgrounds": "Enable color coded backgrounds",
|
"EnableColorCodedBackgrounds": "Enable color coded backgrounds",
|
||||||
"SortChannelsBy": "Sort channels by:",
|
"SortChannelsBy": "Zoradi\u0165 kan\u00e1ly pod\u013ea:",
|
||||||
"RecentlyWatched": "Recently watched",
|
"RecentlyWatched": "Ned\u00e1vno pozret\u00e9",
|
||||||
"ChannelNumber": "Channel number",
|
"ChannelNumber": "Channel number",
|
||||||
"HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere",
|
"HeaderBenefitsEmbyPremiere": "V\u00fdhody Emby Premiere",
|
||||||
"ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.",
|
"ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.",
|
||||||
"HeaderTryPlayback": "Try Playback",
|
"HeaderTryPlayback": "Try Playback",
|
||||||
"HowDidYouPay": "How did you pay?",
|
"HowDidYouPay": "How did you pay?",
|
||||||
"IHaveEmbyPremiere": "I have Emby Premiere",
|
"IHaveEmbyPremiere": "U\u017e m\u00e1m Emby Premiere",
|
||||||
"IPurchasedThisApp": "I purchased this app",
|
"IPurchasedThisApp": "I purchased this app",
|
||||||
"ButtonRestorePreviousPurchase": "Restore Purchase",
|
"ButtonRestorePreviousPurchase": "Obnovi\u0165 n\u00e1kup",
|
||||||
"ButtonUnlockWithPurchase": "Unlock with Purchase",
|
"ButtonUnlockWithPurchase": "Unlock with Purchase",
|
||||||
"ButtonUnlockPrice": "Unlock {0}",
|
"ButtonUnlockPrice": "Odomkn\u00fa\u0165 {0}",
|
||||||
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
|
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
|
||||||
"HeaderAlreadyPaid": "Already Paid?",
|
"HeaderAlreadyPaid": "Already Paid?",
|
||||||
"ButtonPlayOneMinute": "Play One Minute",
|
"ButtonPlayOneMinute": "Play One Minute",
|
||||||
|
@ -385,36 +388,36 @@
|
||||||
"AddedOnValue": "Added {0}",
|
"AddedOnValue": "Added {0}",
|
||||||
"RemovingFromDevice": "Removing from device",
|
"RemovingFromDevice": "Removing from device",
|
||||||
"KeepOnDevice": "Keep on device",
|
"KeepOnDevice": "Keep on device",
|
||||||
"CancelDownload": "Cancel download",
|
"CancelDownload": "Zru\u0161i\u0165 s\u0165ahovanie",
|
||||||
"SyncJobItemStatusReadyToTransfer": "Ready to Transfer",
|
"SyncJobItemStatusReadyToTransfer": "Ready to Transfer",
|
||||||
"SyncJobItemStatusSyncedMarkForRemoval": "Removing from device",
|
"SyncJobItemStatusSyncedMarkForRemoval": "Removing from device",
|
||||||
"SyncJobItemStatusQueued": "Queued",
|
"SyncJobItemStatusQueued": "Queued",
|
||||||
"SyncJobItemStatusConverting": "Converting",
|
"SyncJobItemStatusConverting": "Converting",
|
||||||
"SyncJobItemStatusTransferring": "Transferring",
|
"SyncJobItemStatusTransferring": "Transferring",
|
||||||
"SyncJobItemStatusSynced": "Downloaded",
|
"SyncJobItemStatusSynced": "Stiahnut\u00e9",
|
||||||
"SyncJobItemStatusFailed": "Failed",
|
"SyncJobItemStatusFailed": "Failed",
|
||||||
"SyncJobItemStatusRemovedFromDevice": "Removed from device",
|
"SyncJobItemStatusRemovedFromDevice": "Removed from device",
|
||||||
"SyncJobItemStatusCancelled": "Cancelled",
|
"SyncJobItemStatusCancelled": "Zru\u0161en\u00e9",
|
||||||
"Retry": "Retry",
|
"Retry": "Sk\u00fasi\u0165 znova",
|
||||||
"HeaderMyDevice": "Moje zariadenie",
|
"HeaderMyDevice": "Moje zariadenie",
|
||||||
"Continue": "Continue",
|
"Continue": "Continue",
|
||||||
"ContinueInSecondsValue": "Continue in {0} seconds.",
|
"ContinueInSecondsValue": "Continue in {0} seconds.",
|
||||||
"HeaderRemoteControl": "\u010eia\u013ekov\u00e9 ovl\u00e1danie",
|
"HeaderRemoteControl": "\u010eia\u013ekov\u00e9 ovl\u00e1danie",
|
||||||
"Disconnect": "Disconnect",
|
"Disconnect": "Odpoji\u0165",
|
||||||
"EnableDisplayMirroring": "Enable display mirroring",
|
"EnableDisplayMirroring": "Enable display mirroring",
|
||||||
"HeaderPlayOn": "Play On",
|
"HeaderPlayOn": "Play On",
|
||||||
"Quality": "Kvalita",
|
"Quality": "Kvalita",
|
||||||
"Auto": "Auto",
|
"Auto": "Auto",
|
||||||
"AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.",
|
"AndroidUnlockRestoreHelp": "To restore your previous purchase, please ensure you're signed into the device with the same Google (or Amazon) account that originally made the purchase. Make sure the app store is enabled and not restricted by any parental controls, and ensure you have an active internet connection. You'll only have to do this once to restore your previous purchase.",
|
||||||
"AspectRatio": "Pomer str\u00e1n",
|
"AspectRatio": "Pomer str\u00e1n",
|
||||||
"Original": "Original",
|
"Original": "Origin\u00e1l",
|
||||||
"Fill": "Fill",
|
"Fill": "Vyplni\u0165",
|
||||||
"BestFit": "Best fit",
|
"BestFit": "Best fit",
|
||||||
"MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.",
|
"MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.",
|
||||||
"MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Emby Server administrator for more information.",
|
"MessagePlayAccessRestricted": "Playback of this content is currently restricted. Please contact your Emby Server administrator for more information.",
|
||||||
"Accept": "Accept",
|
"Accept": "Prija\u0165",
|
||||||
"Reject": "Reject",
|
"Reject": "Odmietnu\u0165",
|
||||||
"Connect": "Connect",
|
"Connect": "Pripoji\u0165",
|
||||||
"HeaderMyMedia": "Moje m\u00e9dia",
|
"HeaderMyMedia": "Moje m\u00e9dia",
|
||||||
"HeaderMyMediaSmall": "My Media (small)",
|
"HeaderMyMediaSmall": "My Media (small)",
|
||||||
"LatestFromLibrary": "Latest {0}",
|
"LatestFromLibrary": "Latest {0}",
|
||||||
|
@ -434,8 +437,8 @@
|
||||||
"SettingsSaved": "Nastavenia ulo\u017een\u00e9.",
|
"SettingsSaved": "Nastavenia ulo\u017een\u00e9.",
|
||||||
"None": "\u017diadne",
|
"None": "\u017diadne",
|
||||||
"More": "Viac",
|
"More": "Viac",
|
||||||
"Up": "Up",
|
"Up": "Hore",
|
||||||
"Down": "Down",
|
"Down": "Dole",
|
||||||
"HeaderHomeScreen": "Dom\u00e1ca obrazovka",
|
"HeaderHomeScreen": "Dom\u00e1ca obrazovka",
|
||||||
"HeaderHomeScreenContent": "Obsah dom\u00e1cej obrazovky",
|
"HeaderHomeScreenContent": "Obsah dom\u00e1cej obrazovky",
|
||||||
"HeaderLatestChannelItems": "Latest Channel Items",
|
"HeaderLatestChannelItems": "Latest Channel Items",
|
||||||
|
@ -443,34 +446,34 @@
|
||||||
"HeaderLibraryOrder": "Poradie kni\u017enice",
|
"HeaderLibraryOrder": "Poradie kni\u017enice",
|
||||||
"HideWatchedContentFromLatestMedia": "Hide watched content from latest media",
|
"HideWatchedContentFromLatestMedia": "Hide watched content from latest media",
|
||||||
"HeaderOnNow": "On Now",
|
"HeaderOnNow": "On Now",
|
||||||
"HeaderPlaybackError": "Playback Error",
|
"HeaderPlaybackError": "Chyba prehr\u00e1vania",
|
||||||
"PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.",
|
"PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.",
|
||||||
"PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.",
|
"PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.",
|
||||||
"PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.",
|
"PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.",
|
||||||
"Guide": "Guide",
|
"Guide": "Sprievodca",
|
||||||
"Suggestions": "N\u00e1vrhy",
|
"Suggestions": "N\u00e1vrhy",
|
||||||
"Favorites": "Ob\u013e\u00faben\u00e9",
|
"Favorites": "Ob\u013e\u00faben\u00e9",
|
||||||
"Collections": "Zbierky",
|
"Collections": "Zbierky",
|
||||||
"LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:",
|
"LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:",
|
||||||
"LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.",
|
"LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.",
|
||||||
"Shows": "Shows",
|
"Shows": "Seri\u00e1ly",
|
||||||
"HeaderLibraryFolders": "Library Folders",
|
"HeaderLibraryFolders": "Prie\u010dinky kni\u017enice",
|
||||||
"HeaderLandingScreens": "Landing Screens",
|
"HeaderLandingScreens": "Vstupn\u00e9 obrazovky",
|
||||||
"LandingScreensHelp": "Select the default landing screen when clicking on a library.",
|
"LandingScreensHelp": "Select the default landing screen when clicking on a library.",
|
||||||
"HeaderTermsOfPurchase": "Terms of Purchase",
|
"HeaderTermsOfPurchase": "Terms of Purchase",
|
||||||
"PrivacyPolicy": "Privacy policy",
|
"PrivacyPolicy": "Z\u00e1sady ochrany osobn\u00fdch \u00fadajov",
|
||||||
"TermsOfUse": "Terms of use",
|
"TermsOfUse": "Podmienky pou\u017eitia",
|
||||||
"RepeatMode": "Repeat mode",
|
"RepeatMode": "Repeat mode",
|
||||||
"RepeatOne": "Repeat one",
|
"RepeatOne": "Opakova\u0165 jedno",
|
||||||
"RepeatAll": "Repeat all",
|
"RepeatAll": "Opakova\u0165 v\u0161etko",
|
||||||
"ConfirmEndPlayerSession": "Would you like to close Emby on the device?",
|
"ConfirmEndPlayerSession": "Would you like to close Emby on the device?",
|
||||||
"Yes": "\u00c1no",
|
"Yes": "\u00c1no",
|
||||||
"No": "Nie",
|
"No": "Nie",
|
||||||
"LiveTV": "Live TV",
|
"LiveTV": "\u017div\u00fd TV prenos",
|
||||||
"Schedule": "Schedule",
|
"Schedule": "Schedule",
|
||||||
"Recordings": "Recordings",
|
"Recordings": "Recordings",
|
||||||
"MarkWatched": "Ozna\u010di\u0165 ako prehran\u00e9",
|
"MarkWatched": "Ozna\u010di\u0165 ako prehran\u00e9",
|
||||||
"ScanForNewAndUpdatedFiles": "Scan for new and updated files",
|
"ScanForNewAndUpdatedFiles": "H\u013eada\u0165 nov\u00e9 a aktualizovan\u00e9 s\u00fabory",
|
||||||
"DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.",
|
"DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.",
|
||||||
"DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.",
|
"DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.",
|
||||||
"MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.",
|
"MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.",
|
||||||
|
@ -480,10 +483,10 @@
|
||||||
"DirectStreaming": "Direct streaming",
|
"DirectStreaming": "Direct streaming",
|
||||||
"Transcoding": "Transcoding",
|
"Transcoding": "Transcoding",
|
||||||
"ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.",
|
"ContainerBitrateExceedsLimit": "Media bitrate exceeds limit.",
|
||||||
"VideoCodecNotSupported": "Video codec not supported",
|
"VideoCodecNotSupported": "Video kodek nie je podporovan\u00fd",
|
||||||
"AudioCodecNotSupported": "Audio codec not supported",
|
"AudioCodecNotSupported": "Audio kodek nie je podporovan\u00fd",
|
||||||
"SubtitleCodecNotSupported": "Subtitle format not supported",
|
"SubtitleCodecNotSupported": "Form\u00e1t titulkov nie je podporovan\u00fd",
|
||||||
"ContainerNotSupported": "Container not supported",
|
"ContainerNotSupported": "Kontajner nie je podporovan\u00fd",
|
||||||
"VideoLevelNotSupported": "Video level not supported",
|
"VideoLevelNotSupported": "Video level not supported",
|
||||||
"AudioBitrateNotSupported": "Audio bitrate not supported",
|
"AudioBitrateNotSupported": "Audio bitrate not supported",
|
||||||
"AudioChannelsNotSupported": "Audio channels not supported",
|
"AudioChannelsNotSupported": "Audio channels not supported",
|
||||||
|
@ -513,16 +516,16 @@
|
||||||
"NoSubtitles": "\u017diadne titulky",
|
"NoSubtitles": "\u017diadne titulky",
|
||||||
"Default": "Default",
|
"Default": "Default",
|
||||||
"Smart": "Smart",
|
"Smart": "Smart",
|
||||||
"Small": "Small",
|
"Small": "Mal\u00e9",
|
||||||
"Medium": "Medium",
|
"Medium": "Stredn\u00e9",
|
||||||
"Large": "Large",
|
"Large": "Ve\u013ek\u00e9",
|
||||||
"ExtraLarge": "Extra large",
|
"ExtraLarge": "Ve\u013emi ve\u013ek\u00e9",
|
||||||
"OnlyForcedSubtitles": "Iba vyn\u00faten\u00e9 titulky",
|
"OnlyForcedSubtitles": "Iba vyn\u00faten\u00e9 titulky",
|
||||||
"AlwaysPlaySubtitles": "Always play subtitles",
|
"AlwaysPlaySubtitles": "V\u017edy zobrazi\u0165 titulky",
|
||||||
"DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.",
|
"DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.",
|
||||||
"SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
|
"SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
|
||||||
"HeaderSubtitleSettings": "Nastavenia titulkov",
|
"HeaderSubtitleSettings": "Nastavenia titulkov",
|
||||||
"HeaderSubtitleAppearance": "Subtitle Appearance",
|
"HeaderSubtitleAppearance": "Vzh\u013ead titulkov",
|
||||||
"OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
|
"OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
|
||||||
"AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
|
"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.",
|
"NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.",
|
||||||
|
@ -530,9 +533,9 @@
|
||||||
"LabelTextSize": "Ve\u013ekos\u0165 textu:",
|
"LabelTextSize": "Ve\u013ekos\u0165 textu:",
|
||||||
"TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device",
|
"TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device",
|
||||||
"LabelDropShadow": "Drop shadow:",
|
"LabelDropShadow": "Drop shadow:",
|
||||||
"LabelTextBackgroundColor": "Text background color:",
|
"LabelTextBackgroundColor": "Farba pozadia textu:",
|
||||||
"LabelWindowBackgroundColor": "Text background color:",
|
"LabelWindowBackgroundColor": "Farba pozadia textu:",
|
||||||
"LabelFont": "Font:",
|
"LabelFont": "P\u00edsmo:",
|
||||||
"LabelTextColor": "Farba textu:",
|
"LabelTextColor": "Farba textu:",
|
||||||
"Raised": "Raised",
|
"Raised": "Raised",
|
||||||
"Depressed": "Depressed",
|
"Depressed": "Depressed",
|
||||||
|
@ -542,26 +545,26 @@
|
||||||
"SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS\/SSA).",
|
"SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS\/SSA).",
|
||||||
"LabelBurnSubtitles": "Burn subtitles:",
|
"LabelBurnSubtitles": "Burn subtitles:",
|
||||||
"OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB\/IDX, etc.)",
|
"OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||||
"Normal": "Normal",
|
"Normal": "Norm\u00e1lne",
|
||||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
||||||
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
"AllComplexFormats": "V\u0161etky komplexn\u00e9 form\u00e1ty (ASS, SSA, VOBSUB, PGS, SUB\/IDX, a pod.)",
|
||||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.",
|
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.",
|
||||||
"HeaderWaitingForWifi": "\u010cak\u00e1m na WiFi",
|
"HeaderWaitingForWifi": "\u010cak\u00e1m na WiFi",
|
||||||
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
|
||||||
"HeaderDownloadSettings": "Download Settings",
|
"HeaderDownloadSettings": "Nastavenia s\u0165ahovania",
|
||||||
"Hide": "Skry\u0165",
|
"Hide": "Skry\u0165",
|
||||||
"HeaderStartNow": "Start Now",
|
"HeaderStartNow": "Za\u010da\u0165 teraz",
|
||||||
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
|
||||||
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
|
||||||
"HeaderSecondsValue": "{0} Seconds",
|
"HeaderSecondsValue": "{0} sek\u00fand",
|
||||||
"AudioBitDepthNotSupported": "Audio bit depth not supported",
|
"AudioBitDepthNotSupported": "Audio bit depth not supported",
|
||||||
"VideoProfileNotSupported": "Video profile not supported",
|
"VideoProfileNotSupported": "Video profile not supported",
|
||||||
"VideoFramerateNotSupported": "Video framerate not supported",
|
"VideoFramerateNotSupported": "Video framerate not supported",
|
||||||
"VideoBitDepthNotSupported": "Video bit depth not supported",
|
"VideoBitDepthNotSupported": "Video bit depth not supported",
|
||||||
"RefFramesNotSupported": "Number of video reference frames not supported",
|
"RefFramesNotSupported": "Number of video reference frames not supported",
|
||||||
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.",
|
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.",
|
||||||
"StopRecording": "Stop recording",
|
"StopRecording": "Zastavi\u0165 nahr\u00e1vanie",
|
||||||
"ManageRecording": "Manage recording",
|
"ManageRecording": "Spravova\u0165 nahr\u00e1vanie",
|
||||||
"LabelDropImageHere": "Drop image here, or click to browse.",
|
"LabelDropImageHere": "Drop image here, or click to browse.",
|
||||||
"MessageFileReadError": "There was an error reading the file. Please try again.",
|
"MessageFileReadError": "There was an error reading the file. Please try again.",
|
||||||
"Browse": "Browse",
|
"Browse": "Browse",
|
||||||
|
@ -589,7 +592,7 @@
|
||||||
"EnableNextVideoInfoOverlay": "Enable next video info during playback",
|
"EnableNextVideoInfoOverlay": "Enable next video info during playback",
|
||||||
"EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.",
|
"EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.",
|
||||||
"PlayNextEpisodeAutomatically": "Automaticky prehra\u0165 \u010fal\u0161iu epiz\u00f3du",
|
"PlayNextEpisodeAutomatically": "Automaticky prehra\u0165 \u010fal\u0161iu epiz\u00f3du",
|
||||||
"LabelMaxChromecastBitrate": "Chromecast streaming quality:",
|
"LabelMaxChromecastBitrate": "Maxim\u00e1lny d\u00e1tov\u00fd tok pre Chromecast:",
|
||||||
"LabelSkipBackLength": "Skip back length:",
|
"LabelSkipBackLength": "Skip back length:",
|
||||||
"LabelSkipForwardLength": "Skip forward length:",
|
"LabelSkipForwardLength": "Skip forward length:",
|
||||||
"EnableCinemaMode": "Enable cinema mode",
|
"EnableCinemaMode": "Enable cinema mode",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"LabelVersion": "Version:",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"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.",
|
"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.",
|
"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.",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "Voice Input",
|
"VoiceInput": "Voice Input",
|
||||||
"LabelContentType": "Tip vsebine:",
|
"LabelContentType": "Tip vsebine:",
|
||||||
"LabelPath": "Path:",
|
"LabelPath": "Path:",
|
||||||
|
"Playlists": "Playlists",
|
||||||
"LabelTitle": "Title:",
|
"LabelTitle": "Title:",
|
||||||
"LabelOriginalTitle": "Original title:",
|
"LabelOriginalTitle": "Original title:",
|
||||||
"LabelSortTitle": "Sort title:",
|
"LabelSortTitle": "Sort title:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "Status:",
|
"LabelStatus": "Status:",
|
||||||
"LabelArtists": "Izvajalci:",
|
"LabelArtists": "Izvajalci:",
|
||||||
"LabelArtistsHelp": "Separate multiple using ;",
|
"LabelArtistsHelp": "Separate multiple using ;",
|
||||||
|
"HeaderAlbumArtists": "Album Artists",
|
||||||
"LabelAlbumArtists": "Album artists:",
|
"LabelAlbumArtists": "Album artists:",
|
||||||
"LabelAlbum": "Album:",
|
"LabelAlbum": "Album:",
|
||||||
"Artists": "Artists",
|
"Artists": "Artists",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"LabelVersion": "Version:",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "L\u00e5s upp denna feature med ett eng\u00e5ngsk\u00f6p, eller med ett aktivt Emby Premium-medlemskap.",
|
"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.",
|
"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.",
|
"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.",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "R\u00f6stinspelning",
|
"VoiceInput": "R\u00f6stinspelning",
|
||||||
"LabelContentType": "Inneh\u00e5llstyp:",
|
"LabelContentType": "Inneh\u00e5llstyp:",
|
||||||
"LabelPath": "S\u00f6kv\u00e4g:",
|
"LabelPath": "S\u00f6kv\u00e4g:",
|
||||||
|
"Playlists": "Playlists",
|
||||||
"LabelTitle": "Titel:",
|
"LabelTitle": "Titel:",
|
||||||
"LabelOriginalTitle": "Original titel:",
|
"LabelOriginalTitle": "Original titel:",
|
||||||
"LabelSortTitle": "Sorteringstitel:",
|
"LabelSortTitle": "Sorteringstitel:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "Status:",
|
"LabelStatus": "Status:",
|
||||||
"LabelArtists": "Artister:",
|
"LabelArtists": "Artister:",
|
||||||
"LabelArtistsHelp": "Separera med ; vid flera",
|
"LabelArtistsHelp": "Separera med ; vid flera",
|
||||||
|
"HeaderAlbumArtists": "Album Artists",
|
||||||
"LabelAlbumArtists": "Albumartist:",
|
"LabelAlbumArtists": "Albumartist:",
|
||||||
"LabelAlbum": "Album:",
|
"LabelAlbum": "Album:",
|
||||||
"Artists": "Artister",
|
"Artists": "Artister",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"LabelVersion": "Version:",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"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.",
|
"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.",
|
"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.",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "Voice Input",
|
"VoiceInput": "Voice Input",
|
||||||
"LabelContentType": "Content type:",
|
"LabelContentType": "Content type:",
|
||||||
"LabelPath": "Path:",
|
"LabelPath": "Path:",
|
||||||
|
"Playlists": "Playlists",
|
||||||
"LabelTitle": "Title:",
|
"LabelTitle": "Title:",
|
||||||
"LabelOriginalTitle": "Original title:",
|
"LabelOriginalTitle": "Original title:",
|
||||||
"LabelSortTitle": "Sort title:",
|
"LabelSortTitle": "Sort title:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "Status:",
|
"LabelStatus": "Status:",
|
||||||
"LabelArtists": "Artists:",
|
"LabelArtists": "Artists:",
|
||||||
"LabelArtistsHelp": "Separate multiple using ;",
|
"LabelArtistsHelp": "Separate multiple using ;",
|
||||||
|
"HeaderAlbumArtists": "Album Artists",
|
||||||
"LabelAlbumArtists": "Album artists:",
|
"LabelAlbumArtists": "Album artists:",
|
||||||
"LabelAlbum": "Album:",
|
"LabelAlbum": "Album:",
|
||||||
"Artists": "Artists",
|
"Artists": "Artists",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"LabelVersion": "Version:",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"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.",
|
"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.",
|
"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.",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "Voice Input",
|
"VoiceInput": "Voice Input",
|
||||||
"LabelContentType": "Content type:",
|
"LabelContentType": "Content type:",
|
||||||
"LabelPath": "\u0428\u043b\u044f\u0445:",
|
"LabelPath": "\u0428\u043b\u044f\u0445:",
|
||||||
|
"Playlists": "Playlists",
|
||||||
"LabelTitle": "Title:",
|
"LabelTitle": "Title:",
|
||||||
"LabelOriginalTitle": "Original title:",
|
"LabelOriginalTitle": "Original title:",
|
||||||
"LabelSortTitle": "Sort title:",
|
"LabelSortTitle": "Sort title:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "Status:",
|
"LabelStatus": "Status:",
|
||||||
"LabelArtists": "Artists:",
|
"LabelArtists": "Artists:",
|
||||||
"LabelArtistsHelp": "Separate multiple using ;",
|
"LabelArtistsHelp": "Separate multiple using ;",
|
||||||
|
"HeaderAlbumArtists": "Album Artists",
|
||||||
"LabelAlbumArtists": "Album artists:",
|
"LabelAlbumArtists": "Album artists:",
|
||||||
"LabelAlbum": "Album:",
|
"LabelAlbum": "Album:",
|
||||||
"Artists": "Artists",
|
"Artists": "Artists",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"LabelVersion": "Version:",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"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.",
|
"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.",
|
"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.",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "Voice Input",
|
"VoiceInput": "Voice Input",
|
||||||
"LabelContentType": "Content type:",
|
"LabelContentType": "Content type:",
|
||||||
"LabelPath": "Path:",
|
"LabelPath": "Path:",
|
||||||
|
"Playlists": "Playlists",
|
||||||
"LabelTitle": "Title:",
|
"LabelTitle": "Title:",
|
||||||
"LabelOriginalTitle": "Original title:",
|
"LabelOriginalTitle": "Original title:",
|
||||||
"LabelSortTitle": "Sort title:",
|
"LabelSortTitle": "Sort title:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "Status:",
|
"LabelStatus": "Status:",
|
||||||
"LabelArtists": "Artists:",
|
"LabelArtists": "Artists:",
|
||||||
"LabelArtistsHelp": "Separate multiple using ;",
|
"LabelArtistsHelp": "Separate multiple using ;",
|
||||||
|
"HeaderAlbumArtists": "Album Artists",
|
||||||
"LabelAlbumArtists": "Album artists:",
|
"LabelAlbumArtists": "Album artists:",
|
||||||
"LabelAlbum": "Album:",
|
"LabelAlbum": "Album:",
|
||||||
"Artists": "Artists",
|
"Artists": "Artists",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"LabelVersion": "Version:",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"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.",
|
"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.",
|
"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.",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "\u8bed\u97f3\u8f93\u5165",
|
"VoiceInput": "\u8bed\u97f3\u8f93\u5165",
|
||||||
"LabelContentType": "\u5185\u5bb9\u7c7b\u578b",
|
"LabelContentType": "\u5185\u5bb9\u7c7b\u578b",
|
||||||
"LabelPath": "\u8def\u5f84\uff1a",
|
"LabelPath": "\u8def\u5f84\uff1a",
|
||||||
|
"Playlists": "Playlists",
|
||||||
"LabelTitle": "\u6807\u9898\uff1a",
|
"LabelTitle": "\u6807\u9898\uff1a",
|
||||||
"LabelOriginalTitle": "\u539f\u6807\u9898\uff1a",
|
"LabelOriginalTitle": "\u539f\u6807\u9898\uff1a",
|
||||||
"LabelSortTitle": "\u77ed\u6807\u9898\uff1a",
|
"LabelSortTitle": "\u77ed\u6807\u9898\uff1a",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "\u72b6\u6001\uff1a",
|
"LabelStatus": "\u72b6\u6001\uff1a",
|
||||||
"LabelArtists": "\u827a\u672f\u5bb6\uff1a",
|
"LabelArtists": "\u827a\u672f\u5bb6\uff1a",
|
||||||
"LabelArtistsHelp": "\u72ec\u7acb\u591a\u529f\u80fd\uff1b",
|
"LabelArtistsHelp": "\u72ec\u7acb\u591a\u529f\u80fd\uff1b",
|
||||||
|
"HeaderAlbumArtists": "Album Artists",
|
||||||
"LabelAlbumArtists": "\u4e13\u8f91\u4f5c\u5bb6\uff1a",
|
"LabelAlbumArtists": "\u4e13\u8f91\u4f5c\u5bb6\uff1a",
|
||||||
"LabelAlbum": "\u4e13\u8f91\uff1a",
|
"LabelAlbum": "\u4e13\u8f91\uff1a",
|
||||||
"Artists": "Artists",
|
"Artists": "Artists",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"LabelVersion": "Version:",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"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.",
|
"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.",
|
"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.",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "Voice Input",
|
"VoiceInput": "Voice Input",
|
||||||
"LabelContentType": "\u5167\u5bb9\u985e\u578b\uff1a",
|
"LabelContentType": "\u5167\u5bb9\u985e\u578b\uff1a",
|
||||||
"LabelPath": "\u8def\u5f91:",
|
"LabelPath": "\u8def\u5f91:",
|
||||||
|
"Playlists": "Playlists",
|
||||||
"LabelTitle": "Title:",
|
"LabelTitle": "Title:",
|
||||||
"LabelOriginalTitle": "Original title:",
|
"LabelOriginalTitle": "Original title:",
|
||||||
"LabelSortTitle": "Sort title:",
|
"LabelSortTitle": "Sort title:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "\u72c0\u614b\uff1a",
|
"LabelStatus": "\u72c0\u614b\uff1a",
|
||||||
"LabelArtists": "\u85dd\u4eba\uff1a",
|
"LabelArtists": "\u85dd\u4eba\uff1a",
|
||||||
"LabelArtistsHelp": "\u5206\u958b\u591a\u91cd\u4f7f\u7528",
|
"LabelArtistsHelp": "\u5206\u958b\u591a\u91cd\u4f7f\u7528",
|
||||||
|
"HeaderAlbumArtists": "Album Artists",
|
||||||
"LabelAlbumArtists": "Album artists:",
|
"LabelAlbumArtists": "Album artists:",
|
||||||
"LabelAlbum": "Album:",
|
"LabelAlbum": "Album:",
|
||||||
"Artists": "Artists",
|
"Artists": "Artists",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"LabelVersion": "Version:",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"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.",
|
"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.",
|
"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.",
|
||||||
|
@ -162,6 +163,7 @@
|
||||||
"VoiceInput": "Voice Input",
|
"VoiceInput": "Voice Input",
|
||||||
"LabelContentType": "Content type:",
|
"LabelContentType": "Content type:",
|
||||||
"LabelPath": "Path:",
|
"LabelPath": "Path:",
|
||||||
|
"Playlists": "Playlists",
|
||||||
"LabelTitle": "Title:",
|
"LabelTitle": "Title:",
|
||||||
"LabelOriginalTitle": "Original title:",
|
"LabelOriginalTitle": "Original title:",
|
||||||
"LabelSortTitle": "Sort title:",
|
"LabelSortTitle": "Sort title:",
|
||||||
|
@ -170,6 +172,7 @@
|
||||||
"LabelStatus": "Status:",
|
"LabelStatus": "Status:",
|
||||||
"LabelArtists": "Artists:",
|
"LabelArtists": "Artists:",
|
||||||
"LabelArtistsHelp": "Separate multiple using ;",
|
"LabelArtistsHelp": "Separate multiple using ;",
|
||||||
|
"HeaderAlbumArtists": "Album Artists",
|
||||||
"LabelAlbumArtists": "Album artists:",
|
"LabelAlbumArtists": "Album artists:",
|
||||||
"LabelAlbum": "Album:",
|
"LabelAlbum": "Album:",
|
||||||
"Artists": "Artists",
|
"Artists": "Artists",
|
||||||
|
|
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
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
dashboard-ui/bower_components/resize-observer-polyfill/dist/ResizeObserver.js
vendored
Normal file
1
dashboard-ui/bower_components/resize-observer-polyfill/dist/ResizeObserver.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
File diff suppressed because one or more lines are too long
|
@ -1 +1 @@
|
||||||
.nowPlayingInfoContainer{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;flex-direction:row}.nowPlayingPageTitle{margin:0 0 .5em .5em}.nowPlayingPositionSliderContainer{margin:.7em 0 .7em 1em}.nowPlayingInfoButtons{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-flex-wrap:wrap;flex-wrap:wrap;font-size:130%}.nowPlayingInfoControls,.nowPlayingTime{display:-webkit-box;display:-webkit-flex}.nowPlayingPageImageContainer{width:20%;margin-right:.25em;position:relative;-webkit-flex-shrink:0;flex-shrink:0}@media all and (min-width:50em){.nowPlayingPageImageContainer{width:16%}}.nowPlayingInfoControls{-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.nowPlayingPageImage{bottom:0;left:0;right:0;width:100%;-webkit-box-shadow:0 0 1.9vh #000;box-shadow:0 0 1.9vh #000;border:1px solid #222;user-drag:none;user-select:none;-moz-user-select:none;-webkit-user-drag:none;-webkit-user-select:none;-ms-user-select:none}@media all and (orientation:portrait) and (max-width:50em){.remoteControlContent{padding-top:0}.nowPlayingInfoContainer{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;flex-direction:column!important;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.nowPlayingPageTitle{text-align:center;margin:.5em 0 .75em}.nowPlayingPositionSliderContainer{margin:.7em 1em}.nowPlayingInfoButtons{-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.nowPlayingPageImageContainer{width:auto;margin-right:0}.nowPlayingInfoControls{margin-top:1em;max-width:100%}.nowPlayingPageImage{width:auto;height:36vh}}@media all and (orientation:portrait) and (max-width:40em){.nowPlayingPageImage{height:30vh}}.nowPlayingTime{display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin:0 1em}.nowPlayingSecondaryButtons{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}@media all and (min-width:50em){.nowPlayingSecondaryButtons{-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end}}@media all and (min-width:80em){.nowPlayingPageImageContainer{margin-right:.75em}}.nowPlayingNavButtonContainer{width:30em}.smallBackdropPosterItem .cardOverlayInner>div{white-space:nowrap;-o-text-overflow:ellipsis;text-overflow:ellipsis;overflow:hidden}.playlistIndexIndicatorImage{-webkit-background-size:initial initial!important;background-size:initial!important;background-image:url(images/ani_equalizer_white.gif)!important}.hideVideoButtons .videoButton{display:none}.nowPlayingCastIcon{font-size:86%}.nowPlayingVolumeSliderContainer{width:6em}@media all and (max-width:25em){.playlist .listItemMediaInfo{display:none!important}}@media all and (max-width:40em){.btnNowPlayingFastForward,.btnNowPlayingRewind{display:none!important}}
|
.nowPlayingInfoContainer{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;flex-direction:row}.nowPlayingPageTitle{margin:0 0 .5em .5em}.nowPlayingPositionSliderContainer{margin:.7em 0 .7em 1em}.nowPlayingInfoButtons{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-flex-wrap:wrap;flex-wrap:wrap;font-size:120%}.nowPlayingInfoControls,.nowPlayingTime{display:-webkit-box;display:-webkit-flex}.nowPlayingPageImageContainer{width:20%;margin-right:.25em;position:relative;-webkit-flex-shrink:0;flex-shrink:0}@media all and (min-width:50em){.nowPlayingPageImageContainer{width:16%}}.nowPlayingInfoControls{-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.nowPlayingPageImage{bottom:0;left:0;right:0;width:100%;-webkit-box-shadow:0 0 1.9vh #000;box-shadow:0 0 1.9vh #000;border:1px solid #222;user-drag:none;user-select:none;-moz-user-select:none;-webkit-user-drag:none;-webkit-user-select:none;-ms-user-select:none}@media all and (orientation:portrait) and (max-width:50em){.remoteControlContent{padding-top:0}.nowPlayingInfoContainer{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;flex-direction:column!important;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.nowPlayingPageTitle{text-align:center;margin:.5em 0 .75em}.nowPlayingPositionSliderContainer{margin:.7em 1em}.nowPlayingInfoButtons{-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.nowPlayingPageImageContainer{width:auto;margin-right:0}.nowPlayingInfoControls{margin-top:1em;max-width:100%}.nowPlayingPageImage{width:auto;height:36vh}}@media all and (orientation:portrait) and (max-width:40em){.nowPlayingPageImage{height:30vh}}.nowPlayingTime{display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin:0 1em}.nowPlayingSecondaryButtons{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}@media all and (min-width:50em){.nowPlayingSecondaryButtons{-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end}}@media all and (min-width:80em){.nowPlayingPageImageContainer{margin-right:.75em}}.nowPlayingNavButtonContainer{width:30em}.smallBackdropPosterItem .cardOverlayInner>div{white-space:nowrap;-o-text-overflow:ellipsis;text-overflow:ellipsis;overflow:hidden}.playlistIndexIndicatorImage{-webkit-background-size:initial initial!important;background-size:initial!important;background-image:url(images/ani_equalizer_white.gif)!important}.hideVideoButtons .videoButton{display:none}.nowPlayingVolumeSliderContainer{width:6em}@media all and (max-width:25em){.playlist .listItemMediaInfo{display:none!important}}@media all and (max-width:40em){.btnNowPlayingFastForward,.btnNowPlayingRewind{display:none!important}}
|
|
@ -12,7 +12,7 @@
|
||||||
<div class="nowPlayingPageImageContainer"></div>
|
<div class="nowPlayingPageImageContainer"></div>
|
||||||
<div class="nowPlayingInfoControls">
|
<div class="nowPlayingInfoControls">
|
||||||
|
|
||||||
<h1 class="nowPlayingPageTitle"></h1>
|
<h2 class="nowPlayingPageTitle"></h2>
|
||||||
|
|
||||||
<div class="sliderContainer nowPlayingPositionSliderContainer">
|
<div class="sliderContainer nowPlayingPositionSliderContainer">
|
||||||
<input type="range" is="emby-slider" pin step="1" min="0" max="100" value="0" class="nowPlayingPositionSlider" />
|
<input type="range" is="emby-slider" pin step="1" min="0" max="100" value="0" class="nowPlayingPositionSlider" />
|
||||||
|
@ -136,7 +136,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="hide">
|
<div class="hide">
|
||||||
<div class="sendMessageSection">
|
<div class="sendMessageSection">
|
||||||
<br /><h1>${HeaderSendMessage}</h1>
|
<br /><h2>${HeaderSendMessage}</h2>
|
||||||
<div style="text-align: left;">
|
<div style="text-align: left;">
|
||||||
<form class="sendMessageForm">
|
<form class="sendMessageForm">
|
||||||
<div class="inputContainer">
|
<div class="inputContainer">
|
||||||
|
@ -153,7 +153,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="sendTextSection">
|
<div class="sendTextSection">
|
||||||
<br /><h1>${HeaderTypeText}</h1>
|
<br /><h2>${HeaderTypeText}</h2>
|
||||||
<div style="text-align: left;">
|
<div style="text-align: left;">
|
||||||
<form class="typeTextForm">
|
<form class="typeTextForm">
|
||||||
<div class="inputContainer">
|
<div class="inputContainer">
|
||||||
|
@ -170,7 +170,7 @@
|
||||||
<br />
|
<br />
|
||||||
<div class="playlistSection hide">
|
<div class="playlistSection hide">
|
||||||
<div style="display: flex; align-items: center;margin:2em 0 1em">
|
<div style="display: flex; align-items: center;margin:2em 0 1em">
|
||||||
<h1 style="margin:0;">${TabPlaylist}</h1>
|
<h2 style="margin:0;">${TabPlaylist}</h2>
|
||||||
<button is="paper-icon-button-light" class="btnSavePlaylist" title="${ButtonSave}" style="margin-left:1em;">
|
<button is="paper-icon-button-light" class="btnSavePlaylist" title="${ButtonSave}" style="margin-left:1em;">
|
||||||
<i class="md-icon"></i>
|
<i class="md-icon"></i>
|
||||||
</button>
|
</button>
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1 +1 @@
|
||||||
define(["userSettings","skinManager"],function(userSettings,skinManager){"use strict";var currentViewType;pageClassOn("viewbeforeshow","page",function(){var viewType=this.getAttribute("data-theme");if(viewType||(viewType=this.classList.contains("type-interior")||this.classList.contains("wizardPage")?"a":"b"),viewType!==currentViewType){currentViewType=viewType;var theme,context;"a"===viewType?(theme=userSettings.dashboardTheme(),context="serverdashboard"):theme=userSettings.theme(),skinManager.setTheme(theme,context)}})});
|
define(["userSettings","skinManager","connectionManager","events"],function(userSettings,skinManager,connectionManager,events){"use strict";var currentViewType;pageClassOn("viewbeforeshow","page",function(){var classList=this.classList,viewType=classList.contains("type-interior")||classList.contains("wizardPage")?"a":"b";if(viewType!==currentViewType){currentViewType=viewType;var theme,context;"a"===viewType?(theme=userSettings.dashboardTheme(),context="serverdashboard"):theme=userSettings.theme(),skinManager.setTheme(theme,context)}}),events.on(connectionManager,"localusersignedin",function(e,user){currentViewType=null})});
|
|
@ -1853,5 +1853,7 @@
|
||||||
"CancelSeries": "Cancel series",
|
"CancelSeries": "Cancel series",
|
||||||
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
||||||
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
||||||
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage."
|
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage.",
|
||||||
|
"LabelSimultaneousConnectionLimit": "Simultaneous stream limit:",
|
||||||
|
"SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit."
|
||||||
}
|
}
|
|
@ -1853,5 +1853,7 @@
|
||||||
"CancelSeries": "Cancel series",
|
"CancelSeries": "Cancel series",
|
||||||
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
||||||
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
||||||
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage."
|
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage.",
|
||||||
|
"LabelSimultaneousConnectionLimit": "Simultaneous stream limit:",
|
||||||
|
"SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit."
|
||||||
}
|
}
|
|
@ -1853,5 +1853,7 @@
|
||||||
"CancelSeries": "Cancel series",
|
"CancelSeries": "Cancel series",
|
||||||
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
||||||
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
||||||
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage."
|
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage.",
|
||||||
|
"LabelSimultaneousConnectionLimit": "Simultaneous stream limit:",
|
||||||
|
"SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit."
|
||||||
}
|
}
|
|
@ -1853,5 +1853,7 @@
|
||||||
"CancelSeries": "Cancel series",
|
"CancelSeries": "Cancel series",
|
||||||
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
||||||
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
||||||
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage."
|
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage.",
|
||||||
|
"LabelSimultaneousConnectionLimit": "Simultaneous stream limit:",
|
||||||
|
"SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit."
|
||||||
}
|
}
|
|
@ -1853,5 +1853,7 @@
|
||||||
"CancelSeries": "Cancel series",
|
"CancelSeries": "Cancel series",
|
||||||
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
||||||
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
||||||
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage."
|
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage.",
|
||||||
|
"LabelSimultaneousConnectionLimit": "Simultaneous stream limit:",
|
||||||
|
"SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit."
|
||||||
}
|
}
|
|
@ -1853,5 +1853,7 @@
|
||||||
"CancelSeries": "Cancel series",
|
"CancelSeries": "Cancel series",
|
||||||
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
||||||
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
||||||
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage."
|
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage.",
|
||||||
|
"LabelSimultaneousConnectionLimit": "Simultaneous stream limit:",
|
||||||
|
"SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit."
|
||||||
}
|
}
|
|
@ -940,7 +940,7 @@
|
||||||
"LabelEnableCinemaMode": "Aktiviere den Kino-Modus",
|
"LabelEnableCinemaMode": "Aktiviere den Kino-Modus",
|
||||||
"HeaderCinemaMode": "Kino-Modus",
|
"HeaderCinemaMode": "Kino-Modus",
|
||||||
"LabelDateAddedBehavior": "Verhalten f\u00fcr Hinzuf\u00fcgedatum bei neuen Inhalten:",
|
"LabelDateAddedBehavior": "Verhalten f\u00fcr Hinzuf\u00fcgedatum bei neuen Inhalten:",
|
||||||
"OptionDateAddedImportTime": "Benutze das Scandatum vom hinzuf\u00fcgen in die Bbliothek",
|
"OptionDateAddedImportTime": "Benutze das Scandatum vom Hinzuf\u00fcgen in die Bibliothek",
|
||||||
"OptionDateAddedFileTime": "Benutze das Erstellungsdatum der Datei",
|
"OptionDateAddedFileTime": "Benutze das Erstellungsdatum der Datei",
|
||||||
"LabelDateAddedBehaviorHelp": "Wenn ein Metadatenwert vorhanden ist, wird dieser immer gegen\u00fcber den anderen Optionen bevorzugt werden.",
|
"LabelDateAddedBehaviorHelp": "Wenn ein Metadatenwert vorhanden ist, wird dieser immer gegen\u00fcber den anderen Optionen bevorzugt werden.",
|
||||||
"LabelNumberTrailerToPlay": "Anzahl der abzuspielenden Trailer:",
|
"LabelNumberTrailerToPlay": "Anzahl der abzuspielenden Trailer:",
|
||||||
|
@ -1853,5 +1853,7 @@
|
||||||
"CancelSeries": "Serienaufnahme beenden",
|
"CancelSeries": "Serienaufnahme beenden",
|
||||||
"EnableDebugLoggingHelp": "Debug-Logging sollte nur zur Fehlersuche aktiviert werden. Der Zugriff auf das Dateisystem kann das System unter Umst\u00e4nden daran hindern, in den Energiesparmodus zu gehen.",
|
"EnableDebugLoggingHelp": "Debug-Logging sollte nur zur Fehlersuche aktiviert werden. Der Zugriff auf das Dateisystem kann das System unter Umst\u00e4nden daran hindern, in den Energiesparmodus zu gehen.",
|
||||||
"SaveSubtitlesInOriginalMediaFolders": "Speichere Untertitel in den Medienverzeichnissen",
|
"SaveSubtitlesInOriginalMediaFolders": "Speichere Untertitel in den Medienverzeichnissen",
|
||||||
"SaveSubtitlesInOriginalMediaFoldersHelp": "Untertitel in den Medienverzeichnissen speichern macht es einfacher sie zu lokalisieren und zu organisieren."
|
"SaveSubtitlesInOriginalMediaFoldersHelp": "Untertitel in den Medienverzeichnissen speichern macht es einfacher sie zu lokalisieren und zu organisieren.",
|
||||||
|
"LabelSimultaneousConnectionLimit": "Simultaneous stream limit:",
|
||||||
|
"SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit."
|
||||||
}
|
}
|
|
@ -20,17 +20,17 @@
|
||||||
"ButtonConvertMedia": "\u039c\u03b5\u03c4\u03b1\u03c4\u03c1\u03bf\u03c0\u03ae \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5",
|
"ButtonConvertMedia": "\u039c\u03b5\u03c4\u03b1\u03c4\u03c1\u03bf\u03c0\u03ae \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5",
|
||||||
"HeaderSupporterBenefits": "\u03a0\u03c1\u03bf\u03bd\u03cc\u03bc\u03b9\u03b1 Emby Premiere",
|
"HeaderSupporterBenefits": "\u03a0\u03c1\u03bf\u03bd\u03cc\u03bc\u03b9\u03b1 Emby Premiere",
|
||||||
"HeaderAddUser": "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03a7\u03c1\u03ae\u03c3\u03c4\u03b7",
|
"HeaderAddUser": "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03a7\u03c1\u03ae\u03c3\u03c4\u03b7",
|
||||||
"LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
|
"LabelAddConnectSupporterHelp": "\u0393\u03b9\u03b1 \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03b5\u03c4\u03b5 \u03ad\u03bd\u03b1\u03bd \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03c0\u03bf\u03c5 \u03b4\u03b5\u03bd \u03c0\u03b5\u03c1\u03b9\u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03b5\u03c4\u03b1\u03b9 \u03c3\u03c4\u03b7 \u03bb\u03af\u03c3\u03c4\u03b1, \u03b8\u03b1 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03c0\u03c1\u03ce\u03c4\u03b1 \u03bd\u03b1 \u03c3\u03c5\u03bd\u03b4\u03ad\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc \u03c4\u03bf\u03c5 \u03bc\u03b5 \u03c4\u03bf Emby Connect \u03b1\u03c0\u03cc \u03c4\u03b7 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1 \u03c4\u03bf\u03c5 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7.",
|
||||||
"LabelPinCode": "\u039a\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 PIN:",
|
"LabelPinCode": "\u039a\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 PIN:",
|
||||||
"DeleteMedia": "Delete media",
|
"DeleteMedia": "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae media",
|
||||||
"HeaderSync": "\u03a3\u03c5\u03b3\u03c7\u03c1\u03bf\u03bd\u03b9\u03c3\u03bc\u03cc\u03c2",
|
"HeaderSync": "\u03a3\u03c5\u03b3\u03c7\u03c1\u03bf\u03bd\u03b9\u03c3\u03bc\u03cc\u03c2",
|
||||||
"HeaderPlayAll": "Play All",
|
"HeaderPlayAll": "\u0391\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae \u038c\u03bb\u03c9\u03bd",
|
||||||
"HeaderUpcomingNews": "Upcoming News",
|
"HeaderUpcomingNews": "\u0395\u03c0\u03b5\u03c1\u03c7\u03cc\u03bc\u03b5\u03bd\u03b1 \u039d\u03ad\u03b1",
|
||||||
"ButtonOk": "Ok",
|
"ButtonOk": "Ok",
|
||||||
"ButtonCancel": "\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 ",
|
"ButtonCancel": "\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 ",
|
||||||
"ButtonExit": "\u0388\u03be\u03bf\u03b4\u03bf\u03c2",
|
"ButtonExit": "\u0388\u03be\u03bf\u03b4\u03bf\u03c2",
|
||||||
"ButtonNew": "\u039d\u03ad\u03bf",
|
"ButtonNew": "\u039d\u03ad\u03bf",
|
||||||
"All": "All",
|
"All": "\u038c\u03bb\u03b1",
|
||||||
"OptionDev": "\u03a5\u03c0\u03cc \u03b1\u03bd\u03ac\u03c0\u03c4\u03c5\u03be\u03b7",
|
"OptionDev": "\u03a5\u03c0\u03cc \u03b1\u03bd\u03ac\u03c0\u03c4\u03c5\u03be\u03b7",
|
||||||
"OptionBeta": "\u0394\u03bf\u03ba\u03b9\u03bc\u03b1\u03c3\u03c4\u03b9\u03ba\u03ae",
|
"OptionBeta": "\u0394\u03bf\u03ba\u03b9\u03bc\u03b1\u03c3\u03c4\u03b9\u03ba\u03ae",
|
||||||
"HeaderTaskTriggers": "Task Triggers",
|
"HeaderTaskTriggers": "Task Triggers",
|
||||||
|
@ -40,7 +40,7 @@
|
||||||
"HeaderPaths": "\u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae",
|
"HeaderPaths": "\u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae",
|
||||||
"CategorySync": "\u03a3\u03c5\u03c7\u03c1\u03bf\u03bd\u03b9\u03c3\u03bc\u03cc\u03c2",
|
"CategorySync": "\u03a3\u03c5\u03c7\u03c1\u03bf\u03bd\u03b9\u03c3\u03bc\u03cc\u03c2",
|
||||||
"TabPlaylist": "\u039b\u03af\u03c3\u03c4\u03b1",
|
"TabPlaylist": "\u039b\u03af\u03c3\u03c4\u03b1",
|
||||||
"HeaderInstantMix": "Instant Mix",
|
"HeaderInstantMix": "\u0386\u03bc\u03b5\u03c3\u03b7 Mix",
|
||||||
"HeaderEasyPinCode": "\u039a\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 PIN",
|
"HeaderEasyPinCode": "\u039a\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 PIN",
|
||||||
"HeaderInstalledServices": "\u0395\u03b3\u03ba\u03b1\u03c4\u03b5\u03c3\u03c4\u03b7\u03bc\u03ad\u03bd\u03b5\u03c2 \u03a5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b5\u03c2",
|
"HeaderInstalledServices": "\u0395\u03b3\u03ba\u03b1\u03c4\u03b5\u03c3\u03c4\u03b7\u03bc\u03ad\u03bd\u03b5\u03c2 \u03a5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b5\u03c2",
|
||||||
"HeaderAvailableServices": "\u0394\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b5\u03c2 \u03a5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b5\u03c2",
|
"HeaderAvailableServices": "\u0394\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b5\u03c2 \u03a5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b5\u03c2",
|
||||||
|
@ -49,14 +49,14 @@
|
||||||
"ButtonConfigurePinCode": "\u039a\u03b1\u03b8\u03bf\u03c1\u03af\u03c3\u03c4\u03b5 \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc PIN",
|
"ButtonConfigurePinCode": "\u039a\u03b1\u03b8\u03bf\u03c1\u03af\u03c3\u03c4\u03b5 \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc PIN",
|
||||||
"RegisterWithPayPal": "\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae \u03bc\u03b5 Paypal",
|
"RegisterWithPayPal": "\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae \u03bc\u03b5 Paypal",
|
||||||
"LabelSyncTempPath": "\u03a6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2 \u03c0\u03c1\u03bf\u03c3\u03c9\u03c1\u03b9\u03bd\u03ce\u03bd \u03b1\u03c1\u03c7\u03b5\u03af\u03c9\u03bd:",
|
"LabelSyncTempPath": "\u03a6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2 \u03c0\u03c1\u03bf\u03c3\u03c9\u03c1\u03b9\u03bd\u03ce\u03bd \u03b1\u03c1\u03c7\u03b5\u03af\u03c9\u03bd:",
|
||||||
"LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
|
"LabelSyncTempPathHelp": "\u039a\u03b1\u03b8\u03bf\u03c1\u03af\u03c3\u03c4\u03b5 \u03ad\u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2 \u03c3\u03c5\u03b3\u03c7\u03c1\u03bf\u03bd\u03b9\u03c3\u03bc\u03bf\u03cd. \u03a4\u03b1 \u03bc\u03b5\u03c4\u03b1\u03c4\u03c1\u03b5\u03c0\u03cc\u03bc\u03b5\u03bd\u03b1 \u03bc\u03ad\u03c3\u03b1 \u03c0\u03bf\u03c5 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03b8\u03b7\u03ba\u03b1\u03bd \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7 \u03b4\u03b9\u03b1\u03b4\u03b9\u03ba\u03b1\u03c3\u03af\u03b1 \u03c3\u03c5\u03b3\u03c7\u03c1\u03bf\u03bd\u03b9\u03c3\u03bc\u03bf\u03cd \u03b8\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd \u03b5\u03b4\u03ce.",
|
||||||
"LabelCustomCertificatePath": "Custom ssl certificate path:",
|
"LabelCustomCertificatePath": "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03c0\u03b9\u03c3\u03c4\u03bf\u03c0\u03bf\u03b9\u03b7\u03c4\u03b9\u03ba\u03bf\u03cd SSL",
|
||||||
"LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file.",
|
"LabelCustomCertificatePathHelp": "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03c4\u03b5 \u03c4\u03bf \u03b4\u03b9\u03ba\u03cc \u03c3\u03b1\u03c2 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf .pfx \u03c0\u03b9\u03c3\u03c4\u03bf\u03c0\u03bf\u03b9\u03b7\u03c4\u03b9\u03ba\u03bf\u03cd ssl.",
|
||||||
"TitleNotifications": "\u0395\u03b9\u03b4\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03b9\u03c2",
|
"TitleNotifications": "\u0395\u03b9\u03b4\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03b9\u03c2",
|
||||||
"OptionDetectArchiveFilesAsMedia": "\u0391\u03bd\u03b1\u03b3\u03bd\u03ce\u03c1\u03b9\u03c3\u03b5 \u03a3\u03c5\u03bc\u03c0\u03b9\u03b5\u03c3\u03bc\u03ad\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03c9\u03c2 \u03c0\u03bf\u03bb\u03c5\u03bc\u03ad\u03c3\u03b1.",
|
"OptionDetectArchiveFilesAsMedia": "\u0391\u03bd\u03b1\u03b3\u03bd\u03ce\u03c1\u03b9\u03c3\u03b5 \u03a3\u03c5\u03bc\u03c0\u03b9\u03b5\u03c3\u03bc\u03ad\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03c9\u03c2 \u03c0\u03bf\u03bb\u03c5\u03bc\u03ad\u03c3\u03b1.",
|
||||||
"OptionDetectArchiveFilesAsMediaHelp": "\u0391\u03c1\u03c7\u03b5\u03af\u03b1 \u03bc\u03b5 .rar \u03ba\u03b1\u03b9 .zip \u03ba\u03b1\u03c4\u03b1\u03bb\u03ae\u03be\u03b5\u03b9\u03c2 \u03b8\u03b1 \u03b1\u03bd\u03b1\u03b3\u03bd\u03c9\u03c1\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c9\u03c2 \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03c0\u03bf\u03bb\u03c5\u03bc\u03ad\u03c3\u03c9\u03bd.",
|
"OptionDetectArchiveFilesAsMediaHelp": "\u0391\u03c1\u03c7\u03b5\u03af\u03b1 \u03bc\u03b5 .rar \u03ba\u03b1\u03b9 .zip \u03ba\u03b1\u03c4\u03b1\u03bb\u03ae\u03be\u03b5\u03b9\u03c2 \u03b8\u03b1 \u03b1\u03bd\u03b1\u03b3\u03bd\u03c9\u03c1\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c9\u03c2 \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03c0\u03bf\u03bb\u03c5\u03bc\u03ad\u03c3\u03c9\u03bd.",
|
||||||
"LabelEnterConnectUserName": "\u038c\u03bd\u03bf\u03bc\u03b1 \u03c7\u03c1\u03ae\u03c3\u03b7 \u03ae email:",
|
"LabelEnterConnectUserName": "\u038c\u03bd\u03bf\u03bc\u03b1 \u03c7\u03c1\u03ae\u03c3\u03b7 \u03ae email:",
|
||||||
"LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
|
"LabelEnterConnectUserNameHelp": "\u0391\u03c5\u03c4\u03cc \u03b5\u03af\u03bd\u03b1\u03b9 \u03c4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03ae \u03c4\u03bf \u03b7\u03bb\u03b5\u03ba\u03c4\u03c1\u03bf\u03bd\u03b9\u03ba\u03cc \u03c4\u03b1\u03c7\u03c5\u03b4\u03c1\u03bf\u03bc\u03b5\u03af\u03bf \u03c4\u03bf\u03c5 \u03b7\u03bb\u03b5\u03ba\u03c4\u03c1\u03bf\u03bd\u03b9\u03ba\u03bf\u03cd \u03c3\u03b1\u03c2 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd Emby.",
|
||||||
"HeaderSyncJobInfo": "\u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03a3\u03c5\u03b3\u03c7\u03c1\u03bf\u03bd\u03b9\u03c3\u03bc\u03bf\u03cd",
|
"HeaderSyncJobInfo": "\u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03a3\u03c5\u03b3\u03c7\u03c1\u03bf\u03bd\u03b9\u03c3\u03bc\u03bf\u03cd",
|
||||||
"FolderTypeMixed": "\u0391\u03bd\u03ac\u03bc\u03b5\u03b9\u03ba\u03c4\u03bf \u03a0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf",
|
"FolderTypeMixed": "\u0391\u03bd\u03ac\u03bc\u03b5\u03b9\u03ba\u03c4\u03bf \u03a0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf",
|
||||||
"FolderTypeMovies": "\u03a4\u03b1\u03b9\u03bd\u03af\u03b5\u03c2",
|
"FolderTypeMovies": "\u03a4\u03b1\u03b9\u03bd\u03af\u03b5\u03c2",
|
||||||
|
@ -69,7 +69,7 @@
|
||||||
"FolderTypeInherit": "Inherit",
|
"FolderTypeInherit": "Inherit",
|
||||||
"LabelContentType": "\u03a4\u03cd\u03c0\u03bf\u03c2 \u03b1\u03c1\u03c7\u03b5\u03af\u03c9\u03bd:",
|
"LabelContentType": "\u03a4\u03cd\u03c0\u03bf\u03c2 \u03b1\u03c1\u03c7\u03b5\u03af\u03c9\u03bd:",
|
||||||
"TitleScheduledTasks": "\u03a0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03bc\u03ad\u03bd\u03b5\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2",
|
"TitleScheduledTasks": "\u03a0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03bc\u03ad\u03bd\u03b5\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2",
|
||||||
"HeaderSetupLibrary": "Setup your media libraries",
|
"HeaderSetupLibrary": "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03c4\u03b5 \u03c4\u03b9\u03c2 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b5\u03c2 \u03c0\u03bf\u03bb\u03c5\u03bc\u03ad\u03c3\u03c9\u03bd \u03c3\u03b1\u03c2",
|
||||||
"LabelFolderType": "\u03a4\u03cd\u03c0\u03bf\u03c2 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5:",
|
"LabelFolderType": "\u03a4\u03cd\u03c0\u03bf\u03c2 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5:",
|
||||||
"LabelCountry": "\u03a7\u03ce\u03c1\u03b1",
|
"LabelCountry": "\u03a7\u03ce\u03c1\u03b1",
|
||||||
"LabelLanguage": "\u0393\u03bb\u03ce\u03c3\u03c3\u03b1:",
|
"LabelLanguage": "\u0393\u03bb\u03ce\u03c3\u03c3\u03b1:",
|
||||||
|
@ -78,38 +78,38 @@
|
||||||
"LabelSaveLocalMetadata": "\u0391\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf \u03b5\u03be\u03ce\u03c6\u03c5\u03bb\u03bb\u03bf \u03ba\u03b1\u03b9 \u03c4\u03b9\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03c3\u03c4\u03bf\u03c5\u03c2 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5\u03c2 \u03c4\u03c9\u03bd \u03b1\u03c1\u03c7\u03b5\u03af\u03c9\u03bd",
|
"LabelSaveLocalMetadata": "\u0391\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf \u03b5\u03be\u03ce\u03c6\u03c5\u03bb\u03bb\u03bf \u03ba\u03b1\u03b9 \u03c4\u03b9\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03c3\u03c4\u03bf\u03c5\u03c2 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5\u03c2 \u03c4\u03c9\u03bd \u03b1\u03c1\u03c7\u03b5\u03af\u03c9\u03bd",
|
||||||
"LabelSaveLocalMetadataHelp": "\u0391\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03bf\u03bd\u03c4\u03b1\u03c2 \u03c4\u03bf \u03b5\u03be\u03ce\u03c6\u03c5\u03bb\u03bb\u03bf \u03ba\u03b1\u03b9 \u03c4\u03b9\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b1\u03c0\u03b5\u03c5\u03b8\u03b5\u03af\u03b1\u03c2 \u03c3\u03c4\u03bf\u03c5\u03c2 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5\u03c2 \u03c4\u03c9\u03bd \u03b1\u03c1\u03c7\u03b5\u03af\u03c9\u03bd \u03b8\u03b1 \u03c3\u03b1\u03c2 \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c8\u03b5\u03b9 \u03c4\u03b7\u03bd \u03b5\u03c5\u03ba\u03bf\u03bb\u03cc\u03c4\u03b5\u03c1\u03b7 \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03c4\u03bf\u03c5\u03c2.",
|
"LabelSaveLocalMetadataHelp": "\u0391\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03bf\u03bd\u03c4\u03b1\u03c2 \u03c4\u03bf \u03b5\u03be\u03ce\u03c6\u03c5\u03bb\u03bb\u03bf \u03ba\u03b1\u03b9 \u03c4\u03b9\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b1\u03c0\u03b5\u03c5\u03b8\u03b5\u03af\u03b1\u03c2 \u03c3\u03c4\u03bf\u03c5\u03c2 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5\u03c2 \u03c4\u03c9\u03bd \u03b1\u03c1\u03c7\u03b5\u03af\u03c9\u03bd \u03b8\u03b1 \u03c3\u03b1\u03c2 \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c8\u03b5\u03b9 \u03c4\u03b7\u03bd \u03b5\u03c5\u03ba\u03bf\u03bb\u03cc\u03c4\u03b5\u03c1\u03b7 \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03c4\u03bf\u03c5\u03c2.",
|
||||||
"LabelDownloadInternetMetadata": "\u039a\u03b1\u03c4\u03b5\u03b2\u03ac\u03c3\u03c4\u03b5 \u03b5\u03be\u03ce\u03c6\u03c5\u03bb\u03bb\u03b1 \u03ba\u03b1\u03b9 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b1\u03c0\u03cc \u03c4\u03bf internet ",
|
"LabelDownloadInternetMetadata": "\u039a\u03b1\u03c4\u03b5\u03b2\u03ac\u03c3\u03c4\u03b5 \u03b5\u03be\u03ce\u03c6\u03c5\u03bb\u03bb\u03b1 \u03ba\u03b1\u03b9 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b1\u03c0\u03cc \u03c4\u03bf internet ",
|
||||||
"LabelDownloadInternetMetadataHelp": "Emby Server can download information about your media to enable rich presentations.",
|
"LabelDownloadInternetMetadataHelp": "\u03a4\u03bf Emby Server \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03ba\u03b1\u03c4\u03b5\u03b2\u03ac\u03c3\u03b5\u03b9 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03c3\u03c7\u03b5\u03c4\u03b9\u03ba\u03ac \u03bc\u03b5 \u03c4\u03b1 \u03bc\u03ad\u03c3\u03b1 \u03c3\u03b1\u03c2 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03b9 \u03c4\u03b9\u03c2 \u03c0\u03bb\u03bf\u03cd\u03c3\u03b9\u03b5\u03c2 \u03c0\u03b1\u03c1\u03bf\u03c5\u03c3\u03b9\u03ac\u03c3\u03b5\u03b9\u03c2.",
|
||||||
"TabPassword": "\u039a\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2",
|
"TabPassword": "\u039a\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2",
|
||||||
"TabLibraryAccess": "\u03a0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7",
|
"TabLibraryAccess": "\u03a0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7",
|
||||||
"TabAccess": "\u03a0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7",
|
"TabAccess": "\u03a0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7",
|
||||||
"TabImage": "\u0395\u03b9\u03ba\u03cc\u03bd\u03b1",
|
"TabImage": "\u0395\u03b9\u03ba\u03cc\u03bd\u03b1",
|
||||||
"TabProfile": "\u03a0\u03c1\u03bf\u03c6\u03af\u03bb",
|
"TabProfile": "\u03a0\u03c1\u03bf\u03c6\u03af\u03bb",
|
||||||
"TabMetadata": "Metadata",
|
"TabMetadata": "\u039c\u03b5\u03c4\u03b1\u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1",
|
||||||
"TabImages": "\u0395\u03b9\u03ba\u03cc\u03bd\u03b5\u03c2",
|
"TabImages": "\u0395\u03b9\u03ba\u03cc\u03bd\u03b5\u03c2",
|
||||||
"TabNotifications": "\u0395\u03b9\u03b4\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03b9\u03c2",
|
"TabNotifications": "\u0395\u03b9\u03b4\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03b9\u03c2",
|
||||||
"TabCollectionTitles": "\u03a4\u03af\u03c4\u03bb\u03bf\u03b9",
|
"TabCollectionTitles": "\u03a4\u03af\u03c4\u03bb\u03bf\u03b9",
|
||||||
"HeaderDeviceAccess": "\u03a0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03a3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2",
|
"HeaderDeviceAccess": "\u03a0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03a3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2",
|
||||||
"OptionEnableAccessFromAllDevices": "\u03a0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03b1\u03c0\u03cc \u03cc\u03bb\u03b5\u03c2 \u03c4\u03b9\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ad\u03c2",
|
"OptionEnableAccessFromAllDevices": "\u03a0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03b1\u03c0\u03cc \u03cc\u03bb\u03b5\u03c2 \u03c4\u03b9\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ad\u03c2",
|
||||||
"OptionEnableAccessToAllChannels": "Enable access to all channels",
|
"OptionEnableAccessToAllChannels": "\u0395\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03c4\u03b5 \u03c4\u03b7\u03bd \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03c3\u03b5 \u03cc\u03bb\u03b1 \u03c4\u03b1 \u03ba\u03b1\u03bd\u03ac\u03bb\u03b9\u03b1",
|
||||||
"OptionEnableAccessToAllLibraries": "\u03a0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03c3\u03b5 \u03cc\u03bb\u03b5\u03c2 \u03c4\u03b9\u03c2 \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b5\u03c2",
|
"OptionEnableAccessToAllLibraries": "\u03a0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03c3\u03b5 \u03cc\u03bb\u03b5\u03c2 \u03c4\u03b9\u03c2 \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b5\u03c2",
|
||||||
"DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
|
"DeviceAccessHelp": "\u0391\u03c5\u03c4\u03cc \u03b9\u03c3\u03c7\u03cd\u03b5\u03b9 \u03bc\u03cc\u03bd\u03bf \u03b3\u03b9\u03b1 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ad\u03c2 \u03c0\u03bf\u03c5 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03b1\u03bd\u03b1\u03b3\u03bd\u03c9\u03c1\u03b9\u03c3\u03c4\u03bf\u03cd\u03bd \u03bc\u03b5 \u03bc\u03bf\u03bd\u03b1\u03b4\u03b9\u03ba\u03cc \u03c4\u03c1\u03cc\u03c0\u03bf \u03ba\u03b1\u03b9 \u03b4\u03b5\u03bd \u03b8\u03b1 \u03b5\u03bc\u03c0\u03bf\u03b4\u03af\u03c3\u03bf\u03c5\u03bd \u03c4\u03b7\u03bd \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03c1\u03bf\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c0\u03b5\u03c1\u03b9\u03ae\u03b3\u03b7\u03c3\u03b7\u03c2. \u03a4\u03bf \u03c6\u03b9\u03bb\u03c4\u03c1\u03ac\u03c1\u03b9\u03c3\u03bc\u03b1 \u03c4\u03b7\u03c2 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2 \u03c4\u03c9\u03bd \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ce\u03bd \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03b8\u03b1 \u03b1\u03c0\u03bf\u03c4\u03c1\u03ad\u03c8\u03b5\u03b9 \u03c4\u03b7 \u03c7\u03c1\u03ae\u03c3\u03b7 \u03bd\u03ad\u03c9\u03bd \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ce\u03bd \u03bc\u03ad\u03c7\u03c1\u03b9 \u03bd\u03b1 \u03b5\u03b3\u03ba\u03c1\u03b9\u03b8\u03bf\u03cd\u03bd \u03b5\u03b4\u03ce.",
|
||||||
"LabelDisplayMissingEpisodesWithinSeasons": "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03b5\u03c0\u03b5\u03b9\u03c3\u03bf\u03b4\u03af\u03c9\u03bd \u03c0\u03bf\u03c5 \u03bb\u03b5\u03af\u03c0\u03bf\u03c5\u03bd \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u03c3\u03b1\u03b9\u03b6\u03cc\u03bd",
|
"LabelDisplayMissingEpisodesWithinSeasons": "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03b5\u03c0\u03b5\u03b9\u03c3\u03bf\u03b4\u03af\u03c9\u03bd \u03c0\u03bf\u03c5 \u03bb\u03b5\u03af\u03c0\u03bf\u03c5\u03bd \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u03c3\u03b1\u03b9\u03b6\u03cc\u03bd",
|
||||||
"LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.",
|
"LabelDisplayMissingEpisodesWithinSeasonsHelp": "\u0391\u03c5\u03c4\u03cc \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03b5\u03c0\u03af\u03c3\u03b7\u03c2 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03bf \u03b3\u03b9\u03b1 \u03c4\u03b9\u03c2 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b5\u03c2 \u03c4\u03b7\u03bb\u03b5\u03cc\u03c1\u03b1\u03c3\u03b7\u03c2 \u03c3\u03c4\u03b7\u03bd \u03b5\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03c4\u03bf\u03c5 Emby Server.",
|
||||||
"LabelUnairedMissingEpisodesWithinSeasons": "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03ac\u03c0\u03b1\u03b9\u03c7\u03c4\u03c9\u03bd \u03b5\u03c0\u03b5\u03b9\u03c3\u03bf\u03b4\u03af\u03c9\u03bd \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u03c3\u03b1\u03b9\u03b6\u03cc\u03bd",
|
"LabelUnairedMissingEpisodesWithinSeasons": "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03ac\u03c0\u03b1\u03b9\u03c7\u03c4\u03c9\u03bd \u03b5\u03c0\u03b5\u03b9\u03c3\u03bf\u03b4\u03af\u03c9\u03bd \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u03c3\u03b1\u03b9\u03b6\u03cc\u03bd",
|
||||||
"ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.",
|
"ImportMissingEpisodesHelp": "\u0395\u03ac\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03b7, \u03bf\u03b9 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03c3\u03c7\u03b5\u03c4\u03b9\u03ba\u03ac \u03bc\u03b5 \u03c4\u03b1 \u03b5\u03c0\u03b5\u03b9\u03c3\u03cc\u03b4\u03b9\u03b1 \u03c0\u03bf\u03c5 \u03bb\u03b5\u03af\u03c0\u03bf\u03c5\u03bd \u03b8\u03b1 \u03b5\u03b9\u03c3\u03b1\u03c7\u03b8\u03bf\u03cd\u03bd \u03c3\u03c4\u03b7 \u03b2\u03ac\u03c3\u03b7 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c3\u03b1\u03c2 Emby \u03ba\u03b1\u03b9 \u03b8\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03b9\u03c3\u03c4\u03bf\u03cd\u03bd \u03c3\u03b5 \u03b5\u03c0\u03bf\u03c7\u03ad\u03c2 \u03ba\u03b1\u03b9 \u03c3\u03b5\u03b9\u03c1\u03ad\u03c2. \u0391\u03c5\u03c4\u03cc \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c0\u03c1\u03bf\u03ba\u03b1\u03bb\u03ad\u03c3\u03b5\u03b9 \u03c3\u03b7\u03bc\u03b1\u03bd\u03c4\u03b9\u03ba\u03ac \u03bc\u03b5\u03b3\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b5\u03c2 \u03c3\u03b1\u03c1\u03ce\u03c3\u03b5\u03b9\u03c2 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2.",
|
||||||
"MessageEnablingOptionLongerScans": "Enabling this option may result in significantly longer library scans.",
|
"MessageEnablingOptionLongerScans": "\u0397 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03b1\u03c5\u03c4\u03ae\u03c2 \u03c4\u03b7\u03c2 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae\u03c2 \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03ad\u03c7\u03b5\u03b9 \u03c9\u03c2 \u03b1\u03c0\u03bf\u03c4\u03ad\u03bb\u03b5\u03c3\u03bc\u03b1 \u03c3\u03b7\u03bc\u03b1\u03bd\u03c4\u03b9\u03ba\u03ac \u03bc\u03b5\u03b3\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b5\u03c2 \u03c3\u03b1\u03c1\u03ce\u03c3\u03b5\u03b9\u03c2 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2.",
|
||||||
"HeaderPlaybackSettings": "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u0391\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2",
|
"HeaderPlaybackSettings": "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u0391\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2",
|
||||||
"LabelAudioLanguagePreference": "\u03a0\u03c1\u03bf\u03c4\u03af\u03bc\u03b7\u03c3\u03b7 \u0393\u03bb\u03ce\u03c3\u03c3\u03b1\u03c2 \u0389\u03c7\u03bf\u03c5",
|
"LabelAudioLanguagePreference": "\u03a0\u03c1\u03bf\u03c4\u03af\u03bc\u03b7\u03c3\u03b7 \u0393\u03bb\u03ce\u03c3\u03c3\u03b1\u03c2 \u0389\u03c7\u03bf\u03c5",
|
||||||
"LabelSubtitleLanguagePreference": "\u0393\u03bb\u03ce\u03c3\u03c3\u03b1 \u03c5\u03c0\u03cc\u03c4\u03b9\u03c4\u03bb\u03c9\u03bd \u03c0\u03c1\u03bf\u03c4\u03af\u03bc\u03b7\u03c3\u03b7\u03c2",
|
"LabelSubtitleLanguagePreference": "\u0393\u03bb\u03ce\u03c3\u03c3\u03b1 \u03c5\u03c0\u03cc\u03c4\u03b9\u03c4\u03bb\u03c9\u03bd \u03c0\u03c1\u03bf\u03c4\u03af\u03bc\u03b7\u03c3\u03b7\u03c2",
|
||||||
"OptionDefaultSubtitles": "\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae",
|
"OptionDefaultSubtitles": "\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae",
|
||||||
"OptionSmartSubtitles": "Smart",
|
"OptionSmartSubtitles": "\u0388\u03be\u03c5\u03c0\u03bd\u03bf",
|
||||||
"OptionSmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
|
"OptionSmartSubtitlesHelp": "\u039f\u03b9 \u03c5\u03c0\u03cc\u03c4\u03b9\u03c4\u03bb\u03bf\u03b9 \u03c0\u03bf\u03c5 \u03c4\u03b1\u03b9\u03c1\u03b9\u03ac\u03b6\u03bf\u03c5\u03bd \u03bc\u03b5 \u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03c4\u03af\u03bc\u03b7\u03c3\u03b7 \u03b3\u03bb\u03ce\u03c3\u03c3\u03b1\u03c2 \u03b8\u03b1 \u03c6\u03bf\u03c1\u03c4\u03c9\u03b8\u03bf\u03cd\u03bd \u03cc\u03c4\u03b1\u03bd \u03bf \u03ae\u03c7\u03bf\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03c3\u03b5 \u03be\u03ad\u03bd\u03b7 \u03b3\u03bb\u03ce\u03c3\u03c3\u03b1.",
|
||||||
"OptionOnlyForcedSubtitles": "Only forced subtitles",
|
"OptionOnlyForcedSubtitles": "\u039c\u03cc\u03bd\u03bf \u03b1\u03bd\u03b1\u03b3\u03ba\u03b1\u03c3\u03bc\u03ad\u03bd\u03bf\u03b9 \u03c5\u03c0\u03cc\u03c4\u03b9\u03c4\u03bb\u03bf\u03b9",
|
||||||
"OptionAlwaysPlaySubtitles": "\u03a0\u03ac\u03bd\u03c4\u03b1 \u03b1\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae \u03a5\u03c0\u03bf\u03c4\u03af\u03c4\u03bb\u03c9\u03bd",
|
"OptionAlwaysPlaySubtitles": "\u03a0\u03ac\u03bd\u03c4\u03b1 \u03b1\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae \u03a5\u03c0\u03bf\u03c4\u03af\u03c4\u03bb\u03c9\u03bd",
|
||||||
"OptionDefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.",
|
"OptionDefaultSubtitlesHelp": "\u039f\u03b9 \u03c5\u03c0\u03cc\u03c4\u03b9\u03c4\u03bb\u03bf\u03b9 \u03c6\u03bf\u03c1\u03c4\u03ce\u03bd\u03bf\u03bd\u03c4\u03b1\u03b9 \u03bc\u03b5 \u03b2\u03ac\u03c3\u03b7 \u03c4\u03b9\u03c2 \u03c0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b5\u03c2 \u03ba\u03b1\u03b9 \u03b1\u03bd\u03b1\u03b3\u03ba\u03b1\u03c3\u03bc\u03ad\u03bd\u03b5\u03c2 \u03c3\u03b7\u03bc\u03b1\u03af\u03b5\u03c2 \u03c3\u03c4\u03b1 \u03b5\u03bd\u03c3\u03c9\u03bc\u03b1\u03c4\u03c9\u03bc\u03ad\u03bd\u03b1 \u03bc\u03b5\u03c4\u03b1\u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1. \u039f\u03b9 \u03c0\u03c1\u03bf\u03c4\u03b9\u03bc\u03ae\u03c3\u03b5\u03b9\u03c2 \u03b3\u03bb\u03ce\u03c3\u03c3\u03b1\u03c2 \u03b5\u03be\u03b5\u03c4\u03ac\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03cc\u03c4\u03b1\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03bf\u03c5\u03bd \u03c0\u03bf\u03bb\u03bb\u03ad\u03c2 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2.",
|
||||||
"OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
|
"OptionOnlyForcedSubtitlesHelp": "\u039c\u03cc\u03bd\u03bf \u03bf\u03b9 \u03c5\u03c0\u03cc\u03c4\u03b9\u03c4\u03bb\u03bf\u03b9 \u03c0\u03bf\u03c5 \u03ad\u03c7\u03bf\u03c5\u03bd \u03b5\u03c0\u03b9\u03c3\u03b7\u03bc\u03b1\u03bd\u03b8\u03b5\u03af \u03c9\u03c2 \u03b1\u03bd\u03b1\u03b3\u03ba\u03b1\u03c3\u03bc\u03ad\u03bd\u03bf\u03b9 \u03b8\u03b1 \u03c6\u03bf\u03c1\u03c4\u03c9\u03b8\u03bf\u03cd\u03bd.",
|
||||||
"OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
|
"OptionAlwaysPlaySubtitlesHelp": "\u039f\u03b9 \u03c5\u03c0\u03cc\u03c4\u03b9\u03c4\u03bb\u03bf\u03b9 \u03c0\u03bf\u03c5 \u03c4\u03b1\u03b9\u03c1\u03b9\u03ac\u03b6\u03bf\u03c5\u03bd \u03bc\u03b5 \u03c4\u03b9\u03c2 \u03c0\u03c1\u03bf\u03c4\u03b9\u03bc\u03ae\u03c3\u03b5\u03b9\u03c2 \u03b3\u03bb\u03ce\u03c3\u03c3\u03b1\u03c2 \u03b8\u03b1 \u03c6\u03bf\u03c1\u03c4\u03c9\u03b8\u03bf\u03cd\u03bd \u03b1\u03bd\u03b5\u03be\u03ac\u03c1\u03c4\u03b7\u03c4\u03b1 \u03b1\u03c0\u03cc \u03c4\u03b7 \u03b3\u03bb\u03ce\u03c3\u03c3\u03b1 \u03c4\u03bf\u03c5 \u03ae\u03c7\u03bf\u03c5.",
|
||||||
"OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
|
"OptionNoSubtitlesHelp": "\u039f\u03b9 \u03c5\u03c0\u03cc\u03c4\u03b9\u03c4\u03bb\u03bf\u03b9 \u03b4\u03b5\u03bd \u03b8\u03b1 \u03c6\u03bf\u03c1\u03c4\u03c9\u03b8\u03bf\u03cd\u03bd \u03b1\u03c0\u03cc \u03c0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae.",
|
||||||
"TabProfiles": "\u03a0\u03c1\u03bf\u03c6\u03af\u03bb",
|
"TabProfiles": "\u03a0\u03c1\u03bf\u03c6\u03af\u03bb",
|
||||||
"TabSecurity": "A\u03c3\u03c6\u03ac\u03bb\u03b5\u03b9\u03b1 ",
|
"TabSecurity": "A\u03c3\u03c6\u03ac\u03bb\u03b5\u03b9\u03b1 ",
|
||||||
"ButtonAddUser": "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7",
|
"ButtonAddUser": "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7",
|
||||||
|
@ -124,7 +124,7 @@
|
||||||
"LabelMaxParentalRating": "\u039c\u03ad\u03b3\u03b9\u03c3\u03c4\u03bf \u03b5\u03c0\u03b9\u03c4\u03c1\u03b5\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf \u03b3\u03bf\u03bd\u03b9\u03ba\u03ae \u03b2\u03b1\u03b8\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03b1:",
|
"LabelMaxParentalRating": "\u039c\u03ad\u03b3\u03b9\u03c3\u03c4\u03bf \u03b5\u03c0\u03b9\u03c4\u03c1\u03b5\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf \u03b3\u03bf\u03bd\u03b9\u03ba\u03ae \u03b2\u03b1\u03b8\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03b1:",
|
||||||
"MaxParentalRatingHelp": "\u03a4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03bc\u03b5 \u03c4\u03b7\u03bd \u03c5\u03c8\u03b7\u03bb\u03cc\u03c4\u03b5\u03c1\u03b7 \u03b2\u03b1\u03b8\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03b1 \u03b8\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03c1\u03c5\u03bc\u03bc\u03ad\u03bd\u03b1 \u03b1\u03c0\u03cc \u03b1\u03c5\u03c4\u03cc\u03bd \u03c4\u03bf\u03bd \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7",
|
"MaxParentalRatingHelp": "\u03a4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03bc\u03b5 \u03c4\u03b7\u03bd \u03c5\u03c8\u03b7\u03bb\u03cc\u03c4\u03b5\u03c1\u03b7 \u03b2\u03b1\u03b8\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03b1 \u03b8\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03c1\u03c5\u03bc\u03bc\u03ad\u03bd\u03b1 \u03b1\u03c0\u03cc \u03b1\u03c5\u03c4\u03cc\u03bd \u03c4\u03bf\u03bd \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7",
|
||||||
"LibraryAccessHelp": "\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03c4\u03bf\u03c5\u03c2 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5\u03c2 \u03bc\u03ad\u03c3\u03c9\u03bd \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03c4\u03bf \u03bc\u03bf\u03b9\u03c1\u03b1\u03c3\u03c4\u03b5\u03af\u03c4\u03b5 \u03bc\u03b5 \u03b1\u03c5\u03c4\u03cc\u03bd \u03c4\u03bf \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7. \u039f\u03b9 \u03b4\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ad\u03c2 \u03b8\u03b1 \u03ad\u03c7\u03bf\u03c5\u03bd \u03c4\u03b7 \u03b4\u03c5\u03bd\u03b1\u03c4\u03cc\u03c4\u03b7\u03c4\u03b1 \u03bd\u03b1 \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03ac\u03b6\u03b5\u03c3\u03c4\u03b5 \u03cc\u03bb\u03b1 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5\u03c2 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ce\u03bd\u03c4\u03b1\u03c2 \u03c4\u03b1 \u03bc\u03b5\u03c4\u03b1\u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 manager.",
|
"LibraryAccessHelp": "\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03c4\u03bf\u03c5\u03c2 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5\u03c2 \u03bc\u03ad\u03c3\u03c9\u03bd \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03c4\u03bf \u03bc\u03bf\u03b9\u03c1\u03b1\u03c3\u03c4\u03b5\u03af\u03c4\u03b5 \u03bc\u03b5 \u03b1\u03c5\u03c4\u03cc\u03bd \u03c4\u03bf \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7. \u039f\u03b9 \u03b4\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ad\u03c2 \u03b8\u03b1 \u03ad\u03c7\u03bf\u03c5\u03bd \u03c4\u03b7 \u03b4\u03c5\u03bd\u03b1\u03c4\u03cc\u03c4\u03b7\u03c4\u03b1 \u03bd\u03b1 \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03ac\u03b6\u03b5\u03c3\u03c4\u03b5 \u03cc\u03bb\u03b1 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5\u03c2 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ce\u03bd\u03c4\u03b1\u03c2 \u03c4\u03b1 \u03bc\u03b5\u03c4\u03b1\u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 manager.",
|
||||||
"ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.",
|
"ChannelAccessHelp": "\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03c4\u03b1 \u03ba\u03b1\u03bd\u03ac\u03bb\u03b9\u03b1 \u03c0\u03bf\u03c5 \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03bc\u03bf\u03b9\u03c1\u03b1\u03c3\u03c4\u03b5\u03af\u03c4\u03b5 \u03bc\u03b5 \u03b1\u03c5\u03c4\u03cc\u03bd \u03c4\u03bf \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7. \u039f\u03b9 \u03b4\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ad\u03c2 \u03b8\u03b1 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03ac\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03cc\u03bb\u03b1 \u03c4\u03b1 \u03ba\u03b1\u03bd\u03ac\u03bb\u03b9\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ce\u03bd\u03c4\u03b1\u03c2 \u03c4\u03bf\u03bd \u03b4\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ae \u03bc\u03b5\u03c4\u03b1\u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd.",
|
||||||
"ButtonDeleteImage": "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1\u03c2",
|
"ButtonDeleteImage": "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1\u03c2",
|
||||||
"LabelSelectUsers": "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03a7\u03c1\u03b7\u03c3\u03c4\u03ce\u03bd:",
|
"LabelSelectUsers": "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03a7\u03c1\u03b7\u03c3\u03c4\u03ce\u03bd:",
|
||||||
"ButtonUpload": "\u0391\u03bd\u03b5\u03b2\u03ac\u03c3\u03c4\u03b5 ",
|
"ButtonUpload": "\u0391\u03bd\u03b5\u03b2\u03ac\u03c3\u03c4\u03b5 ",
|
||||||
|
@ -132,17 +132,17 @@
|
||||||
"ImageUploadAspectRatioHelp": "\u03a0\u03c1\u03bf\u03c4\u03b5\u03b9\u03bd\u03cc\u03bc\u03b5\u03bd\u03bf 1:1 Aspect Ratio. JPG\/PNG \u03bc\u03cc\u03bd\u03bf",
|
"ImageUploadAspectRatioHelp": "\u03a0\u03c1\u03bf\u03c4\u03b5\u03b9\u03bd\u03cc\u03bc\u03b5\u03bd\u03bf 1:1 Aspect Ratio. JPG\/PNG \u03bc\u03cc\u03bd\u03bf",
|
||||||
"MessageNothingHere": "\u03a4\u03af\u03c0\u03bf\u03c4\u03b1 \u03b5\u03b4\u03ce ",
|
"MessageNothingHere": "\u03a4\u03af\u03c0\u03bf\u03c4\u03b1 \u03b5\u03b4\u03ce ",
|
||||||
"MessagePleaseEnsureInternetMetadata": "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03be\u03b1\u03c3\u03c6\u03b1\u03bb\u03af\u03c3\u03c4\u03b5 \u03c4\u03b7 \u03bb\u03ae\u03c8\u03b7 \u03bc\u03b5\u03c4\u03b1\u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c3\u03c4\u03bf internet \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03b7.\n",
|
"MessagePleaseEnsureInternetMetadata": "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03be\u03b1\u03c3\u03c6\u03b1\u03bb\u03af\u03c3\u03c4\u03b5 \u03c4\u03b7 \u03bb\u03ae\u03c8\u03b7 \u03bc\u03b5\u03c4\u03b1\u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c3\u03c4\u03bf internet \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03b7.\n",
|
||||||
"AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.",
|
"AlreadyPaidHelp1": "\u0391\u03bd \u03ad\u03c7\u03b5\u03c4\u03b5 \u03ae\u03b4\u03b7 \u03c0\u03bb\u03b7\u03c1\u03ce\u03c3\u03b5\u03b9 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ae\u03c3\u03b5\u03c4\u03b5 \u03bc\u03b9\u03b1 \u03c0\u03b1\u03bb\u03b1\u03b9\u03cc\u03c4\u03b5\u03c1\u03b7 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7 \u03c4\u03bf\u03c5 Media Browser \u03b3\u03b9\u03b1 Android, \u03b4\u03b5\u03bd \u03c7\u03c1\u03b5\u03b9\u03ac\u03b6\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c0\u03bb\u03b7\u03c1\u03ce\u03c3\u03b5\u03c4\u03b5 \u03be\u03b1\u03bd\u03ac \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03c4\u03b5 \u03b1\u03c5\u03c4\u03ae\u03bd \u03c4\u03b7\u03bd \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae. \u039a\u03ac\u03bd\u03c4\u03b5 \u03ba\u03bb\u03b9\u03ba \u03c3\u03c4\u03bf \u03ba\u03bf\u03c5\u03bc\u03c0\u03af OK \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03bc\u03b1\u03c2 \u03c3\u03c4\u03b5\u03af\u03bb\u03b5\u03c4\u03b5 \u03ad\u03bd\u03b1 \u03bc\u03ae\u03bd\u03c5\u03bc\u03b1 \u03b7\u03bb\u03b5\u03ba\u03c4\u03c1\u03bf\u03bd\u03b9\u03ba\u03bf\u03cd \u03c4\u03b1\u03c7\u03c5\u03b4\u03c1\u03bf\u03bc\u03b5\u03af\u03bf\u03c5 \u03c3\u03c4\u03bf {0} \u03ba\u03b1\u03b9 \u03b8\u03b1 \u03c4\u03bf \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03bf\u03c5\u03bc\u03b5 \u03b3\u03b9\u03b1 \u03b5\u03c3\u03ac\u03c2.",
|
||||||
"AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.",
|
"AlreadyPaidHelp2": "\u0388\u03c7\u03b5\u03b9\u03c2 Emby Premiere; \u0391\u03c0\u03bb\u03ac \u03b1\u03ba\u03c5\u03c1\u03ce\u03c3\u03c4\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03c0\u03b1\u03c1\u03ac\u03b8\u03c5\u03c1\u03bf \u03b4\u03b9\u03b1\u03bb\u03cc\u03b3\u03bf\u03c5, \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03c4\u03b5 \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 \u03c3\u03c4\u03bf Help -> Emby Premiere \u03ba\u03b1\u03b9 \u03b8\u03b1 \u03be\u03b5\u03ba\u03bb\u03b5\u03b9\u03b4\u03c9\u03b8\u03b5\u03af \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b1.",
|
||||||
"TabSuggestions": "Suggestions",
|
"TabSuggestions": "\u03a0\u03c1\u03bf\u03c4\u03ac\u03c3\u03b5\u03b9\u03c2",
|
||||||
"TabLatest": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03bf\u03c2",
|
"TabLatest": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1",
|
||||||
"TabUpcoming": "\u0395\u03c0\u03b5\u03c1\u03c7\u03cc\u03bc\u03b5\u03bd\u03b7",
|
"TabUpcoming": "\u0395\u03c0\u03b5\u03c1\u03c7\u03cc\u03bc\u03b5\u03bd\u03b1",
|
||||||
"TabShows": "\u0395\u03c0\u03b5\u03b9\u03c3\u03cc\u03b4\u03b9\u03b1",
|
"TabShows": "\u0395\u03c0\u03b5\u03b9\u03c3\u03cc\u03b4\u03b9\u03b1",
|
||||||
"TabEpisodes": "\u0395\u03c0\u03b5\u03b9\u03c3\u03cc\u03b4\u03b9\u03b1",
|
"TabEpisodes": "\u0395\u03c0\u03b5\u03b9\u03c3\u03cc\u03b4\u03b9\u03b1",
|
||||||
"TabGenres": "\u0395\u03af\u03b4\u03b7",
|
"TabGenres": "\u0395\u03af\u03b4\u03b7",
|
||||||
"TabNetworks": "\u0394\u03af\u03ba\u03c4\u03c5\u03b1",
|
"TabNetworks": "\u0394\u03af\u03ba\u03c4\u03c5\u03b1",
|
||||||
"HeaderUsers": "\u03a7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2 ",
|
"HeaderUsers": "\u03a7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2 ",
|
||||||
"HeaderFilters": "Filters",
|
"HeaderFilters": "\u03a6\u03af\u03bb\u03c4\u03c1\u03b1",
|
||||||
"ButtonFilter": "\u03a6\u03af\u03bb\u03c4\u03c1\u03bf",
|
"ButtonFilter": "\u03a6\u03af\u03bb\u03c4\u03c1\u03bf",
|
||||||
"OptionFavorite": "\u0391\u03b3\u03b1\u03c0\u03b7\u03bc\u03ad\u03bd\u03b1",
|
"OptionFavorite": "\u0391\u03b3\u03b1\u03c0\u03b7\u03bc\u03ad\u03bd\u03b1",
|
||||||
"OptionLikes": "\u03a3\u03c5\u03bc\u03c0\u03b1\u03b8\u03b5\u03af",
|
"OptionLikes": "\u03a3\u03c5\u03bc\u03c0\u03b1\u03b8\u03b5\u03af",
|
||||||
|
@ -153,7 +153,7 @@
|
||||||
"OptionWriters": "\u03a3\u03c5\u03b3\u03b3\u03c1\u03b1\u03c6\u03b5\u03af\u03c2",
|
"OptionWriters": "\u03a3\u03c5\u03b3\u03b3\u03c1\u03b1\u03c6\u03b5\u03af\u03c2",
|
||||||
"OptionProducers": "\u03a0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03bf\u03af",
|
"OptionProducers": "\u03a0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03bf\u03af",
|
||||||
"HeaderResume": "\u0395\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7",
|
"HeaderResume": "\u0395\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7",
|
||||||
"HeaderContinueWatching": "Continue Watching",
|
"HeaderContinueWatching": "\u03a3\u03c5\u03bd\u03b5\u03c7\u03af\u03c3\u03c4\u03b5 \u03c4\u03b7\u03bd \u03c0\u03b1\u03c1\u03b1\u03ba\u03bf\u03bb\u03bf\u03cd\u03b8\u03b7\u03c3\u03b7",
|
||||||
"HeaderNextUp": "\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf",
|
"HeaderNextUp": "\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf",
|
||||||
"NoNextUpItemsMessage": "\u0394\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5 \u03ba\u03b1\u03bd\u03ad\u03bd\u03b1. \u039e\u03b5\u03ba\u03b9\u03bd\u03ae\u03c3\u03c4\u03b5 \u03c0\u03b1\u03c1\u03b1\u03ba\u03bf\u03bb\u03bf\u03c5\u03b8\u03ce\u03bd\u03c4\u03b1\u03c2 \u03c4\u03b9\u03c2 \u03b5\u03ba\u03c0\u03bf\u03bc\u03c0\u03ad\u03c2 \u03c3\u03b1\u03c2!",
|
"NoNextUpItemsMessage": "\u0394\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5 \u03ba\u03b1\u03bd\u03ad\u03bd\u03b1. \u039e\u03b5\u03ba\u03b9\u03bd\u03ae\u03c3\u03c4\u03b5 \u03c0\u03b1\u03c1\u03b1\u03ba\u03bf\u03bb\u03bf\u03c5\u03b8\u03ce\u03bd\u03c4\u03b1\u03c2 \u03c4\u03b9\u03c2 \u03b5\u03ba\u03c0\u03bf\u03bc\u03c0\u03ad\u03c2 \u03c3\u03b1\u03c2!",
|
||||||
"HeaderLatestEpisodes": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03b5\u03c0\u03b5\u03b9\u03c3\u03cc\u03b4\u03b9\u03b1",
|
"HeaderLatestEpisodes": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03b5\u03c0\u03b5\u03b9\u03c3\u03cc\u03b4\u03b9\u03b1",
|
||||||
|
@ -181,15 +181,15 @@
|
||||||
"OptionNameSort": "\u038c\u03bd\u03bf\u03bc\u03b1",
|
"OptionNameSort": "\u038c\u03bd\u03bf\u03bc\u03b1",
|
||||||
"OptionFolderSort": "\u03a6\u03ac\u03ba\u03b5\u03bb\u03bf\u03b9",
|
"OptionFolderSort": "\u03a6\u03ac\u03ba\u03b5\u03bb\u03bf\u03b9",
|
||||||
"OptionPoster": "\u0391\u03c6\u03af\u03c3\u03b1",
|
"OptionPoster": "\u0391\u03c6\u03af\u03c3\u03b1",
|
||||||
"OptionPosterCard": "Poster card",
|
"OptionPosterCard": "\u039a\u03ac\u03c1\u03c4\u03b1 \u03b1\u03c6\u03af\u03c3\u03b1\u03c2",
|
||||||
"OptionBackdrop": "Backdrop",
|
"OptionBackdrop": "\u03a6\u03cc\u03bd\u03c4\u03bf",
|
||||||
"OptionTimeline": "\u03a7\u03c1\u03bf\u03bd\u03bf\u03b4\u03b9\u03ac\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1",
|
"OptionTimeline": "\u03a7\u03c1\u03bf\u03bd\u03bf\u03b4\u03b9\u03ac\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1",
|
||||||
"OptionThumb": "Thumb",
|
"OptionThumb": "Thumb",
|
||||||
"OptionThumbCard": "Thumb card",
|
"OptionThumbCard": "Thumb card",
|
||||||
"OptionBanner": "Banner",
|
"OptionBanner": "\u03a0\u03b1\u03bd\u03cc",
|
||||||
"OptionCriticRating": "\u0392\u03b1\u03b8\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03b1 \u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03ce\u03bd",
|
"OptionCriticRating": "\u0392\u03b1\u03b8\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03b1 \u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03ce\u03bd",
|
||||||
"OptionVideoBitrate": "Video Bitrate",
|
"OptionVideoBitrate": "\u0392\u03af\u03bd\u03c4\u03b5\u03bf bitrate",
|
||||||
"OptionResumable": "Resumable",
|
"OptionResumable": "\u0391\u03bd\u03b1\u03bb\u03b7\u03c0\u03c4\u03ad\u03bf\u03c2",
|
||||||
"TabMyPlugins": "\u03a4\u03b1 \u03c0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c4\u03b1 \u03bc\u03bf\u03c5",
|
"TabMyPlugins": "\u03a4\u03b1 \u03c0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c4\u03b1 \u03bc\u03bf\u03c5",
|
||||||
"TabCatalog": "\u039a\u03b1\u03c4\u03ac\u03bb\u03bf\u03b3\u03bf\u03c2",
|
"TabCatalog": "\u039a\u03b1\u03c4\u03ac\u03bb\u03bf\u03b3\u03bf\u03c2",
|
||||||
"TitlePlugins": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c4\u03b1",
|
"TitlePlugins": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c4\u03b1",
|
||||||
|
@ -197,79 +197,79 @@
|
||||||
"HeaderNowPlaying": "\u03a4\u03ce\u03c1\u03b1 \u03a0\u03b1\u03af\u03b6\u03b5\u03b9:",
|
"HeaderNowPlaying": "\u03a4\u03ce\u03c1\u03b1 \u03a0\u03b1\u03af\u03b6\u03b5\u03b9:",
|
||||||
"HeaderLatestAlbums": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u0386\u03bb\u03bc\u03c0\u03bf\u03c5\u03bc",
|
"HeaderLatestAlbums": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u0386\u03bb\u03bc\u03c0\u03bf\u03c5\u03bc",
|
||||||
"HeaderLatestSongs": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03a4\u03c1\u03b1\u03b3\u03bf\u03cd\u03b4\u03b9\u03b1",
|
"HeaderLatestSongs": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03a4\u03c1\u03b1\u03b3\u03bf\u03cd\u03b4\u03b9\u03b1",
|
||||||
"HeaderRecentlyPlayed": "Recently Played",
|
"HeaderRecentlyPlayed": "\u0391\u03bd\u03b1\u03c0\u03b1\u03c1\u03ac\u03c7\u03b8\u03b7\u03ba\u03b5",
|
||||||
"HeaderFrequentlyPlayed": "Frequently Played",
|
"HeaderFrequentlyPlayed": "\u03a3\u03c5\u03c7\u03bd\u03ac \u03ad\u03c0\u03b1\u03b9\u03be\u03b5",
|
||||||
"LabelVideoType": "\u03a4\u03cd\u03c0\u03bf\u03c2 \u0392\u03af\u03bd\u03c4\u03b5\u03bf:",
|
"LabelVideoType": "\u03a4\u03cd\u03c0\u03bf\u03c2 \u0392\u03af\u03bd\u03c4\u03b5\u03bf:",
|
||||||
"OptionBluray": "Bluray",
|
"OptionBluray": "Bluray",
|
||||||
"OptionDvd": "Dvd",
|
"OptionDvd": "Dvd",
|
||||||
"OptionIso": "Iso",
|
"OptionIso": "Iso",
|
||||||
"Option3D": "3D",
|
"Option3D": "3D",
|
||||||
"LabelDeinterlacingMethod": "Deinterlacing method:",
|
"LabelDeinterlacingMethod": "\u039c\u03ad\u03b8\u03bf\u03b4\u03bf\u03c2 \u03b1\u03c0\u03bf\u03b5\u03c0\u03ad\u03bd\u03b4\u03c5\u03c3\u03b7\u03c2:",
|
||||||
"Standard": "Standard",
|
"Standard": "\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf",
|
||||||
"BobAndWeaveWithHelp": "Bob and weave (higher quality, but slower)",
|
"BobAndWeaveWithHelp": "Bob and weave (higher quality, but slower)",
|
||||||
"LabelStatus": "\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7:",
|
"LabelStatus": "\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7:",
|
||||||
"LabelLastResult": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03bf \u03b1\u03c0\u03bf\u03c4\u03ad\u03bb\u03b5\u03c3\u03bc\u03b1:",
|
"LabelLastResult": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03bf \u03b1\u03c0\u03bf\u03c4\u03ad\u03bb\u03b5\u03c3\u03bc\u03b1:",
|
||||||
"OptionHasSubtitles": "\u03a5\u03c0\u03cc\u03c4\u03b9\u03c4\u03bb\u03bf\u03b9",
|
"OptionHasSubtitles": "\u03a5\u03c0\u03cc\u03c4\u03b9\u03c4\u03bb\u03bf\u03b9",
|
||||||
"OptionHasTrailer": "\u03a4\u03c1\u03ad\u03ca\u03bb\u03b5\u03c1",
|
"OptionHasTrailer": "\u03a4\u03c1\u03ad\u03ca\u03bb\u03b5\u03c1",
|
||||||
"OptionHasThemeSong": "Theme Song",
|
"OptionHasThemeSong": "\u0398\u03b5\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc \u03a4\u03c1\u03b1\u03b3\u03bf\u03cd\u03b4\u03b9",
|
||||||
"OptionHasThemeVideo": "Theme Video",
|
"OptionHasThemeVideo": "\u0398\u03b5\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc \u0392\u03af\u03bd\u03c4\u03b5\u03bf",
|
||||||
"TabMovies": "\u03a4\u03b1\u03b9\u03bd\u03af\u03b5\u03c2",
|
"TabMovies": "\u03a4\u03b1\u03b9\u03bd\u03af\u03b5\u03c2",
|
||||||
"TabStudios": "\u03a3\u03c4\u03bf\u03cd\u03bd\u03c4\u03b9\u03bf",
|
"TabStudios": "\u03a3\u03c4\u03bf\u03cd\u03bd\u03c4\u03b9\u03bf",
|
||||||
"TabTrailers": "Trailers",
|
"TabTrailers": "Trailers",
|
||||||
"LabelArtists": "\u039a\u03b1\u03bb\u03bb\u03b9\u03c4\u03ad\u03c7\u03bd\u03b5\u03c2",
|
"LabelArtists": "\u039a\u03b1\u03bb\u03bb\u03b9\u03c4\u03ad\u03c7\u03bd\u03b5\u03c2",
|
||||||
"LabelArtistsHelp": "Separate multiple using ;",
|
"LabelArtistsHelp": "\u039e\u03b5\u03c7\u03c9\u03c1\u03af\u03c3\u03c4\u03b5 \u03c0\u03bf\u03bb\u03bb\u03b1\u03c0\u03bb\u03ac \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ce\u03bd\u03c4\u03b1\u03c2;",
|
||||||
"HeaderLatestTrailers": "Latest Trailers",
|
"HeaderLatestTrailers": "\u03a0\u03c1\u03cc\u03c3\u03c6\u03b1\u03c4\u03b1 Trailers",
|
||||||
"OptionHasSpecialFeatures": "Special Features",
|
"OptionHasSpecialFeatures": "\u0395\u03b9\u03b4\u03b9\u03ba\u03ac \u03a7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac",
|
||||||
"OptionImdbRating": "IMDb Rating",
|
"OptionImdbRating": "\u0392\u03b1\u03b8\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03b1 IMDb ",
|
||||||
"OptionParentalRating": "Parental Rating",
|
"OptionParentalRating": "\u0391\u03be\u03b9\u03bf\u03bb\u03cc\u03b3\u03b7\u03c3\u03b7 \u03b3\u03bf\u03bd\u03ad\u03c9\u03bd",
|
||||||
"OptionPremiereDate": "Premiere Date",
|
"OptionPremiereDate": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03c0\u03c1\u03b5\u03bc\u03b9\u03ad\u03c1\u03b1\u03c2",
|
||||||
"TabBasic": "Basic",
|
"TabBasic": "\u0392\u03b1\u03c3\u03b9\u03ba\u03cc",
|
||||||
"TabAdvanced": "Advanced",
|
"TabAdvanced": "\u0393\u03b9\u03b1 \u03c0\u03c1\u03bf\u03c7\u03c9\u03c1\u03b7\u03bc\u03ad\u03bd\u03bf\u03c5\u03c2",
|
||||||
"OptionContinuing": "Continuing",
|
"OptionContinuing": "\u03a3\u03c5\u03bd\u03ad\u03c7\u03b9\u03c3\u03b7",
|
||||||
"OptionEnded": "Ended",
|
"OptionEnded": "\u03a4\u03ad\u03bb\u03bf\u03c2",
|
||||||
"HeaderAirDays": "Air Days",
|
"HeaderAirDays": "Air Days",
|
||||||
"OptionSundayShort": "Sun",
|
"OptionSundayShort": "\u039a\u03c5\u03c1",
|
||||||
"OptionMondayShort": "Mon",
|
"OptionMondayShort": "\u0394\u03b5\u03c5",
|
||||||
"OptionTuesdayShort": "Tue",
|
"OptionTuesdayShort": "\u03a4\u03c1\u03b9",
|
||||||
"OptionWednesdayShort": "Wed",
|
"OptionWednesdayShort": "\u03a4\u03b5\u03c4",
|
||||||
"OptionThursdayShort": "Thu",
|
"OptionThursdayShort": "\u03a0\u03b5\u03bc",
|
||||||
"OptionFridayShort": "Fri",
|
"OptionFridayShort": "\u03a0\u03b1\u03c1",
|
||||||
"OptionSaturdayShort": "Sat",
|
"OptionSaturdayShort": "\u03a3\u03b1\u03b2",
|
||||||
"OptionSunday": "Sunday",
|
"OptionSunday": "\u039a\u03c5\u03c1",
|
||||||
"OptionMonday": "Monday",
|
"OptionMonday": "\u0394\u03b5\u03c5\u03c4\u03ad\u03c1\u03b1",
|
||||||
"OptionTuesday": "Tuesday",
|
"OptionTuesday": "\u03a4\u03c1\u03af\u03c4\u03b7",
|
||||||
"OptionWednesday": "Wednesday",
|
"OptionWednesday": "\u03a4\u03b5\u03c4\u03ac\u03c1\u03c4\u03b7",
|
||||||
"OptionThursday": "Thursday",
|
"OptionThursday": "\u03a0\u03ad\u03bc\u03c0\u03c4\u03b7",
|
||||||
"OptionFriday": "Friday",
|
"OptionFriday": "\u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae",
|
||||||
"OptionSaturday": "Saturday",
|
"OptionSaturday": "\u03a3\u03ac\u03b2\u03b2\u03b1\u03c4\u03bf",
|
||||||
"HeaderManagement": "Management",
|
"HeaderManagement": "\u0394\u03b9\u03b1\u03c7\u03b5\u03af\u03c1\u03b9\u03c3\u03b7",
|
||||||
"LabelManagement": "Management:",
|
"LabelManagement": "\u0394\u03b9\u03b1\u03c7\u03b5\u03af\u03c1\u03b9\u03c3\u03b7:",
|
||||||
"OptionMissingImdbId": "Missing IMDb Id",
|
"OptionMissingImdbId": "Missing IMDb Id",
|
||||||
"OptionMissingTvdbId": "Missing TheTVDB Id",
|
"OptionMissingTvdbId": "Missing TheTVDB Id",
|
||||||
"OptionMissingOverview": "Missing Overview",
|
"OptionMissingOverview": "\u039b\u03b5\u03af\u03c0\u03b5\u03b9 \u03b5\u03c0\u03b9\u03c3\u03ba\u03cc\u03c0\u03b7\u03c3\u03b7",
|
||||||
"TabGeneral": "General",
|
"TabGeneral": "\u0393\u03b5\u03bd\u03b9\u03ba\u03b1",
|
||||||
"TitleSupport": "Support",
|
"TitleSupport": "\u03a5\u03c0\u03bf\u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7",
|
||||||
"TabAbout": "\u03a0\u03b5\u03c1\u03af..",
|
"TabAbout": "\u03a0\u03b5\u03c1\u03af..",
|
||||||
"TabSupporterKey": "Emby Premiere Key",
|
"TabSupporterKey": "Emby Premiere Key",
|
||||||
"TabBecomeSupporter": "Get Emby Premiere",
|
"TabBecomeSupporter": "Get Emby Premiere",
|
||||||
"TabEmbyPremiere": "Emby Premiere",
|
"TabEmbyPremiere": "Emby Premiere",
|
||||||
"OptionHideUser": "Hide this user from login screens",
|
"OptionHideUser": "\u0391\u03c0\u03cc\u03ba\u03c1\u03c5\u03c8\u03b7 \u03b1\u03c5\u03c4\u03bf\u03cd \u03c4\u03bf\u03c5 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03b1\u03c0\u03cc \u03c4\u03b9\u03c2 \u03bf\u03b8\u03cc\u03bd\u03b5\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7\u03c2",
|
||||||
"OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
|
"OptionHideUserFromLoginHelp": "\u03a7\u03c1\u03ae\u03c3\u03b9\u03bc\u03bf \u03b3\u03b9\u03b1 \u03b9\u03b4\u03b9\u03c9\u03c4\u03b9\u03ba\u03bf\u03cd\u03c2 \u03ae \u03ba\u03c1\u03c5\u03c6\u03cc \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03bf\u03cd\u03c2 \u03b4\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ae. \u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 \u03b8\u03b1 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03c3\u03c5\u03bd\u03b4\u03b5\u03b8\u03b5\u03af \u03c7\u03b5\u03b9\u03c1\u03bf\u03ba\u03af\u03bd\u03b7\u03c4\u03b1 \u03b5\u03b9\u03c3\u03ac\u03b3\u03bf\u03bd\u03c4\u03b1\u03c2 \u03c4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03ba\u03b1\u03b9 \u03c4\u03bf\u03bd \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03ae\u03c2 \u03c4\u03bf\u03c5.",
|
||||||
"OptionDisableUser": "\u0391\u03c0\u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b7 \u03a7\u03c1\u03ae\u03c3\u03c4\u03b7",
|
"OptionDisableUser": "\u0391\u03c0\u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b7 \u03a7\u03c1\u03ae\u03c3\u03c4\u03b7",
|
||||||
"OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.",
|
"OptionDisableUserHelp": "\u0391\u03bd \u03b1\u03c0\u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03b5\u03af, \u03bf \u03b4\u03b9\u03b1\u03ba\u03bf\u03bc\u03b9\u03c3\u03c4\u03ae\u03c2 \u03b4\u03b5\u03bd \u03b8\u03b1 \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c8\u03b5\u03b9 \u03bf\u03c0\u03bf\u03b9\u03b5\u03c3\u03b4\u03ae\u03c0\u03bf\u03c4\u03b5 \u03c3\u03c5\u03bd\u03b4\u03ad\u03c3\u03b5\u03b9\u03c2 \u03b1\u03c0\u03cc \u03b1\u03c5\u03c4\u03cc\u03bd \u03c4\u03bf\u03bd \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7. \u039f\u03b9 \u03c5\u03c0\u03ac\u03c1\u03c7\u03bf\u03c5\u03c3\u03b5\u03c2 \u03c3\u03c5\u03bd\u03b4\u03ad\u03c3\u03b5\u03b9\u03c2 \u03c4\u03b5\u03c1\u03bc\u03b1\u03c4\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03b1\u03c0\u03cc\u03c4\u03bf\u03bc\u03b1.",
|
||||||
"LabelName": "\u038c\u03bd\u03bf\u03bc\u03b1:",
|
"LabelName": "\u038c\u03bd\u03bf\u03bc\u03b1:",
|
||||||
"ButtonHelp": "\u0392\u03bf\u03ae\u03b8\u03b5\u03b9\u03b1",
|
"ButtonHelp": "\u0392\u03bf\u03ae\u03b8\u03b5\u03b9\u03b1",
|
||||||
"OptionAllowUserToManageServer": "Allow this user to manage the server",
|
"OptionAllowUserToManageServer": "\u0395\u03c0\u03b9\u03c4\u03c1\u03ad\u03c8\u03c4\u03b5 \u03c3\u03b5 \u03b1\u03c5\u03c4\u03cc\u03bd \u03c4\u03bf\u03bd \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03bd\u03b1 \u03b4\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03c4\u03bf \u03b4\u03b9\u03b1\u03ba\u03bf\u03bc\u03b9\u03c3\u03c4\u03ae",
|
||||||
"HeaderFeatureAccess": "Feature Access",
|
"HeaderFeatureAccess": "\u03a0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ce\u03bd",
|
||||||
"OptionAllowMediaPlayback": "Allow media playback",
|
"OptionAllowMediaPlayback": "\u03b1\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae \u03c1\u03b5\u03bc\u03b9\u03be",
|
||||||
"OptionAllowBrowsingLiveTv": "Allow Live TV access",
|
"OptionAllowBrowsingLiveTv": "\u0396\u03a9\u039d\u03a4\u0391\u039d\u0397 \u03a4\u0397\u039b\u0395\u03a9\u03a1\u0391\u03a3\u0397",
|
||||||
"HeaderMediaDeletion": "Media Deletion",
|
"HeaderMediaDeletion": "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c0\u03bf\u03bb\u03c5\u03bc\u03ad\u03c3\u03c9\u03bd",
|
||||||
"AllowDeletionFromAll": "Allow media deletion from all libraries",
|
"AllowDeletionFromAll": "\u039d\u03b1 \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03b5\u03c4\u03b1\u03b9 \u03b7 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c0\u03bf\u03bb\u03c5\u03bc\u03ad\u03c3\u03c9\u03bd \u03b1\u03c0\u03cc \u03cc\u03bb\u03b5\u03c2 \u03c4\u03b9\u03c2 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b5\u03c2",
|
||||||
"OptionAllowManageLiveTv": "Allow Live TV recording management",
|
"OptionAllowManageLiveTv": "\u0395\u03c0\u03b9\u03c4\u03c1\u03ad\u03c8\u03c4\u03b5 \u03c4\u03b7 \u03b4\u03b9\u03b1\u03c7\u03b5\u03af\u03c1\u03b9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b6\u03c9\u03bd\u03c4\u03b1\u03bd\u03ae\u03c2 \u03c4\u03b7\u03bb\u03b5\u03bf\u03c0\u03c4\u03b9\u03ba\u03ae\u03c2 \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2",
|
||||||
"OptionAllowRemoteControlOthers": "Allow remote control of other users",
|
"OptionAllowRemoteControlOthers": "\u0395\u03c0\u03b9\u03c4\u03c1\u03ad\u03c8\u03c4\u03b5 \u03c4\u03bf\u03bd \u03c4\u03b7\u03bb\u03b5\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03bc\u03cc \u03ac\u03bb\u03bb\u03c9\u03bd \u03c7\u03c1\u03b7\u03c3\u03c4\u03ce\u03bd",
|
||||||
"OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
|
"OptionAllowRemoteSharedDevices": "\u0395\u03c0\u03b9\u03c4\u03c1\u03ad\u03c8\u03c4\u03b5 \u03c4\u03bf\u03bd \u03c4\u03b7\u03bb\u03b5\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03bc\u03cc \u03c4\u03c9\u03bd \u03ba\u03bf\u03b9\u03bd\u03cc\u03c7\u03c1\u03b7\u03c3\u03c4\u03c9\u03bd \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ce\u03bd",
|
||||||
"OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
|
"OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
|
||||||
"OptionAllowLinkSharing": "Allow social media sharing",
|
"OptionAllowLinkSharing": "\u039d\u03b1 \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03b5\u03c4\u03b1\u03b9 \u03b7 \u03ba\u03bf\u03b9\u03bd\u03ae \u03c7\u03c1\u03ae\u03c3\u03b7 \u03c4\u03c9\u03bd \u03c0\u03bf\u03bb\u03c5\u03bc\u03ad\u03c3\u03c9\u03bd",
|
||||||
"OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.",
|
"OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.",
|
||||||
"HeaderRemoteControl": "\u03a4\u03b7\u03bb\u03b5\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ae\u03c1\u03b9\u03bf",
|
"HeaderRemoteControl": "\u03a4\u03b7\u03bb\u03b5\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ae\u03c1\u03b9\u03bf",
|
||||||
"OptionMissingTmdbId": "Missing Tmdb Id",
|
"OptionMissingTmdbId": "Missing Tmdb Id",
|
||||||
|
@ -277,7 +277,7 @@
|
||||||
"OptionIsSD": "SD",
|
"OptionIsSD": "SD",
|
||||||
"ButtonSelect": "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae",
|
"ButtonSelect": "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae",
|
||||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||||
"HeaderCredits": "Credits",
|
"HeaderCredits": "\u03a0\u03b9\u03c3\u03c4\u03ce\u03c3\u03b5\u03b9\u03c2",
|
||||||
"PleaseSupportOtherProduces": "Please support other free products we utilize:",
|
"PleaseSupportOtherProduces": "Please support other free products we utilize:",
|
||||||
"VersionNumber": "\u0388\u03ba\u03b4\u03bf\u03c3\u03b7 {0}",
|
"VersionNumber": "\u0388\u03ba\u03b4\u03bf\u03c3\u03b7 {0}",
|
||||||
"TabPaths": "\u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae",
|
"TabPaths": "\u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae",
|
||||||
|
@ -287,19 +287,19 @@
|
||||||
"LabelAllowServerAutoRestart": "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03b5\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c3\u03ad\u03c1\u03b2\u03b5\u03c1 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ae\u03c3\u03b5\u03b9 \u03c4\u03b9\u03c2 \u03b1\u03bd\u03b1\u03b2\u03b1\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2",
|
"LabelAllowServerAutoRestart": "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03b5\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c3\u03ad\u03c1\u03b2\u03b5\u03c1 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ae\u03c3\u03b5\u03b9 \u03c4\u03b9\u03c2 \u03b1\u03bd\u03b1\u03b2\u03b1\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2",
|
||||||
"LabelAllowServerAutoRestartHelp": "\u039f \u03a3\u03b5\u03c1\u03b2\u03b5\u03c1 \u03b8\u03b1 \u03ba\u03ac\u03bd\u03b5\u03b9 \u03bc\u03cc\u03bd\u03bf \u03b5\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03b9\u03bd\u03ae\u03c3\u03b5\u03b9\u03c2 \u03c4\u03b9\u03c2 \u03bc\u03b7 \u03b5\u03bd\u03b5\u03c1\u03b3\u03ad\u03c2 \u03c0\u03b5\u03c1\u03b9\u03cc\u03b4\u03bf\u03c5\u03c2, \u03cc\u03c4\u03b1\u03bd \u03ba\u03b1\u03bd\u03b5\u03af\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03cc\u03c2.",
|
"LabelAllowServerAutoRestartHelp": "\u039f \u03a3\u03b5\u03c1\u03b2\u03b5\u03c1 \u03b8\u03b1 \u03ba\u03ac\u03bd\u03b5\u03b9 \u03bc\u03cc\u03bd\u03bf \u03b5\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03b9\u03bd\u03ae\u03c3\u03b5\u03b9\u03c2 \u03c4\u03b9\u03c2 \u03bc\u03b7 \u03b5\u03bd\u03b5\u03c1\u03b3\u03ad\u03c2 \u03c0\u03b5\u03c1\u03b9\u03cc\u03b4\u03bf\u03c5\u03c2, \u03cc\u03c4\u03b1\u03bd \u03ba\u03b1\u03bd\u03b5\u03af\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03cc\u03c2.",
|
||||||
"LabelRunServerAtStartup": "\u039e\u03b5\u03ba\u03af\u03bd\u03b7\u03c3\u03b5 \u03c4\u03bf\u03bd \u03a3\u03b5\u03c1\u03b2\u03b5\u03c1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7",
|
"LabelRunServerAtStartup": "\u039e\u03b5\u03ba\u03af\u03bd\u03b7\u03c3\u03b5 \u03c4\u03bf\u03bd \u03a3\u03b5\u03c1\u03b2\u03b5\u03c1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7",
|
||||||
"LabelRunServerAtStartupHelp": "This will start the Emby tray icon on Windows startup. If you've set up a Windows service then leave this unchecked and configure the service to run at startup.",
|
"LabelRunServerAtStartupHelp": "\u0391\u03c5\u03c4\u03cc \u03b8\u03b1 \u03be\u03b5\u03ba\u03b9\u03bd\u03ae\u03c3\u03b5\u03b9 \u03c4\u03bf \u03b5\u03b9\u03ba\u03bf\u03bd\u03af\u03b4\u03b9\u03bf \u03c4\u03bf\u03c5 \u03b4\u03af\u03c3\u03ba\u03bf\u03c5 Emby \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03c4\u03c9\u03bd Windows. \u0391\u03bd \u03ad\u03c7\u03b5\u03c4\u03b5 \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9 \u03bc\u03b9\u03b1 \u03c5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b1 \u03c4\u03c9\u03bd Windows, \u03b1\u03c6\u03ae\u03c3\u03c4\u03b5 \u03c4\u03bf \u03bc\u03b7 \u03b5\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf \u03ba\u03b1\u03b9 \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03c4\u03b5 \u03c4\u03b9\u03c2 \u03c0\u03b1\u03c1\u03b1\u03bc\u03ad\u03c4\u03c1\u03bf\u03c5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03b5\u03ba\u03c4\u03ad\u03bb\u03b5\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03c5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b1\u03c2 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7.",
|
||||||
"ButtonSelectDirectory": "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03a6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5",
|
"ButtonSelectDirectory": "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03a6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5",
|
||||||
"LabelCachePath": "Cache path:",
|
"LabelCachePath": "\u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03c0\u03c1\u03bf\u03c3\u03c9\u03c1. \u03b1\u03c0\u03bf\u03b8.:",
|
||||||
"DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.",
|
"DefaultMetadataLangaugeDescription": "\u0391\u03c5\u03c4\u03ad\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bf\u03b9 \u03c0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2 \u03c3\u03b1\u03c2 \u03ba\u03b1\u03b9 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03c4\u03bf\u03cd\u03bd \u03c3\u03b5 \u03b2\u03ac\u03c3\u03b7 \u03b1\u03bd\u03ac \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7.",
|
||||||
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
|
"LabelCachePathHelp": "\u039a\u03b1\u03b8\u03bf\u03c1\u03af\u03c3\u03c4\u03b5 \u03bc\u03b9\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1 \u03b3\u03b9\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c9\u03c1\u03b9\u03bd\u03ae\u03c2 \u03bc\u03bd\u03ae\u03bc\u03b7\u03c2 \u03b4\u03b9\u03b1\u03ba\u03bf\u03bc\u03b9\u03c3\u03c4\u03ae, \u03cc\u03c0\u03c9\u03c2 \u03b5\u03b9\u03ba\u03cc\u03bd\u03b5\u03c2. \u0391\u03c6\u03ae\u03c3\u03c4\u03b5 \u03ba\u03b5\u03bd\u03cc \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03c4\u03bf\u03c5 \u03b4\u03b9\u03b1\u03ba\u03bf\u03bc\u03b9\u03c3\u03c4\u03ae.",
|
||||||
"LabelRecordingPath": "Default recording path:",
|
"LabelRecordingPath": "\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2:",
|
||||||
"LabelMovieRecordingPath": "Movie recording path (optional):",
|
"LabelMovieRecordingPath": "\u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2 (\u03c0\u03c1\u03bf\u03b1\u03b9\u03c1\u03b5\u03c4\u03b9\u03ba\u03cc):",
|
||||||
"LabelSeriesRecordingPath": "Series recording path (optional):",
|
"LabelSeriesRecordingPath": "\u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03ba\u03b1\u03c4\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2 \u03a3\u03b5\u03b9\u03c1\u03ce\u03bd (\u03c0\u03c1\u03bf\u03b1\u03b9\u03c1\u03b5\u03c4\u03b9\u03ba\u03cc):",
|
||||||
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
|
"LabelRecordingPathHelp": "\u039a\u03b1\u03b8\u03bf\u03c1\u03af\u03c3\u03c4\u03b5 \u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03b8\u03ad\u03c3\u03b7 \u03b3\u03b9\u03b1 \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ce\u03bd. \u0395\u03ac\u03bd \u03b1\u03c6\u03b5\u03b8\u03b5\u03af \u03ba\u03b5\u03bd\u03cc, \u03b8\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03b5\u03af \u03bf \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c4\u03bf\u03c5 \u03c0\u03c1\u03bf\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03b4\u03b9\u03b1\u03ba\u03bf\u03bc\u03b9\u03c3\u03c4\u03ae.",
|
||||||
"LabelMetadataPath": "Metadata path:",
|
"LabelMetadataPath": "\u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03bc\u03b5\u03c4\u03b1\u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd:",
|
||||||
"LabelMetadataPathHelp": "Specify a custom location for downloaded artwork and metadata.",
|
"LabelMetadataPathHelp": "\u039a\u03b1\u03b8\u03bf\u03c1\u03af\u03c3\u03c4\u03b5 \u03bc\u03b9\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03ba\u03b1\u03b9 \u03c4\u03b1 \u03bc\u03b5\u03c4\u03b1\u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c0\u03bf\u03c5 \u03ad\u03c7\u03b5\u03c4\u03b5 \u03bb\u03ac\u03b2\u03b5\u03b9.",
|
||||||
"LabelTranscodingTempPath": "Transcoding temporary path:",
|
"LabelTranscodingTempPath": "Transcoding temporary path:",
|
||||||
"LabelTranscodingTempPathHelp": "This folder contains working files used by the transcoder. Specify a custom path, or leave empty to use the default within the server's data folder.",
|
"LabelTranscodingTempPathHelp": "\u0391\u03c5\u03c4\u03cc\u03c2 \u03bf \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2 \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03b5\u03b9 \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2 \u03c0\u03bf\u03c5 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd\u03c4\u03b1\u03b9 \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u03bc\u03b5\u03c4\u03b1\u03c3\u03c7\u03b7\u03bc\u03b1\u03c4\u03b9\u03c3\u03c4\u03ae. \u039a\u03b1\u03b8\u03bf\u03c1\u03af\u03c3\u03c4\u03b5 \u03bc\u03b9\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b7 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03ae \u03b1\u03c6\u03ae\u03c3\u03c4\u03b5 \u03ba\u03b5\u03bd\u03cc \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03c3\u03c4\u03bf \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c4\u03bf\u03c5 \u03b4\u03b9\u03b1\u03ba\u03bf\u03bc\u03b9\u03c3\u03c4\u03ae.",
|
||||||
"TabBasics": "\u0392\u03b1\u03c3\u03b9\u03ba\u03ac",
|
"TabBasics": "\u0392\u03b1\u03c3\u03b9\u03ba\u03ac",
|
||||||
"TabTV": "\u03a4\u03b7\u03bb\u03b5\u03cc\u03c1\u03b1\u03c3\u03b7",
|
"TabTV": "\u03a4\u03b7\u03bb\u03b5\u03cc\u03c1\u03b1\u03c3\u03b7",
|
||||||
"TabGames": "\u03a0\u03b1\u03b9\u03c7\u03bd\u03af\u03b4\u03b9\u03b1",
|
"TabGames": "\u03a0\u03b1\u03b9\u03c7\u03bd\u03af\u03b4\u03b9\u03b1",
|
||||||
|
@ -310,8 +310,8 @@
|
||||||
"OptionOtherVideos": "\u0386\u03bb\u03bb\u03b1 \u0392\u03af\u03bd\u03c4\u03b5\u03bf",
|
"OptionOtherVideos": "\u0386\u03bb\u03bb\u03b1 \u0392\u03af\u03bd\u03c4\u03b5\u03bf",
|
||||||
"LabelFanartApiKey": "Personal api key:",
|
"LabelFanartApiKey": "Personal api key:",
|
||||||
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
||||||
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
"ExtractChapterImagesHelp": "\u0397 \u03b5\u03be\u03b1\u03b3\u03c9\u03b3\u03ae \u03c4\u03c9\u03bd \u03b5\u03b9\u03ba\u03cc\u03bd\u03c9\u03bd \u03ba\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03c9\u03bd \u03b8\u03b1 \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c8\u03b5\u03b9 \u03c3\u03c4\u03b9\u03c2 \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ad\u03c2 Emby \u03bd\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03b6\u03bf\u03c5\u03bd \u03bc\u03b5\u03bd\u03bf\u03cd \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ce\u03bd \u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03ce\u03bd \u03c3\u03ba\u03b7\u03bd\u03ce\u03bd. \u0397 \u03b4\u03b9\u03b1\u03b4\u03b9\u03ba\u03b1\u03c3\u03af\u03b1 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b1\u03c1\u03b3\u03ae, CPU-\u03b5\u03bd\u03c4\u03b1\u03c4\u03b9\u03ba\u03ae \u03ba\u03b1\u03b9 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b1\u03c0\u03b1\u03b9\u03c4\u03ae\u03c3\u03b5\u03b9 \u03b1\u03c1\u03ba\u03b5\u03c4\u03ac gigabytes \u03c4\u03bf\u03c5 \u03c7\u03ce\u03c1\u03bf\u03c5. \u03a4\u03c1\u03ad\u03c7\u03b5\u03b9 \u03cc\u03c4\u03b1\u03bd \u03b1\u03bd\u03b1\u03ba\u03b1\u03bb\u03cd\u03c0\u03c4\u03bf\u03bd\u03c4\u03b1\u03b9 \u03b2\u03af\u03bd\u03c4\u03b5\u03bf, \u03b1\u03bb\u03bb\u03ac \u03ba\u03b1\u03b9 \u03c9\u03c2 \u03c0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03bc\u03ad\u03bd\u03b7 \u03bd\u03c5\u03c7\u03c4\u03b5\u03c1\u03b9\u03bd\u03ae \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1. \u03a4\u03bf \u03c0\u03c1\u03cc\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c1\u03c5\u03b8\u03bc\u03b9\u03c3\u03c4\u03b5\u03af \u03c3\u03c4\u03b7\u03bd \u03c0\u03b5\u03c1\u03b9\u03bf\u03c7\u03ae \u03c0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03bc\u03ad\u03bd\u03c9\u03bd \u03b5\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd. \u0394\u03b5\u03bd \u03c3\u03c5\u03bd\u03b9\u03c3\u03c4\u03ac\u03c4\u03b1\u03b9 \u03b7 \u03b5\u03ba\u03c4\u03ad\u03bb\u03b5\u03c3\u03b7 \u03b1\u03c5\u03c4\u03ae\u03c2 \u03c4\u03b7\u03c2 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b9\u03c2 \u03ce\u03c1\u03b5\u03c2 \u03b1\u03b9\u03c7\u03bc\u03ae\u03c2 \u03c7\u03c1\u03ae\u03c3\u03b7\u03c2.",
|
||||||
"LabelMetadataDownloadLanguage": "Preferred metadata language:",
|
"LabelMetadataDownloadLanguage": "\u03a0\u03c1\u03bf\u03c4\u03b9\u03bc\u03ce\u03bc\u03b5\u03bd\u03b7 \u03b3\u03bb\u03ce\u03c3\u03c3\u03b1 \u03bc\u03b5\u03c4\u03b1\u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd:",
|
||||||
"ButtonSignIn": "\u0395\u03af\u03c3\u03bf\u03b4\u03bf\u03c2",
|
"ButtonSignIn": "\u0395\u03af\u03c3\u03bf\u03b4\u03bf\u03c2",
|
||||||
"TitleSignIn": "\u0395\u03af\u03c3\u03bf\u03b4\u03bf\u03c2",
|
"TitleSignIn": "\u0395\u03af\u03c3\u03bf\u03b4\u03bf\u03c2",
|
||||||
"HeaderPleaseSignIn": "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03b9\u03c3\u03ad\u03bb\u03b8\u03b5\u03c4\u03b5",
|
"HeaderPleaseSignIn": "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03b9\u03c3\u03ad\u03bb\u03b8\u03b5\u03c4\u03b5",
|
||||||
|
@ -323,50 +323,50 @@
|
||||||
"TabCollections": "\u03a3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ad\u03c2",
|
"TabCollections": "\u03a3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ad\u03c2",
|
||||||
"HeaderChannels": "\u039a\u03b1\u03bd\u03ac\u03bb\u03b9\u03b1",
|
"HeaderChannels": "\u039a\u03b1\u03bd\u03ac\u03bb\u03b9\u03b1",
|
||||||
"TabRecordings": "\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ad\u03c2",
|
"TabRecordings": "\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ad\u03c2",
|
||||||
"TabSeries": "Series",
|
"TabSeries": "\u03a3\u03b5\u03b9\u03c1\u03ad\u03c2",
|
||||||
"TabFavorites": "Favorites",
|
"TabFavorites": "\u0391\u03b3\u03b1\u03c0\u03b7\u03bc\u03ad\u03bd\u03b1",
|
||||||
"TabMyLibrary": "My Library",
|
"TabMyLibrary": "\u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 \u03a0\u03bf\u03bb\u03c5\u03bc\u03ad\u03c3\u03c9\u03bd",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "\u0388\u03bd\u03b1\u03c1\u03be\u03b7 \u03cc\u03c4\u03b1\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03c5\u03bd\u03b1\u03c4\u03cc:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "\u0394\u03b9\u03b1\u03ba\u03bf\u03c0\u03ae \u03cc\u03c4\u03b1\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03c5\u03bd\u03b1\u03c4\u03cc\u03bd:",
|
||||||
"MinutesBefore": "minutes before",
|
"MinutesBefore": "\u03bb\u03b5\u03c0\u03c4\u03ac \u03c0\u03c1\u03b9\u03bd",
|
||||||
"MinutesAfter": "minutes after",
|
"MinutesAfter": "\u03bb\u03b5\u03c0\u03c4\u03ac \u03bc\u03b5\u03c4\u03ac",
|
||||||
"TabSettings": "Settings",
|
"TabSettings": "\u03a1\u03c5\u03b8\u03bc\u03b9\u03c3\u03b5\u03b9\u03c2",
|
||||||
"ButtonRefreshGuideData": "Refresh Guide Data",
|
"ButtonRefreshGuideData": "\u0391\u03bd\u03b1\u03bd\u03ad\u03c9\u03c3\u03b7 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03bf\u03b4\u03b7\u03b3\u03bf\u03cd",
|
||||||
"ButtonRefresh": "Refresh",
|
"ButtonRefresh": "\u0391\u03bd\u03b1\u03bd\u03ad\u03c9\u03c3\u03b7",
|
||||||
"OptionPriority": "Priority",
|
"OptionPriority": "\u03a0\u03c1\u03bf\u03c4\u03b5\u03c1\u03b1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1",
|
||||||
"OptionRecordOnAllChannels": "Record on all channels",
|
"OptionRecordOnAllChannels": "\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae \u03c3\u03b5 \u03cc\u03bb\u03b1 \u03c4\u03b1 \u03ba\u03b1\u03bd\u03ac\u03bb\u03b9\u03b1",
|
||||||
"OptionRecordAnytime": "Record at any time",
|
"OptionRecordAnytime": "\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae \u03b1\u03bd\u03ac \u03c0\u03ac\u03c3\u03b1 \u03c3\u03c4\u03b9\u03b3\u03bc\u03ae",
|
||||||
"OptionRecordOnlyNewEpisodes": "Record only new episodes",
|
"OptionRecordOnlyNewEpisodes": "\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae \u03bc\u03cc\u03bd\u03bf \u03bd\u03ad\u03c9\u03bd \u03b5\u03c0\u03b5\u03b9\u03c3\u03bf\u03b4\u03af\u03c9\u03bd",
|
||||||
"HeaderDays": "Days",
|
"HeaderDays": "\u0397\u03bc\u03ad\u03c1\u03b5\u03c2",
|
||||||
"HeaderActiveRecordings": "Active Recordings",
|
"HeaderActiveRecordings": "\u0395\u03bd\u03b5\u03c1\u03b3\u03ad\u03c2 \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ad\u03c2",
|
||||||
"HeaderLatestRecordings": "Latest Recordings",
|
"HeaderLatestRecordings": "\u03c4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03b9\u03b5\u03c2 \u03b7\u03c7\u03bf\u03b3\u03c1\u03b1\u03c6\u03b7\u03c3\u03b5\u03b9\u03c2",
|
||||||
"ButtonPlay": "Play",
|
"ButtonPlay": "\u0391\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae",
|
||||||
"ButtonEdit": "Edit",
|
"ButtonEdit": "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1",
|
||||||
"ButtonRecord": "Record",
|
"ButtonRecord": "\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae",
|
||||||
"ButtonDelete": "Delete",
|
"ButtonDelete": "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae",
|
||||||
"ButtonRemove": "Remove",
|
"ButtonRemove": "\u039a\u03b1\u03c4\u03ac\u03c1\u03b3\u03b7\u03c3\u03b7",
|
||||||
"OptionRecordSeries": "Record Series",
|
"OptionRecordSeries": "\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae \u03a3\u03b5\u03b9\u03c1\u03ce\u03bd",
|
||||||
"HeaderDetails": "Details",
|
"HeaderDetails": "\u039b\u03b5\u03c0\u03c4\u03bf\u03bc\u03ad\u03c1\u03b9\u03b5\u03c2",
|
||||||
"TitleLiveTV": "Live TV",
|
"TitleLiveTV": "\u0396\u03a9\u039d\u03a4\u0391\u039d\u0397 \u03a4\u0397\u039b\u0395\u038c\u03a1\u0391\u03a3\u0397",
|
||||||
"LabelNumberOfGuideDays": "Number of days of guide data to download:",
|
"LabelNumberOfGuideDays": "\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03b7\u03bc\u03b5\u03c1\u03ce\u03bd \u03bf\u03b4\u03b7\u03b3\u03b9\u03ce\u03bd \u03b3\u03b9\u03b1 \u03bb\u03ae\u03c8\u03b7:",
|
||||||
"LabelNumberOfGuideDaysHelp": "Downloading more days worth of guide data provides the ability to schedule out further in advance and view more listings, but it will also take longer to download. Auto will choose based on the number of channels.",
|
"LabelNumberOfGuideDaysHelp": "\u0397 \u03bb\u03ae\u03c8\u03b7 \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03c9\u03bd \u03b7\u03bc\u03b5\u03c1\u03ce\u03bd \u03b1\u03c0\u03cc \u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03b1 \u03bf\u03b4\u03b7\u03b3\u03ce\u03bd \u03c0\u03b1\u03c1\u03ad\u03c7\u03b5\u03b9 \u03c4\u03b7 \u03b4\u03c5\u03bd\u03b1\u03c4\u03cc\u03c4\u03b7\u03c4\u03b1 \u03c0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03bc\u03bf\u03cd \u03b5\u03ba \u03c4\u03c9\u03bd \u03c0\u03c1\u03bf\u03c4\u03ad\u03c1\u03c9\u03bd \u03ba\u03b1\u03b9 \u03c0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03c9\u03bd \u03ba\u03b1\u03c4\u03b1\u03c7\u03c9\u03c1\u03af\u03c3\u03b5\u03c9\u03bd, \u03b1\u03bb\u03bb\u03ac \u03b8\u03b1 \u03c7\u03c1\u03b5\u03b9\u03b1\u03c3\u03c4\u03b5\u03af \u03b5\u03c0\u03af\u03c3\u03b7\u03c2 \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03bf\u03c2 \u03c7\u03c1\u03cc\u03bd\u03bf\u03c2 \u03bb\u03ae\u03c8\u03b7\u03c2. \u03a4\u03bf Auto \u03b8\u03b1 \u03b5\u03c0\u03b9\u03bb\u03ad\u03be\u03b5\u03b9 \u03bc\u03b5 \u03b2\u03ac\u03c3\u03b7 \u03c4\u03bf\u03bd \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc \u03c4\u03c9\u03bd \u03ba\u03b1\u03bd\u03b1\u03bb\u03b9\u03ce\u03bd.",
|
||||||
"OptionAutomatic": "Auto",
|
"OptionAutomatic": "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03bf",
|
||||||
"HeaderServices": "Services",
|
"HeaderServices": "\u03a5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b5\u03c2",
|
||||||
"LabelCustomizeOptionsPerMediaType": "Customize for media type:",
|
"LabelCustomizeOptionsPerMediaType": "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03b3\u03b9\u03b1 \u03c4\u03cd\u03c0\u03bf \u03c0\u03bf\u03bb\u03c5\u03bc\u03ad\u03c3\u03bf\u03c5:",
|
||||||
"OptionDownloadThumbImage": "Thumb",
|
"OptionDownloadThumbImage": "Thumb",
|
||||||
"OptionDownloadMenuImage": "Menu",
|
"OptionDownloadMenuImage": "\u039c\u03b5\u03bd\u03bf\u03cd",
|
||||||
"OptionDownloadLogoImage": "Logo",
|
"OptionDownloadLogoImage": "Logo",
|
||||||
"OptionDownloadBoxImage": "Box",
|
"OptionDownloadBoxImage": "\u039a\u03bf\u03c5\u03c4\u03af",
|
||||||
"OptionDownloadDiscImage": "Disc",
|
"OptionDownloadDiscImage": "\u0394\u03af\u03c3\u03ba\u03bf\u03c2",
|
||||||
"OptionDownloadBannerImage": "Banner",
|
"OptionDownloadBannerImage": "\u03a0\u03b1\u03bd\u03cc",
|
||||||
"OptionDownloadBackImage": "Back",
|
"OptionDownloadBackImage": "\u03a0\u03af\u03c3\u03c9",
|
||||||
"OptionDownloadArtImage": "\u03a4\u03ad\u03c7\u03bd\u03b7",
|
"OptionDownloadArtImage": "\u03a4\u03ad\u03c7\u03bd\u03b7",
|
||||||
"OptionDownloadPrimaryImage": "\u03a0\u03c1\u03ce\u03c4\u03bf",
|
"OptionDownloadPrimaryImage": "\u03a0\u03c1\u03ce\u03c4\u03bf",
|
||||||
"HeaderFetchImages": "Fetch Images:",
|
"HeaderFetchImages": "\u039b\u03ae\u03c8\u03b7 \u03b5\u03b9\u03ba\u03cc\u03bd\u03c9\u03bd:",
|
||||||
"HeaderImageSettings": "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u0395\u03b9\u03ba\u03cc\u03bd\u03b1\u03c2",
|
"HeaderImageSettings": "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u0395\u03b9\u03ba\u03cc\u03bd\u03b1\u03c2",
|
||||||
"TabOther": "\u0386\u03bb\u03bb\u03b1",
|
"TabOther": "\u0386\u03bb\u03bb\u03b1",
|
||||||
"LabelMaxBackdropsPerItem": "Maximum number of backdrops per item:",
|
"LabelMaxBackdropsPerItem": "\u039c\u03ad\u03b3\u03b9\u03c3\u03c4\u03bf\u03c2 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03c3\u03ba\u03b7\u03bd\u03b9\u03ba\u03ce\u03bd \u03b1\u03bd\u03ac \u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03bf:",
|
||||||
"LabelMaxScreenshotsPerItem": "Maximum number of screenshots per item:",
|
"LabelMaxScreenshotsPerItem": "\u039c\u03ad\u03b3\u03b9\u03c3\u03c4\u03bf\u03c2 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 screenshot \u03b1\u03bd\u03ac \u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03bf:",
|
||||||
"LabelMinBackdropDownloadWidth": "Minimum backdrop download width:",
|
"LabelMinBackdropDownloadWidth": "Minimum backdrop download width:",
|
||||||
"LabelMinScreenshotDownloadWidth": "Minimum screenshot download width:",
|
"LabelMinScreenshotDownloadWidth": "Minimum screenshot download width:",
|
||||||
"ButtonAddScheduledTaskTrigger": "Add Trigger",
|
"ButtonAddScheduledTaskTrigger": "Add Trigger",
|
||||||
|
@ -375,22 +375,22 @@
|
||||||
"LabelTriggerType": "Trigger Type:",
|
"LabelTriggerType": "Trigger Type:",
|
||||||
"OptionDaily": "\u039a\u03b1\u03b8\u03b7\u03bc\u03b5\u03c1\u03b9\u03bd\u03ac",
|
"OptionDaily": "\u039a\u03b1\u03b8\u03b7\u03bc\u03b5\u03c1\u03b9\u03bd\u03ac",
|
||||||
"OptionWeekly": "\u0395\u03b2\u03b4\u03bf\u03bc\u03b1\u03b4\u03b9\u03b1\u03af\u03b1",
|
"OptionWeekly": "\u0395\u03b2\u03b4\u03bf\u03bc\u03b1\u03b4\u03b9\u03b1\u03af\u03b1",
|
||||||
"OptionOnInterval": "On an interval",
|
"OptionOnInterval": "\u03a3\u03b5 \u03ad\u03bd\u03b1 \u03b4\u03b9\u03ac\u03c3\u03c4\u03b7\u03bc\u03b1",
|
||||||
"OptionOnAppStartup": "On application startup",
|
"OptionOnAppStartup": "\u039a\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae\u03c2",
|
||||||
"OptionAfterSystemEvent": "After a system event",
|
"OptionAfterSystemEvent": "\u039c\u03b5\u03c4\u03ac \u03b1\u03c0\u03cc \u03ad\u03bd\u03b1 \u03c3\u03c5\u03bc\u03b2\u03ac\u03bd \u03c3\u03c5\u03c3\u03c4\u03ae\u03bc\u03b1\u03c4\u03bf\u03c2",
|
||||||
"LabelDay": "\u0397\u03bc\u03ad\u03c1\u03b1:",
|
"LabelDay": "\u0397\u03bc\u03ad\u03c1\u03b1:",
|
||||||
"LabelTime": "\u038f\u03c1\u03b1:",
|
"LabelTime": "\u038f\u03c1\u03b1:",
|
||||||
"LabelEvent": "\u0393\u03b5\u03b3\u03bf\u03bd\u03cc\u03c2:",
|
"LabelEvent": "\u0393\u03b5\u03b3\u03bf\u03bd\u03cc\u03c2:",
|
||||||
"OptionWakeFromSleep": "\u0395\u03c0\u03b1\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b7",
|
"OptionWakeFromSleep": "\u0395\u03c0\u03b1\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b7",
|
||||||
"LabelEveryXMinutes": "\u039a\u03ac\u03b8\u03b5:",
|
"LabelEveryXMinutes": "\u039a\u03ac\u03b8\u03b5:",
|
||||||
"HeaderTvTuners": "Tuners",
|
"HeaderTvTuners": "\u03a3\u03c5\u03bd\u03c4\u03bf\u03bd\u03b9\u03c3\u03c4\u03ad\u03c2",
|
||||||
"HeaderLatestGames": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03a0\u03b1\u03b9\u03c7\u03bd\u03af\u03b4\u03b9\u03b1",
|
"HeaderLatestGames": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03a0\u03b1\u03b9\u03c7\u03bd\u03af\u03b4\u03b9\u03b1",
|
||||||
"TabGameSystems": "Game Systems",
|
"TabGameSystems": "\u03a3\u03c5\u03c3\u03c4\u03ae\u03bc\u03b1\u03c4\u03b1 \u03c0\u03b1\u03b9\u03c7\u03bd\u03b9\u03b4\u03b9\u03ce\u03bd",
|
||||||
"TabFolders": "\u03a6\u03ac\u03ba\u03b5\u03bb\u03bf\u03b9",
|
"TabFolders": "\u03a6\u03ac\u03ba\u03b5\u03bb\u03bf\u03b9",
|
||||||
"LabelSpecialSeasonsDisplayName": "Special season display name:",
|
"LabelSpecialSeasonsDisplayName": "Special season display name:",
|
||||||
"LabelEnableRealtimeMonitor": "Enable real time monitoring",
|
"LabelEnableRealtimeMonitor": "Enable real time monitoring",
|
||||||
"LabelEnableRealtimeMonitorHelp": "Changes will be processed immediately, on supported file systems.",
|
"LabelEnableRealtimeMonitorHelp": "Changes will be processed immediately, on supported file systems.",
|
||||||
"ButtonScanLibrary": "\u03a8\u03ac\u03be\u03b5 \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7",
|
"ButtonScanLibrary": "\u03a3\u03ac\u03c1\u03c9\u03c3\u03b7 \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2",
|
||||||
"HeaderNumberOfPlayers": "Players",
|
"HeaderNumberOfPlayers": "Players",
|
||||||
"OptionAnyNumberOfPlayers": "\u038c\u03bb\u03b1",
|
"OptionAnyNumberOfPlayers": "\u038c\u03bb\u03b1",
|
||||||
"Option1Player": "1+",
|
"Option1Player": "1+",
|
||||||
|
@ -418,26 +418,26 @@
|
||||||
"LabelEnableDlnaPlayTo": "Enable DLNA Play To",
|
"LabelEnableDlnaPlayTo": "Enable DLNA Play To",
|
||||||
"LabelEnableDlnaPlayToHelp": "Emby can detect devices within your network and offer the ability to remote control them.",
|
"LabelEnableDlnaPlayToHelp": "Emby can detect devices within your network and offer the ability to remote control them.",
|
||||||
"LabelEnableDlnaDebugLogging": "Enable DLNA debug logging",
|
"LabelEnableDlnaDebugLogging": "Enable DLNA debug logging",
|
||||||
"LabelEnableDlnaDebugLoggingHelp": "This will create large log files and should only be used as needed for troubleshooting purposes.",
|
"LabelEnableDlnaDebugLoggingHelp": "\u0391\u03c5\u03c4\u03cc \u03b8\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03c3\u03b5\u03b9 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03ba\u03b1\u03c4\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2 \u03ba\u03b1\u03b9 \u03b8\u03b1 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b5\u03af\u03c4\u03b1\u03b9 \u03bc\u03cc\u03bd\u03bf \u03b5\u03c6\u03cc\u03c3\u03bf\u03bd \u03b1\u03c0\u03b1\u03b9\u03c4\u03b5\u03af\u03c4\u03b1\u03b9 \u03b3\u03b9\u03b1 \u03c3\u03ba\u03bf\u03c0\u03bf\u03cd\u03c2 \u03b1\u03bd\u03c4\u03b9\u03bc\u03b5\u03c4\u03ce\u03c0\u03b9\u03c3\u03b7\u03c2 \u03c0\u03c1\u03bf\u03b2\u03bb\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd.",
|
||||||
"LabelEnableDlnaClientDiscoveryInterval": "Client discovery interval (seconds)",
|
"LabelEnableDlnaClientDiscoveryInterval": "Client discovery interval (seconds)",
|
||||||
"LabelEnableDlnaClientDiscoveryIntervalHelp": "Determines the duration in seconds between SSDP searches performed by Emby.",
|
"LabelEnableDlnaClientDiscoveryIntervalHelp": "Determines the duration in seconds between SSDP searches performed by Emby.",
|
||||||
"HeaderCustomDlnaProfiles": "Custom Profiles",
|
"HeaderCustomDlnaProfiles": "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b1 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb",
|
||||||
"HeaderSystemDlnaProfiles": "System Profiles",
|
"HeaderSystemDlnaProfiles": "\u03a0\u03c1\u03bf\u03c6\u03af\u03bb \u03a3\u03c5\u03c3\u03c4\u03ae\u03bc\u03b1\u03c4\u03bf\u03c2",
|
||||||
"CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.",
|
"CustomDlnaProfilesHelp": "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03c3\u03c4\u03b5 \u03ad\u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03c3\u03c4\u03bf\u03c7\u03b5\u03cd\u03c3\u03b5\u03c4\u03b5 \u03bc\u03b9\u03b1 \u03bd\u03ad\u03b1 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae \u03ae \u03bd\u03b1 \u03b1\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ae\u03c3\u03b5\u03c4\u03b5 \u03ad\u03bd\u03b1 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03c3\u03c5\u03c3\u03c4\u03ae\u03bc\u03b1\u03c4\u03bf\u03c2.",
|
||||||
"SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.",
|
"SystemDlnaProfilesHelp": "\u03a4\u03b1 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03c4\u03bf\u03c5 \u03c3\u03c5\u03c3\u03c4\u03ae\u03bc\u03b1\u03c4\u03bf\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03cc\u03bd\u03bf \u03b3\u03b9\u03b1 \u03b1\u03bd\u03ac\u03b3\u03bd\u03c9\u03c3\u03b7. \u039f\u03b9 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 \u03c3\u03b5 \u03ad\u03bd\u03b1 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03c3\u03c5\u03c3\u03c4\u03ae\u03bc\u03b1\u03c4\u03bf\u03c2 \u03b8\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd \u03c3\u03b5 \u03ad\u03bd\u03b1 \u03bd\u03ad\u03bf \u03c0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf \u03c0\u03c1\u03bf\u03c6\u03af\u03bb.",
|
||||||
"TabHome": "Home",
|
"TabHome": "\u0391\u03c1\u03c7\u03b9\u03ba\u03ae",
|
||||||
"TabInfo": "Info",
|
"TabInfo": "\u03a0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b1",
|
||||||
"HeaderLinks": "Links",
|
"HeaderLinks": "\u03a3\u03cd\u03bd\u03b4\u03b5\u03c3\u03bc\u03bf\u03b9",
|
||||||
"LinkCommunity": "Community",
|
"LinkCommunity": "\u039a\u03bf\u03b9\u03bd\u03cc\u03c4\u03b7\u03c4\u03b1",
|
||||||
"LinkGithub": "Github",
|
"LinkGithub": "Github",
|
||||||
"LinkApi": "Api",
|
"LinkApi": "Api",
|
||||||
"LabelFriendlyServerName": "Friendly server name:",
|
"LabelFriendlyServerName": "\u038c\u03bd\u03bf\u03bc\u03b1 \u03b4\u03b9\u03b1\u03ba\u03bf\u03bc\u03b9\u03c3\u03c4\u03ae:",
|
||||||
"LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.",
|
"LabelFriendlyServerNameHelp": "\u0391\u03c5\u03c4\u03cc \u03c4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03b8\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03b5\u03af \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03b1\u03bd\u03b1\u03b3\u03bd\u03ce\u03c1\u03b9\u03c3\u03b7 \u03b1\u03c5\u03c4\u03bf\u03cd \u03c4\u03bf\u03c5 \u03b4\u03b9\u03b1\u03ba\u03bf\u03bc\u03b9\u03c3\u03c4\u03ae. \u0391\u03bd \u03c0\u03b1\u03c1\u03b1\u03bc\u03b5\u03af\u03bd\u03b5\u03b9 \u03ba\u03b5\u03bd\u03cc, \u03b8\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03b5\u03af \u03c4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03c5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03c4\u03ae.",
|
||||||
"LabelPreferredDisplayLanguage": "Preferred display language:",
|
"LabelPreferredDisplayLanguage": "\u03a0\u03c1\u03bf\u03c4\u03b9\u03bc\u03ce\u03bc\u03b5\u03bd\u03b7 \u03b3\u03bb\u03ce\u03c3\u03c3\u03b1 \u03b5\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7\u03c2:",
|
||||||
"LabelPreferredDisplayLanguageHelp": "Translating Emby is an ongoing project.",
|
"LabelPreferredDisplayLanguageHelp": "\u0397 \u03bc\u03b5\u03c4\u03ac\u03c6\u03c1\u03b1\u03c3\u03b7 \u03c4\u03bf\u03c5 Emby \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03bd\u03b1 \u03c3\u03c5\u03bd\u03b5\u03c7\u03b9\u03b6\u03cc\u03bc\u03b5\u03bd\u03bf \u03ad\u03c1\u03b3\u03bf.",
|
||||||
"LabelReadHowYouCanContribute": "Learn how you can contribute.",
|
"LabelReadHowYouCanContribute": "\u039c\u03ac\u03b8\u03b5\u03c4\u03b5 \u03c0\u03ce\u03c2 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03c3\u03c5\u03bc\u03b2\u03ac\u03bb\u03bb\u03b5\u03c4\u03b5.",
|
||||||
"ButtonSubmit": "Submit",
|
"ButtonSubmit": "\u03c5\u03c0\u03bf\u03b2\u03bf\u03bb\u03ae",
|
||||||
"ButtonCreate": "Create",
|
"ButtonCreate": "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1",
|
||||||
"LabelCustomCss": "Custom css:",
|
"LabelCustomCss": "Custom css:",
|
||||||
"LabelCustomCssHelp": "Apply your own custom css to the web interface.",
|
"LabelCustomCssHelp": "Apply your own custom css to the web interface.",
|
||||||
"LabelLocalHttpServerPortNumber": "Local http port number:",
|
"LabelLocalHttpServerPortNumber": "Local http port number:",
|
||||||
|
@ -463,17 +463,17 @@
|
||||||
"LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable",
|
"LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable",
|
||||||
"HeaderName": "\u038c\u03bd\u03bf\u03bc\u03b1",
|
"HeaderName": "\u038c\u03bd\u03bf\u03bc\u03b1",
|
||||||
"HeaderDate": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1",
|
"HeaderDate": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1",
|
||||||
"HeaderSource": "Source",
|
"HeaderSource": "\u03a0\u03b7\u03b3\u03ae",
|
||||||
"HeaderStatus": "\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7",
|
"HeaderStatus": "\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7",
|
||||||
"HeaderDestination": "Destination",
|
"HeaderDestination": "\u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae",
|
||||||
"HeaderProgram": "Program",
|
"HeaderProgram": "\u03a0\u03c1\u03cc\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1",
|
||||||
"HeaderClients": "Clients",
|
"HeaderClients": "\u03a0\u03b5\u03bb\u03ac\u03c4\u03b5\u03c2",
|
||||||
"LabelCompleted": "Completed",
|
"LabelCompleted": "\u039f\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5",
|
||||||
"LabelFailed": "Failed",
|
"LabelFailed": "\u0391\u03c0\u03bf\u03c4\u03c5\u03c7\u03af\u03b1",
|
||||||
"LabelSkipped": "Skipped",
|
"LabelSkipped": "\u03a0\u03b1\u03c1\u03ac\u03bb\u03b5\u03b9\u03c8\u03b7",
|
||||||
"LabelSeries": "Series:",
|
"LabelSeries": "\u03a3\u03b5\u03b9\u03c1\u03b1",
|
||||||
"LabelSeasonNumber": "Season number:",
|
"LabelSeasonNumber": "\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03ba\u03cd\u03ba\u03bb\u03bf\u03c5",
|
||||||
"LabelEpisodeNumber": "Episode number:",
|
"LabelEpisodeNumber": "\u039d\u03bf\u03cd\u03bc\u03b5\u03c1\u03bf \u0395\u03c0\u03b5\u03b9\u03c3\u03bf\u03b4\u03af\u03bf\u03c5",
|
||||||
"LabelEndingEpisodeNumber": "Ending episode number:",
|
"LabelEndingEpisodeNumber": "Ending episode number:",
|
||||||
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
|
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
|
||||||
"HeaderSupportTheTeam": "Support the Emby Team",
|
"HeaderSupportTheTeam": "Support the Emby Team",
|
||||||
|
@ -482,95 +482,95 @@
|
||||||
"OptionEnableEpisodeOrganization": "Enable new episode organization",
|
"OptionEnableEpisodeOrganization": "Enable new episode organization",
|
||||||
"LabelSeasonFolderPattern": "Season folder pattern:",
|
"LabelSeasonFolderPattern": "Season folder pattern:",
|
||||||
"LabelSeasonZeroFolderName": "Season zero folder name:",
|
"LabelSeasonZeroFolderName": "Season zero folder name:",
|
||||||
"HeaderResult": "Result",
|
"HeaderResult": "\u0391\u03c0\u03bf\u03c4\u03ad\u03bb\u03b5\u03c3\u03bc\u03b1",
|
||||||
"OptionOverwriteExistingEpisodes": "Overwrite existing episodes",
|
"OptionOverwriteExistingEpisodes": "Overwrite existing episodes",
|
||||||
"LabelTransferMethod": "Transfer method",
|
"LabelTransferMethod": "Transfer method",
|
||||||
"HeaderLatestNews": "Latest News",
|
"HeaderLatestNews": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03bd\u03ad\u03b1",
|
||||||
"HeaderRunningTasks": "Running Tasks",
|
"HeaderRunningTasks": "\u03a0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03bc\u03ad\u03bd\u03b5\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2",
|
||||||
"HeaderActiveDevices": "Active Devices",
|
"HeaderActiveDevices": "\u0395\u03bd\u03b5\u03c1\u03b3\u03ad\u03c2 \u03a3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ad\u03c2",
|
||||||
"HeaderPendingInstallations": "Pending Installations",
|
"HeaderPendingInstallations": "Pending Installations",
|
||||||
"ButtonRestartNow": "Restart Now",
|
"ButtonRestartNow": "\u0395\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03c4\u03ce\u03c1\u03b1",
|
||||||
"ButtonRestart": "Restart",
|
"ButtonRestart": "\u0395\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7",
|
||||||
"ButtonShutdown": "Shutdown",
|
"ButtonShutdown": "\u0391\u03c0\u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7",
|
||||||
"ButtonUpdateNow": "Update Now",
|
"ButtonUpdateNow": "\u0391\u03bd\u03b1\u03b2\u03ac\u03b8\u03bc\u03b9\u03c3\u03b7",
|
||||||
"TabHosting": "Hosting",
|
"TabHosting": "Hosting",
|
||||||
"PleaseUpdateManually": "Please shutdown Emby Server and install the latest version.",
|
"PleaseUpdateManually": "\u0391\u03c0\u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03c4\u03b5 \u03c4\u03bf Emby Server \u03ba\u03b1\u03b9 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ae\u03c3\u03c4\u03b5 \u03c4\u03b7\u03bd \u03c4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7.",
|
||||||
"NewServerVersionAvailable": "A new version of Emby Server is available!",
|
"NewServerVersionAvailable": "\u039c\u03b9\u03b1 \u03bd\u03ad\u03b1 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7 \u03c4\u03bf\u03c5 Emby Server \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b7!",
|
||||||
"ServerUpToDate": "Emby Server is up to date",
|
"ServerUpToDate": "\u039f \u03b4\u03b9\u03b1\u03ba\u03bf\u03bc\u03b9\u03c3\u03c4\u03ae\u03c2 Emby \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03bd\u03b7\u03bc\u03b5\u03c1\u03c9\u03bc\u03ad\u03bd\u03bf\u03c2",
|
||||||
"LabelComponentsUpdated": "The following components have been installed or updated:",
|
"LabelComponentsUpdated": "\u03a4\u03b1 \u03b1\u03ba\u03cc\u03bb\u03bf\u03c5\u03b8\u03b1 \u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03b1 \u03ad\u03c7\u03bf\u03c5\u03bd \u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03b1\u03b8\u03b5\u03af \u03ae \u03b5\u03bd\u03b7\u03bc\u03b5\u03c1\u03c9\u03b8\u03b5\u03af:",
|
||||||
"MessagePleaseRestartServerToFinishUpdating": "Please restart the server to finish applying updates.",
|
"MessagePleaseRestartServerToFinishUpdating": "\u039a\u03ac\u03bd\u03c4\u03b5 \u03b5\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03b4\u03b9\u03b1\u03ba\u03bf\u03bc\u03b9\u03c3\u03c4\u03ae \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03bf\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03c9\u03b8\u03b5\u03af \u03b7 \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03b5\u03bd\u03b7\u03bc\u03b5\u03c1\u03ce\u03c3\u03b5\u03c9\u03bd.",
|
||||||
"LabelDownMixAudioScale": "Audio boost when downmixing:",
|
"LabelDownMixAudioScale": "Audio boost when downmixing:",
|
||||||
"LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.",
|
"LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.",
|
||||||
"LabelCurrentEmailAddress": "Current email address",
|
"LabelCurrentEmailAddress": "\u03a4\u03c1\u03ad\u03c7\u03c9\u03bd email",
|
||||||
"LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.",
|
"LabelCurrentEmailAddressHelp": "\u0397 \u03c4\u03c1\u03ad\u03c7\u03bf\u03c5\u03c3\u03b1 \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 \u03b7\u03bb\u03b5\u03ba\u03c4\u03c1\u03bf\u03bd\u03b9\u03ba\u03bf\u03cd \u03c4\u03b1\u03c7\u03c5\u03b4\u03c1\u03bf\u03bc\u03b5\u03af\u03bf\u03c5 \u03c3\u03c4\u03b7\u03bd \u03bf\u03c0\u03bf\u03af\u03b1 \u03c3\u03c4\u03ac\u03bb\u03b8\u03b7\u03ba\u03b5 \u03c4\u03bf \u03bd\u03ad\u03bf \u03c3\u03b1\u03c2 \u03ba\u03bb\u03b5\u03b9\u03b4\u03af.",
|
||||||
"HeaderForgotKey": "Forgot Key",
|
"HeaderForgotKey": "\u039e\u03b5\u03c7\u03ac\u03c3\u03b1\u03c4\u03b5 \u03c4\u03bf\u03bd \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc",
|
||||||
"LabelEmailAddress": "Email address",
|
"LabelEmailAddress": "\u0397\u03bb\u03b5\u03ba\u03c4\u03c1\u03bf\u03bd\u03b9\u03ba\u03cc \u03a4\u03b1\u03c7\u03c5\u03b4\u03c1\u03bf\u03bc\u03b5\u03af\u03bf",
|
||||||
"LabelSupporterEmailAddress": "The email address that was used to purchase the key.",
|
"LabelSupporterEmailAddress": "\u0397 \u03c4\u03c1\u03ad\u03c7\u03bf\u03c5\u03c3\u03b1 \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 \u03b7\u03bb\u03b5\u03ba\u03c4\u03c1\u03bf\u03bd\u03b9\u03ba\u03bf\u03cd \u03c4\u03b1\u03c7\u03c5\u03b4\u03c1\u03bf\u03bc\u03b5\u03af\u03bf\u03c5 \u03c3\u03c4\u03b7\u03bd \u03bf\u03c0\u03bf\u03af\u03b1 \u03c3\u03c4\u03ac\u03bb\u03b8\u03b7\u03ba\u03b5 \u03c4\u03bf \u03bd\u03ad\u03bf \u03c3\u03b1\u03c2 \u03ba\u03bb\u03b5\u03b9\u03b4\u03af.",
|
||||||
"ButtonRetrieveKey": "Retrieve Key",
|
"ButtonRetrieveKey": "Retrieve Key",
|
||||||
"LabelSupporterKey": "Emby Premiere key (paste from email):",
|
"LabelSupporterKey": "Emby Premiere key (paste from email):",
|
||||||
"LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
|
"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": "Emby Premiere key is missing or invalid.",
|
||||||
"ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
|
"ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
|
||||||
"HeaderDisplaySettings": "Display Settings",
|
"HeaderDisplaySettings": "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7\u03c2",
|
||||||
"LabelEnableDlnaServer": "Enable Dlna server",
|
"LabelEnableDlnaServer": "Enable Dlna server",
|
||||||
"LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Emby content.",
|
"LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Emby content.",
|
||||||
"LabelEnableBlastAliveMessages": "Blast alive messages",
|
"LabelEnableBlastAliveMessages": "\u0391\u03c6\u03ae\u03c3\u03c4\u03b5 \u03b6\u03c9\u03bd\u03c4\u03b1\u03bd\u03ac \u03bc\u03b7\u03bd\u03cd\u03bc\u03b1\u03c4\u03b1",
|
||||||
"LabelEnableBlastAliveMessagesHelp": "Enable this if the server is not detected reliably by other UPnP devices on your network.",
|
"LabelEnableBlastAliveMessagesHelp": "Enable this if the server is not detected reliably by other UPnP devices on your network.",
|
||||||
"LabelBlastMessageInterval": "Alive message interval (seconds)",
|
"LabelBlastMessageInterval": "Alive message interval (seconds)",
|
||||||
"LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.",
|
"LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.",
|
||||||
"LabelDefaultUser": "Default user:",
|
"LabelDefaultUser": "Default user:",
|
||||||
"LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.",
|
"LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.",
|
||||||
"HeaderServerSettings": "Server Settings",
|
"HeaderServerSettings": "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03b4\u03b9\u03b1\u03ba\u03bf\u03bc\u03b9\u03c3\u03c4\u03ae",
|
||||||
"HeaderRequireManualLogin": "Require manual username entry for:",
|
"HeaderRequireManualLogin": "Require manual username entry for:",
|
||||||
"HeaderRequireManualLoginHelp": "When disabled, Emby apps may present a login screen with a visual selection of users.",
|
"HeaderRequireManualLoginHelp": "\u038c\u03c4\u03b1\u03bd \u03b1\u03c0\u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd, \u03bf\u03b9 \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ad\u03c2 Emby \u03b5\u03bd\u03b4\u03ad\u03c7\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c0\u03b1\u03c1\u03bf\u03c5\u03c3\u03b9\u03ac\u03c3\u03bf\u03c5\u03bd \u03bc\u03b9\u03b1 \u03bf\u03b8\u03cc\u03bd\u03b7 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7\u03c2 \u03bc\u03b5 \u03bc\u03b9\u03b1 \u03bf\u03c0\u03c4\u03b9\u03ba\u03ae \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03c7\u03c1\u03b7\u03c3\u03c4\u03ce\u03bd.",
|
||||||
"OptionOtherApps": "Other apps",
|
"OptionOtherApps": "Other apps",
|
||||||
"OptionMobileApps": "Mobile apps",
|
"OptionMobileApps": "Mobile apps",
|
||||||
"LabelNotificationEnabled": "Enable this notification",
|
"LabelNotificationEnabled": "Enable this notification",
|
||||||
"LabelMonitorUsers": "Monitor activity from:",
|
"LabelMonitorUsers": "Monitor activity from:",
|
||||||
"LabelSendNotificationToUsers": "Send the notification to:",
|
"LabelSendNotificationToUsers": "\u03a3\u03c4\u03b5\u03af\u03bb\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03c3\u03c4\u03b7 \u03b4\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7:",
|
||||||
"LabelUseNotificationServices": "Use the following services:",
|
"LabelUseNotificationServices": "\u03a7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03c4\u03b5 \u03c4\u03b9\u03c2 \u03b1\u03ba\u03cc\u03bb\u03bf\u03c5\u03b8\u03b5\u03c2 \u03c5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b5\u03c2:",
|
||||||
"CategoryUser": "\u03a7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2",
|
"CategoryUser": "\u03a7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2",
|
||||||
"CategorySystem": "\u03a3\u03cd\u03c3\u03c4\u03b7\u03bc\u03b1",
|
"CategorySystem": "\u03a3\u03cd\u03c3\u03c4\u03b7\u03bc\u03b1",
|
||||||
"CategoryApplication": "\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae",
|
"CategoryApplication": "\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae",
|
||||||
"CategoryPlugin": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c4\u03bf",
|
"CategoryPlugin": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c4\u03bf",
|
||||||
"LabelAvailableTokens": "Available tokens:",
|
"LabelAvailableTokens": "Available tokens:",
|
||||||
"AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.",
|
"AdditionalNotificationServices": "\u03a0\u03b5\u03c1\u03b9\u03b7\u03b3\u03b7\u03b8\u03b5\u03af\u03c4\u03b5 \u03c3\u03c4\u03bf\u03bd \u03ba\u03b1\u03c4\u03ac\u03bb\u03bf\u03b3\u03bf plugin \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c4\u03b5\u03c2 \u03c5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b5\u03c2 \u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2.",
|
||||||
"OptionAllUsers": "All users",
|
"OptionAllUsers": "\u039f\u03bb\u03bf\u03b9 \u03bf\u03b9 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2",
|
||||||
"OptionAdminUsers": "Administrators",
|
"OptionAdminUsers": "\u0394\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ad\u03c2",
|
||||||
"OptionCustomUsers": "Custom",
|
"OptionCustomUsers": "\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03bf",
|
||||||
"ButtonArrowUp": "Up",
|
"ButtonArrowUp": "\u0395\u03c0\u03ac\u03bd\u03c9",
|
||||||
"ButtonArrowDown": "Down",
|
"ButtonArrowDown": "\u039a\u03ac\u03c4\u03c9",
|
||||||
"ButtonArrowLeft": "Left",
|
"ButtonArrowLeft": "\u0391\u03c1\u03b9\u03c3\u03c4\u03b5\u03c1\u03ac",
|
||||||
"ButtonArrowRight": "Right",
|
"ButtonArrowRight": "\u0394\u03b5\u03be\u03b9\u03ac",
|
||||||
"ButtonBack": "Back",
|
"ButtonBack": "\u03a0\u03af\u03c3\u03c9",
|
||||||
"ButtonInfo": "Info",
|
"ButtonInfo": "\u03a0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b1",
|
||||||
"ButtonHome": "Home",
|
"ButtonHome": "\u0391\u03c1\u03c7\u03b9\u03ba\u03ae",
|
||||||
"ButtonSearch": "Search",
|
"ButtonSearch": "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7",
|
||||||
"ButtonSettings": "Settings",
|
"ButtonSettings": "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2",
|
||||||
"Settings": "Settings",
|
"Settings": "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2",
|
||||||
"Mute": "Mute",
|
"Mute": "\u03a3\u03af\u03b3\u03b1\u03c3\u03b7",
|
||||||
"Unmute": "Unmute",
|
"Unmute": "Unmute",
|
||||||
"Subtitles": "Subtitles",
|
"Subtitles": "\u03a5\u03c0\u03cc\u03c4\u03b9\u03c4\u03bb\u03bf\u03b9",
|
||||||
"Audio": "Audio",
|
"Audio": "\u0389\u03c7\u03bf\u03c2",
|
||||||
"Rewind": "Rewind",
|
"Rewind": "\u0391\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae \u03c0\u03c1\u03bf\u03c2 \u03c4\u03b1 \u03c0\u03af\u03c3\u03c9",
|
||||||
"Fullscreen": "Full screen",
|
"Fullscreen": "\u03a0\u039b\u0397\u03a1\u0397\u03a3 \u039f\u0398\u039f\u039d\u0397",
|
||||||
"ExitFullscreen": "Exit full screen",
|
"ExitFullscreen": "\u0388\u03be\u03bf\u03b4\u03bf\u03c2 \u03b1\u03c0\u03cc \u03c4\u03b7 \u03c0\u03bb\u03ae\u03c1\u03b7 \u03bf\u03b8\u03cc\u03bd\u03b7",
|
||||||
"PictureInPicture": "Picture in picture",
|
"PictureInPicture": "Picture in picture",
|
||||||
"PlayOnAnotherDevice": "Play on another device",
|
"PlayOnAnotherDevice": "\u0391\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae \u03c3\u03b5 \u03ac\u03bb\u03bb\u03b7 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae",
|
||||||
"FastForward": "Fast-forward",
|
"FastForward": "\u0393\u03c1\u03ae\u03b3\u03bf\u03c1\u03b7 \u03b1\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "\u0391",
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "\u03a4\u03ce\u03c1\u03b1 \u03c0\u03b1\u03af\u03b6\u03b5\u03b9",
|
||||||
"TabNavigation": "Navigation",
|
"TabNavigation": "\u03a0\u03bb\u03bf\u03ae\u03b3\u03b7\u03c3\u03b7",
|
||||||
"TabControls": "Controls",
|
"TabControls": "\u0388\u03bb\u03b5\u03b3\u03c7\u03bf\u03b9",
|
||||||
"ButtonSubtitles": "Subtitles",
|
"ButtonSubtitles": "\u03a5\u03c0\u03cc\u03c4\u03b9\u03c4\u03bb\u03bf\u03b9",
|
||||||
"ButtonPreviousTrack": "Previous track",
|
"ButtonPreviousTrack": "\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03c5\u03bc\u03b5\u03bd\u03bf",
|
||||||
"ButtonNextTrack": "Next track",
|
"ButtonNextTrack": "\u0395\u03c0\u03bf\u03bc\u03b5\u03bd\u03bf",
|
||||||
"ButtonStop": "Stop",
|
"ButtonStop": "\u03a3\u03c4\u03ac\u03c3\u03b7",
|
||||||
"ButtonPause": "Pause",
|
"ButtonPause": "\u03a0\u03b1\u03cd\u03c3\u03b7",
|
||||||
"ButtonNext": "Next",
|
"ButtonNext": "\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf",
|
||||||
"ButtonPrevious": "Previous",
|
"ButtonPrevious": "\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf",
|
||||||
"LabelGroupMoviesIntoCollections": "Group movies into collections",
|
"LabelGroupMoviesIntoCollections": "\u039f\u03bc\u03b1\u03b4\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03c4\u03b5 \u03c4\u03b1\u03b9\u03bd\u03af\u03b5\u03c2 \u03c3\u03b5 \u03c3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ad\u03c2",
|
||||||
"LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.",
|
"LabelGroupMoviesIntoCollectionsHelp": "\u038c\u03c4\u03b1\u03bd \u03c0\u03c1\u03bf\u03b2\u03ac\u03bb\u03bb\u03b5\u03c4\u03b5 \u03bb\u03af\u03c3\u03c4\u03b5\u03c2 \u03c4\u03b1\u03b9\u03bd\u03b9\u03ce\u03bd, \u03bf\u03b9 \u03c4\u03b1\u03b9\u03bd\u03af\u03b5\u03c2 \u03c0\u03bf\u03c5 \u03b1\u03bd\u03ae\u03ba\u03bf\u03c5\u03bd \u03c3\u03b5 \u03bc\u03b9\u03b1 \u03c3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ae \u03b8\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c9\u03c2 \u03ad\u03bd\u03b1 \u03bf\u03bc\u03b1\u03b4\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03bf \u03b1\u03bd\u03c4\u03b9\u03ba\u03b5\u03af\u03bc\u03b5\u03bd\u03bf.",
|
||||||
"HeaderLatestMedia": "Latest Media",
|
"HeaderLatestMedia": "Latest Media",
|
||||||
"OptionNoSubtitles": "\u03a7\u03c9\u03c1\u03af\u03c2 \u03a5\u03c0\u03cc\u03c4\u03b9\u03c4\u03bb\u03bf\u03c5\u03c2",
|
"OptionNoSubtitles": "\u03a7\u03c9\u03c1\u03af\u03c2 \u03a5\u03c0\u03cc\u03c4\u03b9\u03c4\u03bb\u03bf\u03c5\u03c2",
|
||||||
"HeaderCollections": "Collections",
|
"HeaderCollections": "Collections",
|
||||||
|
@ -660,55 +660,55 @@
|
||||||
"HeaderDownloadSubtitlesFor": "Download subtitles for:",
|
"HeaderDownloadSubtitlesFor": "Download subtitles for:",
|
||||||
"LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains embedded subtitles",
|
"LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains embedded subtitles",
|
||||||
"LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
|
"LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
|
||||||
"TabSubtitles": "Subtitles",
|
"TabSubtitles": "\u03a5\u03c0\u03cc\u03c4\u03b9\u03c4\u03bb\u03bf\u03b9",
|
||||||
"TabChapters": "Chapters",
|
"TabChapters": "\u039a\u03b5\u03c6\u03ac\u03bb\u03b1\u03b9\u03b1",
|
||||||
"LabelOpenSubtitlesUsername": "Open Subtitles username:",
|
"LabelOpenSubtitlesUsername": "Open Subtitles username:",
|
||||||
"LabelOpenSubtitlesPassword": "Open Subtitles password:",
|
"LabelOpenSubtitlesPassword": "Open Subtitles password:",
|
||||||
"LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
|
"LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
|
||||||
"LabelSubtitlePlaybackMode": "Subtitle mode:",
|
"LabelSubtitlePlaybackMode": "Subtitle mode:",
|
||||||
"LabelDownloadLanguages": "Download languages:",
|
"LabelDownloadLanguages": "\u039b\u03ae\u03c8\u03b7 \u03b3\u03bb\u03c9\u03c3\u03c3\u03ce\u03bd:",
|
||||||
"ButtonRegister": "Register",
|
"ButtonRegister": "\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae",
|
||||||
"LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language",
|
"LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language",
|
||||||
"LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.",
|
"LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.",
|
||||||
"SendMessage": "Send message",
|
"SendMessage": "\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u039c\u03b7\u03bd\u03cd\u03bc\u03b1\u03c4\u03bf\u03c2",
|
||||||
"HeaderSendMessage": "Send Message",
|
"HeaderSendMessage": "\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u039c\u03b7\u03bd\u03cd\u03bc\u03b1\u03c4\u03bf\u03c2",
|
||||||
"ButtonSend": "Send",
|
"ButtonSend": "\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae",
|
||||||
"ViewPlaybackInfo": "View playback info",
|
"ViewPlaybackInfo": "\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03b9\u03ce\u03bd \u03b1\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2",
|
||||||
"LabelMessageText": "Message text:",
|
"LabelMessageText": "\u039a\u03b5\u03af\u03bc\u03b5\u03bd\u03bf \u039c\u03b7\u03bd\u03cd\u03bc\u03b1\u03c4\u03bf\u03c2:",
|
||||||
"LabelMessageTitle": "Message title:",
|
"LabelMessageTitle": "\u03a4\u03af\u03c4\u03bb\u03bf\u03c2 \u039c\u03b7\u03bd\u03cd\u03bc\u03b1\u03c4\u03bf\u03c2:",
|
||||||
"MessageNoAvailablePlugins": "No available plugins.",
|
"MessageNoAvailablePlugins": "No available plugins.",
|
||||||
"LabelDisplayPluginsFor": "Display plugins for:",
|
"LabelDisplayPluginsFor": "Display plugins for:",
|
||||||
"PluginTabAppClassic": "Emby for Windows Media Center",
|
"PluginTabAppClassic": "Emby for Windows Media Center",
|
||||||
"HeaderTypeText": "Enter Text",
|
"HeaderTypeText": "\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5",
|
||||||
"LabelTypeText": "Text",
|
"LabelTypeText": "\u039a\u03b5\u03af\u03bc\u03b5\u03bd\u03bf",
|
||||||
"TabDisplay": "Display",
|
"TabDisplay": "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7",
|
||||||
"TabLanguages": "Languages",
|
"TabLanguages": "\u0393\u03bb\u03ce\u03c3\u03c3\u03b5\u03c2",
|
||||||
"TabAppSettings": "App Settings",
|
"TabAppSettings": "App Settings",
|
||||||
"HeaderHomePage": "Home Page",
|
"HeaderHomePage": "\u039a\u03b5\u03bd\u03c4\u03c1\u03b9\u03ba\u03ae \u03a3\u03b5\u03bb\u03af\u03b4\u03b1",
|
||||||
"OptionAuto": "Auto",
|
"OptionAuto": "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03bf",
|
||||||
"OptionYes": "Yes",
|
"OptionYes": "\u039d\u03b1\u03b9",
|
||||||
"OptionNo": "No",
|
"OptionNo": "\u039f\u03c7\u03b9",
|
||||||
"HeaderOptions": "Options",
|
"HeaderOptions": "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2",
|
||||||
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
||||||
"OptionResumablemedia": "Resume",
|
"OptionResumablemedia": "\u03c3\u03c5\u03bd\u03ad\u03c7\u03b9\u03c3\u03b7",
|
||||||
"OptionLatestMedia": "Latest media",
|
"OptionLatestMedia": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03a0\u03bf\u03bb\u03c5\u03bc\u03ad\u03c3\u03b1",
|
||||||
"OptionLatestChannelMedia": "Latest channel items",
|
"OptionLatestChannelMedia": "Latest channel items",
|
||||||
"HeaderLatestChannelItems": "Latest Channel Items",
|
"HeaderLatestChannelItems": "Latest Channel Items",
|
||||||
"OptionNone": "None",
|
"OptionNone": "\u039a\u03b1\u03bd\u03ad\u03bd\u03b1",
|
||||||
"HeaderLiveTv": "Live TV",
|
"HeaderLiveTv": "\u0396\u03a9\u039d\u03a4\u0391\u039d\u0397 \u03a4\u0397\u039b\u0395\u03a9\u03a1\u0391\u03a3\u0397",
|
||||||
"HeaderReports": "Reports",
|
"HeaderReports": "\u0391\u03bd\u03b1\u03c6\u03bf\u03c1\u03ad\u03c2",
|
||||||
"HeaderSettings": "Settings",
|
"HeaderSettings": "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2",
|
||||||
"OptionDefaultSort": "Default",
|
"OptionDefaultSort": "\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae",
|
||||||
"TabNextUp": "Next Up",
|
"TabNextUp": "\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf",
|
||||||
"HeaderBecomeProjectSupporter": "Get Emby Premiere",
|
"HeaderBecomeProjectSupporter": "Get Emby Premiere",
|
||||||
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
|
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
|
||||||
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
|
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
|
||||||
"MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
|
"MessageNoPlaylistsAvailable": "\u039f\u03b9 \u03bb\u03af\u03c3\u03c4\u03b5\u03c2 \u03b1\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2 \u03c3\u03ac\u03c2 \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03bf\u03c5\u03bd \u03bd\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03b5\u03af\u03c4\u03b5 \u03bb\u03af\u03c3\u03c4\u03b5\u03c2 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03b3\u03b9\u03b1 \u03b1\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae \u03b4\u03b9\u03b1\u03b4\u03bf\u03c7\u03b9\u03ba\u03ac \u03ba\u03ac\u03b8\u03b5 \u03c6\u03bf\u03c1\u03ac. \u0393\u03b9\u03b1 \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03b5\u03c4\u03b5 \u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03b1 \u03c3\u03b5 \u03bb\u03af\u03c3\u03c4\u03b5\u03c2 \u03b1\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2, \u03ba\u03ac\u03bd\u03c4\u03b5 \u03b4\u03b5\u03be\u03af \u03ba\u03bb\u03b9\u03ba \u03ae \u03c0\u03b1\u03c4\u03ae\u03c3\u03c4\u03b5 \u03c0\u03b1\u03c1\u03b1\u03c4\u03b5\u03c4\u03b1\u03bc\u03ad\u03bd\u03b1 \u03ba\u03b1\u03b9, \u03c3\u03c4\u03b7 \u03c3\u03c5\u03bd\u03ad\u03c7\u03b5\u03b9\u03b1, \u03b5\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03c3\u03c4\u03b7 \u03bb\u03af\u03c3\u03c4\u03b1 \u03b1\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2.",
|
||||||
"MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
|
"MessageNoPlaylistItemsAvailable": "\u0391\u03c5\u03c4\u03ae \u03b7 \u03bb\u03af\u03c3\u03c4\u03b1 \u03b1\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7 \u03c3\u03c4\u03b9\u03b3\u03bc\u03ae \u03ba\u03b5\u03bd\u03ae.",
|
||||||
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
|
"ButtonEditOtherUserPreferences": "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03c4\u03b5\u03af\u03c4\u03b5 \u03c4\u03bf \u03c0\u03c1\u03bf\u03c6\u03af\u03bb, \u03c4\u03b7\u03bd \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1 \u03ba\u03b1\u03b9 \u03c4\u03b9\u03c2 \u03c0\u03c1\u03bf\u03c3\u03c9\u03c0\u03b9\u03ba\u03ad\u03c2 \u03c0\u03c1\u03bf\u03c4\u03b9\u03bc\u03ae\u03c3\u03b5\u03b9\u03c2 \u03b1\u03c5\u03c4\u03bf\u03cd \u03c4\u03bf\u03c5 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7.",
|
||||||
"LabelChannelStreamQuality": "Preferred internet channel quality:",
|
"LabelChannelStreamQuality": "\u03a0\u03c1\u03bf\u03c4\u03b9\u03bc\u03ce\u03bc\u03b5\u03bd\u03b7 \u03c0\u03bf\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1 \u03ba\u03b1\u03bd\u03b1\u03bb\u03b9\u03bf\u03cd \u03b4\u03b9\u03b1\u03b4\u03b9\u03ba\u03c4\u03cd\u03bf\u03c5:",
|
||||||
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
|
"LabelChannelStreamQualityHelp": "\u03a3\u03b5 \u03c0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd \u03bc\u03b5 \u03c7\u03b1\u03bc\u03b7\u03bb\u03cc \u03b5\u03cd\u03c1\u03bf\u03c2 \u03b6\u03ce\u03bd\u03b7\u03c2, \u03bf \u03c0\u03b5\u03c1\u03b9\u03bf\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03c4\u03b7\u03c2 \u03c0\u03bf\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b2\u03bf\u03b7\u03b8\u03ae\u03c3\u03b5\u03b9 \u03c3\u03c4\u03b7\u03bd \u03b5\u03be\u03b1\u03c3\u03c6\u03ac\u03bb\u03b9\u03c3\u03b7 \u03bf\u03bc\u03b1\u03bb\u03ae\u03c2 \u03c1\u03bf\u03ae\u03c2.",
|
||||||
"OptionBestAvailableStreamQuality": "Best available",
|
"OptionBestAvailableStreamQuality": "\u03a4\u03bf \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03bf \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03bf",
|
||||||
"ViewTypeMovies": "\u03a4\u03b1\u03b9\u03bd\u03af\u03b5\u03c2",
|
"ViewTypeMovies": "\u03a4\u03b1\u03b9\u03bd\u03af\u03b5\u03c2",
|
||||||
"ViewTypeTvShows": "\u03a4\u03b7\u03bb\u03b5\u03cc\u03c1\u03b1\u03c3\u03b7",
|
"ViewTypeTvShows": "\u03a4\u03b7\u03bb\u03b5\u03cc\u03c1\u03b1\u03c3\u03b7",
|
||||||
"ViewTypeGames": "\u03a0\u03b1\u03b9\u03c7\u03bd\u03af\u03b4\u03b9\u03b1",
|
"ViewTypeGames": "\u03a0\u03b1\u03b9\u03c7\u03bd\u03af\u03b4\u03b9\u03b1",
|
||||||
|
@ -721,9 +721,9 @@
|
||||||
"ViewTypeMusicFavoriteSongs": "Favorite Songs",
|
"ViewTypeMusicFavoriteSongs": "Favorite Songs",
|
||||||
"HeaderMyViews": "My Views",
|
"HeaderMyViews": "My Views",
|
||||||
"OptionDisplayAdultContent": "Display adult content",
|
"OptionDisplayAdultContent": "Display adult content",
|
||||||
"OptionLibraryFolders": "Media folders",
|
"OptionLibraryFolders": "\u03a6\u03ac\u03ba\u03b5\u03bb\u03bf\u03b9 \u03a0\u03bf\u03bb\u03c5\u03bc\u03ad\u03c3\u03c9\u03bd",
|
||||||
"TitleRemoteControl": "Remote Control",
|
"TitleRemoteControl": "\u03a4\u03b7\u03bb\u03b5\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ae\u03c1\u03b9\u03bf",
|
||||||
"OptionLatestTvRecordings": "Latest recordings",
|
"OptionLatestTvRecordings": "\u03c4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b5\u03c2 \u03b7\u03c7\u03bf\u03b3\u03c1\u03b1\u03c6\u03ae\u03c3\u03b5\u03b9\u03c2",
|
||||||
"LabelProtocolInfo": "Protocol info:",
|
"LabelProtocolInfo": "Protocol info:",
|
||||||
"LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.",
|
"LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.",
|
||||||
"TabNfoSettings": "Nfo Settings",
|
"TabNfoSettings": "Nfo Settings",
|
||||||
|
@ -761,55 +761,55 @@
|
||||||
"HeaderApiKeysHelp": "External applications are required to have an Api key in order to communicate with Emby Server. Keys are issued by logging in with an Emby account, or by manually granting the application a key.",
|
"HeaderApiKeysHelp": "External applications are required to have an Api key in order to communicate with Emby Server. Keys are issued by logging in with an Emby account, or by manually granting the application a key.",
|
||||||
"HeaderApiKey": "Api Key",
|
"HeaderApiKey": "Api Key",
|
||||||
"HeaderApp": "App",
|
"HeaderApp": "App",
|
||||||
"HeaderDevice": "Device",
|
"HeaderDevice": "\u03a3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae",
|
||||||
"HeaderUser": "User",
|
"HeaderUser": "User",
|
||||||
"HeaderDateIssued": "Date Issued",
|
"HeaderDateIssued": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7\u03c2",
|
||||||
"HeaderHttpHeaders": "Http Headers",
|
"HeaderHttpHeaders": "Http Headers",
|
||||||
"HeaderIdentificationHeader": "Identification Header",
|
"HeaderIdentificationHeader": "Identification Header",
|
||||||
"LabelValue": "Value:",
|
"LabelValue": "\u03a4\u03b9\u03bc\u03ae:",
|
||||||
"LabelMatchType": "Match type:",
|
"LabelMatchType": "Match type:",
|
||||||
"OptionEquals": "Equals",
|
"OptionEquals": "Equals",
|
||||||
"OptionRegex": "Regex",
|
"OptionRegex": "Regex",
|
||||||
"OptionSubstring": "Substring",
|
"OptionSubstring": "Substring",
|
||||||
"TabView": "View",
|
"TabView": "\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae",
|
||||||
"TabFilter": "Filter",
|
"TabFilter": "\u03a6\u03af\u03bb\u03c4\u03c1\u03bf",
|
||||||
"ButtonView": "View",
|
"ButtonView": "\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae",
|
||||||
"LabelPageSize": "Item limit:",
|
"LabelPageSize": "Item limit:",
|
||||||
"LabelPath": "Path:",
|
"LabelPath": "\u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae",
|
||||||
"LabelView": "View:",
|
"LabelView": "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7:",
|
||||||
"TabUsers": "Users",
|
"TabUsers": "\u03a7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2 ",
|
||||||
"HeaderFeatures": "Features",
|
"HeaderFeatures": "\u03a7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac",
|
||||||
"HeaderAdvanced": "Advanced",
|
"HeaderAdvanced": "\u0393\u03b9\u03b1 \u03c0\u03c1\u03bf\u03c7\u03c9\u03c1\u03b7\u03bc\u03ad\u03bd\u03bf\u03c5\u03c2",
|
||||||
"ButtonSync": "Sync",
|
"ButtonSync": "\u03a3\u03c5\u03c7\u03c1\u03bf\u03bd\u03b9\u03c3\u03bc\u03cc\u03c2",
|
||||||
"TabScheduledTasks": "Scheduled Tasks",
|
"TabScheduledTasks": "\u03a0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03bc\u03ad\u03bd\u03b5\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2",
|
||||||
"HeaderChapters": "Chapters",
|
"HeaderChapters": "\u039a\u03b5\u03c6\u03ac\u03bb\u03b1\u03b9\u03b1",
|
||||||
"HeaderResumeSettings": "Resume Settings",
|
"HeaderResumeSettings": "Resume Settings",
|
||||||
"TabSync": "Sync",
|
"TabSync": "Sync",
|
||||||
"TitleUsers": "Users",
|
"TitleUsers": "\u03a7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2 ",
|
||||||
"LabelProtocol": "Protocol:",
|
"LabelProtocol": "\u03a0\u03c1\u03c9\u03c4\u03cc\u03ba\u03bf\u03bb\u03bb\u03bf:",
|
||||||
"OptionProtocolHttp": "Http",
|
"OptionProtocolHttp": "Http",
|
||||||
"OptionProtocolHls": "Http Live Streaming",
|
"OptionProtocolHls": "Http Live Streaming",
|
||||||
"LabelContext": "Context:",
|
"LabelContext": "Context:",
|
||||||
"TabPlaylists": "Playlists",
|
"TabPlaylists": "\u039b\u03af\u03c3\u03c4\u03b5\u03c2 \u03b1\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2",
|
||||||
"ButtonClose": "Close",
|
"ButtonClose": "\u039a\u03bb\u03b5\u03af\u03c3\u03b9\u03bc\u03bf",
|
||||||
"LabelAllLanguages": "All languages",
|
"LabelAllLanguages": "\u038c\u03bb\u03b5\u03c2 \u03bf\u03b9 \u03b3\u03bb\u03ce\u03c3\u03c3\u03b5\u03c2",
|
||||||
"LabelSource": "Source:",
|
"LabelSource": "\u03a0\u03b7\u03b3\u03ae:",
|
||||||
"OptionAll": "All",
|
"OptionAll": "\u038c\u03bb\u03b1",
|
||||||
"LabelImage": "Image:",
|
"LabelImage": "\u0395\u03b9\u03ba\u03cc\u03bd\u03b1:",
|
||||||
"HeaderImages": "Images",
|
"HeaderImages": "\u0395\u03b9\u03ba\u03cc\u03bd\u03b5\u03c2",
|
||||||
"HeaderBackdrops": "Backdrops",
|
"HeaderBackdrops": "Backdrops",
|
||||||
"HeaderAddUpdateImage": "Add\/Update Image",
|
"HeaderAddUpdateImage": "Add\/Update Image",
|
||||||
"LabelDropImageHere": "Drop image here.",
|
"LabelDropImageHere": "Drop image here.",
|
||||||
"LabelJpgPngOnly": "JPG\/PNG only",
|
"LabelJpgPngOnly": "JPG\/PNG only",
|
||||||
"LabelImageType": "Image type:",
|
"LabelImageType": "Image type:",
|
||||||
"OptionPrimary": "Primary",
|
"OptionPrimary": "\u03a0\u03c1\u03c9\u03c4\u03b5\u03cd\u03bf\u03bd",
|
||||||
"OptionArt": "Art",
|
"OptionArt": "\u03a4\u03ad\u03c7\u03bd\u03b7",
|
||||||
"OptionBox": "Box",
|
"OptionBox": "\u039a\u03bf\u03c5\u03c4\u03af",
|
||||||
"OptionBoxRear": "Box rear",
|
"OptionBoxRear": "Box rear",
|
||||||
"OptionDisc": "Disc",
|
"OptionDisc": "\u0394\u03af\u03c3\u03ba\u03bf\u03c2",
|
||||||
"OptionIcon": "Icon",
|
"OptionIcon": "\u0395\u03b9\u03ba\u03bf\u03bd\u03af\u03b4\u03b9\u03bf",
|
||||||
"OptionLogo": "Logo",
|
"OptionLogo": "Logo",
|
||||||
"OptionMenu": "Menu",
|
"OptionMenu": "\u039c\u03b5\u03bd\u03bf\u03cd",
|
||||||
"OptionScreenshot": "Screenshot",
|
"OptionScreenshot": "Screenshot",
|
||||||
"OptionLocked": "Locked",
|
"OptionLocked": "Locked",
|
||||||
"OptionUnidentified": "Unidentified",
|
"OptionUnidentified": "Unidentified",
|
||||||
|
@ -1853,5 +1853,7 @@
|
||||||
"CancelSeries": "Cancel series",
|
"CancelSeries": "Cancel series",
|
||||||
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
||||||
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
||||||
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage."
|
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage.",
|
||||||
|
"LabelSimultaneousConnectionLimit": "Simultaneous stream limit:",
|
||||||
|
"SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit."
|
||||||
}
|
}
|
|
@ -1853,5 +1853,7 @@
|
||||||
"CancelSeries": "Cancel series",
|
"CancelSeries": "Cancel series",
|
||||||
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
||||||
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
||||||
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage."
|
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage.",
|
||||||
|
"LabelSimultaneousConnectionLimit": "Simultaneous stream limit:",
|
||||||
|
"SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit."
|
||||||
}
|
}
|
|
@ -1853,5 +1853,7 @@
|
||||||
"CancelSeries": "Cancel series",
|
"CancelSeries": "Cancel series",
|
||||||
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
||||||
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
||||||
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage."
|
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage.",
|
||||||
|
"LabelSimultaneousConnectionLimit": "Simultaneous stream limit:",
|
||||||
|
"SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit."
|
||||||
}
|
}
|
|
@ -1853,5 +1853,7 @@
|
||||||
"CancelSeries": "Cancelar Serie",
|
"CancelSeries": "Cancelar Serie",
|
||||||
"EnableDebugLoggingHelp": "El registro de depuraci\u00f3n deber\u00eda ser habilitado solamente para prop\u00f3sitos de soluci\u00f3n de problemas. El incremento en el archivo de sistema podr\u00eda prevenir que el servidor entre en modo suspendido bajo algunos entornos.",
|
"EnableDebugLoggingHelp": "El registro de depuraci\u00f3n deber\u00eda ser habilitado solamente para prop\u00f3sitos de soluci\u00f3n de problemas. El incremento en el archivo de sistema podr\u00eda prevenir que el servidor entre en modo suspendido bajo algunos entornos.",
|
||||||
"SaveSubtitlesInOriginalMediaFolders": "Salvar subtitulos en las carpetas de medios",
|
"SaveSubtitlesInOriginalMediaFolders": "Salvar subtitulos en las carpetas de medios",
|
||||||
"SaveSubtitlesInOriginalMediaFoldersHelp": "Salvar los subtitulos en las carpetas de medios los har\u00e1 mas f\u00e1cil de encontrar y administrar."
|
"SaveSubtitlesInOriginalMediaFoldersHelp": "Salvar los subtitulos en las carpetas de medios los har\u00e1 mas f\u00e1cil de encontrar y administrar.",
|
||||||
|
"LabelSimultaneousConnectionLimit": "Limite de transmisiones simultaneas:",
|
||||||
|
"SimultaneousConnectionLimitHelp": "El numero m\u00e1ximo de transmisiones simultaneas permitidas. Ingrese 0 para ilimitados."
|
||||||
}
|
}
|
|
@ -1853,5 +1853,7 @@
|
||||||
"CancelSeries": "Cancelar serie",
|
"CancelSeries": "Cancelar serie",
|
||||||
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
||||||
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
||||||
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage."
|
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage.",
|
||||||
|
"LabelSimultaneousConnectionLimit": "Simultaneous stream limit:",
|
||||||
|
"SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit."
|
||||||
}
|
}
|
|
@ -1853,5 +1853,7 @@
|
||||||
"CancelSeries": "Cancel series",
|
"CancelSeries": "Cancel series",
|
||||||
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
||||||
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
||||||
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage."
|
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage.",
|
||||||
|
"LabelSimultaneousConnectionLimit": "Simultaneous stream limit:",
|
||||||
|
"SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit."
|
||||||
}
|
}
|
|
@ -1853,5 +1853,7 @@
|
||||||
"CancelSeries": "Cancel series",
|
"CancelSeries": "Cancel series",
|
||||||
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
||||||
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
||||||
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage."
|
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage.",
|
||||||
|
"LabelSimultaneousConnectionLimit": "Simultaneous stream limit:",
|
||||||
|
"SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit."
|
||||||
}
|
}
|
|
@ -1853,5 +1853,7 @@
|
||||||
"CancelSeries": "Cancel series",
|
"CancelSeries": "Cancel series",
|
||||||
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
||||||
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
||||||
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage."
|
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage.",
|
||||||
|
"LabelSimultaneousConnectionLimit": "Simultaneous stream limit:",
|
||||||
|
"SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit."
|
||||||
}
|
}
|
|
@ -404,7 +404,7 @@
|
||||||
"HeaderAwardsAndReviews": "Prix et critiques",
|
"HeaderAwardsAndReviews": "Prix et critiques",
|
||||||
"HeaderMusicVideos": "Vid\u00e9os musicales",
|
"HeaderMusicVideos": "Vid\u00e9os musicales",
|
||||||
"HeaderSpecialFeatures": "Bonus",
|
"HeaderSpecialFeatures": "Bonus",
|
||||||
"HeaderCastCrew": "Casting",
|
"HeaderCastCrew": "Distribution & \u00e9quipe",
|
||||||
"HeaderAdditionalParts": "Parties additionelles",
|
"HeaderAdditionalParts": "Parties additionelles",
|
||||||
"ButtonSplitVersionsApart": "S\u00e9parer les versions",
|
"ButtonSplitVersionsApart": "S\u00e9parer les versions",
|
||||||
"ButtonPlayTrailer": "Bande-annonce",
|
"ButtonPlayTrailer": "Bande-annonce",
|
||||||
|
@ -1493,7 +1493,7 @@
|
||||||
"ValueStatus": "\u00c9tat\u00a0: {0}",
|
"ValueStatus": "\u00c9tat\u00a0: {0}",
|
||||||
"LabelLimit": "Limite :",
|
"LabelLimit": "Limite :",
|
||||||
"ValueLinks": "Liens : {0}",
|
"ValueLinks": "Liens : {0}",
|
||||||
"HeaderCastAndCrew": "Casting",
|
"HeaderCastAndCrew": "Distribution & \u00e9quipe",
|
||||||
"ValueArtist": "Artiste : {0}",
|
"ValueArtist": "Artiste : {0}",
|
||||||
"ValueArtists": "Artistes : {0}",
|
"ValueArtists": "Artistes : {0}",
|
||||||
"MediaInfoCameraMake": "Fabricant",
|
"MediaInfoCameraMake": "Fabricant",
|
||||||
|
@ -1628,7 +1628,7 @@
|
||||||
"ButtonNewServer": "Nouveau serveur",
|
"ButtonNewServer": "Nouveau serveur",
|
||||||
"MyDevice": "Mon appareil",
|
"MyDevice": "Mon appareil",
|
||||||
"ButtonRemote": "T\u00e9l\u00e9commande",
|
"ButtonRemote": "T\u00e9l\u00e9commande",
|
||||||
"TabCast": "Casting",
|
"TabCast": "Com\u00e9diens",
|
||||||
"TabScenes": "Sc\u00e8nes",
|
"TabScenes": "Sc\u00e8nes",
|
||||||
"HeaderUnlockApp": "D\u00e9verrouiller l'application",
|
"HeaderUnlockApp": "D\u00e9verrouiller l'application",
|
||||||
"HeaderUnlockSync": "D\u00e9verrouiller Emby Sync",
|
"HeaderUnlockSync": "D\u00e9verrouiller Emby Sync",
|
||||||
|
@ -1853,5 +1853,7 @@
|
||||||
"CancelSeries": "Annuler la s\u00e9rie",
|
"CancelSeries": "Annuler la s\u00e9rie",
|
||||||
"EnableDebugLoggingHelp": "La journalisation du d\u00e9bogage ne devrait seulement \u00eatre activ\u00e9e au besoin \u00e0 des fins de d\u00e9pannage. L'augmentation de l'acc\u00e8s au syst\u00e8me de fichiers peut emp\u00eacher le serveur de tomber en veille sur certains environnements.",
|
"EnableDebugLoggingHelp": "La journalisation du d\u00e9bogage ne devrait seulement \u00eatre activ\u00e9e au besoin \u00e0 des fins de d\u00e9pannage. L'augmentation de l'acc\u00e8s au syst\u00e8me de fichiers peut emp\u00eacher le serveur de tomber en veille sur certains environnements.",
|
||||||
"SaveSubtitlesInOriginalMediaFolders": "Enregistrer les sous-titres dans les dossiers multim\u00e9dia",
|
"SaveSubtitlesInOriginalMediaFolders": "Enregistrer les sous-titres dans les dossiers multim\u00e9dia",
|
||||||
"SaveSubtitlesInOriginalMediaFoldersHelp": "L'enregistrement des sous-titres dans les dossiers multim\u00e9dia les rendra plus faciles \u00e0 localiser et \u00e0 g\u00e9rer."
|
"SaveSubtitlesInOriginalMediaFoldersHelp": "L'enregistrement des sous-titres dans les dossiers multim\u00e9dia les rendra plus faciles \u00e0 localiser et \u00e0 g\u00e9rer.",
|
||||||
|
"LabelSimultaneousConnectionLimit": "Limite de flux simultan\u00e9e:",
|
||||||
|
"SimultaneousConnectionLimitHelp": "Le nombre maximal de flux simultan\u00e9s autoris\u00e9s. Entrez 0 pour aucune limite."
|
||||||
}
|
}
|
|
@ -1853,5 +1853,7 @@
|
||||||
"CancelSeries": "Cancel series",
|
"CancelSeries": "Cancel series",
|
||||||
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
||||||
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
||||||
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage."
|
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage.",
|
||||||
|
"LabelSimultaneousConnectionLimit": "Simultaneous stream limit:",
|
||||||
|
"SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit."
|
||||||
}
|
}
|
|
@ -1853,5 +1853,7 @@
|
||||||
"CancelSeries": "Cancel series",
|
"CancelSeries": "Cancel series",
|
||||||
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
||||||
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
||||||
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage."
|
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage.",
|
||||||
|
"LabelSimultaneousConnectionLimit": "Simultaneous stream limit:",
|
||||||
|
"SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit."
|
||||||
}
|
}
|
|
@ -1853,5 +1853,7 @@
|
||||||
"CancelSeries": "Cancel series",
|
"CancelSeries": "Cancel series",
|
||||||
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
||||||
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
||||||
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage."
|
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage.",
|
||||||
|
"LabelSimultaneousConnectionLimit": "Simultaneous stream limit:",
|
||||||
|
"SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit."
|
||||||
}
|
}
|
|
@ -1853,5 +1853,7 @@
|
||||||
"CancelSeries": "Cancel series",
|
"CancelSeries": "Cancel series",
|
||||||
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
||||||
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
||||||
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage."
|
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage.",
|
||||||
|
"LabelSimultaneousConnectionLimit": "Simultaneous stream limit:",
|
||||||
|
"SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit."
|
||||||
}
|
}
|
|
@ -1853,5 +1853,7 @@
|
||||||
"CancelSeries": "Cancel series",
|
"CancelSeries": "Cancel series",
|
||||||
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
||||||
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
||||||
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage."
|
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage.",
|
||||||
|
"LabelSimultaneousConnectionLimit": "Simultaneous stream limit:",
|
||||||
|
"SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit."
|
||||||
}
|
}
|
|
@ -1853,5 +1853,7 @@
|
||||||
"CancelSeries": "Cancel series",
|
"CancelSeries": "Cancel series",
|
||||||
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
||||||
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
||||||
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage."
|
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage.",
|
||||||
|
"LabelSimultaneousConnectionLimit": "Simultaneous stream limit:",
|
||||||
|
"SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit."
|
||||||
}
|
}
|
|
@ -1853,5 +1853,7 @@
|
||||||
"CancelSeries": "Annulla Serie",
|
"CancelSeries": "Annulla Serie",
|
||||||
"EnableDebugLoggingHelp": "La registrazione di debug deve essere attivata solo se necessario per scopi di risoluzione dei problemi. Il costante accesso al file system pu\u00f2 impedire al server di spegnersi in alcuni ambienti.",
|
"EnableDebugLoggingHelp": "La registrazione di debug deve essere attivata solo se necessario per scopi di risoluzione dei problemi. Il costante accesso al file system pu\u00f2 impedire al server di spegnersi in alcuni ambienti.",
|
||||||
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
||||||
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage."
|
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage.",
|
||||||
|
"LabelSimultaneousConnectionLimit": "Simultaneous stream limit:",
|
||||||
|
"SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit."
|
||||||
}
|
}
|
|
@ -1853,5 +1853,7 @@
|
||||||
"CancelSeries": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043d\u044b \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443",
|
"CancelSeries": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043d\u044b \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443",
|
||||||
"EnableDebugLoggingHelp": "\u0410\u049b\u0430\u0443\u043b\u044b\u049b\u0442\u0430\u0440\u0434\u044b \u0436\u043e\u044e \u0436\u0443\u0440\u043d\u0430\u043b\u044b\u043d \u0442\u0435\u043a \u049b\u0430\u0436\u0435\u0442 \u0431\u043e\u043b\u0493\u0430\u043d \u0436\u0430\u0493\u0434\u0430\u0439\u0434\u0430 \u049b\u043e\u0441\u0443 \u043a\u0435\u0440\u0435\u043a. \u0424\u0430\u0439\u043b\u0434\u044b\u049b \u0436\u04af\u0439\u0435\u0433\u0435 \u049b\u0430\u0442\u044b\u043d\u0430\u0443 \u043a\u04e9\u0431\u0435\u044e\u0456 \u043a\u0435\u0439\u0431\u0456\u0440 \u043e\u0440\u0442\u0430\u043b\u0430\u0440\u0434\u0430 \u0441\u0435\u0440\u0432\u0435\u0440 \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u0456\u043d\u0435 \u04b1\u0439\u044b\u049b\u0442\u0430\u0443\u0493\u0430 \u0436\u043e\u043b \u0431\u0435\u0440\u043c\u0435\u0439\u0434\u0456.",
|
"EnableDebugLoggingHelp": "\u0410\u049b\u0430\u0443\u043b\u044b\u049b\u0442\u0430\u0440\u0434\u044b \u0436\u043e\u044e \u0436\u0443\u0440\u043d\u0430\u043b\u044b\u043d \u0442\u0435\u043a \u049b\u0430\u0436\u0435\u0442 \u0431\u043e\u043b\u0493\u0430\u043d \u0436\u0430\u0493\u0434\u0430\u0439\u0434\u0430 \u049b\u043e\u0441\u0443 \u043a\u0435\u0440\u0435\u043a. \u0424\u0430\u0439\u043b\u0434\u044b\u049b \u0436\u04af\u0439\u0435\u0433\u0435 \u049b\u0430\u0442\u044b\u043d\u0430\u0443 \u043a\u04e9\u0431\u0435\u044e\u0456 \u043a\u0435\u0439\u0431\u0456\u0440 \u043e\u0440\u0442\u0430\u043b\u0430\u0440\u0434\u0430 \u0441\u0435\u0440\u0432\u0435\u0440 \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u0456\u043d\u0435 \u04b1\u0439\u044b\u049b\u0442\u0430\u0443\u0493\u0430 \u0436\u043e\u043b \u0431\u0435\u0440\u043c\u0435\u0439\u0434\u0456.",
|
||||||
"SaveSubtitlesInOriginalMediaFolders": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440\u0434\u0456 \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u044b \u0456\u0448\u0456\u043d\u0434\u0435 \u0441\u0430\u049b\u0442\u0430\u0443",
|
"SaveSubtitlesInOriginalMediaFolders": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440\u0434\u0456 \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u044b \u0456\u0448\u0456\u043d\u0434\u0435 \u0441\u0430\u049b\u0442\u0430\u0443",
|
||||||
"SaveSubtitlesInOriginalMediaFoldersHelp": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440\u0434\u0456 \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u044b\u043d\u0430 \u0441\u0430\u049b\u0442\u0430\u0443 \u043e\u043b\u0430\u0440\u0434\u044b \u0442\u0430\u0431\u0443\u0434\u044b \u0436\u04d9\u043d\u0435 \u0431\u0430\u0441\u049b\u0430\u0440\u0443\u0434\u044b \u0436\u0435\u04a3\u0456\u043b\u0434\u0435\u0442\u0435\u0434\u0456."
|
"SaveSubtitlesInOriginalMediaFoldersHelp": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440\u0434\u0456 \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u044b\u043d\u0430 \u0441\u0430\u049b\u0442\u0430\u0443 \u043e\u043b\u0430\u0440\u0434\u044b \u0442\u0430\u0431\u0443\u0434\u044b \u0436\u04d9\u043d\u0435 \u0431\u0430\u0441\u049b\u0430\u0440\u0443\u0434\u044b \u0436\u0435\u04a3\u0456\u043b\u0434\u0435\u0442\u0435\u0434\u0456.",
|
||||||
|
"LabelSimultaneousConnectionLimit": "Simultaneous stream limit:",
|
||||||
|
"SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit."
|
||||||
}
|
}
|
|
@ -1853,5 +1853,7 @@
|
||||||
"CancelSeries": "Cancel series",
|
"CancelSeries": "Cancel series",
|
||||||
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
||||||
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
||||||
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage."
|
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage.",
|
||||||
|
"LabelSimultaneousConnectionLimit": "Simultaneous stream limit:",
|
||||||
|
"SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit."
|
||||||
}
|
}
|
|
@ -1853,5 +1853,7 @@
|
||||||
"CancelSeries": "Cancel series",
|
"CancelSeries": "Cancel series",
|
||||||
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
||||||
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
||||||
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage."
|
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage.",
|
||||||
|
"LabelSimultaneousConnectionLimit": "Simultaneous stream limit:",
|
||||||
|
"SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit."
|
||||||
}
|
}
|
|
@ -1853,5 +1853,7 @@
|
||||||
"CancelSeries": "Cancel series",
|
"CancelSeries": "Cancel series",
|
||||||
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
||||||
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
||||||
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage."
|
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage.",
|
||||||
|
"LabelSimultaneousConnectionLimit": "Simultaneous stream limit:",
|
||||||
|
"SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit."
|
||||||
}
|
}
|
|
@ -1853,5 +1853,7 @@
|
||||||
"CancelSeries": "Cancel series",
|
"CancelSeries": "Cancel series",
|
||||||
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
||||||
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
||||||
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage."
|
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage.",
|
||||||
|
"LabelSimultaneousConnectionLimit": "Simultaneous stream limit:",
|
||||||
|
"SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit."
|
||||||
}
|
}
|
|
@ -1853,5 +1853,7 @@
|
||||||
"CancelSeries": "Cancel series",
|
"CancelSeries": "Cancel series",
|
||||||
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
||||||
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
||||||
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage."
|
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage.",
|
||||||
|
"LabelSimultaneousConnectionLimit": "Simultaneous stream limit:",
|
||||||
|
"SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit."
|
||||||
}
|
}
|
|
@ -1853,5 +1853,7 @@
|
||||||
"CancelSeries": "Anuluj nagrywanie seryjne",
|
"CancelSeries": "Anuluj nagrywanie seryjne",
|
||||||
"EnableDebugLoggingHelp": "Rejestrowanie informacji diagnostycznych powinno by\u0107 aktywowane tylko w celu rozwi\u0105zania problem\u00f3w. Zwi\u0119kszona ilo\u015b\u0107 operacji na systemie plik\u00f3w mo\u017ce uniemo\u017cliwia\u0107, w przypadku niekt\u00f3rych \u015brodowisk, przej\u015bcie maszyny serwera w tryb u\u015bpienia.",
|
"EnableDebugLoggingHelp": "Rejestrowanie informacji diagnostycznych powinno by\u0107 aktywowane tylko w celu rozwi\u0105zania problem\u00f3w. Zwi\u0119kszona ilo\u015b\u0107 operacji na systemie plik\u00f3w mo\u017ce uniemo\u017cliwia\u0107, w przypadku niekt\u00f3rych \u015brodowisk, przej\u015bcie maszyny serwera w tryb u\u015bpienia.",
|
||||||
"SaveSubtitlesInOriginalMediaFolders": "Zapisuj napisy w folderach medi\u00f3w",
|
"SaveSubtitlesInOriginalMediaFolders": "Zapisuj napisy w folderach medi\u00f3w",
|
||||||
"SaveSubtitlesInOriginalMediaFoldersHelp": "Umo\u017cliwia zapisywanie napis\u00f3w w folderach medi\u00f3w, w celu \u0142atwego lokalizowania i zarz\u0105dzania."
|
"SaveSubtitlesInOriginalMediaFoldersHelp": "Umo\u017cliwia zapisywanie napis\u00f3w w folderach medi\u00f3w, w celu \u0142atwego lokalizowania i zarz\u0105dzania.",
|
||||||
|
"LabelSimultaneousConnectionLimit": "Limit jednoczesnych transmisji:",
|
||||||
|
"SimultaneousConnectionLimitHelp": "Okre\u015bla maksymaln\u0105 liczb\u0119 dozwolonych jednoczesnych transmisji. Wprowad\u017a 0 jako brak limitu."
|
||||||
}
|
}
|
|
@ -1853,5 +1853,7 @@
|
||||||
"CancelSeries": "Cancelar s\u00e9rie",
|
"CancelSeries": "Cancelar s\u00e9rie",
|
||||||
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
||||||
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
||||||
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage."
|
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage.",
|
||||||
|
"LabelSimultaneousConnectionLimit": "Simultaneous stream limit:",
|
||||||
|
"SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit."
|
||||||
}
|
}
|
|
@ -1853,5 +1853,7 @@
|
||||||
"CancelSeries": "Cancel series",
|
"CancelSeries": "Cancel series",
|
||||||
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
||||||
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
||||||
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage."
|
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage.",
|
||||||
|
"LabelSimultaneousConnectionLimit": "Simultaneous stream limit:",
|
||||||
|
"SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit."
|
||||||
}
|
}
|
|
@ -1853,5 +1853,7 @@
|
||||||
"CancelSeries": "Cancel series",
|
"CancelSeries": "Cancel series",
|
||||||
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
||||||
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
||||||
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage."
|
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage.",
|
||||||
|
"LabelSimultaneousConnectionLimit": "Simultaneous stream limit:",
|
||||||
|
"SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit."
|
||||||
}
|
}
|
|
@ -1853,5 +1853,7 @@
|
||||||
"CancelSeries": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0435\u0440\u0438\u0430\u043b",
|
"CancelSeries": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0435\u0440\u0438\u0430\u043b",
|
||||||
"EnableDebugLoggingHelp": "\u0416\u0443\u0440\u043d\u0430\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043e\u0442\u043b\u0430\u0434\u043a\u0438 \u0434\u043e\u043b\u0436\u043d\u043e \u0432\u043a\u043b\u044e\u0447\u0430\u0442\u044c\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u043f\u0440\u0438 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0441\u0442\u0438 \u0443\u0441\u0442\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u043d\u0435\u043f\u043e\u043b\u0430\u0434\u043e\u043a. \u041f\u043e\u0432\u044b\u0448\u0435\u043d\u043d\u044b\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u0444\u0430\u0439\u043b\u043e\u0432\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u0435 \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u043c\u0435\u0448\u0430\u0442\u044c \u0441\u0435\u0440\u0432\u0435\u0440\u043d\u043e\u0439 \u043c\u0430\u0448\u0438\u043d\u0435 \u043f\u0435\u0440\u0435\u0445\u043e\u0434\u0438\u0442\u044c \u0432 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0441\u043d\u0430 \u0432 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0441\u0440\u0435\u0434\u0430\u0445.",
|
"EnableDebugLoggingHelp": "\u0416\u0443\u0440\u043d\u0430\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043e\u0442\u043b\u0430\u0434\u043a\u0438 \u0434\u043e\u043b\u0436\u043d\u043e \u0432\u043a\u043b\u044e\u0447\u0430\u0442\u044c\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u043f\u0440\u0438 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0441\u0442\u0438 \u0443\u0441\u0442\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u043d\u0435\u043f\u043e\u043b\u0430\u0434\u043e\u043a. \u041f\u043e\u0432\u044b\u0448\u0435\u043d\u043d\u044b\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u0444\u0430\u0439\u043b\u043e\u0432\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u0435 \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u043c\u0435\u0448\u0430\u0442\u044c \u0441\u0435\u0440\u0432\u0435\u0440\u043d\u043e\u0439 \u043c\u0430\u0448\u0438\u043d\u0435 \u043f\u0435\u0440\u0435\u0445\u043e\u0434\u0438\u0442\u044c \u0432 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0441\u043d\u0430 \u0432 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0441\u0440\u0435\u0434\u0430\u0445.",
|
||||||
"SaveSubtitlesInOriginalMediaFolders": "\u0421\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u044b \u0432\u043d\u0443\u0442\u0440\u044c \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043e\u043a",
|
"SaveSubtitlesInOriginalMediaFolders": "\u0421\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u044b \u0432\u043d\u0443\u0442\u0440\u044c \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043e\u043a",
|
||||||
"SaveSubtitlesInOriginalMediaFoldersHelp": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440\u0434\u0456 \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u044b\u043d\u0430 \u0441\u0430\u049b\u0442\u0430\u0443 \u043e\u043b\u0430\u0440\u0434\u044b \u0442\u0430\u0431\u0443\u0434\u044b \u0436\u04d9\u043d\u0435 \u0431\u0430\u0441\u049b\u0430\u0440\u0443\u0434\u044b \u0436\u0435\u04a3\u0456\u043b\u0434\u0435\u0442\u0435\u0434\u0456."
|
"SaveSubtitlesInOriginalMediaFoldersHelp": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440\u0434\u0456 \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u044b\u043d\u0430 \u0441\u0430\u049b\u0442\u0430\u0443 \u043e\u043b\u0430\u0440\u0434\u044b \u0442\u0430\u0431\u0443\u0434\u044b \u0436\u04d9\u043d\u0435 \u0431\u0430\u0441\u049b\u0430\u0440\u0443\u0434\u044b \u0436\u0435\u04a3\u0456\u043b\u0434\u0435\u0442\u0435\u0434\u0456.",
|
||||||
|
"LabelSimultaneousConnectionLimit": "Simultaneous stream limit:",
|
||||||
|
"SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit."
|
||||||
}
|
}
|
|
@ -408,7 +408,7 @@
|
||||||
"HeaderAdditionalParts": "Additional Parts",
|
"HeaderAdditionalParts": "Additional Parts",
|
||||||
"ButtonSplitVersionsApart": "Split Versions Apart",
|
"ButtonSplitVersionsApart": "Split Versions Apart",
|
||||||
"ButtonPlayTrailer": "Trailer",
|
"ButtonPlayTrailer": "Trailer",
|
||||||
"LabelMissing": "Missing",
|
"LabelMissing": "Ch\u00fdbaj\u00face",
|
||||||
"OptionSpecialEpisode": "Specials",
|
"OptionSpecialEpisode": "Specials",
|
||||||
"OptionMissingEpisode": "Ch\u00fdbaj\u00face epiz\u00f3dy",
|
"OptionMissingEpisode": "Ch\u00fdbaj\u00face epiz\u00f3dy",
|
||||||
"OptionUnairedEpisode": "Nevysielan\u00e9 epiz\u00f3dy",
|
"OptionUnairedEpisode": "Nevysielan\u00e9 epiz\u00f3dy",
|
||||||
|
@ -485,7 +485,7 @@
|
||||||
"HeaderResult": "V\u00fdsledok",
|
"HeaderResult": "V\u00fdsledok",
|
||||||
"OptionOverwriteExistingEpisodes": "Prep\u00edsa\u0165 existuj\u00face epiz\u00f3dy",
|
"OptionOverwriteExistingEpisodes": "Prep\u00edsa\u0165 existuj\u00face epiz\u00f3dy",
|
||||||
"LabelTransferMethod": "Sp\u00f4sob prenosu",
|
"LabelTransferMethod": "Sp\u00f4sob prenosu",
|
||||||
"HeaderLatestNews": "Latest News",
|
"HeaderLatestNews": "Najnov\u0161ie spr\u00e1vy",
|
||||||
"HeaderRunningTasks": "Be\u017eiace \u00falohy",
|
"HeaderRunningTasks": "Be\u017eiace \u00falohy",
|
||||||
"HeaderActiveDevices": "Akt\u00edvne zariadenia",
|
"HeaderActiveDevices": "Akt\u00edvne zariadenia",
|
||||||
"HeaderPendingInstallations": "\u010cakaj\u00face in\u0161tal\u00e1cie",
|
"HeaderPendingInstallations": "\u010cakaj\u00face in\u0161tal\u00e1cie",
|
||||||
|
@ -1853,5 +1853,7 @@
|
||||||
"CancelSeries": "Cancel series",
|
"CancelSeries": "Cancel series",
|
||||||
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
||||||
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
||||||
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage."
|
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage.",
|
||||||
|
"LabelSimultaneousConnectionLimit": "Simultaneous stream limit:",
|
||||||
|
"SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit."
|
||||||
}
|
}
|
|
@ -1853,5 +1853,7 @@
|
||||||
"CancelSeries": "Cancel series",
|
"CancelSeries": "Cancel series",
|
||||||
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
||||||
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
||||||
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage."
|
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage.",
|
||||||
|
"LabelSimultaneousConnectionLimit": "Simultaneous stream limit:",
|
||||||
|
"SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit."
|
||||||
}
|
}
|
|
@ -1853,5 +1853,7 @@
|
||||||
"CancelSeries": "Cancel series",
|
"CancelSeries": "Cancel series",
|
||||||
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
||||||
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
||||||
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage."
|
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage.",
|
||||||
|
"LabelSimultaneousConnectionLimit": "Simultaneous stream limit:",
|
||||||
|
"SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit."
|
||||||
}
|
}
|
|
@ -1853,5 +1853,7 @@
|
||||||
"CancelSeries": "Cancel series",
|
"CancelSeries": "Cancel series",
|
||||||
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
"EnableDebugLoggingHelp": "Debug logging should only be enabled as needed for troubleshooting purposes. The increased file system access may prevent the server machine from being able to sleep in some environments.",
|
||||||
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
"SaveSubtitlesInOriginalMediaFolders": "Save subtitles into media folders",
|
||||||
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage."
|
"SaveSubtitlesInOriginalMediaFoldersHelp": "Saving subtitles into media folders will make them easier to locate and manage.",
|
||||||
|
"LabelSimultaneousConnectionLimit": "Simultaneous stream limit:",
|
||||||
|
"SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit."
|
||||||
}
|
}
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue