mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
3.2.36.15
This commit is contained in:
parent
eb4d582286
commit
8c0010c65b
13 changed files with 713 additions and 713 deletions
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(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});
|
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)>=14;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.MediaSources||1===item.MediaSources.length&&"Placeholder"===item.MediaSources[0].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},canRefreshMetadata:function(item,user){return!(!user.Policy.IsAdministrator||"Timer"===item.Type||"SeriesTimer"===item.Type||"Program"===item.Type||"TvChannel"===item.Type||"Recording"===item.Type&&"Completed"!==item.Status||isLocalItem(item))},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)))}}});
|
File diff suppressed because it is too large
Load diff
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(["layoutManager","loading","libraryBrowser","cardBuilder","lazyLoader","apphost","globalize","appRouter","dom","emby-linkbutton"],function(layoutManager,loading,libraryBrowser,cardBuilder,lazyLoader,appHost,globalize,appRouter,dom){"use strict";return function(view,params,tabContent){function getPageData(){var key=getSavedQueryKey(),pageData=data[key];return pageData||(pageData=data[key]={query:{SortBy:"SortName",SortOrder:"Ascending",IncludeItemTypes:"Movie",Recursive:!0,EnableTotalRecordCount:!1},view:"Poster"},pageData.query.ParentId=params.topParentId,libraryBrowser.loadSavedQueryValues(key,pageData.query)),pageData}function getQuery(){return getPageData().query}function getSavedQueryKey(){return libraryBrowser.getSavedQueryKey("moviegenres")}function getPromise(){loading.show();var query=getQuery();return ApiClient.getGenres(ApiClient.getCurrentUserId(),query)}function enableScrollX(){return!layoutManager.desktop}function getThumbShape(){return enableScrollX()?"overflowBackdrop":"backdrop"}function getPortraitShape(){return enableScrollX()?"overflowPortrait":"portrait"}function fillItemsContainer(elem){var id=elem.getAttribute("data-id"),viewStyle=self.getCurrentViewStyle(),limit="Thumb"==viewStyle||"ThumbCard"==viewStyle?5:8;enableScrollX()&&(limit=10);var enableImageTypes="Thumb"==viewStyle||"ThumbCard"==viewStyle?"Primary,Backdrop,Thumb":"Primary",query={SortBy:"SortName",SortOrder:"Ascending",IncludeItemTypes:"Movie",Recursive:!0,Fields:"PrimaryImageAspectRatio,MediaSourceCount,BasicSyncInfo",ImageTypeLimit:1,EnableImageTypes:enableImageTypes,Limit:limit,GenreIds:id,EnableTotalRecordCount:!1,ParentId:params.topParentId};ApiClient.getItems(ApiClient.getCurrentUserId(),query).then(function(result){var supportsImageAnalysis=appHost.supports("imageanalysis");"Thumb"==viewStyle?cardBuilder.buildCards(result.Items,{itemsContainer:elem,shape:getThumbShape(),preferThumb:!0,showTitle:!0,scalable:!0,centerText:!0,overlayMoreButton:!0,allowBottomPadding:!1}):"ThumbCard"==viewStyle?cardBuilder.buildCards(result.Items,{itemsContainer:elem,shape:getThumbShape(),preferThumb:!0,showTitle:!0,scalable:!0,centerText:!1,cardLayout:!0,vibrant:supportsImageAnalysis,showYear:!0}):"PosterCard"==viewStyle?cardBuilder.buildCards(result.Items,{itemsContainer:elem,shape:getPortraitShape(),showTitle:!0,scalable:!0,centerText:!1,cardLayout:!0,vibrant:supportsImageAnalysis,showYear:!0}):"Poster"==viewStyle&&cardBuilder.buildCards(result.Items,{itemsContainer:elem,shape:getPortraitShape(),scalable:!0,overlayMoreButton:!0,allowBottomPadding:!1}),result.Items.length>=query.Limit&&tabContent.querySelector(".btnMoreFromGenre"+id+" i").classList.remove("hide")})}function reloadItems(context,promise){var query=getQuery();promise.then(function(result){for(var elem=context.querySelector("#items"),html="",items=result.Items,i=0,length=items.length;i<length;i++){var item=items[i];html+='<div class="verticalSection">',html+='<div class="sectionTitleContainer padded-left">',html+='<a is="emby-linkbutton" href="'+appRouter.getRouteUrl(item,{context:"movies",parentId:params.topParentId})+'" class="more button-flat button-flat-mini sectionTitleTextButton btnMoreFromGenre'+item.Id+'">',html+='<h2 class="sectionTitle sectionTitle-cards">',html+=item.Name,html+="</h2>",html+='<i class="md-icon hide"></i>',html+="</a>",html+="</div>",html+=enableScrollX()?'<div is="emby-itemscontainer" class="itemsContainer hiddenScrollX lazy padded-left padded-right" data-id="'+item.Id+'">':'<div is="emby-itemscontainer" class="itemsContainer vertical-wrap lazy padded-left padded-right" data-id="'+item.Id+'">',html+="</div>",html+="</div>"}elem.innerHTML=html,lazyLoader.lazyChildren(elem,fillItemsContainer),libraryBrowser.saveQueryValues(getSavedQueryKey(),query),loading.hide()})}function fullyReload(){self.preRender(),self.renderTab()}var self=this,data={};self.getViewStyles=function(){return"Poster,PosterCard,Thumb,ThumbCard".split(",")},self.getCurrentViewStyle=function(){return getPageData(tabContent).view},self.setCurrentViewStyle=function(viewStyle){getPageData(tabContent).view=viewStyle,libraryBrowser.saveViewSetting(getSavedQueryKey(tabContent),viewStyle),fullyReload()},self.enableViewSelection=!0;var promise;self.preRender=function(){promise=getPromise()},self.renderTab=function(){reloadItems(tabContent,promise)}}});
|
define(["layoutManager","loading","libraryBrowser","cardBuilder","lazyLoader","apphost","globalize","appRouter","dom","emby-linkbutton"],function(layoutManager,loading,libraryBrowser,cardBuilder,lazyLoader,appHost,globalize,appRouter,dom){"use strict";return function(view,params,tabContent){function getPageData(){var key=getSavedQueryKey(),pageData=data[key];return pageData||(pageData=data[key]={query:{SortBy:"SortName",SortOrder:"Ascending",IncludeItemTypes:"Movie",Recursive:!0,EnableTotalRecordCount:!1},view:"Poster"},pageData.query.ParentId=params.topParentId,libraryBrowser.loadSavedQueryValues(key,pageData.query)),pageData}function getQuery(){return getPageData().query}function getSavedQueryKey(){return libraryBrowser.getSavedQueryKey("moviegenres")}function getPromise(){loading.show();var query=getQuery();return ApiClient.getGenres(ApiClient.getCurrentUserId(),query)}function enableScrollX(){return!layoutManager.desktop}function getThumbShape(){return enableScrollX()?"overflowBackdrop":"backdrop"}function getPortraitShape(){return enableScrollX()?"overflowPortrait":"portrait"}function fillItemsContainer(elem){var id=elem.getAttribute("data-id"),viewStyle=self.getCurrentViewStyle(),limit="Thumb"==viewStyle||"ThumbCard"==viewStyle?5:9;enableScrollX()&&(limit=10);var enableImageTypes="Thumb"==viewStyle||"ThumbCard"==viewStyle?"Primary,Backdrop,Thumb":"Primary",query={SortBy:"SortName",SortOrder:"Ascending",IncludeItemTypes:"Movie",Recursive:!0,Fields:"PrimaryImageAspectRatio,MediaSourceCount,BasicSyncInfo",ImageTypeLimit:1,EnableImageTypes:enableImageTypes,Limit:limit,GenreIds:id,EnableTotalRecordCount:!1,ParentId:params.topParentId};ApiClient.getItems(ApiClient.getCurrentUserId(),query).then(function(result){var supportsImageAnalysis=appHost.supports("imageanalysis");"Thumb"==viewStyle?cardBuilder.buildCards(result.Items,{itemsContainer:elem,shape:getThumbShape(),preferThumb:!0,showTitle:!0,scalable:!0,centerText:!0,overlayMoreButton:!0,allowBottomPadding:!1}):"ThumbCard"==viewStyle?cardBuilder.buildCards(result.Items,{itemsContainer:elem,shape:getThumbShape(),preferThumb:!0,showTitle:!0,scalable:!0,centerText:!1,cardLayout:!0,vibrant:supportsImageAnalysis,showYear:!0}):"PosterCard"==viewStyle?cardBuilder.buildCards(result.Items,{itemsContainer:elem,shape:getPortraitShape(),showTitle:!0,scalable:!0,centerText:!1,cardLayout:!0,vibrant:supportsImageAnalysis,showYear:!0}):"Poster"==viewStyle&&cardBuilder.buildCards(result.Items,{itemsContainer:elem,shape:getPortraitShape(),scalable:!0,overlayMoreButton:!0,allowBottomPadding:!1}),result.Items.length>=query.Limit&&tabContent.querySelector(".btnMoreFromGenre"+id+" i").classList.remove("hide")})}function reloadItems(context,promise){var query=getQuery();promise.then(function(result){for(var elem=context.querySelector("#items"),html="",items=result.Items,i=0,length=items.length;i<length;i++){var item=items[i];html+='<div class="verticalSection">',html+='<div class="sectionTitleContainer padded-left">',html+='<a is="emby-linkbutton" href="'+appRouter.getRouteUrl(item,{context:"movies",parentId:params.topParentId})+'" class="more button-flat button-flat-mini sectionTitleTextButton btnMoreFromGenre'+item.Id+'">',html+='<h2 class="sectionTitle sectionTitle-cards">',html+=item.Name,html+="</h2>",html+='<i class="md-icon hide"></i>',html+="</a>",html+="</div>",html+=enableScrollX()?'<div is="emby-itemscontainer" class="itemsContainer hiddenScrollX lazy padded-left padded-right" data-id="'+item.Id+'">':'<div is="emby-itemscontainer" class="itemsContainer vertical-wrap lazy padded-left padded-right" data-id="'+item.Id+'">',html+="</div>",html+="</div>"}elem.innerHTML=html,lazyLoader.lazyChildren(elem,fillItemsContainer),libraryBrowser.saveQueryValues(getSavedQueryKey(),query),loading.hide()})}function fullyReload(){self.preRender(),self.renderTab()}var self=this,data={};self.getViewStyles=function(){return"Poster,PosterCard,Thumb,ThumbCard".split(",")},self.getCurrentViewStyle=function(){return getPageData(tabContent).view},self.setCurrentViewStyle=function(viewStyle){getPageData(tabContent).view=viewStyle,libraryBrowser.saveViewSetting(getSavedQueryKey(tabContent),viewStyle),fullyReload()},self.enableViewSelection=!0;var promise;self.preRender=function(){promise=getPromise()},self.renderTab=function(){reloadItems(tabContent,promise)}}});
|
|
@ -1 +1 @@
|
||||||
define(["layoutManager","loading","libraryBrowser","cardBuilder","lazyLoader","apphost","globalize","appRouter","dom","emby-linkbutton"],function(layoutManager,loading,libraryBrowser,cardBuilder,lazyLoader,appHost,globalize,appRouter,dom){"use strict";return function(view,params,tabContent){function getPageData(){var key=getSavedQueryKey(),pageData=data[key];return pageData||(pageData=data[key]={query:{SortBy:"SortName",SortOrder:"Ascending",IncludeItemTypes:"Series",Recursive:!0,EnableTotalRecordCount:!1},view:"Poster"},pageData.query.ParentId=params.topParentId,libraryBrowser.loadSavedQueryValues(key,pageData.query)),pageData}function getQuery(){return getPageData().query}function getSavedQueryKey(){return libraryBrowser.getSavedQueryKey("seriesgenres")}function getPromise(){loading.show();var query=getQuery();return ApiClient.getGenres(ApiClient.getCurrentUserId(),query)}function enableScrollX(){return!layoutManager.desktop}function getThumbShape(){return enableScrollX()?"overflowBackdrop":"backdrop"}function getPortraitShape(){return enableScrollX()?"overflowPortrait":"portrait"}function fillItemsContainer(elem){var id=elem.getAttribute("data-id"),viewStyle=self.getCurrentViewStyle(),limit="Thumb"==viewStyle||"ThumbCard"==viewStyle?5:8;enableScrollX()&&(limit=10);var enableImageTypes="Thumb"==viewStyle||"ThumbCard"==viewStyle?"Primary,Backdrop,Thumb":"Primary",query={SortBy:"SortName",SortOrder:"Ascending",IncludeItemTypes:"Series",Recursive:!0,Fields:"PrimaryImageAspectRatio,MediaSourceCount,BasicSyncInfo",ImageTypeLimit:1,EnableImageTypes:enableImageTypes,Limit:limit,GenreIds:id,EnableTotalRecordCount:!1,ParentId:params.topParentId};ApiClient.getItems(ApiClient.getCurrentUserId(),query).then(function(result){var supportsImageAnalysis=appHost.supports("imageanalysis");"Thumb"==viewStyle?cardBuilder.buildCards(result.Items,{itemsContainer:elem,shape:getThumbShape(),preferThumb:!0,showTitle:!0,scalable:!0,centerText:!0,overlayMoreButton:!0,allowBottomPadding:!1}):"ThumbCard"==viewStyle?cardBuilder.buildCards(result.Items,{itemsContainer:elem,shape:getThumbShape(),preferThumb:!0,showTitle:!0,scalable:!0,centerText:!1,cardLayout:!0,vibrant:supportsImageAnalysis,showYear:!0}):"PosterCard"==viewStyle?cardBuilder.buildCards(result.Items,{itemsContainer:elem,shape:getPortraitShape(),showTitle:!0,scalable:!0,centerText:!1,cardLayout:!0,vibrant:supportsImageAnalysis,showYear:!0}):"Poster"==viewStyle&&cardBuilder.buildCards(result.Items,{itemsContainer:elem,shape:getPortraitShape(),scalable:!0,overlayMoreButton:!0,allowBottomPadding:!1}),result.Items.length>=query.Limit&&tabContent.querySelector(".btnMoreFromGenre"+id+" i").classList.remove("hide")})}function reloadItems(context,promise){var query=getQuery();promise.then(function(result){for(var elem=context.querySelector("#items"),html="",items=result.Items,i=0,length=items.length;i<length;i++){var item=items[i];html+='<div class="verticalSection">',html+='<div class="sectionTitleContainer padded-left">',html+='<a is="emby-linkbutton" href="'+appRouter.getRouteUrl(item,{context:"tvshows",parentId:params.topParentId})+'" class="more button-flat button-flat-mini sectionTitleTextButton btnMoreFromGenre'+item.Id+'">',html+='<h2 class="sectionTitle sectionTitle-cards">',html+=item.Name,html+="</h2>",html+='<i class="md-icon hide"></i>',html+="</a>",html+="</div>",html+=enableScrollX()?'<div is="emby-itemscontainer" class="itemsContainer hiddenScrollX lazy padded-left padded-right" data-id="'+item.Id+'">':'<div is="emby-itemscontainer" class="itemsContainer vertical-wrap lazy padded-left padded-right" data-id="'+item.Id+'">',html+="</div>",html+="</div>"}elem.innerHTML=html,lazyLoader.lazyChildren(elem,fillItemsContainer),libraryBrowser.saveQueryValues(getSavedQueryKey(),query),loading.hide()})}function fullyReload(){self.preRender(),self.renderTab()}var self=this,data={};self.getViewStyles=function(){return"Poster,PosterCard,Thumb,ThumbCard".split(",")},self.getCurrentViewStyle=function(){return getPageData(tabContent).view},self.setCurrentViewStyle=function(viewStyle){getPageData(tabContent).view=viewStyle,libraryBrowser.saveViewSetting(getSavedQueryKey(tabContent),viewStyle),fullyReload()},self.enableViewSelection=!0;var promise;self.preRender=function(){promise=getPromise()},self.renderTab=function(){reloadItems(tabContent,promise)}}});
|
define(["layoutManager","loading","libraryBrowser","cardBuilder","lazyLoader","apphost","globalize","appRouter","dom","emby-linkbutton"],function(layoutManager,loading,libraryBrowser,cardBuilder,lazyLoader,appHost,globalize,appRouter,dom){"use strict";return function(view,params,tabContent){function getPageData(){var key=getSavedQueryKey(),pageData=data[key];return pageData||(pageData=data[key]={query:{SortBy:"SortName",SortOrder:"Ascending",IncludeItemTypes:"Series",Recursive:!0,EnableTotalRecordCount:!1},view:"Poster"},pageData.query.ParentId=params.topParentId,libraryBrowser.loadSavedQueryValues(key,pageData.query)),pageData}function getQuery(){return getPageData().query}function getSavedQueryKey(){return libraryBrowser.getSavedQueryKey("seriesgenres")}function getPromise(){loading.show();var query=getQuery();return ApiClient.getGenres(ApiClient.getCurrentUserId(),query)}function enableScrollX(){return!layoutManager.desktop}function getThumbShape(){return enableScrollX()?"overflowBackdrop":"backdrop"}function getPortraitShape(){return enableScrollX()?"overflowPortrait":"portrait"}function fillItemsContainer(elem){var id=elem.getAttribute("data-id"),viewStyle=self.getCurrentViewStyle(),limit="Thumb"==viewStyle||"ThumbCard"==viewStyle?5:9;enableScrollX()&&(limit=10);var enableImageTypes="Thumb"==viewStyle||"ThumbCard"==viewStyle?"Primary,Backdrop,Thumb":"Primary",query={SortBy:"SortName",SortOrder:"Ascending",IncludeItemTypes:"Series",Recursive:!0,Fields:"PrimaryImageAspectRatio,MediaSourceCount,BasicSyncInfo",ImageTypeLimit:1,EnableImageTypes:enableImageTypes,Limit:limit,GenreIds:id,EnableTotalRecordCount:!1,ParentId:params.topParentId};ApiClient.getItems(ApiClient.getCurrentUserId(),query).then(function(result){var supportsImageAnalysis=appHost.supports("imageanalysis");"Thumb"==viewStyle?cardBuilder.buildCards(result.Items,{itemsContainer:elem,shape:getThumbShape(),preferThumb:!0,showTitle:!0,scalable:!0,centerText:!0,overlayMoreButton:!0,allowBottomPadding:!1}):"ThumbCard"==viewStyle?cardBuilder.buildCards(result.Items,{itemsContainer:elem,shape:getThumbShape(),preferThumb:!0,showTitle:!0,scalable:!0,centerText:!1,cardLayout:!0,vibrant:supportsImageAnalysis,showYear:!0}):"PosterCard"==viewStyle?cardBuilder.buildCards(result.Items,{itemsContainer:elem,shape:getPortraitShape(),showTitle:!0,scalable:!0,centerText:!1,cardLayout:!0,vibrant:supportsImageAnalysis,showYear:!0}):"Poster"==viewStyle&&cardBuilder.buildCards(result.Items,{itemsContainer:elem,shape:getPortraitShape(),scalable:!0,overlayMoreButton:!0,allowBottomPadding:!1}),result.Items.length>=query.Limit&&tabContent.querySelector(".btnMoreFromGenre"+id+" i").classList.remove("hide")})}function reloadItems(context,promise){var query=getQuery();promise.then(function(result){for(var elem=context.querySelector("#items"),html="",items=result.Items,i=0,length=items.length;i<length;i++){var item=items[i];html+='<div class="verticalSection">',html+='<div class="sectionTitleContainer padded-left">',html+='<a is="emby-linkbutton" href="'+appRouter.getRouteUrl(item,{context:"tvshows",parentId:params.topParentId})+'" class="more button-flat button-flat-mini sectionTitleTextButton btnMoreFromGenre'+item.Id+'">',html+='<h2 class="sectionTitle sectionTitle-cards">',html+=item.Name,html+="</h2>",html+='<i class="md-icon hide"></i>',html+="</a>",html+="</div>",html+=enableScrollX()?'<div is="emby-itemscontainer" class="itemsContainer hiddenScrollX lazy padded-left padded-right" data-id="'+item.Id+'">':'<div is="emby-itemscontainer" class="itemsContainer vertical-wrap lazy padded-left padded-right" data-id="'+item.Id+'">',html+="</div>",html+="</div>"}elem.innerHTML=html,lazyLoader.lazyChildren(elem,fillItemsContainer),libraryBrowser.saveQueryValues(getSavedQueryKey(),query),loading.hide()})}function fullyReload(){self.preRender(),self.renderTab()}var self=this,data={};self.getViewStyles=function(){return"Poster,PosterCard,Thumb,ThumbCard".split(",")},self.getCurrentViewStyle=function(){return getPageData(tabContent).view},self.setCurrentViewStyle=function(viewStyle){getPageData(tabContent).view=viewStyle,libraryBrowser.saveViewSetting(getSavedQueryKey(tabContent),viewStyle),fullyReload()},self.enableViewSelection=!0;var promise;self.preRender=function(){promise=getPromise()},self.renderTab=function(){reloadItems(tabContent,promise)}}});
|
|
@ -9,8 +9,8 @@
|
||||||
"ButtonQuickStartGuide": "\u039f\u03b4\u03b7\u03b3\u03cc\u03c2 \u03b3\u03c1\u03ae\u03b3\u03bf\u03c1\u03b7\u03c2 \u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7\u03c2",
|
"ButtonQuickStartGuide": "\u039f\u03b4\u03b7\u03b3\u03cc\u03c2 \u03b3\u03c1\u03ae\u03b3\u03bf\u03c1\u03b7\u03c2 \u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7\u03c2",
|
||||||
"LabelYourFirstName": "\u03a4\u03bf \u03cc\u03bd\u03bf\u03bc\u03ac \u03c3\u03b1\u03c2:",
|
"LabelYourFirstName": "\u03a4\u03bf \u03cc\u03bd\u03bf\u03bc\u03ac \u03c3\u03b1\u03c2:",
|
||||||
"MoreUsersCanBeAddedLater": "\u03a0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03bf\u03b9 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03b1\u03c1\u03b3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03c3\u03c4\u03bf \u03a4\u03b1\u03bc\u03c0\u03bb\u03cc.",
|
"MoreUsersCanBeAddedLater": "\u03a0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03bf\u03b9 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03b1\u03c1\u03b3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03c3\u03c4\u03bf \u03a4\u03b1\u03bc\u03c0\u03bb\u03cc.",
|
||||||
"UserProfilesIntro": "Emby includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.",
|
"UserProfilesIntro": "\u03a4\u03bf Emby \u03c0\u03b5\u03c1\u03b9\u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03b5\u03b9 \u03b5\u03bd\u03c3\u03c9\u03bc\u03b1\u03c4\u03c9\u03bc\u03ad\u03bd\u03b7 \u03c5\u03c0\u03bf\u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7 \u03b3\u03b9\u03b1 \u03c0\u03c1\u03bf\u03c6\u03af\u03bb \u03c7\u03c1\u03b7\u03c3\u03c4\u03ce\u03bd, \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03bf\u03bd\u03c4\u03b1\u03c2 \u03c3\u03b5 \u03ba\u03ac\u03b8\u03b5 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7 \u03bd\u03b1 \u03ad\u03c7\u03b5\u03b9 \u03c4\u03b9\u03c2 \u03b4\u03b9\u03ba\u03ad\u03c2 \u03c4\u03bf\u03c5 \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03b5\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7\u03c2, \u03c4\u03bf playstate \u03ba\u03b1\u03b9 \u03c4\u03b1 \u03b3\u03bf\u03bd\u03b9\u03ba\u03ac \u03c3\u03c4\u03bf\u03b9\u03c7\u03b5\u03af\u03b1 \u03b5\u03bb\u03ad\u03b3\u03c7\u03bf\u03c5.",
|
||||||
"WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click <b>Finish<\/b> to view the <b>Server Dashboard<\/b>.",
|
"WizardCompleted": "\u0391\u03c5\u03c4\u03cc \u03b5\u03af\u03bd\u03b1\u03b9 \u03cc\u03bb\u03bf \u03c0\u03bf\u03c5 \u03c7\u03c1\u03b5\u03b9\u03b1\u03b6\u03cc\u03bc\u03b1\u03c3\u03c4\u03b5 \u03b3\u03b9\u03b1 \u03c4\u03ce\u03c1\u03b1. \u039f Emby \u03ad\u03c7\u03b5\u03b9 \u03b1\u03c1\u03c7\u03af\u03c3\u03b5\u03b9 \u03bd\u03b1 \u03c3\u03c5\u03bb\u03bb\u03ad\u03b3\u03b5\u03b9 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03c3\u03c7\u03b5\u03c4\u03b9\u03ba\u03ac \u03bc\u03b5 \u03c4\u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 \u03c0\u03bf\u03bb\u03c5\u03bc\u03ad\u03c3\u03c9\u03bd \u03c3\u03b1\u03c2. \u0395\u03bb\u03ad\u03b3\u03be\u03c4\u03b5 \u03bc\u03b5\u03c1\u03b9\u03ba\u03ad\u03c2 \u03b1\u03c0\u03cc \u03c4\u03b9\u03c2 \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ad\u03c2 \u03bc\u03b1\u03c2 \u03ba\u03b1\u03b9 \u03c3\u03c4\u03b7 \u03c3\u03c5\u03bd\u03ad\u03c7\u03b5\u03b9\u03b1 \u03ba\u03ac\u03bd\u03c4\u03b5 \u03ba\u03bb\u03b9\u03ba \u03c3\u03c4\u03bf \u03ba\u03bf\u03c5\u03bc\u03c0\u03af <b> \u03a4\u03ad\u03bb\u03bf\u03c2 <\/b> \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03c0\u03c1\u03bf\u03b2\u03ac\u03bb\u03b5\u03c4\u03b5 \u03c4\u03bf\u03bd <b> \u03a0\u03af\u03bd\u03b1\u03ba\u03b1 \u03b5\u03bb\u03ad\u03b3\u03c7\u03bf\u03c5 \u03b4\u03b9\u03b1\u03ba\u03bf\u03bc\u03b9\u03c3\u03c4\u03ae <\/b>.",
|
||||||
"LabelConfigureSettings": "\u0394\u03b9\u03b1\u03bc\u03bf\u03c1\u03c6\u03ce\u03c3\u03b5\u03c4\u03b5 \u03c4\u03b9\u03c2 \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2",
|
"LabelConfigureSettings": "\u0394\u03b9\u03b1\u03bc\u03bf\u03c1\u03c6\u03ce\u03c3\u03b5\u03c4\u03b5 \u03c4\u03b9\u03c2 \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2",
|
||||||
"HeaderTermsOfService": "\u038c\u03c1\u03bf\u03b9 \u03a7\u03c1\u03ae\u03c3\u03b7\u03c2 Emby",
|
"HeaderTermsOfService": "\u038c\u03c1\u03bf\u03b9 \u03a7\u03c1\u03ae\u03c3\u03b7\u03c2 Emby",
|
||||||
"MessagePleaseAcceptTermsOfService": "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b1\u03c0\u03bf\u03b4\u03b5\u03c7\u03c4\u03b5\u03af\u03c4\u03b5 \u03c4\u03bf\u03c5\u03c2 \u038c\u03c1\u03bf\u03c5\u03c2 \u03a7\u03c1\u03ae\u03c3\u03b7\u03c2 \u03ba\u03b1\u03b9 \u03a0\u03c1\u03bf\u03c3\u03c4\u03b1\u03c3\u03af\u03b1\u03c2 \u0394\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c0\u03c1\u03b9\u03bd \u03c0\u03c1\u03bf\u03c7\u03c9\u03c1\u03ae\u03c3\u03b5\u03c4\u03b5.",
|
"MessagePleaseAcceptTermsOfService": "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b1\u03c0\u03bf\u03b4\u03b5\u03c7\u03c4\u03b5\u03af\u03c4\u03b5 \u03c4\u03bf\u03c5\u03c2 \u038c\u03c1\u03bf\u03c5\u03c2 \u03a7\u03c1\u03ae\u03c3\u03b7\u03c2 \u03ba\u03b1\u03b9 \u03a0\u03c1\u03bf\u03c3\u03c4\u03b1\u03c3\u03af\u03b1\u03c2 \u0394\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c0\u03c1\u03b9\u03bd \u03c0\u03c1\u03bf\u03c7\u03c9\u03c1\u03ae\u03c3\u03b5\u03c4\u03b5.",
|
||||||
|
@ -116,7 +116,7 @@
|
||||||
"ButtonInviteUser": "\u03a0\u03c1\u03cc\u03c3\u03ba\u03bb\u03b7\u03c3\u03b7 \u03a7\u03c1\u03ae\u03c3\u03c4\u03b7",
|
"ButtonInviteUser": "\u03a0\u03c1\u03cc\u03c3\u03ba\u03bb\u03b7\u03c3\u03b7 \u03a7\u03c1\u03ae\u03c3\u03c4\u03b7",
|
||||||
"ButtonSave": "\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7",
|
"ButtonSave": "\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7",
|
||||||
"ButtonResetPassword": "\u0395\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03c4\u03bf\u03c5 \u03ba\u03c9\u03b4\u03b9\u03ba\u03bf\u03cd \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2",
|
"ButtonResetPassword": "\u0395\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03c4\u03bf\u03c5 \u03ba\u03c9\u03b4\u03b9\u03ba\u03bf\u03cd \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2",
|
||||||
"LabelUrl": "Url:",
|
"LabelUrl": "\u03a3\u03cd\u03bd\u03b4\u03b5\u03c3\u03bc\u03bf\u03c2:",
|
||||||
"LabelNewPassword": "\u039d\u03ad\u03bf\u03c2 \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2",
|
"LabelNewPassword": "\u039d\u03ad\u03bf\u03c2 \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2",
|
||||||
"LabelNewPasswordConfirm": "\u0395\u03c0\u03b9\u03b2\u03b5\u03b2\u03b1\u03af\u03c9\u03c3\u03b7 \u03bd\u03ad\u03bf\u03c5 \u03ba\u03c9\u03b4\u03b9\u03ba\u03bf\u03cd \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2",
|
"LabelNewPasswordConfirm": "\u0395\u03c0\u03b9\u03b2\u03b5\u03b2\u03b1\u03af\u03c9\u03c3\u03b7 \u03bd\u03ad\u03bf\u03c5 \u03ba\u03c9\u03b4\u03b9\u03ba\u03bf\u03cd \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2",
|
||||||
"HeaderCreatePassword": "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ba\u03c9\u03b4\u03b9\u03ba\u03bf\u03cd \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2 ",
|
"HeaderCreatePassword": "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03ba\u03c9\u03b4\u03b9\u03ba\u03bf\u03cd \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2 ",
|
||||||
|
@ -206,7 +206,7 @@
|
||||||
"Option3D": "3D",
|
"Option3D": "3D",
|
||||||
"LabelDeinterlacingMethod": "\u039c\u03ad\u03b8\u03bf\u03b4\u03bf\u03c2 \u03b1\u03c0\u03bf\u03b5\u03c0\u03ad\u03bd\u03b4\u03c5\u03c3\u03b7\u03c2:",
|
"LabelDeinterlacingMethod": "\u039c\u03ad\u03b8\u03bf\u03b4\u03bf\u03c2 \u03b1\u03c0\u03bf\u03b5\u03c0\u03ad\u03bd\u03b4\u03c5\u03c3\u03b7\u03c2:",
|
||||||
"Standard": "\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf",
|
"Standard": "\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf",
|
||||||
"BobAndWeaveWithHelp": "Bob and weave (higher quality, but slower)",
|
"BobAndWeaveWithHelp": "bob and weave (\u03c5\u03c8\u03b7\u03bb\u03cc\u03c4\u03b5\u03c1\u03b7 \u03c0\u03bf\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1, \u03b1\u03bb\u03bb\u03ac \u03c0\u03b9\u03bf \u03b1\u03c1\u03b3\u03ae)",
|
||||||
"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",
|
||||||
|
@ -215,7 +215,7 @@
|
||||||
"OptionHasThemeVideo": "\u0398\u03b5\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc \u0392\u03af\u03bd\u03c4\u03b5\u03bf",
|
"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": "\u03a4\u03c1\u03ad\u03b9\u03bb\u03b5\u03c1\u03c2",
|
||||||
"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": "\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;",
|
"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": "\u03a0\u03c1\u03cc\u03c3\u03c6\u03b1\u03c4\u03b1 Trailers",
|
"HeaderLatestTrailers": "\u03a0\u03c1\u03cc\u03c3\u03c6\u03b1\u03c4\u03b1 Trailers",
|
||||||
|
@ -227,7 +227,7 @@
|
||||||
"TabAdvanced": "\u0393\u03b9\u03b1 \u03c0\u03c1\u03bf\u03c7\u03c9\u03c1\u03b7\u03bc\u03ad\u03bd\u03bf\u03c5\u03c2",
|
"TabAdvanced": "\u0393\u03b9\u03b1 \u03c0\u03c1\u03bf\u03c7\u03c9\u03c1\u03b7\u03bc\u03ad\u03bd\u03bf\u03c5\u03c2",
|
||||||
"OptionContinuing": "\u03a3\u03c5\u03bd\u03ad\u03c7\u03b9\u03c3\u03b7",
|
"OptionContinuing": "\u03a3\u03c5\u03bd\u03ad\u03c7\u03b9\u03c3\u03b7",
|
||||||
"OptionEnded": "\u03a4\u03ad\u03bb\u03bf\u03c2",
|
"OptionEnded": "\u03a4\u03ad\u03bb\u03bf\u03c2",
|
||||||
"HeaderAirDays": "Air Days",
|
"HeaderAirDays": "\u0397\u03bc\u03ad\u03c1\u03b5\u03c2 \u03ba\u03c5\u03ba\u03bb\u03bf\u03c6\u03bf\u03c1\u03af\u03b1\u03c2:",
|
||||||
"OptionSundayShort": "\u039a\u03c5\u03c1",
|
"OptionSundayShort": "\u039a\u03c5\u03c1",
|
||||||
"OptionMondayShort": "\u0394\u03b5\u03c5",
|
"OptionMondayShort": "\u0394\u03b5\u03c5",
|
||||||
"OptionTuesdayShort": "\u03a4\u03c1\u03b9",
|
"OptionTuesdayShort": "\u03a4\u03c1\u03b9",
|
||||||
|
@ -250,8 +250,8 @@
|
||||||
"TabGeneral": "\u0393\u03b5\u03bd\u03b9\u03ba\u03b1",
|
"TabGeneral": "\u0393\u03b5\u03bd\u03b9\u03ba\u03b1",
|
||||||
"TitleSupport": "\u03a5\u03c0\u03bf\u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7",
|
"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": "\u039a\u03bb\u03b5\u03b9\u03b4\u03af \u03c3\u03c5\u03bd\u03b4\u03c1\u03bf\u03bc\u03ae\u03c2 Emby Premiere",
|
||||||
"TabBecomeSupporter": "Get Emby Premiere",
|
"TabBecomeSupporter": "\u0391\u03c0\u03cc\u03ba\u03c4\u03b7\u03c3\u03b5 \u03a3\u03c5\u03bd\u03b4\u03c1\u03bf\u03bc\u03ae Emby Premiere",
|
||||||
"TabEmbyPremiere": "Emby Premiere",
|
"TabEmbyPremiere": "Emby Premiere",
|
||||||
"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",
|
"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": "\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.",
|
"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.",
|
||||||
|
@ -268,21 +268,21 @@
|
||||||
"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",
|
"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": "\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",
|
"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": "\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",
|
"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": "\u039f\u03b9 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ad\u03c2 Dlna \u03b8\u03b5\u03c9\u03c1\u03bf\u03cd\u03bd\u03c4\u03b1\u03b9 \u03ba\u03bf\u03b9\u03bd\u03ad\u03c2 \u03ad\u03c9\u03c2 \u03cc\u03c4\u03bf\u03c5 \u03bf \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 \u03b1\u03c1\u03c7\u03af\u03c3\u03b5\u03b9 \u03bd\u03b1 \u03c4\u03bf\u03bd \u03b5\u03bb\u03ad\u03b3\u03c7\u03b5\u03b9.",
|
||||||
"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",
|
"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": "\u0394\u03b9\u03b1\u03bd\u03ad\u03bc\u03bf\u03bd\u03c4\u03b1\u03b9 \u03bc\u03cc\u03bd\u03bf \u03b9\u03c3\u03c4\u03bf\u03c3\u03b5\u03bb\u03af\u03b4\u03b5\u03c2 \u03c0\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03bf\u03c5\u03bd \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03bc\u03ad\u03c3\u03c9\u03bd. \u03a4\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03c0\u03bf\u03bb\u03c5\u03bc\u03ad\u03c3\u03c9\u03bd \u03b4\u03b5\u03bd \u03bc\u03bf\u03b9\u03c1\u03ac\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c0\u03bf\u03c4\u03ad \u03b4\u03b7\u03bc\u03cc\u03c3\u03b9\u03b1. \u039f\u03b9 \u03bc\u03b5\u03c4\u03bf\u03c7\u03ad\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03bf\u03c1\u03b9\u03c3\u03bc\u03ad\u03bd\u03b5\u03c2 \u03c7\u03c1\u03bf\u03bd\u03b9\u03ba\u03ac \u03ba\u03b1\u03b9 \u03b8\u03b1 \u03bb\u03ae\u03be\u03bf\u03c5\u03bd \u03bc\u03b5\u03c4\u03ac \u03b1\u03c0\u03cc {0} \u03b7\u03bc\u03ad\u03c1\u03b5\u03c2.",
|
||||||
"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",
|
||||||
"OptionIsHD": "HD",
|
"OptionIsHD": "HD",
|
||||||
"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": "\u03a7\u03c1\u03ae\u03c3\u03b7 \u03c4\u03bf\u03c5 Pismo File Mount \u03bc\u03ad\u03c3\u03c9 \u03bc\u03b9\u03b1\u03c2 \u03b4\u03c9\u03c1\u03b5\u03ac\u03bd \u03ac\u03b4\u03b5\u03b9\u03b1.",
|
||||||
"HeaderCredits": "\u03a0\u03b9\u03c3\u03c4\u03ce\u03c3\u03b5\u03b9\u03c2",
|
"HeaderCredits": "\u03a0\u03b9\u03c3\u03c4\u03ce\u03c3\u03b5\u03b9\u03c2",
|
||||||
"PleaseSupportOtherProduces": "Please support other free products we utilize:",
|
"PleaseSupportOtherProduces": "\u03a5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03be\u03c4\u03b5 \u03ac\u03bb\u03bb\u03b1 \u03b4\u03c9\u03c1\u03b5\u03ac\u03bd \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03b1 \u03c0\u03bf\u03c5 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bc\u03b5:",
|
||||||
"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",
|
||||||
"TabServer": "\u0394\u03b9\u03b1\u03ba\u03bf\u03bc\u03b9\u03c3\u03c4\u03ae\u03c2",
|
"TabServer": "\u0394\u03b9\u03b1\u03ba\u03bf\u03bc\u03b9\u03c3\u03c4\u03ae\u03c2",
|
||||||
"TabTranscoding": "Transcoding",
|
"TabTranscoding": "\u039a\u03c9\u03b4\u03b9\u03ba\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7",
|
||||||
"OptionRelease": "\u0397 \u03b5\u03c0\u03af\u03c3\u03b7\u03bc\u03b7 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7",
|
"OptionRelease": "\u0397 \u03b5\u03c0\u03af\u03c3\u03b7\u03bc\u03b7 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7",
|
||||||
"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.",
|
||||||
|
@ -298,7 +298,7 @@
|
||||||
"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.",
|
"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": "\u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03bc\u03b5\u03c4\u03b1\u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd:",
|
"LabelMetadataPath": "\u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03bc\u03b5\u03c4\u03b1\u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd:",
|
||||||
"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.",
|
"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": "\u03a0\u03c1\u03bf\u03c3\u03c9\u03c1\u03b9\u03bd\u03cc\u03c2 \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2 \u039a\u03c9\u03b4\u03b9\u03ba\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2 ",
|
||||||
"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.",
|
"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",
|
||||||
|
@ -308,8 +308,8 @@
|
||||||
"OptionMovies": "\u03a4\u03b1\u03b9\u03bd\u03af\u03b5\u03c2",
|
"OptionMovies": "\u03a4\u03b1\u03b9\u03bd\u03af\u03b5\u03c2",
|
||||||
"OptionEpisodes": "\u0395\u03c0\u03b5\u03b9\u03c3\u03cc\u03b4\u03b9\u03b1",
|
"OptionEpisodes": "\u0395\u03c0\u03b5\u03b9\u03c3\u03cc\u03b4\u03b9\u03b1",
|
||||||
"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": "\u03a0\u03c1\u03bf\u03c3\u03c9\u03c0\u03b9\u03ba\u03cc \u03ba\u03bb\u03b5\u03b9\u03b4\u03af api :",
|
||||||
"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": "\u03a4\u03b1 \u03b1\u03b9\u03c4\u03ae\u03bc\u03b1\u03c4\u03b1 \u03b3\u03b9\u03b1 \u03c0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03c7\u03c9\u03c1\u03af\u03c2 \u03c0\u03c1\u03bf\u03c3\u03c9\u03c0\u03b9\u03ba\u03cc \u03ba\u03bb\u03b5\u03b9\u03b4\u03af API \u03b5\u03c0\u03b9\u03c3\u03c4\u03c1\u03ad\u03c6\u03bf\u03c5\u03bd \u03b5\u03b9\u03ba\u03cc\u03bd\u03b5\u03c2 \u03c0\u03bf\u03c5 \u03b5\u03b3\u03ba\u03c1\u03af\u03b8\u03b7\u03ba\u03b1\u03bd \u03c0\u03c1\u03b9\u03bd \u03b1\u03c0\u03cc 7 \u03b7\u03bc\u03ad\u03c1\u03b5\u03c2. \u039c\u03b5 \u03ad\u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c9\u03c0\u03b9\u03ba\u03cc \u03ba\u03bb\u03b5\u03b9\u03b4\u03af API \u03c0\u03bf\u03c5 \u03c0\u03ad\u03c6\u03c4\u03b5\u03b9 \u03c3\u03b5 48 \u03ce\u03c1\u03b5\u03c2 \u03ba\u03b1\u03b9 \u03b1\u03bd \u03b5\u03af\u03c3\u03c4\u03b5 \u03b5\u03c0\u03af\u03c3\u03b7\u03c2 fanart \u03bc\u03ad\u03bb\u03bf\u03c2 VIP \u03c0\u03bf\u03c5 \u03b8\u03b1 \u03bc\u03b5\u03b9\u03c9\u03b8\u03b5\u03af \u03c0\u03b5\u03c1\u03b1\u03b9\u03c4\u03ad\u03c1\u03c9 \u03c3\u03b5 \u03c0\u03b5\u03c1\u03af\u03c0\u03bf\u03c5 10 \u03bb\u03b5\u03c0\u03c4\u03ac.",
|
||||||
"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.",
|
"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": "\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:",
|
"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",
|
||||||
|
@ -367,12 +367,12 @@
|
||||||
"TabOther": "\u0386\u03bb\u03bb\u03b1",
|
"TabOther": "\u0386\u03bb\u03bb\u03b1",
|
||||||
"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:",
|
"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": "\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:",
|
"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": "\u0395\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf \u03c0\u03bb\u03ac\u03c4\u03bf\u03c2 \u03bb\u03ae\u03c8\u03b7\u03c2 \u03c6\u03cc\u03bd\u03c4\u03bf\u03c5:",
|
||||||
"LabelMinScreenshotDownloadWidth": "Minimum screenshot download width:",
|
"LabelMinScreenshotDownloadWidth": "\u0395\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf \u03c0\u03bb\u03ac\u03c4\u03bf\u03c2 \u03bb\u03ae\u03c8\u03b7\u03c2 \u03bf\u03b8\u03cc\u03bd\u03b7\u03c2:",
|
||||||
"ButtonAddScheduledTaskTrigger": "Add Trigger",
|
"ButtonAddScheduledTaskTrigger": "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03b4\u03b9\u03b1\u03ba\u03cc\u03c0\u03c4\u03b7",
|
||||||
"HeaderAddScheduledTaskTrigger": "Add Trigger",
|
"HeaderAddScheduledTaskTrigger": "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03b4\u03b9\u03b1\u03ba\u03cc\u03c0\u03c4\u03b7",
|
||||||
"ButtonAdd": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c3\u03b5",
|
"ButtonAdd": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c3\u03b5",
|
||||||
"LabelTriggerType": "Trigger Type:",
|
"LabelTriggerType": "\u03a4\u03cd\u03c0\u03bf\u03c2 \u03b4\u03b9\u03b1\u03ba\u03cc\u03c0\u03c4\u03b7",
|
||||||
"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": "\u03a3\u03b5 \u03ad\u03bd\u03b1 \u03b4\u03b9\u03ac\u03c3\u03c4\u03b7\u03bc\u03b1",
|
"OptionOnInterval": "\u03a3\u03b5 \u03ad\u03bd\u03b1 \u03b4\u03b9\u03ac\u03c3\u03c4\u03b7\u03bc\u03b1",
|
||||||
|
@ -387,11 +387,11 @@
|
||||||
"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": "\u03a3\u03c5\u03c3\u03c4\u03ae\u03bc\u03b1\u03c4\u03b1 \u03c0\u03b1\u03b9\u03c7\u03bd\u03b9\u03b4\u03b9\u03ce\u03bd",
|
"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": "\u0395\u03b9\u03b4\u03b9\u03ba\u03cc \u03b5\u03bc\u03c6\u03b1\u03bd\u03b9\u03b6\u03cc\u03bc\u03b5\u03bd\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03c3\u03b5\u03b6\u03cc\u03bd:",
|
||||||
"LabelEnableRealtimeMonitor": "Enable real time monitoring",
|
"LabelEnableRealtimeMonitor": "\u0395\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03c4\u03b5 \u03c4\u03b7\u03bd \u03c0\u03b1\u03c1\u03b1\u03ba\u03bf\u03bb\u03bf\u03cd\u03b8\u03b7\u03c3\u03b7 \u03c3\u03b5 \u03c0\u03c1\u03b1\u03b3\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc \u03c7\u03c1\u03cc\u03bd\u03bf",
|
||||||
"LabelEnableRealtimeMonitorHelp": "Changes will be processed immediately, on supported file systems.",
|
"LabelEnableRealtimeMonitorHelp": "\u039f\u03b9 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 \u03b8\u03b1 \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03c4\u03bf\u03cd\u03bd \u03b1\u03bc\u03ad\u03c3\u03c9\u03c2, \u03c3\u03b5 \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03b9\u03b6\u03cc\u03bc\u03b5\u03bd\u03b1 \u03c3\u03c5\u03c3\u03c4\u03ae\u03bc\u03b1\u03c4\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03c9\u03bd.",
|
||||||
"ButtonScanLibrary": "\u03a3\u03ac\u03c1\u03c9\u03c3\u03b7 \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2",
|
"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+",
|
||||||
"Option2Player": "2+",
|
"Option2Player": "2+",
|
||||||
|
@ -407,10 +407,10 @@
|
||||||
"HeaderCastCrew": "\u0397\u03b8\u03bf\u03c0\u03bf\u03b9\u03bf\u03af \u03ba\u03b1\u03b9 \u03c3\u03c5\u03bd\u03b5\u03c1\u03b3\u03b5\u03af\u03bf",
|
"HeaderCastCrew": "\u0397\u03b8\u03bf\u03c0\u03bf\u03b9\u03bf\u03af \u03ba\u03b1\u03b9 \u03c3\u03c5\u03bd\u03b5\u03c1\u03b3\u03b5\u03af\u03bf",
|
||||||
"HeaderAdditionalParts": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c4\u03b1 \u039c\u03ad\u03c1\u03b7",
|
"HeaderAdditionalParts": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c4\u03b1 \u039c\u03ad\u03c1\u03b7",
|
||||||
"ButtonSplitVersionsApart": "Split Versions Apart",
|
"ButtonSplitVersionsApart": "Split Versions Apart",
|
||||||
"ButtonPlayTrailer": "Trailer",
|
"ButtonPlayTrailer": "\u03a4\u03c1\u03ad\u03ca\u03bb\u03b5\u03c1",
|
||||||
"LabelMissing": "Missing",
|
"LabelMissing": "\u039b\u03b5\u03af\u03c0\u03b5\u03b9",
|
||||||
"OptionSpecialEpisode": "Specials",
|
"OptionSpecialEpisode": "Specials",
|
||||||
"OptionMissingEpisode": "Missing Episodes",
|
"OptionMissingEpisode": "\u0395\u03bb\u03bb\u03b5\u03b9\u03c0\u03ae \u0395\u03c0\u03b5\u03b9\u03c3\u03cc\u03b4\u03b9\u03b1",
|
||||||
"OptionUnairedEpisode": "Unaired Episodes",
|
"OptionUnairedEpisode": "Unaired Episodes",
|
||||||
"OptionEpisodeSortName": "Episode Sort Name",
|
"OptionEpisodeSortName": "Episode Sort Name",
|
||||||
"OptionTvdbRating": "Tvdb Rating",
|
"OptionTvdbRating": "Tvdb Rating",
|
||||||
|
|
|
@ -1854,6 +1854,6 @@
|
||||||
"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:",
|
"LabelSimultaneousConnectionLimit": "\u041b\u0438\u043c\u0438\u0442 \u043e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0445 \u043f\u043e\u0442\u043e\u043a\u043e\u0432:",
|
||||||
"SimultaneousConnectionLimitHelp": "The maximum number of allowed simultaneous streams. Enter 0 for no limit."
|
"SimultaneousConnectionLimitHelp": "\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e\u0435 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0440\u0430\u0437\u0440\u0435\u0448\u0451\u043d\u043d\u044b\u0445 \u043e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0445 \u043f\u043e\u0442\u043e\u043a\u043e\u0432. \u0412\u0432\u0435\u0434\u0438\u0442\u0435 0, \u0447\u0442\u043e\u0431\u044b \u0441\u043d\u044f\u0442\u044c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f."
|
||||||
}
|
}
|
|
@ -77,7 +77,7 @@
|
||||||
"HeaderPreferredMetadataLanguage": "Uprednost\u0148ovan\u00fd jazyk metad\u00e1t",
|
"HeaderPreferredMetadataLanguage": "Uprednost\u0148ovan\u00fd jazyk metad\u00e1t",
|
||||||
"LabelSaveLocalMetadata": "Save artwork and metadata into media folders",
|
"LabelSaveLocalMetadata": "Save artwork and metadata into media folders",
|
||||||
"LabelSaveLocalMetadataHelp": "Saving artwork and metadata directly into media folders will put them in a place where they can be easily edited.",
|
"LabelSaveLocalMetadataHelp": "Saving artwork and metadata directly into media folders will put them in a place where they can be easily edited.",
|
||||||
"LabelDownloadInternetMetadata": "Download artwork and metadata from the internet",
|
"LabelDownloadInternetMetadata": "Stiahnu\u0165 obal a metad\u00e1ta z Internetu",
|
||||||
"LabelDownloadInternetMetadataHelp": "Emby Server can download information about your media to enable rich presentations.",
|
"LabelDownloadInternetMetadataHelp": "Emby Server can download information about your media to enable rich presentations.",
|
||||||
"TabPassword": "Heslo",
|
"TabPassword": "Heslo",
|
||||||
"TabLibraryAccess": "Pr\u00edstup ku kni\u017enici",
|
"TabLibraryAccess": "Pr\u00edstup ku kni\u017enici",
|
||||||
|
@ -137,7 +137,7 @@
|
||||||
"TabSuggestions": "N\u00e1vrhy",
|
"TabSuggestions": "N\u00e1vrhy",
|
||||||
"TabLatest": "Najnov\u0161ie",
|
"TabLatest": "Najnov\u0161ie",
|
||||||
"TabUpcoming": "Nadch\u00e1dzaj\u00face",
|
"TabUpcoming": "Nadch\u00e1dzaj\u00face",
|
||||||
"TabShows": "Shows",
|
"TabShows": "Seri\u00e1ly",
|
||||||
"TabEpisodes": "Epiz\u00f3dy",
|
"TabEpisodes": "Epiz\u00f3dy",
|
||||||
"TabGenres": "\u017d\u00e1nre",
|
"TabGenres": "\u017d\u00e1nre",
|
||||||
"TabNetworks": "Siete",
|
"TabNetworks": "Siete",
|
||||||
|
@ -168,7 +168,7 @@
|
||||||
"OptionUnplayed": "Neprehran\u00e9",
|
"OptionUnplayed": "Neprehran\u00e9",
|
||||||
"OptionAscending": "Vzostupne",
|
"OptionAscending": "Vzostupne",
|
||||||
"OptionDescending": "Zostupne",
|
"OptionDescending": "Zostupne",
|
||||||
"OptionRuntime": "Runtime",
|
"OptionRuntime": "D\u013a\u017eka",
|
||||||
"OptionReleaseDate": "D\u00e1tum vydania",
|
"OptionReleaseDate": "D\u00e1tum vydania",
|
||||||
"OptionPlayCount": "Po\u010det prehran\u00ed",
|
"OptionPlayCount": "Po\u010det prehran\u00ed",
|
||||||
"OptionDatePlayed": "D\u00e1tum prehrania",
|
"OptionDatePlayed": "D\u00e1tum prehrania",
|
||||||
|
@ -181,11 +181,11 @@
|
||||||
"OptionNameSort": "Meno",
|
"OptionNameSort": "Meno",
|
||||||
"OptionFolderSort": "Prie\u010dinky",
|
"OptionFolderSort": "Prie\u010dinky",
|
||||||
"OptionPoster": "Plag\u00e1t:",
|
"OptionPoster": "Plag\u00e1t:",
|
||||||
"OptionPosterCard": "Poster card",
|
"OptionPosterCard": "Plag\u00e1t",
|
||||||
"OptionBackdrop": "Backdrop",
|
"OptionBackdrop": "Pozadie",
|
||||||
"OptionTimeline": "\u010casov\u00e1 os",
|
"OptionTimeline": "\u010casov\u00e1 os",
|
||||||
"OptionThumb": "Thumb",
|
"OptionThumb": "Thumb",
|
||||||
"OptionThumbCard": "Thumb card",
|
"OptionThumbCard": "N\u00e1h\u013ead",
|
||||||
"OptionBanner": "Banner",
|
"OptionBanner": "Banner",
|
||||||
"OptionCriticRating": "Hodnotenie kritikov",
|
"OptionCriticRating": "Hodnotenie kritikov",
|
||||||
"OptionVideoBitrate": "Video Bitrate",
|
"OptionVideoBitrate": "Video Bitrate",
|
||||||
|
@ -350,7 +350,7 @@
|
||||||
"TitleLiveTV": "\u017div\u00fd TV prenos",
|
"TitleLiveTV": "\u017div\u00fd TV prenos",
|
||||||
"LabelNumberOfGuideDays": "Number of days of guide data to download:",
|
"LabelNumberOfGuideDays": "Number of days of guide data to download:",
|
||||||
"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": "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.",
|
||||||
"OptionAutomatic": "Auto",
|
"OptionAutomatic": "Automaticky",
|
||||||
"HeaderServices": "Slu\u017eby",
|
"HeaderServices": "Slu\u017eby",
|
||||||
"LabelCustomizeOptionsPerMediaType": "Customize for media type:",
|
"LabelCustomizeOptionsPerMediaType": "Customize for media type:",
|
||||||
"OptionDownloadThumbImage": "Thumb",
|
"OptionDownloadThumbImage": "Thumb",
|
||||||
|
@ -360,7 +360,7 @@
|
||||||
"OptionDownloadDiscImage": "Disc",
|
"OptionDownloadDiscImage": "Disc",
|
||||||
"OptionDownloadBannerImage": "Banner",
|
"OptionDownloadBannerImage": "Banner",
|
||||||
"OptionDownloadBackImage": "Sp\u00e4\u0165",
|
"OptionDownloadBackImage": "Sp\u00e4\u0165",
|
||||||
"OptionDownloadArtImage": "Art",
|
"OptionDownloadArtImage": "Obal",
|
||||||
"OptionDownloadPrimaryImage": "Primary",
|
"OptionDownloadPrimaryImage": "Primary",
|
||||||
"HeaderFetchImages": "Fetch Images:",
|
"HeaderFetchImages": "Fetch Images:",
|
||||||
"HeaderImageSettings": "Nastavenia obr\u00e1zkov",
|
"HeaderImageSettings": "Nastavenia obr\u00e1zkov",
|
||||||
|
@ -388,7 +388,7 @@
|
||||||
"TabGameSystems": "Hern\u00e9 syst\u00e9my",
|
"TabGameSystems": "Hern\u00e9 syst\u00e9my",
|
||||||
"TabFolders": "Prie\u010dinky",
|
"TabFolders": "Prie\u010dinky",
|
||||||
"LabelSpecialSeasonsDisplayName": "Special season display name:",
|
"LabelSpecialSeasonsDisplayName": "Special season display name:",
|
||||||
"LabelEnableRealtimeMonitor": "Enable real time monitoring",
|
"LabelEnableRealtimeMonitor": "Povoli\u0165 sledovanie v re\u00e1lnom \u010dase",
|
||||||
"LabelEnableRealtimeMonitorHelp": "Changes will be processed immediately, on supported file systems.",
|
"LabelEnableRealtimeMonitorHelp": "Changes will be processed immediately, on supported file systems.",
|
||||||
"ButtonScanLibrary": "Skenova\u0165 kni\u017enicu",
|
"ButtonScanLibrary": "Skenova\u0165 kni\u017enicu",
|
||||||
"HeaderNumberOfPlayers": "Prehr\u00e1va\u010de",
|
"HeaderNumberOfPlayers": "Prehr\u00e1va\u010de",
|
||||||
|
@ -407,7 +407,7 @@
|
||||||
"HeaderCastCrew": "Cast & Crew",
|
"HeaderCastCrew": "Cast & Crew",
|
||||||
"HeaderAdditionalParts": "Additional Parts",
|
"HeaderAdditionalParts": "Additional Parts",
|
||||||
"ButtonSplitVersionsApart": "Split Versions Apart",
|
"ButtonSplitVersionsApart": "Split Versions Apart",
|
||||||
"ButtonPlayTrailer": "Trailer",
|
"ButtonPlayTrailer": "Uk\u00e1\u017eka",
|
||||||
"LabelMissing": "Ch\u00fdbaj\u00face",
|
"LabelMissing": "Ch\u00fdbaj\u00face",
|
||||||
"OptionSpecialEpisode": "Specials",
|
"OptionSpecialEpisode": "Specials",
|
||||||
"OptionMissingEpisode": "Ch\u00fdbaj\u00face epiz\u00f3dy",
|
"OptionMissingEpisode": "Ch\u00fdbaj\u00face epiz\u00f3dy",
|
||||||
|
@ -436,9 +436,9 @@
|
||||||
"LabelPreferredDisplayLanguage": "Preferred display language:",
|
"LabelPreferredDisplayLanguage": "Preferred display language:",
|
||||||
"LabelPreferredDisplayLanguageHelp": "Translating Emby is an ongoing project.",
|
"LabelPreferredDisplayLanguageHelp": "Translating Emby is an ongoing project.",
|
||||||
"LabelReadHowYouCanContribute": "Zistite ako m\u00f4\u017eete prispie\u0165.",
|
"LabelReadHowYouCanContribute": "Zistite ako m\u00f4\u017eete prispie\u0165.",
|
||||||
"ButtonSubmit": "Submit",
|
"ButtonSubmit": "Potvrdi\u0165",
|
||||||
"ButtonCreate": "Vytvori\u0165",
|
"ButtonCreate": "Vytvori\u0165",
|
||||||
"LabelCustomCss": "Custom css:",
|
"LabelCustomCss": "Vlastn\u00e9 CSS:",
|
||||||
"LabelCustomCssHelp": "Apply your own custom css to the web interface.",
|
"LabelCustomCssHelp": "Apply your own custom css to the web interface.",
|
||||||
"LabelLocalHttpServerPortNumber": "Lok\u00e1lny HTTP port:",
|
"LabelLocalHttpServerPortNumber": "Lok\u00e1lny HTTP port:",
|
||||||
"LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
|
"LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
|
||||||
|
@ -478,7 +478,7 @@
|
||||||
"LabelEndingEpisodeNumberHelp": "Vy\u017eadovan\u00e9 iba pre s\u00fabory s viacer\u00fdmi epiz\u00f3dami",
|
"LabelEndingEpisodeNumberHelp": "Vy\u017eadovan\u00e9 iba pre s\u00fabory s viacer\u00fdmi epiz\u00f3dami",
|
||||||
"HeaderSupportTheTeam": "Podporte Emby t\u00edm",
|
"HeaderSupportTheTeam": "Podporte Emby t\u00edm",
|
||||||
"HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
|
"HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
|
||||||
"DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
|
"DonationNextStep": "Po dokon\u010den\u00ed sa vr\u00e1\u0165te a zadajte k\u013e\u00fa\u010d k Emby Premiere, ktor\u00fd obdr\u017e\u00edte emailom.",
|
||||||
"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:",
|
||||||
|
@ -504,9 +504,9 @@
|
||||||
"LabelCurrentEmailAddress": "Aktu\u00e1lna e-mail adresa",
|
"LabelCurrentEmailAddress": "Aktu\u00e1lna e-mail adresa",
|
||||||
"LabelCurrentEmailAddressHelp": "Aktu\u00e1lna e-mail adresa, na ktor\u00fa bol odoslan\u00fd nov\u00fd k\u013e\u00fa\u010d.",
|
"LabelCurrentEmailAddressHelp": "Aktu\u00e1lna e-mail adresa, na ktor\u00fa bol odoslan\u00fd nov\u00fd k\u013e\u00fa\u010d.",
|
||||||
"HeaderForgotKey": "Zabudol som k\u013e\u00fa\u010d",
|
"HeaderForgotKey": "Zabudol som k\u013e\u00fa\u010d",
|
||||||
"LabelEmailAddress": "Email address",
|
"LabelEmailAddress": "Emailov\u00e1 adresa",
|
||||||
"LabelSupporterEmailAddress": "The email address that was used to purchase the key.",
|
"LabelSupporterEmailAddress": "The email address that was used to purchase the key.",
|
||||||
"ButtonRetrieveKey": "Retrieve Key",
|
"ButtonRetrieveKey": "Z\u00edska\u0165 k\u013e\u00fa\u010d",
|
||||||
"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.",
|
||||||
|
@ -521,7 +521,7 @@
|
||||||
"LabelDefaultUser": "Predvolen\u00fd pou\u017e\u00edvate\u013e",
|
"LabelDefaultUser": "Predvolen\u00fd pou\u017e\u00edvate\u013e",
|
||||||
"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": "Nastavenia servera",
|
"HeaderServerSettings": "Nastavenia servera",
|
||||||
"HeaderRequireManualLogin": "Require manual username entry for:",
|
"HeaderRequireManualLogin": "Vy\u017eadova\u0165 ru\u010dn\u00e9 zadanie pou\u017e\u00edvate\u013esk\u00e9ho mena pre:",
|
||||||
"HeaderRequireManualLoginHelp": "When disabled, Emby apps may present a login screen with a visual selection of users.",
|
"HeaderRequireManualLoginHelp": "When disabled, Emby apps may present a login screen with a visual selection of users.",
|
||||||
"OptionOtherApps": "In\u00e9 aplik\u00e1cie",
|
"OptionOtherApps": "In\u00e9 aplik\u00e1cie",
|
||||||
"OptionMobileApps": "Mobiln\u00e9 aplik\u00e1cie",
|
"OptionMobileApps": "Mobiln\u00e9 aplik\u00e1cie",
|
||||||
|
@ -536,7 +536,7 @@
|
||||||
"LabelAvailableTokens": "Dostupn\u00e9 tokeny:",
|
"LabelAvailableTokens": "Dostupn\u00e9 tokeny:",
|
||||||
"AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.",
|
"AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.",
|
||||||
"OptionAllUsers": "V\u0161etci u\u017e\u00edvatelia",
|
"OptionAllUsers": "V\u0161etci u\u017e\u00edvatelia",
|
||||||
"OptionAdminUsers": "Administrators",
|
"OptionAdminUsers": "Administr\u00e1tori",
|
||||||
"OptionCustomUsers": "Vlastn\u00e9",
|
"OptionCustomUsers": "Vlastn\u00e9",
|
||||||
"ButtonArrowUp": "Hore",
|
"ButtonArrowUp": "Hore",
|
||||||
"ButtonArrowDown": "Dole",
|
"ButtonArrowDown": "Dole",
|
||||||
|
@ -578,7 +578,7 @@
|
||||||
"LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.",
|
"LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.",
|
||||||
"HeaderResponseProfile": "Response Profile",
|
"HeaderResponseProfile": "Response Profile",
|
||||||
"LabelType": "Typ:",
|
"LabelType": "Typ:",
|
||||||
"LabelProfileContainer": "Container:",
|
"LabelProfileContainer": "Obal",
|
||||||
"LabelProfileVideoCodecs": "Video kodeky:",
|
"LabelProfileVideoCodecs": "Video kodeky:",
|
||||||
"LabelProfileAudioCodecs": "Audio kodeky:",
|
"LabelProfileAudioCodecs": "Audio kodeky:",
|
||||||
"LabelProfileCodecs": "Kodeky:",
|
"LabelProfileCodecs": "Kodeky:",
|
||||||
|
@ -589,17 +589,17 @@
|
||||||
"OptionProfileVideo": "Video",
|
"OptionProfileVideo": "Video",
|
||||||
"OptionProfileAudio": "Audio",
|
"OptionProfileAudio": "Audio",
|
||||||
"OptionProfileVideoAudio": "Video Audio",
|
"OptionProfileVideoAudio": "Video Audio",
|
||||||
"OptionProfilePhoto": "Photo",
|
"OptionProfilePhoto": "Fotografie",
|
||||||
"LabelUserLibrary": "User library:",
|
"LabelUserLibrary": "User library:",
|
||||||
"LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.",
|
"LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.",
|
||||||
"OptionPlainStorageFolders": "Display all folders as plain storage folders",
|
"OptionPlainStorageFolders": "Display all folders as plain storage folders",
|
||||||
"OptionPlainStorageFoldersHelp": "If enabled, all folders are represented in DIDL as \"object.container.storageFolder\" instead of a more specific type, such as \"object.container.person.musicArtist\".",
|
"OptionPlainStorageFoldersHelp": "If enabled, all folders are represented in DIDL as \"object.container.storageFolder\" instead of a more specific type, such as \"object.container.person.musicArtist\".",
|
||||||
"OptionPlainVideoItems": "Display all videos as plain video items",
|
"OptionPlainVideoItems": "Zobrazi\u0165 v\u0161etky vide\u00e1 ako oby\u010dajn\u00e9 video polo\u017eky",
|
||||||
"OptionPlainVideoItemsHelp": "If enabled, all videos are represented in DIDL as \"object.item.videoItem\" instead of a more specific type, such as \"object.item.videoItem.movie\".",
|
"OptionPlainVideoItemsHelp": "If enabled, all videos are represented in DIDL as \"object.item.videoItem\" instead of a more specific type, such as \"object.item.videoItem.movie\".",
|
||||||
"LabelSupportedMediaTypes": "Podporovan\u00e9 typy m\u00e9di\u00ed:",
|
"LabelSupportedMediaTypes": "Podporovan\u00e9 typy m\u00e9di\u00ed:",
|
||||||
"HeaderIdentification": "Identification",
|
"HeaderIdentification": "Identification",
|
||||||
"TabDirectPlay": "Direct Play",
|
"TabDirectPlay": "Direct Play",
|
||||||
"TabContainers": "Containers",
|
"TabContainers": "Kontajnery",
|
||||||
"TabCodecs": "Kodeky",
|
"TabCodecs": "Kodeky",
|
||||||
"TabResponses": "Responses",
|
"TabResponses": "Responses",
|
||||||
"HeaderProfileInformation": "Profile Information",
|
"HeaderProfileInformation": "Profile Information",
|
||||||
|
@ -679,7 +679,7 @@
|
||||||
"MessageNoAvailablePlugins": "\u017diadne dostupn\u00e9 roz\u0161\u00edrenia.",
|
"MessageNoAvailablePlugins": "\u017diadne dostupn\u00e9 roz\u0161\u00edrenia.",
|
||||||
"LabelDisplayPluginsFor": "Zobrazi\u0165 roz\u0161\u00edrenia pre:",
|
"LabelDisplayPluginsFor": "Zobrazi\u0165 roz\u0161\u00edrenia pre:",
|
||||||
"PluginTabAppClassic": "Emby pre Windows Media Center",
|
"PluginTabAppClassic": "Emby pre Windows Media Center",
|
||||||
"HeaderTypeText": "Enter Text",
|
"HeaderTypeText": "Vlo\u017ete text",
|
||||||
"LabelTypeText": "Text",
|
"LabelTypeText": "Text",
|
||||||
"TabDisplay": "Display",
|
"TabDisplay": "Display",
|
||||||
"TabLanguages": "Jazyky",
|
"TabLanguages": "Jazyky",
|
||||||
|
@ -688,7 +688,7 @@
|
||||||
"OptionAuto": "Auto",
|
"OptionAuto": "Auto",
|
||||||
"OptionYes": "\u00c1no",
|
"OptionYes": "\u00c1no",
|
||||||
"OptionNo": "Nie",
|
"OptionNo": "Nie",
|
||||||
"HeaderOptions": "Options",
|
"HeaderOptions": "Mo\u017enosti",
|
||||||
"LabelHomeScreenSectionValue": "Sekcia dom\u00e1cej obrazovky {0}:",
|
"LabelHomeScreenSectionValue": "Sekcia dom\u00e1cej obrazovky {0}:",
|
||||||
"OptionResumablemedia": "Pokra\u010dova\u0165",
|
"OptionResumablemedia": "Pokra\u010dova\u0165",
|
||||||
"OptionLatestMedia": "Najnov\u0161ie m\u00e9di\u00e1",
|
"OptionLatestMedia": "Najnov\u0161ie m\u00e9di\u00e1",
|
||||||
|
@ -724,7 +724,7 @@
|
||||||
"OptionLibraryFolders": "Media folders",
|
"OptionLibraryFolders": "Media folders",
|
||||||
"TitleRemoteControl": "\u010eia\u013ekov\u00e9 ovl\u00e1danie",
|
"TitleRemoteControl": "\u010eia\u013ekov\u00e9 ovl\u00e1danie",
|
||||||
"OptionLatestTvRecordings": "Najnov\u0161ie nahr\u00e1vky",
|
"OptionLatestTvRecordings": "Najnov\u0161ie nahr\u00e1vky",
|
||||||
"LabelProtocolInfo": "Protocol info:",
|
"LabelProtocolInfo": "Info o protokole:",
|
||||||
"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 nastavenia",
|
"TabNfoSettings": "Nfo nastavenia",
|
||||||
"HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Metadata tab to configure options for your media types.",
|
"HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Metadata tab to configure options for your media types.",
|
||||||
|
@ -732,8 +732,8 @@
|
||||||
"LabelKodiMetadataUserHelp": "Enable this to save watch data to Nfo files for other applications to utilize.",
|
"LabelKodiMetadataUserHelp": "Enable this to save watch data to Nfo files for other applications to utilize.",
|
||||||
"LabelKodiMetadataDateFormat": "Release date format:",
|
"LabelKodiMetadataDateFormat": "Release date format:",
|
||||||
"LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
|
"LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
|
||||||
"LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
|
"LabelKodiMetadataSaveImagePaths": "Ulo\u017ei\u0165 cesty k obr\u00e1zkom do NFO s\u00faborov",
|
||||||
"LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
|
"LabelKodiMetadataSaveImagePathsHelp": "Je to odpor\u00fa\u010dan\u00e9 ak m\u00e1te obr\u00e1zky s n\u00e1zvami, ktor\u00e9 sa neriadia pravidlami Kodi.",
|
||||||
"LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
|
"LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
|
||||||
"LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
|
"LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
|
||||||
"OptionDisplayChannelsInline": "Display channels as media folders",
|
"OptionDisplayChannelsInline": "Display channels as media folders",
|
||||||
|
@ -742,12 +742,12 @@
|
||||||
"LabelDisplayCollectionsViewHelp": "This will create a separate view to display movie collections. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
|
"LabelDisplayCollectionsViewHelp": "This will create a separate view to display movie collections. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
|
||||||
"LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
|
"LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
|
||||||
"LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
|
"LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
|
||||||
"TabServices": "Services",
|
"TabServices": "Slu\u017eby",
|
||||||
"TabLogs": "Logs",
|
"TabLogs": "Logs",
|
||||||
"TabBranding": "Branding",
|
"TabBranding": "Branding",
|
||||||
"HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.",
|
"HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.",
|
||||||
"LabelLoginDisclaimer": "Login disclaimer:",
|
"LabelLoginDisclaimer": "Login disclaimer:",
|
||||||
"LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.",
|
"LabelLoginDisclaimerHelp": "Toto bude zobrazen\u00e9 na spodku prihlasovacej str\u00e1nky.",
|
||||||
"OptionList": "List",
|
"OptionList": "List",
|
||||||
"TabDashboard": "Dashboard",
|
"TabDashboard": "Dashboard",
|
||||||
"TitleServer": "Server",
|
"TitleServer": "Server",
|
||||||
|
@ -757,9 +757,9 @@
|
||||||
"LabelTranscodingTemporaryFiles": "Transcoding temporary files:",
|
"LabelTranscodingTemporaryFiles": "Transcoding temporary files:",
|
||||||
"HeaderLatestMusic": "Najnov\u0161ia hudba",
|
"HeaderLatestMusic": "Najnov\u0161ia hudba",
|
||||||
"HeaderBranding": "Branding",
|
"HeaderBranding": "Branding",
|
||||||
"HeaderApiKeys": "Api Keys",
|
"HeaderApiKeys": "K\u013e\u00fa\u010de API",
|
||||||
"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": "K\u013e\u00fa\u010d API",
|
||||||
"HeaderApp": "App",
|
"HeaderApp": "App",
|
||||||
"HeaderDevice": "Zariadenie",
|
"HeaderDevice": "Zariadenie",
|
||||||
"HeaderUser": "User",
|
"HeaderUser": "User",
|
||||||
|
@ -777,7 +777,7 @@
|
||||||
"LabelPageSize": "Item limit:",
|
"LabelPageSize": "Item limit:",
|
||||||
"LabelPath": "Path:",
|
"LabelPath": "Path:",
|
||||||
"LabelView": "View:",
|
"LabelView": "View:",
|
||||||
"TabUsers": "Users",
|
"TabUsers": "U\u017e\u00edvatelia",
|
||||||
"HeaderFeatures": "Features",
|
"HeaderFeatures": "Features",
|
||||||
"HeaderAdvanced": "Pokro\u010dil\u00e9",
|
"HeaderAdvanced": "Pokro\u010dil\u00e9",
|
||||||
"ButtonSync": "Sync",
|
"ButtonSync": "Sync",
|
||||||
|
@ -819,7 +819,7 @@
|
||||||
"OptionReportSongs": "Songs",
|
"OptionReportSongs": "Songs",
|
||||||
"OptionReportSeries": "Series",
|
"OptionReportSeries": "Series",
|
||||||
"OptionReportSeasons": "Sez\u00f3ny",
|
"OptionReportSeasons": "Sez\u00f3ny",
|
||||||
"OptionReportTrailers": "Trailers",
|
"OptionReportTrailers": "Uk\u00e1\u017eky",
|
||||||
"OptionReportMusicVideos": "Hudobn\u00e9 vide\u00e1",
|
"OptionReportMusicVideos": "Hudobn\u00e9 vide\u00e1",
|
||||||
"OptionReportMovies": "Filmy",
|
"OptionReportMovies": "Filmy",
|
||||||
"OptionReportHomeVideos": "Dom\u00e1ce vide\u00e1",
|
"OptionReportHomeVideos": "Dom\u00e1ce vide\u00e1",
|
||||||
|
@ -857,13 +857,13 @@
|
||||||
"HeaderViewOrder": "Poradie zobrazenia",
|
"HeaderViewOrder": "Poradie zobrazenia",
|
||||||
"ButtonResetEasyPassword": "Reset easy pin code",
|
"ButtonResetEasyPassword": "Reset easy pin code",
|
||||||
"HeaderPersonInfo": "Person Info",
|
"HeaderPersonInfo": "Person Info",
|
||||||
"HeaderConfirmDeletion": "Confirm Deletion",
|
"HeaderConfirmDeletion": "Potvrdi\u0165 zmazanie",
|
||||||
"LabelAlbumArtist": "Album artist:",
|
"LabelAlbumArtist": "Album artist:",
|
||||||
"LabelAlbumArtists": "Album artists:",
|
"LabelAlbumArtists": "Album artists:",
|
||||||
"LabelAlbum": "Album:",
|
"LabelAlbum": "Album:",
|
||||||
"LabelCommunityRating": "Hodnotenie komunity:",
|
"LabelCommunityRating": "Hodnotenie komunity:",
|
||||||
"LabelReleaseDate": "D\u00e1tum vydania:",
|
"LabelReleaseDate": "D\u00e1tum vydania:",
|
||||||
"LabelEndDate": "End date:",
|
"LabelEndDate": "D\u00e1tum ukon\u010denia:",
|
||||||
"LabelAirDate": "Air days:",
|
"LabelAirDate": "Air days:",
|
||||||
"LabelAirTime:": "Air time:",
|
"LabelAirTime:": "Air time:",
|
||||||
"LabelRuntimeMinutes": "D\u013a\u017eka (min\u00faty):",
|
"LabelRuntimeMinutes": "D\u013a\u017eka (min\u00faty):",
|
||||||
|
@ -879,11 +879,11 @@
|
||||||
"OptionDirector": "Re\u017eis\u00e9r",
|
"OptionDirector": "Re\u017eis\u00e9r",
|
||||||
"OptionProducer": "Producent",
|
"OptionProducer": "Producent",
|
||||||
"LabelAirDays": "Air days:",
|
"LabelAirDays": "Air days:",
|
||||||
"LabelAirTime": "Air time:",
|
"LabelAirTime": "\u010cas vysielania:",
|
||||||
"HeaderMediaInfo": "Media Info",
|
"HeaderMediaInfo": "Inform\u00e1cie o m\u00e9diu",
|
||||||
"HeaderPhotoInfo": "Inform\u00e1cie o fotke",
|
"HeaderPhotoInfo": "Inform\u00e1cie o fotke",
|
||||||
"HeaderInstall": "In\u0161talova\u0165",
|
"HeaderInstall": "In\u0161talova\u0165",
|
||||||
"LabelSelectVersionToInstall": "Select version to install:",
|
"LabelSelectVersionToInstall": "Vyberte verziu, ktor\u00fa chcete nain\u0161talova\u0165:",
|
||||||
"LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
|
"LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
|
||||||
"MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
|
"MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
|
||||||
"MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
|
"MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
|
||||||
|
@ -902,10 +902,10 @@
|
||||||
"LabelConnectUserName": "Emby username or email address:",
|
"LabelConnectUserName": "Emby username or email address:",
|
||||||
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||||
"ButtonLearnMoreAboutEmbyConnect": "Zistite viac o Emby Connect",
|
"ButtonLearnMoreAboutEmbyConnect": "Zistite viac o Emby Connect",
|
||||||
"LabelExternalPlayers": "External players:",
|
"LabelExternalPlayers": "Extern\u00e9 prehr\u00e1va\u010de:",
|
||||||
"LabelNativeExternalPlayersHelp": "Play videos using external players.",
|
"LabelNativeExternalPlayersHelp": "Play videos using external players.",
|
||||||
"HeaderSubtitleProfile": "Subtitle Profile",
|
"HeaderSubtitleProfile": "Profil titulkov",
|
||||||
"HeaderSubtitleProfiles": "Subtitle Profiles",
|
"HeaderSubtitleProfiles": "Profily titulkov",
|
||||||
"HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.",
|
"HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.",
|
||||||
"LabelFormat": "Form\u00e1t:",
|
"LabelFormat": "Form\u00e1t:",
|
||||||
"LabelMethod": "Method:",
|
"LabelMethod": "Method:",
|
||||||
|
@ -924,18 +924,18 @@
|
||||||
"TitlePlayback": "Playback",
|
"TitlePlayback": "Playback",
|
||||||
"LabelEnableCinemaModeFor": "Povoli\u0165 kino m\u00f3d pre:",
|
"LabelEnableCinemaModeFor": "Povoli\u0165 kino m\u00f3d pre:",
|
||||||
"CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.",
|
"CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.",
|
||||||
"OptionTrailersFromMyMovies": "Include trailers from movies in my library",
|
"OptionTrailersFromMyMovies": "Zahrn\u00fa\u0165 uk\u00e1\u017eky z filmov v mojej kni\u017enici",
|
||||||
"OptionUpcomingMoviesInTheaters": "Include trailers from new and upcoming movies",
|
"OptionUpcomingMoviesInTheaters": "Zahrn\u00fa\u0165 uk\u00e1\u017eky z nov\u00fdch a pripravovan\u00fdch filmov",
|
||||||
"LabelLimitIntrosToUnwatchedContent": "Only play trailers from unwatched content",
|
"LabelLimitIntrosToUnwatchedContent": "Only play trailers from unwatched content",
|
||||||
"LabelEnableIntroParentalControl": "Enable smart parental control",
|
"LabelEnableIntroParentalControl": "Povoli\u0165 inteligentn\u00fa rodi\u010dovsk\u00fa kontrolu",
|
||||||
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
|
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
|
||||||
"LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
|
"LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
|
||||||
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
|
"OptionTrailersFromMyMoviesHelp": "Vy\u017eaduje nastavenie lok\u00e1lnych uk\u00e1\u017eok.",
|
||||||
"LabelCustomIntrosPath": "Custom intros path:",
|
"LabelCustomIntrosPath": "Custom intros path:",
|
||||||
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
|
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
|
||||||
"LabelSelectInternetTrailersForCinemaMode": "Internet trailers:",
|
"LabelSelectInternetTrailersForCinemaMode": "Internetov\u00e9 uk\u00e1\u017eky:",
|
||||||
"OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray",
|
"OptionUpcomingDvdMovies": "Zahrn\u00fa\u0165 uk\u00e1\u017eky z nov\u00fdch a pripravovan\u00fdch filmov na DVD & Blu-ray",
|
||||||
"OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix",
|
"OptionUpcomingStreamingMovies": "Zahrn\u00fa\u0165 uk\u00e1\u017eky z nov\u00fdch a pripravovan\u00fdch filmov na Netflixe",
|
||||||
"CinemaModeConfigurationHelp2": "Emby apps will have a setting to enable or disable cinema mode. TV apps enable cinema mode by default.",
|
"CinemaModeConfigurationHelp2": "Emby apps will have a setting to enable or disable cinema mode. TV apps enable cinema mode by default.",
|
||||||
"LabelEnableCinemaMode": "Povoli\u0165 kino m\u00f3d",
|
"LabelEnableCinemaMode": "Povoli\u0165 kino m\u00f3d",
|
||||||
"HeaderCinemaMode": "Kino m\u00f3d",
|
"HeaderCinemaMode": "Kino m\u00f3d",
|
||||||
|
@ -956,7 +956,7 @@
|
||||||
"LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.",
|
"LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.",
|
||||||
"LabelCustomDeviceDisplayName": "Display name:",
|
"LabelCustomDeviceDisplayName": "Display name:",
|
||||||
"LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.",
|
"LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.",
|
||||||
"HeaderInviteUser": "Invite User",
|
"HeaderInviteUser": "Pozva\u0165 pou\u017e\u00edvate\u013ea",
|
||||||
"LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
|
"LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
|
||||||
"HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Emby Connect.",
|
"HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Emby Connect.",
|
||||||
"ButtonSendInvitation": "Posla\u0165 pozv\u00e1nku",
|
"ButtonSendInvitation": "Posla\u0165 pozv\u00e1nku",
|
||||||
|
@ -969,13 +969,13 @@
|
||||||
"LabelAccessDay": "De\u0148 v t\u00fd\u017edni:",
|
"LabelAccessDay": "De\u0148 v t\u00fd\u017edni:",
|
||||||
"LabelAccessStart": "Start time:",
|
"LabelAccessStart": "Start time:",
|
||||||
"LabelAccessEnd": "End time:",
|
"LabelAccessEnd": "End time:",
|
||||||
"HeaderSchedule": "Schedule",
|
"HeaderSchedule": "Rozvrh",
|
||||||
"OptionEveryday": "Ka\u017ed\u00fd de\u0148",
|
"OptionEveryday": "Ka\u017ed\u00fd de\u0148",
|
||||||
"OptionWeekdays": "Pracovn\u00e9 dni",
|
"OptionWeekdays": "Pracovn\u00e9 dni",
|
||||||
"OptionWeekends": "V\u00edkendy",
|
"OptionWeekends": "V\u00edkendy",
|
||||||
"MessageProfileInfoSynced": "User profile information synced with Emby Connect.",
|
"MessageProfileInfoSynced": "User profile information synced with Emby Connect.",
|
||||||
"HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
|
"HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
|
||||||
"ButtonTrailer": "Trailer",
|
"ButtonTrailer": "Uk\u00e1\u017eka",
|
||||||
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
|
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
|
||||||
"HeaderNewUsers": "Nov\u00ed pou\u017e\u00edvatelia",
|
"HeaderNewUsers": "Nov\u00ed pou\u017e\u00edvatelia",
|
||||||
"ButtonSignUp": "Prihl\u00e1si\u0165 sa",
|
"ButtonSignUp": "Prihl\u00e1si\u0165 sa",
|
||||||
|
@ -1011,7 +1011,7 @@
|
||||||
"NameSeasonUnknown": "Nezn\u00e1ma sez\u00f3na",
|
"NameSeasonUnknown": "Nezn\u00e1ma sez\u00f3na",
|
||||||
"NameSeasonNumber": "Season {0}",
|
"NameSeasonNumber": "Season {0}",
|
||||||
"LabelNewUserNameHelp": "Pou\u017e\u00edvate\u013esk\u00e9 men\u00e1 m\u00f4\u017eu obsahova\u0165 p\u00edsmen\u00e1 (a-z), \u010d\u00edsla (0-9), poml\u010dky (-), pod\u010diarkovn\u00edky (_), apostrofy (') a bodky (.)",
|
"LabelNewUserNameHelp": "Pou\u017e\u00edvate\u013esk\u00e9 men\u00e1 m\u00f4\u017eu obsahova\u0165 p\u00edsmen\u00e1 (a-z), \u010d\u00edsla (0-9), poml\u010dky (-), pod\u010diarkovn\u00edky (_), apostrofy (') a bodky (.)",
|
||||||
"TabJobs": "Jobs",
|
"TabJobs": "\u00dalohy",
|
||||||
"TabSyncJobs": "Sync Jobs",
|
"TabSyncJobs": "Sync Jobs",
|
||||||
"HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled",
|
"HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled",
|
||||||
"MessageReenableUser": "See below to reenable",
|
"MessageReenableUser": "See below to reenable",
|
||||||
|
@ -1040,16 +1040,16 @@
|
||||||
"EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.",
|
"EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.",
|
||||||
"ButtonSkip": "Presko\u010di\u0165",
|
"ButtonSkip": "Presko\u010di\u0165",
|
||||||
"TextConnectToServerManually": "Connect to server manually",
|
"TextConnectToServerManually": "Connect to server manually",
|
||||||
"ButtonSignInWithConnect": "Sign in with Emby Connect",
|
"ButtonSignInWithConnect": "Prihl\u00e1si\u0165 sa s Emby Connect",
|
||||||
"ButtonConnect": "Pripoji\u0165",
|
"ButtonConnect": "Pripoji\u0165",
|
||||||
"LabelServerHost": "Host:",
|
"LabelServerHost": "Host:",
|
||||||
"LabelServerHostHelp": "192.168.1.100 alebo https:\/\/myserver.com",
|
"LabelServerHostHelp": "192.168.1.100 alebo https:\/\/myserver.com",
|
||||||
"LabelServerPort": "Port:",
|
"LabelServerPort": "Port:",
|
||||||
"HeaderNewServer": "Nov\u00fd server",
|
"HeaderNewServer": "Nov\u00fd server",
|
||||||
"ButtonChangeServer": "Change Server",
|
"ButtonChangeServer": "Zmeni\u0165 server",
|
||||||
"HeaderConnectToServer": "Propoji\u0165 sa k serveru",
|
"HeaderConnectToServer": "Propoji\u0165 sa k serveru",
|
||||||
"OptionReportList": "List View",
|
"OptionReportList": "List View",
|
||||||
"OptionReportStatistics": "Statistics",
|
"OptionReportStatistics": "\u0160tatistiky",
|
||||||
"OptionReportGrouping": "Grouping",
|
"OptionReportGrouping": "Grouping",
|
||||||
"HeaderExport": "Export",
|
"HeaderExport": "Export",
|
||||||
"HeaderColumns": "St\u013apce",
|
"HeaderColumns": "St\u013apce",
|
||||||
|
@ -1065,13 +1065,13 @@
|
||||||
"HeaderDisplay": "Display",
|
"HeaderDisplay": "Display",
|
||||||
"HeaderNavigation": "Navig\u00e1cia",
|
"HeaderNavigation": "Navig\u00e1cia",
|
||||||
"OptionEnableAutomaticServerUpdates": "Povoli\u0165 automatick\u00e9 aktualiz\u00e1cie servera",
|
"OptionEnableAutomaticServerUpdates": "Povoli\u0165 automatick\u00e9 aktualiz\u00e1cie servera",
|
||||||
"OptionOtherTrailers": "Include trailers from older movies",
|
"OptionOtherTrailers": "Zahrn\u00fa\u0165 uk\u00e1\u017eky zo star\u0161\u00edch filmov",
|
||||||
"HeaderOverview": "Overview",
|
"HeaderOverview": "Overview",
|
||||||
"HeaderType": "Typ",
|
"HeaderType": "Typ",
|
||||||
"OptionReportActivities": "Activities Log",
|
"OptionReportActivities": "Activities Log",
|
||||||
"HeaderTunerDevices": "Tuner Devices",
|
"HeaderTunerDevices": "Tuner Devices",
|
||||||
"HeaderAddDevice": "Prida\u0165 zariadenie",
|
"HeaderAddDevice": "Prida\u0165 zariadenie",
|
||||||
"HeaderExternalServices": "External Services",
|
"HeaderExternalServices": "Extern\u00e9 slu\u017eby",
|
||||||
"LabelTunerIpAddress": "IP adresa tunera:",
|
"LabelTunerIpAddress": "IP adresa tunera:",
|
||||||
"TabExternalServices": "Extern\u00e9 slu\u017eby",
|
"TabExternalServices": "Extern\u00e9 slu\u017eby",
|
||||||
"HeaderGuideProviders": "Guide Providers",
|
"HeaderGuideProviders": "Guide Providers",
|
||||||
|
@ -1108,7 +1108,7 @@
|
||||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
||||||
"HeaderSubtitles": "Subtitles",
|
"HeaderSubtitles": "Subtitles",
|
||||||
"HeaderVideos": "Vide\u00e1",
|
"HeaderVideos": "Vide\u00e1",
|
||||||
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
"LabelHardwareAccelerationType": "Hardv\u00e9rov\u00e1 akceler\u00e1cia:",
|
||||||
"LabelHardwareAccelerationTypeHelp": "Dostupn\u00e9 iba na podporovan\u00fdch syst\u00e9moch.",
|
"LabelHardwareAccelerationTypeHelp": "Dostupn\u00e9 iba na podporovan\u00fdch syst\u00e9moch.",
|
||||||
"ButtonServerDashboard": "Server Dashboard",
|
"ButtonServerDashboard": "Server Dashboard",
|
||||||
"HeaderAdmin": "Admin",
|
"HeaderAdmin": "Admin",
|
||||||
|
@ -1123,16 +1123,16 @@
|
||||||
"LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.",
|
"LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.",
|
||||||
"OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format",
|
"OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format",
|
||||||
"OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MKV for easy playback on your devices.",
|
"OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MKV for easy playback on your devices.",
|
||||||
"FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.",
|
"FeatureRequiresEmbyPremiere": "T\u00e1to funkcia vy\u017eaduje akt\u00edvne predplatn\u00e9 Emby Premiere.",
|
||||||
"OptionPlayNextEpisodeAutomatically": "Automaticky prehra\u0165 \u010fal\u0161iu epiz\u00f3du",
|
"OptionPlayNextEpisodeAutomatically": "Automaticky prehra\u0165 \u010fal\u0161iu epiz\u00f3du",
|
||||||
"OptionDownloadImagesInAdvance": "Download images in advance",
|
"OptionDownloadImagesInAdvance": "S\u0165ahova\u0165 obr\u00e1zky dopredu",
|
||||||
"SettingsSaved": "Nastavenia ulo\u017een\u00e9.",
|
"SettingsSaved": "Nastavenia ulo\u017een\u00e9.",
|
||||||
"OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.",
|
"OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.",
|
||||||
"Users": "U\u017e\u00edvatelia",
|
"Users": "U\u017e\u00edvatelia",
|
||||||
"Delete": "Zmaza\u0165",
|
"Delete": "Zmaza\u0165",
|
||||||
"Password": "Heslo",
|
"Password": "Heslo",
|
||||||
"DeleteImage": "Zmaza\u0165 obr\u00e1zok",
|
"DeleteImage": "Zmaza\u0165 obr\u00e1zok",
|
||||||
"MessageThankYouForSupporting": "Thank you for supporting Emby.",
|
"MessageThankYouForSupporting": "\u010eakujeme, \u017ee podporujete Emby.",
|
||||||
"DeleteImageConfirmation": "Ste si ist\u00fd, \u017ee chcete zmaza\u0165 tento obr\u00e1zok?",
|
"DeleteImageConfirmation": "Ste si ist\u00fd, \u017ee chcete zmaza\u0165 tento obr\u00e1zok?",
|
||||||
"FileReadCancelled": "The file read has been canceled.",
|
"FileReadCancelled": "The file read has been canceled.",
|
||||||
"FileNotFound": "S\u00fabor nen\u00e1jden\u00fd.",
|
"FileNotFound": "S\u00fabor nen\u00e1jden\u00fd.",
|
||||||
|
@ -1152,13 +1152,13 @@
|
||||||
"NoPluginConfigurationMessage": "Toto roz\u0161\u00edrenie nem\u00e1 \u017eiadne nastavenia.",
|
"NoPluginConfigurationMessage": "Toto roz\u0161\u00edrenie nem\u00e1 \u017eiadne nastavenia.",
|
||||||
"NoPluginsInstalledMessage": "Nem\u00e1te nain\u0161talovan\u00e9 \u017eiadne roz\u0161\u00edrenie.",
|
"NoPluginsInstalledMessage": "Nem\u00e1te nain\u0161talovan\u00e9 \u017eiadne roz\u0161\u00edrenie.",
|
||||||
"BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.",
|
"BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.",
|
||||||
"HeaderNewApiKey": "New Api Key",
|
"HeaderNewApiKey": "Nov\u00fd k\u013e\u00fa\u010d API",
|
||||||
"LabelAppName": "App name",
|
"LabelAppName": "N\u00e1zov apky",
|
||||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
"LabelAppNameExample": "Pr\u00edklad: Sickbeard, NzbDrone",
|
||||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||||
"MessageKeyEmailedTo": "Key emailed to {0}.",
|
"MessageKeyEmailedTo": "Key emailed to {0}.",
|
||||||
"MessageKeysLinked": "Keys linked.",
|
"MessageKeysLinked": "Keys linked.",
|
||||||
"HeaderConfirmation": "Confirmation",
|
"HeaderConfirmation": "Potvrdenie",
|
||||||
"MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
|
"MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
|
||||||
"MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
|
"MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
|
||||||
"TextEnjoyBonusFeatures": "Enjoy Bonus Features",
|
"TextEnjoyBonusFeatures": "Enjoy Bonus Features",
|
||||||
|
@ -1167,12 +1167,12 @@
|
||||||
"ButtonSelectView": "Select view",
|
"ButtonSelectView": "Select view",
|
||||||
"HeaderSelectDate": "Vybra\u0165 d\u00e1tum",
|
"HeaderSelectDate": "Vybra\u0165 d\u00e1tum",
|
||||||
"ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}",
|
"ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}",
|
||||||
"LabelFromHelp": "Example: {0} (on the server)",
|
"LabelFromHelp": "Pr\u00edklad: {0} (na serveri)",
|
||||||
"HeaderMyMedia": "Moje M\u00e9dia",
|
"HeaderMyMedia": "Moje M\u00e9dia",
|
||||||
"MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
|
"MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
|
||||||
"HeaderConfirmRemoveUser": "Odobra\u0165 pou\u017e\u00edvate\u013ea",
|
"HeaderConfirmRemoveUser": "Odobra\u0165 pou\u017e\u00edvate\u013ea",
|
||||||
"ValueTimeLimitSingleHour": "\u010casov\u00fd limit: 1 hodina",
|
"ValueTimeLimitSingleHour": "\u010casov\u00fd limit: 1 hodina",
|
||||||
"ValueTimeLimitMultiHour": "Time limit: {0} hours",
|
"ValueTimeLimitMultiHour": "\u010casov\u00fd limit: {0} hod\u00edn",
|
||||||
"PluginCategoryGeneral": "V\u0161eobecn\u00e9",
|
"PluginCategoryGeneral": "V\u0161eobecn\u00e9",
|
||||||
"PluginCategoryContentProvider": "Poskytovatelia obsahu",
|
"PluginCategoryContentProvider": "Poskytovatelia obsahu",
|
||||||
"PluginCategoryScreenSaver": "\u0160etri\u010de obrazovky",
|
"PluginCategoryScreenSaver": "\u0160etri\u010de obrazovky",
|
||||||
|
@ -1187,16 +1187,16 @@
|
||||||
"ValueDateCreated": "Date created: {0}",
|
"ValueDateCreated": "Date created: {0}",
|
||||||
"LabelArtist": "Umelec",
|
"LabelArtist": "Umelec",
|
||||||
"LabelMovie": "Film",
|
"LabelMovie": "Film",
|
||||||
"LabelMusicVideo": "Music Video",
|
"LabelMusicVideo": "Hudobn\u00e9 video",
|
||||||
"LabelEpisode": "Epiz\u00f3da",
|
"LabelEpisode": "Epiz\u00f3da",
|
||||||
"Series": "Series",
|
"Series": "Series",
|
||||||
"LabelStopping": "Stopping",
|
"LabelStopping": "Stopping",
|
||||||
"LabelCancelled": "Zru\u0161en\u00e9",
|
"LabelCancelled": "Zru\u0161en\u00e9",
|
||||||
"ButtonDownload": "Download",
|
"ButtonDownload": "Stiahnu\u0165",
|
||||||
"LabelCollection": "Zbierka",
|
"LabelCollection": "Zbierka",
|
||||||
"HeaderDevices": "Zariadenia",
|
"HeaderDevices": "Zariadenia",
|
||||||
"ButtonScheduledTasks": "Napl\u00e1novan\u00e9 \u00falohy",
|
"ButtonScheduledTasks": "Napl\u00e1novan\u00e9 \u00falohy",
|
||||||
"MessageItemsAdded": "Items added",
|
"MessageItemsAdded": "Polo\u017eky pridan\u00e9",
|
||||||
"HeaderSelectCertificatePath": "Select Certificate Path",
|
"HeaderSelectCertificatePath": "Select Certificate Path",
|
||||||
"HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to Emby DVR, offline media, premium plugins, and more. {0}Learn more{1}.",
|
"HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to Emby DVR, offline media, premium plugins, and more. {0}Learn more{1}.",
|
||||||
"HeaderWelcomeToProjectServerDashboard": "Vitajte v pr\u00edstrojovej doske Emby Servera",
|
"HeaderWelcomeToProjectServerDashboard": "Vitajte v pr\u00edstrojovej doske Emby Servera",
|
||||||
|
@ -1206,7 +1206,7 @@
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Chcem vidie\u0165 \u010do je nov\u00e9",
|
"ButtonTakeTheTourToSeeWhatsNew": "Chcem vidie\u0165 \u010do je nov\u00e9",
|
||||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.",
|
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.",
|
||||||
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||||
"HeaderSelectDevices": "Select Devices",
|
"HeaderSelectDevices": "Vyberte zariadenia",
|
||||||
"ButtonReenable": "Re-enable",
|
"ButtonReenable": "Re-enable",
|
||||||
"LabelAbortedByServerShutdown": "(Aborted by server shutdown)",
|
"LabelAbortedByServerShutdown": "(Aborted by server shutdown)",
|
||||||
"LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.",
|
"LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.",
|
||||||
|
@ -1217,14 +1217,14 @@
|
||||||
"LabelVersionInstalled": "{0} installed",
|
"LabelVersionInstalled": "{0} installed",
|
||||||
"LabelNumberReviews": "{0} Reviews",
|
"LabelNumberReviews": "{0} Reviews",
|
||||||
"LabelFree": "Zadarmo",
|
"LabelFree": "Zadarmo",
|
||||||
"HeaderSelectAudio": "Select Audio",
|
"HeaderSelectAudio": "Vyberte audio",
|
||||||
"HeaderSelectSubtitles": "Vybra\u0165 titulky",
|
"HeaderSelectSubtitles": "Vybra\u0165 titulky",
|
||||||
"LabelDefaultStream": "(Default)",
|
"LabelDefaultStream": "(Default)",
|
||||||
"LabelForcedStream": "(Forced)",
|
"LabelForcedStream": "(Forced)",
|
||||||
"LabelDefaultForcedStream": "(Default\/Forced)",
|
"LabelDefaultForcedStream": "(Default\/Forced)",
|
||||||
"LabelUnknownLanguage": "Nezn\u00e1my jazyk",
|
"LabelUnknownLanguage": "Nezn\u00e1my jazyk",
|
||||||
"ButtonMute": "St\u00ed\u0161i\u0165",
|
"ButtonMute": "St\u00ed\u0161i\u0165",
|
||||||
"ButtonUnmute": "Unmute",
|
"ButtonUnmute": "Zapn\u00fa\u0165 zvuk",
|
||||||
"ButtonPlaylist": "Playlist",
|
"ButtonPlaylist": "Playlist",
|
||||||
"LabelEnabled": "Povolen\u00e9",
|
"LabelEnabled": "Povolen\u00e9",
|
||||||
"LabelDisabled": "Zak\u00e1zan\u00e9",
|
"LabelDisabled": "Zak\u00e1zan\u00e9",
|
||||||
|
@ -1234,7 +1234,7 @@
|
||||||
"HeaderLoginFailure": "Login Failure",
|
"HeaderLoginFailure": "Login Failure",
|
||||||
"RecommendationBecauseYouLike": "Preto\u017ee sa v\u00e1m p\u00e1\u010di {0}",
|
"RecommendationBecauseYouLike": "Preto\u017ee sa v\u00e1m p\u00e1\u010di {0}",
|
||||||
"RecommendationBecauseYouWatched": "Preto\u017ee ste sledovali {0}",
|
"RecommendationBecauseYouWatched": "Preto\u017ee ste sledovali {0}",
|
||||||
"RecommendationDirectedBy": "Directed by {0}",
|
"RecommendationDirectedBy": "Re\u017e\u00edroval {0}",
|
||||||
"RecommendationStarring": "V hlavnej \u00falohe {0}",
|
"RecommendationStarring": "V hlavnej \u00falohe {0}",
|
||||||
"HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation",
|
"HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation",
|
||||||
"MessageRecordingCancelled": "Nahr\u00e1vanie zru\u0161en\u00e9.",
|
"MessageRecordingCancelled": "Nahr\u00e1vanie zru\u0161en\u00e9.",
|
||||||
|
@ -1245,7 +1245,7 @@
|
||||||
"OptionWeekend": "V\u00edkendy",
|
"OptionWeekend": "V\u00edkendy",
|
||||||
"OptionWeekday": "Pracovn\u00e9 dni",
|
"OptionWeekday": "Pracovn\u00e9 dni",
|
||||||
"LiveTvUpdateAvailable": "(Dostupn\u00e1 aktualiz\u00e1cia)",
|
"LiveTvUpdateAvailable": "(Dostupn\u00e1 aktualiz\u00e1cia)",
|
||||||
"LabelVersionUpToDate": "Up to date!",
|
"LabelVersionUpToDate": "Aktu\u00e1lne!",
|
||||||
"ButtonResetTuner": "Reset tuner",
|
"ButtonResetTuner": "Reset tuner",
|
||||||
"HeaderResetTuner": "Reset Tuner",
|
"HeaderResetTuner": "Reset Tuner",
|
||||||
"MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.",
|
"MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.",
|
||||||
|
@ -1265,7 +1265,7 @@
|
||||||
"HeaderFavoriteEpisodes": "Ob\u013e\u00faben\u00e9 epiz\u00f3dy",
|
"HeaderFavoriteEpisodes": "Ob\u013e\u00faben\u00e9 epiz\u00f3dy",
|
||||||
"HeaderFavoriteGames": "Ob\u013e\u00faben\u00e9 hry",
|
"HeaderFavoriteGames": "Ob\u013e\u00faben\u00e9 hry",
|
||||||
"HeaderConfirmProfileDeletion": "Confirm Profile Deletion",
|
"HeaderConfirmProfileDeletion": "Confirm Profile Deletion",
|
||||||
"MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?",
|
"MessageConfirmProfileDeletion": "Ste si ist\u00fd, \u017ee chcete zmaza\u0165 tento profil?",
|
||||||
"HeaderSelectServerCachePath": "Select Server Cache Path",
|
"HeaderSelectServerCachePath": "Select Server Cache Path",
|
||||||
"HeaderSelectTranscodingPath": "Select Transcoding Temporary Path",
|
"HeaderSelectTranscodingPath": "Select Transcoding Temporary Path",
|
||||||
"HeaderSelectMetadataPath": "Select Metadata Path",
|
"HeaderSelectMetadataPath": "Select Metadata Path",
|
||||||
|
@ -1283,9 +1283,9 @@
|
||||||
"HeaderShutdown": "Vypn\u00fa\u0165",
|
"HeaderShutdown": "Vypn\u00fa\u0165",
|
||||||
"MessageConfirmRestart": "Ste si ist\u00fd, \u017ee chcete re\u0161tartova\u0165 Emby Server?",
|
"MessageConfirmRestart": "Ste si ist\u00fd, \u017ee chcete re\u0161tartova\u0165 Emby Server?",
|
||||||
"MessageConfirmShutdown": "Ste si ist\u00fd, \u017ee chcete vypn\u00fa\u0165 Emby Server?",
|
"MessageConfirmShutdown": "Ste si ist\u00fd, \u017ee chcete vypn\u00fa\u0165 Emby Server?",
|
||||||
"ValueItemCount": "{0} item",
|
"ValueItemCount": "{0} polo\u017eka",
|
||||||
"ValueItemCountPlural": "{0} items",
|
"ValueItemCountPlural": "{0} polo\u017eiek",
|
||||||
"NewVersionOfSomethingAvailable": "A new version of {0} is available!",
|
"NewVersionOfSomethingAvailable": "Nov\u00e1 verzia {0} je dostupn\u00e1!",
|
||||||
"VersionXIsAvailableForDownload": "Version {0} is now available for download.",
|
"VersionXIsAvailableForDownload": "Version {0} is now available for download.",
|
||||||
"LabelVersionNumber": "Verzia {0}",
|
"LabelVersionNumber": "Verzia {0}",
|
||||||
"LabelPlayMethodTranscoding": "Transcoding",
|
"LabelPlayMethodTranscoding": "Transcoding",
|
||||||
|
@ -1297,7 +1297,7 @@
|
||||||
"LabelRemoteAccessUrl": "Vzdialen\u00fd (WAN) pr\u00edstup: {0}",
|
"LabelRemoteAccessUrl": "Vzdialen\u00fd (WAN) pr\u00edstup: {0}",
|
||||||
"LabelRunningOnPort": "Be\u017e\u00ed na HTTP porte {0}.",
|
"LabelRunningOnPort": "Be\u017e\u00ed na HTTP porte {0}.",
|
||||||
"LabelRunningOnPorts": "Be\u017e\u00ed na HTTP porte {0} a na HTTPS porte {1}.",
|
"LabelRunningOnPorts": "Be\u017e\u00ed na HTTP porte {0} a na HTTPS porte {1}.",
|
||||||
"HeaderLatestFromChannel": "Latest from {0}",
|
"HeaderLatestFromChannel": "Najnov\u0161ie od {0}",
|
||||||
"ButtonRemoteControl": "\u010eia\u013ekov\u00e9 ovl\u00e1danie",
|
"ButtonRemoteControl": "\u010eia\u013ekov\u00e9 ovl\u00e1danie",
|
||||||
"HeaderLatestTvRecordings": "Latest Recordings",
|
"HeaderLatestTvRecordings": "Latest Recordings",
|
||||||
"LabelCurrentPath": "Current path:",
|
"LabelCurrentPath": "Current path:",
|
||||||
|
@ -1335,7 +1335,7 @@
|
||||||
"MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.",
|
"MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.",
|
||||||
"HeaderConfirmRevokeApiKey": "Revoke Api Key",
|
"HeaderConfirmRevokeApiKey": "Revoke Api Key",
|
||||||
"ValueContainer": "Container: {0}",
|
"ValueContainer": "Container: {0}",
|
||||||
"ValueAudioCodec": "Audio Codec: {0}",
|
"ValueAudioCodec": "Audio kodek: {0}",
|
||||||
"ValueVideoCodec": "Video kodeky: {0}",
|
"ValueVideoCodec": "Video kodeky: {0}",
|
||||||
"ValueCodec": "Video kodeky: {0}",
|
"ValueCodec": "Video kodeky: {0}",
|
||||||
"ValueConditions": "Conditions: {0}",
|
"ValueConditions": "Conditions: {0}",
|
||||||
|
@ -1346,26 +1346,26 @@
|
||||||
"ButtonNextPage": "\u010eal\u0161ia strana",
|
"ButtonNextPage": "\u010eal\u0161ia strana",
|
||||||
"ButtonPreviousPage": "Predch\u00e1dzaj\u00faca strana",
|
"ButtonPreviousPage": "Predch\u00e1dzaj\u00faca strana",
|
||||||
"HeaderDeleteItem": "Zmaza\u0165 polo\u017eku",
|
"HeaderDeleteItem": "Zmaza\u0165 polo\u017eku",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Polo\u017eka ulo\u017een\u00e1.",
|
||||||
"MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.",
|
"MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Pros\u00edm akceptujte podmienky pou\u017eitia pred pokra\u010dovan\u00edm.",
|
||||||
"OptionOff": "Off",
|
"OptionOff": "Off",
|
||||||
"OptionOn": "On",
|
"OptionOn": "On",
|
||||||
"ButtonUninstall": "Odin\u0161talova\u0165.",
|
"ButtonUninstall": "Odin\u0161talova\u0165.",
|
||||||
"HeaderLiveTV": "Live TV",
|
"HeaderLiveTV": "Live TV",
|
||||||
"MissingPrimaryImage": "Ch\u00fdba prim\u00e1rny obr\u00e1zok.",
|
"MissingPrimaryImage": "Ch\u00fdba prim\u00e1rny obr\u00e1zok.",
|
||||||
"MissingBackdropImage": "Missing backdrop image.",
|
"MissingBackdropImage": "Missing backdrop image.",
|
||||||
"MissingLogoImage": "Missing logo image.",
|
"MissingLogoImage": "Ch\u00fdba obr\u00e1zok loga.",
|
||||||
"MissingEpisode": "Ch\u00fdbaj\u00faca epiz\u00f3da.",
|
"MissingEpisode": "Ch\u00fdbaj\u00faca epiz\u00f3da.",
|
||||||
"OptionBackdrops": "Backdrops",
|
"OptionBackdrops": "Backdrops",
|
||||||
"OptionImages": "Obr\u00e1zky",
|
"OptionImages": "Obr\u00e1zky",
|
||||||
"OptionKeywords": "K\u013e\u00fa\u010dov\u00e9 slov\u00e1",
|
"OptionKeywords": "K\u013e\u00fa\u010dov\u00e9 slov\u00e1",
|
||||||
"OptionTags": "Tags",
|
"OptionTags": "Tags",
|
||||||
"OptionStudios": "Studios",
|
"OptionStudios": "\u0160t\u00fadi\u00e1",
|
||||||
"OptionName": "Name",
|
"OptionName": "Name",
|
||||||
"OptionOverview": "Preh\u013ead",
|
"OptionOverview": "Preh\u013ead",
|
||||||
"OptionGenres": "\u017d\u00e1nre",
|
"OptionGenres": "\u017d\u00e1nre",
|
||||||
"OptionPeople": "People",
|
"OptionPeople": "\u013dudia",
|
||||||
"OptionProductionLocations": "Production Locations",
|
"OptionProductionLocations": "Miesta produkcie",
|
||||||
"OptionBirthLocation": "Miesto narodenia",
|
"OptionBirthLocation": "Miesto narodenia",
|
||||||
"HeaderChangeFolderType": "Zmeni\u0165 typ obsahu",
|
"HeaderChangeFolderType": "Zmeni\u0165 typ obsahu",
|
||||||
"HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.",
|
"HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.",
|
||||||
|
@ -1434,7 +1434,7 @@
|
||||||
"HeaderMediaLocations": "Media Locations",
|
"HeaderMediaLocations": "Media Locations",
|
||||||
"LabelContentTypeValue": "Typ obsahu: {0}",
|
"LabelContentTypeValue": "Typ obsahu: {0}",
|
||||||
"FolderTypeUnset": "Unset (mixed content)",
|
"FolderTypeUnset": "Unset (mixed content)",
|
||||||
"BirthPlaceValue": "Birth place: {0}",
|
"BirthPlaceValue": "Miesto narodenia: {0}",
|
||||||
"DeathDateValue": "Died: {0}",
|
"DeathDateValue": "Died: {0}",
|
||||||
"BirthDateValue": "Born: {0}",
|
"BirthDateValue": "Born: {0}",
|
||||||
"HeaderLatestReviews": "Latest Reviews",
|
"HeaderLatestReviews": "Latest Reviews",
|
||||||
|
@ -1446,14 +1446,14 @@
|
||||||
"MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.",
|
"MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.",
|
||||||
"ValuePriceUSD": "Cena: {0} (USD)",
|
"ValuePriceUSD": "Cena: {0} (USD)",
|
||||||
"MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
|
"MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
|
||||||
"HeaderEmbyAccountAdded": "Emby Account Added",
|
"HeaderEmbyAccountAdded": "Emby \u00fa\u010det pridan\u00fd",
|
||||||
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
||||||
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
||||||
"HeaderEmbyAccountRemoved": "Emby Account Removed",
|
"HeaderEmbyAccountRemoved": "Emby \u00fa\u010det odobran\u00fd",
|
||||||
"MessageEmbyAccontRemoved": "The Emby account has been removed from this user.",
|
"MessageEmbyAccontRemoved": "The Emby account has been removed from this user.",
|
||||||
"TooltipLinkedToEmbyConnect": "Linked to Emby Connect",
|
"TooltipLinkedToEmbyConnect": "Linked to Emby Connect",
|
||||||
"HeaderUnrated": "Unrated",
|
"HeaderUnrated": "Unrated",
|
||||||
"ValueDiscNumber": "Disc {0}",
|
"ValueDiscNumber": "Disk {0}",
|
||||||
"HeaderUnknownDate": "Nezn\u00e1my d\u00e1tum",
|
"HeaderUnknownDate": "Nezn\u00e1my d\u00e1tum",
|
||||||
"HeaderUnknownYear": "Nezn\u00e1my rok",
|
"HeaderUnknownYear": "Nezn\u00e1my rok",
|
||||||
"ValueMinutes": "{0} min",
|
"ValueMinutes": "{0} min",
|
||||||
|
@ -1465,9 +1465,9 @@
|
||||||
"OptionInProgress": "In-Progress",
|
"OptionInProgress": "In-Progress",
|
||||||
"LabelResumePoint": "Resume point:",
|
"LabelResumePoint": "Resume point:",
|
||||||
"ValueOneMovie": "1 film",
|
"ValueOneMovie": "1 film",
|
||||||
"ValueMovieCount": "{0} movies",
|
"ValueMovieCount": "{0} filmov",
|
||||||
"ValueOneTrailer": "1 trailer",
|
"ValueOneTrailer": "1 uk\u00e1\u017eka",
|
||||||
"ValueTrailerCount": "{0} trailers",
|
"ValueTrailerCount": "{0} uk\u00e1\u017eok",
|
||||||
"ValueOneSeries": "1 seri\u00e1l",
|
"ValueOneSeries": "1 seri\u00e1l",
|
||||||
"ValueSeriesCount": "{0} seri\u00e1lov",
|
"ValueSeriesCount": "{0} seri\u00e1lov",
|
||||||
"ValueOneEpisode": "1 epiz\u00f3da",
|
"ValueOneEpisode": "1 epiz\u00f3da",
|
||||||
|
@ -1476,20 +1476,20 @@
|
||||||
"ValueGameCount": "{0} hier",
|
"ValueGameCount": "{0} hier",
|
||||||
"ValueOneAlbum": "1 album",
|
"ValueOneAlbum": "1 album",
|
||||||
"ValueAlbumCount": "{0} albumov",
|
"ValueAlbumCount": "{0} albumov",
|
||||||
"ValueOneSong": "1 song",
|
"ValueOneSong": "1 skladba",
|
||||||
"ValueSongCount": "{0} songs",
|
"ValueSongCount": "{0} skladieb",
|
||||||
"ValueOneMusicVideo": "1 music video",
|
"ValueOneMusicVideo": "1 hudobn\u00e9 video",
|
||||||
"ValueMusicVideoCount": "{0} music videos",
|
"ValueMusicVideoCount": "{0} hudobn\u00fdch vide\u00ed",
|
||||||
"HeaderOffline": "Offline",
|
"HeaderOffline": "Offline",
|
||||||
"HeaderUnaired": "Nevysielan\u00e9",
|
"HeaderUnaired": "Nevysielan\u00e9",
|
||||||
"HeaderMissing": "Ch\u00fdbaj\u00face",
|
"HeaderMissing": "Ch\u00fdbaj\u00face",
|
||||||
"ButtonWebsite": "Webov\u00e9 str\u00e1nky",
|
"ButtonWebsite": "Webov\u00e9 str\u00e1nky",
|
||||||
"ValueSeriesYearToPresent": "{0} - Present",
|
"ValueSeriesYearToPresent": "{0} - Present",
|
||||||
"ValueAwards": "Awards: {0}",
|
"ValueAwards": "Ocenenia: {0}",
|
||||||
"ValuePremiered": "Premiered {0}",
|
"ValuePremiered": "Premiered {0}",
|
||||||
"ValuePremieres": "Premieres {0}",
|
"ValuePremieres": "Premieres {0}",
|
||||||
"ValueStudio": "Studio: {0}",
|
"ValueStudio": "\u0160t\u00fadio: {0}",
|
||||||
"ValueStudios": "Studios: {0}",
|
"ValueStudios": "\u0160t\u00fadi\u00e1: {0}",
|
||||||
"ValueStatus": "Status: {0}",
|
"ValueStatus": "Status: {0}",
|
||||||
"LabelLimit": "Limit:",
|
"LabelLimit": "Limit:",
|
||||||
"ValueLinks": "Links: {0}",
|
"ValueLinks": "Links: {0}",
|
||||||
|
@ -1508,7 +1508,7 @@
|
||||||
"MediaInfoLongitude": "Zemepisn\u00e1 d\u013a\u017eka",
|
"MediaInfoLongitude": "Zemepisn\u00e1 d\u013a\u017eka",
|
||||||
"MediaInfoShutterSpeed": "R\u00fdchlos\u0165 uz\u00e1vierky",
|
"MediaInfoShutterSpeed": "R\u00fdchlos\u0165 uz\u00e1vierky",
|
||||||
"MediaInfoSoftware": "Software",
|
"MediaInfoSoftware": "Software",
|
||||||
"HeaderMoreLikeThis": "More Like This",
|
"HeaderMoreLikeThis": "Podobn\u00e9",
|
||||||
"HeaderMovies": "Filmy",
|
"HeaderMovies": "Filmy",
|
||||||
"HeaderAlbums": "Albumy",
|
"HeaderAlbums": "Albumy",
|
||||||
"HeaderGames": "Hry",
|
"HeaderGames": "Hry",
|
||||||
|
@ -1518,7 +1518,7 @@
|
||||||
"HeaderTracks": "Tracks",
|
"HeaderTracks": "Tracks",
|
||||||
"HeaderItems": "Polo\u017eky",
|
"HeaderItems": "Polo\u017eky",
|
||||||
"HeaderOtherItems": "In\u00e9 polo\u017eky",
|
"HeaderOtherItems": "In\u00e9 polo\u017eky",
|
||||||
"ValueAsRole": "as {0}",
|
"ValueAsRole": "ako {0}",
|
||||||
"ValueGuestStar": "Hos\u0165uj\u00faca hviezda",
|
"ValueGuestStar": "Hos\u0165uj\u00faca hviezda",
|
||||||
"MediaInfoSize": "Ve\u013ekos\u0165",
|
"MediaInfoSize": "Ve\u013ekos\u0165",
|
||||||
"MediaInfoPath": "Path",
|
"MediaInfoPath": "Path",
|
||||||
|
@ -1528,7 +1528,7 @@
|
||||||
"MediaInfoDefault": "Default",
|
"MediaInfoDefault": "Default",
|
||||||
"MediaInfoForced": "Forced",
|
"MediaInfoForced": "Forced",
|
||||||
"MediaInfoExternal": "External",
|
"MediaInfoExternal": "External",
|
||||||
"MediaInfoTimestamp": "Timestamp",
|
"MediaInfoTimestamp": "\u010casov\u00e1 zna\u010dka",
|
||||||
"MediaInfoPixelFormat": "Pixel format",
|
"MediaInfoPixelFormat": "Pixel format",
|
||||||
"MediaInfoBitDepth": "Bit depth",
|
"MediaInfoBitDepth": "Bit depth",
|
||||||
"MediaInfoSampleRate": "Sample rate",
|
"MediaInfoSampleRate": "Sample rate",
|
||||||
|
@ -1548,14 +1548,14 @@
|
||||||
"MediaInfoStreamTypeAudio": "Audio",
|
"MediaInfoStreamTypeAudio": "Audio",
|
||||||
"MediaInfoStreamTypeData": "Data",
|
"MediaInfoStreamTypeData": "Data",
|
||||||
"MediaInfoStreamTypeVideo": "Video",
|
"MediaInfoStreamTypeVideo": "Video",
|
||||||
"MediaInfoStreamTypeSubtitle": "Subtitle",
|
"MediaInfoStreamTypeSubtitle": "Titulky",
|
||||||
"MediaInfoStreamTypeEmbeddedImage": "Embedded Image",
|
"MediaInfoStreamTypeEmbeddedImage": "Embedded Image",
|
||||||
"MediaInfoRefFrames": "Ref frames",
|
"MediaInfoRefFrames": "Ref frames",
|
||||||
"TabExpert": "Expert",
|
"TabExpert": "Expert",
|
||||||
"HeaderSelectCustomIntrosPath": "Select Custom Intros Path",
|
"HeaderSelectCustomIntrosPath": "Select Custom Intros Path",
|
||||||
"HeaderThankYou": "Thank You",
|
"HeaderThankYou": "V\u010faka",
|
||||||
"LabelFullReview": "Cel\u00e1 recenzia:",
|
"LabelFullReview": "Cel\u00e1 recenzia:",
|
||||||
"ReleaseYearValue": "Release year: {0}",
|
"ReleaseYearValue": "Rok vydania: {0}",
|
||||||
"OriginalAirDateValue": "Original air date: {0}",
|
"OriginalAirDateValue": "Original air date: {0}",
|
||||||
"WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.",
|
"WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.",
|
||||||
"WebClientTourMovies": "Play movies, trailers and more from any device with a web browser",
|
"WebClientTourMovies": "Play movies, trailers and more from any device with a web browser",
|
||||||
|
@ -1618,7 +1618,7 @@
|
||||||
"LabelQuality": "Kvalita:",
|
"LabelQuality": "Kvalita:",
|
||||||
"MovieLibraryHelp": "Review the {0}Emby movie naming guide{1}.",
|
"MovieLibraryHelp": "Review the {0}Emby movie naming guide{1}.",
|
||||||
"TvLibraryHelp": "Review the {0}Emby TV naming guide{1}.",
|
"TvLibraryHelp": "Review the {0}Emby TV naming guide{1}.",
|
||||||
"BookLibraryHelp": "Audio and text books are supported",
|
"BookLibraryHelp": "Audioknihy a u\u010debnice s\u00fa podporovan\u00e9",
|
||||||
"MessageGamePluginRequired": "Po\u017eaduje in\u0161tal\u00e1ciu roz\u0161\u00edrenia GameBrowser",
|
"MessageGamePluginRequired": "Po\u017eaduje in\u0161tal\u00e1ciu roz\u0161\u00edrenia GameBrowser",
|
||||||
"MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.",
|
"MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.",
|
||||||
"LabelProfile": "Profil:",
|
"LabelProfile": "Profil:",
|
||||||
|
@ -1632,7 +1632,7 @@
|
||||||
"TabScenes": "Scenes",
|
"TabScenes": "Scenes",
|
||||||
"HeaderUnlockApp": "Odomkn\u00fa\u0165 aplik\u00e1ciu",
|
"HeaderUnlockApp": "Odomkn\u00fa\u0165 aplik\u00e1ciu",
|
||||||
"HeaderUnlockSync": "Unlock Emby Sync",
|
"HeaderUnlockSync": "Unlock Emby Sync",
|
||||||
"MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.",
|
"MessagePaymentServicesUnavailable": "Platobn\u00e9 slu\u017eby s\u00fa moment\u00e1lne nedostupn\u00e9. Sk\u00faste to pros\u00edm nesk\u00f4r.",
|
||||||
"OptionEnableFullscreen": "Enable Fullscreen",
|
"OptionEnableFullscreen": "Enable Fullscreen",
|
||||||
"ButtonServer": "Server",
|
"ButtonServer": "Server",
|
||||||
"HeaderLibrary": "Kni\u017enica",
|
"HeaderLibrary": "Kni\u017enica",
|
||||||
|
@ -1680,7 +1680,7 @@
|
||||||
"HeaderEmailAddress": "E-Mail Address",
|
"HeaderEmailAddress": "E-Mail Address",
|
||||||
"LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.",
|
"LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.",
|
||||||
"TermsOfUse": "Podmienky pou\u017eitia",
|
"TermsOfUse": "Podmienky pou\u017eitia",
|
||||||
"NumLocationsValue": "{0} folders",
|
"NumLocationsValue": "{0} prie\u010dinkov",
|
||||||
"ButtonAddMediaLibrary": "Prida\u0165 kni\u017enicu m\u00e9di\u00ed",
|
"ButtonAddMediaLibrary": "Prida\u0165 kni\u017enicu m\u00e9di\u00ed",
|
||||||
"ButtonManageFolders": "Spravova\u0165 prie\u010dinky",
|
"ButtonManageFolders": "Spravova\u0165 prie\u010dinky",
|
||||||
"ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.",
|
"ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.",
|
||||||
|
@ -1699,7 +1699,7 @@
|
||||||
"HeaderFreeApps": "Free Emby Apps",
|
"HeaderFreeApps": "Free Emby Apps",
|
||||||
"CoverArt": "Cover Art",
|
"CoverArt": "Cover Art",
|
||||||
"ButtonOff": "Off",
|
"ButtonOff": "Off",
|
||||||
"TitleHardwareAcceleration": "Hardware Acceleration",
|
"TitleHardwareAcceleration": "Hardv\u00e9rov\u00e1 akceler\u00e1cia",
|
||||||
"HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.",
|
"HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.",
|
||||||
"HeaderSelectCodecIntrosPath": "Select Codec Intros Path",
|
"HeaderSelectCodecIntrosPath": "Select Codec Intros Path",
|
||||||
"ValueExample": "Pr\u00edklad: {0}",
|
"ValueExample": "Pr\u00edklad: {0}",
|
||||||
|
@ -1839,10 +1839,10 @@
|
||||||
"LabelClickToCancel": "Click to cancel this subscription",
|
"LabelClickToCancel": "Click to cancel this subscription",
|
||||||
"LabelCancelInfo": "You can manage this subscription directly with {0}",
|
"LabelCancelInfo": "You can manage this subscription directly with {0}",
|
||||||
"LabelAlreadyCanceled": "This subscription has been canceled. Key will remain valid until expiration.",
|
"LabelAlreadyCanceled": "This subscription has been canceled. Key will remain valid until expiration.",
|
||||||
"HeaderCancelSub": "Cancel Emby Premiere",
|
"HeaderCancelSub": "Zru\u0161i\u0165 Emby Premiere",
|
||||||
"MessageConfirmSubCancel": "NO, Please don't go... You will miss out on all the great features of Emby Premiere!",
|
"MessageConfirmSubCancel": "NO, Please don't go... You will miss out on all the great features of Emby Premiere!",
|
||||||
"ButtonCancelSub": "I know, cancel it anyway",
|
"ButtonCancelSub": "I know, cancel it anyway",
|
||||||
"ButtonDontCancelSub": "Keep Emby Premiere",
|
"ButtonDontCancelSub": "Ponecha\u0165 Emby Premiere",
|
||||||
"MessageSubCancelReqSent": "An email has been sent to the owner of the key. Please follow the instructions in that email to complete the cancellation of this subscription. We hope to see you back soon!",
|
"MessageSubCancelReqSent": "An email has been sent to the owner of the key. Please follow the instructions in that email to complete the cancellation of this subscription. We hope to see you back soon!",
|
||||||
"MessageSubCancelError": "Something went wrong trying to cancel. Please send an email to {0} and we'll get you squared away.",
|
"MessageSubCancelError": "Something went wrong trying to cancel. Please send an email to {0} and we'll get you squared away.",
|
||||||
"LabelAlreadyCancelled": "This subscription has been cancelled. You will not be charged again but the features will work until the date above.",
|
"LabelAlreadyCancelled": "This subscription has been cancelled. You will not be charged again but the features will work until the date above.",
|
||||||
|
|
|
@ -550,7 +550,7 @@
|
||||||
"Settings": "Settings",
|
"Settings": "Settings",
|
||||||
"Mute": "Mute",
|
"Mute": "Mute",
|
||||||
"Unmute": "Unmute",
|
"Unmute": "Unmute",
|
||||||
"Subtitles": "Subtitles",
|
"Subtitles": "\u5b57\u5e55",
|
||||||
"Audio": "Audio",
|
"Audio": "Audio",
|
||||||
"Rewind": "Rewind",
|
"Rewind": "Rewind",
|
||||||
"Fullscreen": "Full screen",
|
"Fullscreen": "Full screen",
|
||||||
|
@ -689,7 +689,7 @@
|
||||||
"OptionYes": "\u662f",
|
"OptionYes": "\u662f",
|
||||||
"OptionNo": "\u4e0d",
|
"OptionNo": "\u4e0d",
|
||||||
"HeaderOptions": "\u9009\u9879",
|
"HeaderOptions": "\u9009\u9879",
|
||||||
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
"LabelHomeScreenSectionValue": "\u4e3b\u5c4f\u5e55\u90e8\u5206{0}:",
|
||||||
"OptionResumablemedia": "\u6062\u590d\u64ad\u653e",
|
"OptionResumablemedia": "\u6062\u590d\u64ad\u653e",
|
||||||
"OptionLatestMedia": "\u6700\u65b0\u5a92\u4f53",
|
"OptionLatestMedia": "\u6700\u65b0\u5a92\u4f53",
|
||||||
"OptionLatestChannelMedia": "\u6700\u65b0\u9891\u9053\u9879\u76ee",
|
"OptionLatestChannelMedia": "\u6700\u65b0\u9891\u9053\u9879\u76ee",
|
||||||
|
@ -799,7 +799,7 @@
|
||||||
"HeaderImages": "\u56fe\u7247",
|
"HeaderImages": "\u56fe\u7247",
|
||||||
"HeaderBackdrops": "\u80cc\u666f",
|
"HeaderBackdrops": "\u80cc\u666f",
|
||||||
"HeaderAddUpdateImage": "\u6dfb\u52a0\/\u66f4\u65b0 \u56fe\u7247",
|
"HeaderAddUpdateImage": "\u6dfb\u52a0\/\u66f4\u65b0 \u56fe\u7247",
|
||||||
"LabelDropImageHere": "Drop image here.",
|
"LabelDropImageHere": "\u628a\u56fe\u50cf\u62d6\u653e\u5728\u8fd9\u91cc",
|
||||||
"LabelJpgPngOnly": "\u4ec5\u9650 JPG\/PNG \u683c\u5f0f\u56fe\u7247",
|
"LabelJpgPngOnly": "\u4ec5\u9650 JPG\/PNG \u683c\u5f0f\u56fe\u7247",
|
||||||
"LabelImageType": "\u56fe\u7247\u7c7b\u578b\uff1a",
|
"LabelImageType": "\u56fe\u7247\u7c7b\u578b\uff1a",
|
||||||
"OptionPrimary": "\u5c01\u9762\u56fe",
|
"OptionPrimary": "\u5c01\u9762\u56fe",
|
||||||
|
@ -1061,7 +1061,7 @@
|
||||||
"HeaderSignUp": "\u6ce8\u518c",
|
"HeaderSignUp": "\u6ce8\u518c",
|
||||||
"LabelPasswordConfirm": "\u5bc6\u7801 (\u786e\u8ba4)\uff1a",
|
"LabelPasswordConfirm": "\u5bc6\u7801 (\u786e\u8ba4)\uff1a",
|
||||||
"ButtonAddServer": "\u6dfb\u52a0\u670d\u52a1\u5668",
|
"ButtonAddServer": "\u6dfb\u52a0\u670d\u52a1\u5668",
|
||||||
"TabHomeScreen": "Home Screen",
|
"TabHomeScreen": "\u4e3b\u5c4f\u5e55",
|
||||||
"HeaderDisplay": "\u663e\u793a",
|
"HeaderDisplay": "\u663e\u793a",
|
||||||
"HeaderNavigation": "\u5bfc\u822a",
|
"HeaderNavigation": "\u5bfc\u822a",
|
||||||
"OptionEnableAutomaticServerUpdates": "\u5f00\u542f\u81ea\u52a8\u670d\u52a1\u5668\u66f4\u65b0",
|
"OptionEnableAutomaticServerUpdates": "\u5f00\u542f\u81ea\u52a8\u670d\u52a1\u5668\u66f4\u65b0",
|
||||||
|
@ -1092,7 +1092,7 @@
|
||||||
"HeaderUserPrimaryImage": "\u7528\u6237\u56fe\u7247",
|
"HeaderUserPrimaryImage": "\u7528\u6237\u56fe\u7247",
|
||||||
"ButtonProfile": "\u6863\u6848",
|
"ButtonProfile": "\u6863\u6848",
|
||||||
"ButtonProfileHelp": "Set your profile image and password.",
|
"ButtonProfileHelp": "Set your profile image and password.",
|
||||||
"HeaderHomeScreenSettings": "Home Screen settings",
|
"HeaderHomeScreenSettings": "\u4e3b\u5c4f\u5e55\u8bbe\u7f6e",
|
||||||
"HeaderProfile": "\u6863\u6848",
|
"HeaderProfile": "\u6863\u6848",
|
||||||
"HeaderLanguage": "\u8bed\u8a00",
|
"HeaderLanguage": "\u8bed\u8a00",
|
||||||
"LabelTranscodingThreadCount": "\u8f6c\u7801\u7ebf\u7a0b\u6570\uff1a",
|
"LabelTranscodingThreadCount": "\u8f6c\u7801\u7ebf\u7a0b\u6570\uff1a",
|
||||||
|
@ -1110,7 +1110,7 @@
|
||||||
"HeaderVideos": "\u89c6\u9891",
|
"HeaderVideos": "\u89c6\u9891",
|
||||||
"LabelHardwareAccelerationType": "\u786c\u4ef6\u52a0\u901f\uff1a",
|
"LabelHardwareAccelerationType": "\u786c\u4ef6\u52a0\u901f\uff1a",
|
||||||
"LabelHardwareAccelerationTypeHelp": "\u53ea\u80fd\u5728\u652f\u6301\u7684\u7cfb\u7edf\u4e0a\u4f7f\u7528\u3002",
|
"LabelHardwareAccelerationTypeHelp": "\u53ea\u80fd\u5728\u652f\u6301\u7684\u7cfb\u7edf\u4e0a\u4f7f\u7528\u3002",
|
||||||
"ButtonServerDashboard": "Server Dashboard",
|
"ButtonServerDashboard": "\u670d\u52a1\u5668\u63a7\u5236\u53f0",
|
||||||
"HeaderAdmin": "\u7ba1\u7406",
|
"HeaderAdmin": "\u7ba1\u7406",
|
||||||
"ButtonSignOut": "\u9000\u51fa",
|
"ButtonSignOut": "\u9000\u51fa",
|
||||||
"HeaderCameraUpload": "Camera Upload",
|
"HeaderCameraUpload": "Camera Upload",
|
||||||
|
@ -1199,7 +1199,7 @@
|
||||||
"MessageItemsAdded": "\u9879\u76ee\u5df2\u6dfb\u52a0",
|
"MessageItemsAdded": "\u9879\u76ee\u5df2\u6dfb\u52a0",
|
||||||
"HeaderSelectCertificatePath": "Select Certificate Path",
|
"HeaderSelectCertificatePath": "Select Certificate Path",
|
||||||
"HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to Emby DVR, offline media, premium plugins, and more. {0}Learn more{1}.",
|
"HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to Emby DVR, offline media, premium plugins, and more. {0}Learn more{1}.",
|
||||||
"HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard",
|
"HeaderWelcomeToProjectServerDashboard": "\u6b22\u8fce\u6765\u5230Emby\u670d\u52a1\u5668\u63a7\u5236\u53f0",
|
||||||
"HeaderWelcomeToProjectWebClient": "\u6b22\u8fce\u6765\u5230 Emby",
|
"HeaderWelcomeToProjectWebClient": "\u6b22\u8fce\u6765\u5230 Emby",
|
||||||
"ButtonTakeTheTour": "\u8fdb\u884c\u53c2\u89c2",
|
"ButtonTakeTheTour": "\u8fdb\u884c\u53c2\u89c2",
|
||||||
"HeaderWelcomeBack": "\u6b22\u8fce\u56de\u6765\uff01",
|
"HeaderWelcomeBack": "\u6b22\u8fce\u56de\u6765\uff01",
|
||||||
|
@ -1830,7 +1830,7 @@
|
||||||
"PluginInstalledMessage": "The plugin has been successfully installed. Emby Server will need to be restarted for changes to take effect.",
|
"PluginInstalledMessage": "The plugin has been successfully installed. Emby Server will need to be restarted for changes to take effect.",
|
||||||
"Themes": "Themes",
|
"Themes": "Themes",
|
||||||
"LabelTheme": "Theme:",
|
"LabelTheme": "Theme:",
|
||||||
"LabelDashboardTheme": "Server dashboard theme:",
|
"LabelDashboardTheme": "\u63a7\u5236\u53f0\u4e3b\u9898",
|
||||||
"MessagePremiereStatusGood": "You have a {0} Emby Premiere plan and your device usage is well within your limit.",
|
"MessagePremiereStatusGood": "You have a {0} Emby Premiere plan and your device usage is well within your limit.",
|
||||||
"MessagePremiereStatusClose": "You have a {0} Emby Premiere plan, but your device usage is close to the limit.",
|
"MessagePremiereStatusClose": "You have a {0} Emby Premiere plan, but your device usage is close to the limit.",
|
||||||
"MessagePremiereExtendedPlans": "Consider an {0}extended device plan{1}",
|
"MessagePremiereExtendedPlans": "Consider an {0}extended device plan{1}",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue