update card components
This commit is contained in:
parent
194f1e3fe8
commit
3a0999af5e
75 changed files with 470 additions and 152 deletions
|
@ -1 +1 @@
|
|||
.alphaPicker,.alphaPickerRow,.alphaPickerRow-vertical{-webkit-box-direction:normal}.alphaPicker{text-align:center;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-flex-direction:column;flex-direction:column;-webkit-align-self:center;align-self:center}.alphaPickerRow{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-orient:horizontal;-webkit-flex-direction:row;flex-direction:row}.alphaPicker-vertical{font-size:90%}.alphaPickerRow-vertical{-webkit-box-orient:vertical;-webkit-flex-direction:column;flex-direction:column}.alphaPickerButton{background:0 0;border:0!important;cursor:pointer;outline:0!important;color:inherit;vertical-align:middle;font-family:inherit;font-size:inherit;min-width:initial;margin:0;padding:.1em .4em;width:auto;-webkit-border-radius:.1em;border-radius:.1em;font-weight:400;opacity:.5;-webkit-flex-shrink:0;flex-shrink:0;-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1}.alphaPicker-vertical .alphaPickerButton{padding:0;width:1.5em}.alphaPickerButtonIcon{width:3.3vh;height:3.3vh;font-size:3.3vh}.alphaPickerButton-selected{opacity:1}.alphaPickerButton-tv:focus{background-color:#52B54B;opacity:1;color:#fff}
|
||||
.alphaPicker,.alphaPickerRow,.alphaPickerRow-vertical{-webkit-box-direction:normal}.alphaPicker{text-align:center;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-flex-direction:column;flex-direction:column;-webkit-align-self:center;align-self:center}.alphaPickerRow{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-orient:horizontal;-webkit-flex-direction:row;flex-direction:row}.alphaPicker-vertical{font-size:90%}.alphaPickerRow-vertical{-webkit-box-orient:vertical;-webkit-flex-direction:column;flex-direction:column}.alphaPickerButton{background:0 0;border:0!important;cursor:pointer;outline:0!important;vertical-align:middle;font-family:inherit;font-size:inherit;min-width:initial;margin:0;padding:.1em .4em;width:auto;-webkit-border-radius:.1em;border-radius:.1em;font-weight:400;color:#999;-webkit-flex-shrink:0;flex-shrink:0;-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1}.alphaPicker-vertical .alphaPickerButton{padding:0;width:1.5em}.alphaPickerButtonIcon{width:3.3vh;height:3.3vh;font-size:3.3vh}.alphaPickerButton-selected{color:inherit}.alphaPickerButton-tv:focus{background-color:#52B54B;color:#fff}
|
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(["scroller","dom","layoutManager","inputManager","focusManager","registerElement"],function(scroller,dom,layoutManager,inputManager,focusManager){"use strict";function initCenterFocus(elem,scrollerInstance){dom.addEventListener(elem,"focus",function(e){var focused=focusManager.focusableParent(e.target);focused&&scrollerInstance.toCenter(focused)},{capture:!0,passive:!0})}function onInputCommand(e){var cmd=e.detail.command;"home"===cmd?(focusManager.focusFirst(this,"."+this.getAttribute("data-navcommands")),e.preventDefault(),e.stopPropagation()):"end"===cmd?(focusManager.focusLast(this,"."+this.getAttribute("data-navcommands")),e.preventDefault(),e.stopPropagation()):"pageup"===cmd?(focusManager.moveFocus(e.target,this,"."+this.getAttribute("data-navcommands"),-12),e.preventDefault(),e.stopPropagation()):"pagedown"===cmd&&(focusManager.moveFocus(e.target,this,"."+this.getAttribute("data-navcommands"),12),e.preventDefault(),e.stopPropagation())}var ScrollerProtoType=Object.create(HTMLDivElement.prototype);ScrollerProtoType.createdCallback=function(){this.classList.add("emby-scroller")},ScrollerProtoType.scrollToBeginning=function(){this.scroller&&this.scroller.slideTo(0,!0)},ScrollerProtoType.toStart=function(elem,immediate){this.scroller&&this.scroller.toStart(elem,immediate)},ScrollerProtoType.scrollToPosition=function(pos,immediate){this.scroller&&this.scroller.slideTo(pos,immediate)},ScrollerProtoType.getScrollPosition=function(){if(this.scroller)return this.scroller.getScrollPosition()},ScrollerProtoType.attachedCallback=function(){this.getAttribute("data-navcommands")&&inputManager.on(this,onInputCommand);var horizontal="false"!==this.getAttribute("data-horizontal"),slider=this.querySelector(".scrollSlider");horizontal&&(slider.style["white-space"]="nowrap");var options={horizontal:horizontal,mouseDragging:1,mouseWheel:"false"!==this.getAttribute("data-mousewheel"),touchDragging:1,slidee:slider,scrollBy:200,speed:horizontal?300:270,elasticBounds:1,dragHandle:1,scrollWidth:5e6,autoImmediate:!0,skipSlideToWhenVisible:"true"===this.getAttribute("data-skipfocuswhenvisible"),dispatchScrollEvent:"true"===this.getAttribute("data-scrollevent")},self=this;setTimeout(function(){self.scroller=new scroller(self,options),self.scroller.init(),layoutManager.tv&&self.getAttribute("data-centerfocus")&&initCenterFocus(self,self.scroller)},0)},ScrollerProtoType.detachedCallback=function(){this.getAttribute("data-navcommands")&&inputManager.off(this,onInputCommand);var scrollerInstance=this.scroller;scrollerInstance&&(scrollerInstance.destroy(),this.scroller=null)},document.registerElement("emby-scroller",{prototype:ScrollerProtoType,extends:"div"})});
|
||||
define(["scroller","dom","layoutManager","inputManager","focusManager","registerElement"],function(scroller,dom,layoutManager,inputManager,focusManager){"use strict";function initCenterFocus(elem,scrollerInstance){dom.addEventListener(elem,"focus",function(e){var focused=focusManager.focusableParent(e.target);focused&&scrollerInstance.toCenter(focused)},{capture:!0,passive:!0})}function onInputCommand(e){var cmd=e.detail.command;"home"===cmd?(focusManager.focusFirst(this,"."+this.getAttribute("data-navcommands")),e.preventDefault(),e.stopPropagation()):"end"===cmd?(focusManager.focusLast(this,"."+this.getAttribute("data-navcommands")),e.preventDefault(),e.stopPropagation()):"pageup"===cmd?(focusManager.moveFocus(e.target,this,"."+this.getAttribute("data-navcommands"),-12),e.preventDefault(),e.stopPropagation()):"pagedown"===cmd&&(focusManager.moveFocus(e.target,this,"."+this.getAttribute("data-navcommands"),12),e.preventDefault(),e.stopPropagation())}function initHeadroom(elem){require(["headroom"],function(Headroom){var headroom=new Headroom([],{scroller:elem});headroom.init(),headroom.add(document.querySelector(".skinHeader")),elem.headroom=headroom})}var ScrollerProtoType=Object.create(HTMLDivElement.prototype);ScrollerProtoType.createdCallback=function(){this.classList.add("emby-scroller")},ScrollerProtoType.scrollToBeginning=function(){this.scroller&&this.scroller.slideTo(0,!0)},ScrollerProtoType.toStart=function(elem,immediate){this.scroller&&this.scroller.toStart(elem,immediate)},ScrollerProtoType.scrollToPosition=function(pos,immediate){this.scroller&&this.scroller.slideTo(pos,immediate)},ScrollerProtoType.getScrollPosition=function(){if(this.scroller)return this.scroller.getScrollPosition()},ScrollerProtoType.attachedCallback=function(){this.getAttribute("data-navcommands")&&inputManager.on(this,onInputCommand);var horizontal="false"!==this.getAttribute("data-horizontal"),slider=this.querySelector(".scrollSlider");horizontal&&(slider.style["white-space"]="nowrap");var bindHeader="true"===this.getAttribute("data-bindheader"),options={horizontal:horizontal,mouseDragging:1,mouseWheel:"false"!==this.getAttribute("data-mousewheel"),touchDragging:1,slidee:slider,scrollBy:200,speed:horizontal?300:270,elasticBounds:1,dragHandle:1,scrollWidth:5e6,autoImmediate:!0,skipSlideToWhenVisible:"true"===this.getAttribute("data-skipfocuswhenvisible"),dispatchScrollEvent:bindHeader||"true"===this.getAttribute("data-scrollevent")},self=this;setTimeout(function(){self.scroller=new scroller(self,options),self.scroller.init(),layoutManager.tv&&self.getAttribute("data-centerfocus")&&initCenterFocus(self,self.scroller),bindHeader&&initHeadroom(self)},0)},ScrollerProtoType.detachedCallback=function(){this.getAttribute("data-navcommands")&&inputManager.off(this,onInputCommand);var headroom=this.headroom;headroom&&(headroom.destroy(),this.headroom=null);var scrollerInstance=this.scroller;scrollerInstance&&(scrollerInstance.destroy(),this.scroller=null)},document.registerElement("emby-scroller",{prototype:ScrollerProtoType,extends:"div"})});
|
File diff suppressed because one or more lines are too long
1
dashboard-ui/bower_components/emby-webcomponents/headroom/headroom.css
vendored
Normal file
1
dashboard-ui/bower_components/emby-webcomponents/headroom/headroom.css
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
.headroom{-webkit-transition:-webkit-transform 180ms linear;-o-transition:transform 180ms linear;transition:transform 180ms linear}.headroom--pinned{-webkit-transform:none;transform:none}.headroom--unpinned:not(.headroomDisabled){-webkit-transform:translateY(-100%);transform:translateY(-100%)}
|
1
dashboard-ui/bower_components/emby-webcomponents/headroom/headroom.js
vendored
Normal file
1
dashboard-ui/bower_components/emby-webcomponents/headroom/headroom.js
vendored
Normal file
|
@ -0,0 +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.debouncer=new Debouncer(this.update.bind(this)),this.offset=options.offset,this.scroller=options.scroller,this.initialised=!1,this.initialClass=options.initialClass,this.unPinnedClass=options.unPinnedClass,this.upTolerance=options.upTolerance,this.downTolerance=options.downTolerance}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,this.initialClass);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++)this.elems[i].classList.remove(this.unPinnedClass,this.initialClass);dom.removeEventListener(this.scroller,"scroll",this.debouncer,{capture:!1,passive:!0})},attachEvent:function(){this.initialised||(this.lastKnownScrollY=this.getScrollY(),this.initialised=!0,dom.addEventListener(this.scroller,"scroll",this.debouncer,{capture:!1,passive:!0}),this.debouncer.handleEvent())},clear:function(){for(var i=0,length=this.elems.length;i<length;i++){var classList=this.elems[i].classList;classList.remove(this.unPinnedClass)}},unpin:function(){for(var i=0,length=this.elems.length;i<length;i++){var classList=this.elems[i].classList;classList.add(this.unPinnedClass)}},pin:function(scrollY){for(var i=0,length=this.elems.length;i<length;i++){var classList=this.elems[i].classList;scrollY&&layoutManager.tv?classList.add(this.unPinnedClass):classList.remove(this.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},toleranceExceeded:function(currentScrollY,direction){return Math.abs(currentScrollY-this.lastKnownScrollY)>=this[direction+"Tolerance"]},shouldUnpin:function(currentScrollY,toleranceExceeded){var scrollingDown=currentScrollY>this.lastKnownScrollY,pastOffset=currentScrollY>=this.offset;return scrollingDown&&pastOffset&&toleranceExceeded},shouldPin:function(currentScrollY,toleranceExceeded){var scrollingUp=currentScrollY<this.lastKnownScrollY,pastOffset=currentScrollY<=this.offset;return scrollingUp&&toleranceExceeded||pastOffset},update:function(){var currentScrollY=this.getScrollY(),scrollDirection=currentScrollY>this.lastKnownScrollY?"down":"up",toleranceExceeded=this.toleranceExceeded(currentScrollY,scrollDirection);currentScrollY<0||(this.shouldUnpin(currentScrollY,toleranceExceeded)?this.unpin():this.shouldPin(currentScrollY,toleranceExceeded)?this.pin(currentScrollY):this.clear(),this.lastKnownScrollY=currentScrollY)}},Headroom.options={upTolerance:0,downTolerance:0,offset:0,scroller:window,initialClass:"headroom",unPinnedClass:"headroom--unpinned"},Headroom});
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1 +1 @@
|
|||
.videoPlayerContainer{position:fixed!important;top:0;bottom:0;left:0;right:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.videoPlayerContainer:not(.videoPlayerContainer-withBackdrop){background:#000!important}.videoPlayerContainer-withBackdrop{background-repeat:no-repeat;background-position:center center;-webkit-background-size:cover;background-size:cover;background-attachment:fixed;background-color:#000}.videoPlayerContainer-onTop{z-index:1000}.htmlvideoplayer{margin:0!important;padding:0!important;width:100%;height:100%}.htmlvideoplayer::-webkit-media-text-track-display{margin-top:-2.5em}.htmlvideoplayer::cue{background-color:transparent;text-shadow:2px 2px 2px rgba(0,0,0,1);-webkit-font-smoothing:antialiased;font-family:inherit}.videoSubtitles{position:fixed;bottom:10%;text-align:center;left:0;right:0;color:#fff;font-size:150%}.videoSubtitlesInner{max-width:70%;background-color:rgba(0,0,0,.8);padding:.25em;margin:auto;display:inline-block}
|
||||
.videoPlayerContainer{position:fixed!important;top:0;bottom:0;left:0;right:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.videoPlayerContainer:not(.videoPlayerContainer-withBackdrop){background:#000!important}.videoPlayerContainer-withBackdrop{background-repeat:no-repeat;background-position:center center;-webkit-background-size:cover;background-size:cover;background-attachment:fixed;background-color:#000}.videoPlayerContainer-onTop{z-index:1000}.htmlvideoplayer{margin:0!important;padding:0!important;width:100%;height:100%}.htmlvideoplayer::-webkit-media-text-track-display{margin-top:-2.5em}.htmlvideoplayer::cue{background-color:transparent;text-shadow:2px 2px 2px rgba(0,0,0,1);-webkit-font-smoothing:antialiased;font-family:inherit}.videoSubtitles{position:fixed;bottom:10%;text-align:center;left:0;right:0;color:#fff;font-size:150%}.videoSubtitlesInner{max-width:70%;background-color:rgba(0,0,0,.8);padding:.25em;margin:auto;display:inline-block}@-webkit-keyframes htmlvideoplayer-zoomin{from{-webkit-transform:scale3d(.2,.2,.2);transform:scale3d(.2,.2,.2);opacity:.6}to{-webkit-transform:none;transform:none;opacity:1}}@keyframes htmlvideoplayer-zoomin{from{-webkit-transform:scale3d(.2,.2,.2);transform:scale3d(.2,.2,.2);opacity:.6}to{-webkit-transform:none;transform:none;opacity:1}}
|
File diff suppressed because one or more lines are too long
|
@ -1 +1 @@
|
|||
.itemSelectionPanel{position:absolute;bottom:0;left:0;right:0;top:0;background-color:rgba(0,0,0,.3);z-index:99998;border:1px solid #43A047}.selectionCommandsPanel{position:fixed;top:0;left:0;right:0;background:#43A047;padding:.5em;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;color:#fff;z-index:99999}.itemSelectionCount{vertical-align:middle;color:#fff;opacity:1!important;margin:0}.multiSelectCheckboxOutline{top:0!important;-webkit-border-radius:0!important;border-radius:0!important}.withMultiSelect{position:relative}
|
||||
.itemSelectionPanel{position:absolute;bottom:0;left:0;right:0;top:0;background-color:rgba(0,0,0,.3);z-index:99998;border:1px solid #43A047}.selectionCommandsPanel{position:fixed;top:0;left:0;right:0;background:#43A047;padding:.5em;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;color:#fff;z-index:99999}.itemSelectionCount{vertical-align:middle;color:#fff!important;margin:0}.multiSelectCheckboxOutline{top:0!important;-webkit-border-radius:0!important;border-radius:0!important}.withMultiSelect{position:relative}
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelMetascore": "Metascore:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelCriticRatingSummary": "Critic rating summary:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "Accept",
|
||||
"Reject": "Reject",
|
||||
"Connect": "Connect",
|
||||
"LabelDownloadTo": "Download to:"
|
||||
"HeaderMyMedia": "My Media",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelDownloadTo": "Download to:",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"HeaderLatestFrom": "Latest from {0}",
|
||||
"More": "More"
|
||||
}
|
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelMetascore": "Metascore:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelCriticRatingSummary": "Critic rating summary:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "Accept",
|
||||
"Reject": "Reject",
|
||||
"Connect": "Connect",
|
||||
"LabelDownloadTo": "Download to:"
|
||||
"HeaderMyMedia": "My Media",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelDownloadTo": "Download to:",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"HeaderLatestFrom": "Latest from {0}",
|
||||
"More": "More"
|
||||
}
|
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "\u00c0lbum:",
|
||||
"LabelCommunityRating": "Valoraci\u00f3 de la comunitat:",
|
||||
"LabelVoteCount": "Recompte de vots:",
|
||||
"LabelMetascore": "Metapuntuaci\u00f3",
|
||||
"LabelCriticRating": "Valoraci\u00f3 cr\u00edtica:",
|
||||
"LabelCriticRatingSummary": "Resum de la valoraci\u00f3 cr\u00edtica:",
|
||||
"LabelAwardSummary": "Resum de premis:",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "Accept",
|
||||
"Reject": "Reject",
|
||||
"Connect": "Connect",
|
||||
"LabelDownloadTo": "Download to:"
|
||||
"HeaderMyMedia": "My Media",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelDownloadTo": "Download to:",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"HeaderLatestFrom": "Latest from {0}",
|
||||
"More": "More"
|
||||
}
|
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Hodnocen\u00ed komunity:",
|
||||
"LabelVoteCount": "Po\u010det hlas\u016f:",
|
||||
"LabelMetascore": "Metask\u00f3re:",
|
||||
"LabelCriticRating": "Hodnocen\u00ed kritik\u016f:",
|
||||
"LabelCriticRatingSummary": "Shrnut\u00ed hodnocen\u00ed kritik\u016f:",
|
||||
"LabelAwardSummary": "P\u0159ehled ocen\u011bn\u00ed:",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "Accept",
|
||||
"Reject": "Reject",
|
||||
"Connect": "P\u0159ipojit",
|
||||
"LabelDownloadTo": "Download to:"
|
||||
"HeaderMyMedia": "My Media",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelDownloadTo": "Download to:",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"HeaderLatestFrom": "Latest from {0}",
|
||||
"More": "V\u00edce"
|
||||
}
|
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "F\u00e6llesskabsvurdering:",
|
||||
"LabelVoteCount": "Antal stemmer:",
|
||||
"LabelMetascore": "Metascore:",
|
||||
"LabelCriticRating": "Kritikervurdering:",
|
||||
"LabelCriticRatingSummary": "Resum\u00e9 af kritikervurderinger:",
|
||||
"LabelAwardSummary": "Resum\u00e9 af priser:",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "Godkend",
|
||||
"Reject": "Afvis",
|
||||
"Connect": "Forbind",
|
||||
"LabelDownloadTo": "Download til:"
|
||||
"HeaderMyMedia": "My Media",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelDownloadTo": "Download til:",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"HeaderLatestFrom": "Latest from {0}",
|
||||
"More": "More"
|
||||
}
|
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community Bewertung:",
|
||||
"LabelVoteCount": "Stimmen:",
|
||||
"LabelMetascore": "Metascore:",
|
||||
"LabelCriticRating": "Kritiker Bewertung:",
|
||||
"LabelCriticRatingSummary": "Kritikerbewertungen:",
|
||||
"LabelAwardSummary": "Auszeichnungen:",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "Akzeptieren",
|
||||
"Reject": "Ablehnen",
|
||||
"Connect": "Verbinde",
|
||||
"LabelDownloadTo": "Herunterladen nach:"
|
||||
"HeaderMyMedia": "My Media",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelDownloadTo": "Herunterladen nach:",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"HeaderLatestFrom": "Latest from {0}",
|
||||
"More": "Mehr"
|
||||
}
|
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelMetascore": "Metascore:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelCriticRatingSummary": "Critic rating summary:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "Accept",
|
||||
"Reject": "Reject",
|
||||
"Connect": "Connect",
|
||||
"LabelDownloadTo": "Download to:"
|
||||
"HeaderMyMedia": "My Media",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelDownloadTo": "Download to:",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"HeaderLatestFrom": "Latest from {0}",
|
||||
"More": "More"
|
||||
}
|
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelMetascore": "Metascore:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelCriticRatingSummary": "Critic rating summary:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "Accept",
|
||||
"Reject": "Reject",
|
||||
"Connect": "Connect",
|
||||
"LabelDownloadTo": "Download to:"
|
||||
"HeaderMyMedia": "My Media",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelDownloadTo": "Download to:",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"HeaderLatestFrom": "Latest from {0}",
|
||||
"More": "More"
|
||||
}
|
|
@ -394,5 +394,15 @@
|
|||
"Accept": "Accept",
|
||||
"Reject": "Reject",
|
||||
"Connect": "Connect",
|
||||
"LabelDownloadTo": "Download to:"
|
||||
"HeaderMyMedia": "My Media",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelDownloadTo": "Download to:",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"HeaderLatestFrom": "Latest from {0}",
|
||||
"More": "More"
|
||||
}
|
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelMetascore": "Metascore:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelCriticRatingSummary": "Critic rating summary:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "Accept",
|
||||
"Reject": "Reject",
|
||||
"Connect": "Connect",
|
||||
"LabelDownloadTo": "Download to:"
|
||||
"HeaderMyMedia": "My Media",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelDownloadTo": "Download to:",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"HeaderLatestFrom": "Latest from {0}",
|
||||
"More": "More"
|
||||
}
|
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "\u00c1lbum",
|
||||
"LabelCommunityRating": "Calificaci\u00f3n de la comunidad:",
|
||||
"LabelVoteCount": "Cantidad de votos:",
|
||||
"LabelMetascore": "Metaescore:",
|
||||
"LabelCriticRating": "Calificaci\u00f3n de la cr\u00edtica:",
|
||||
"LabelCriticRatingSummary": "Res\u00famen de la calificaci\u00f3n de la cr\u00edtica:",
|
||||
"LabelAwardSummary": "Res\u00famen de premios:",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "Aceptar",
|
||||
"Reject": "Rechazar",
|
||||
"Connect": "Conectar",
|
||||
"LabelDownloadTo": "Descargar a:"
|
||||
"HeaderMyMedia": "My Media",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelDownloadTo": "Descargar a:",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"HeaderLatestFrom": "Latest from {0}",
|
||||
"More": "Mas"
|
||||
}
|
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "\u00c1lbum",
|
||||
"LabelCommunityRating": "Puntuaci\u00f3n de la comunidad",
|
||||
"LabelVoteCount": "Contador de votos:",
|
||||
"LabelMetascore": "Metapuntuaci\u00f3n:",
|
||||
"LabelCriticRating": "Valoraci\u00f3n de la cr\u00edtica:",
|
||||
"LabelCriticRatingSummary": "Resumen de la valoraci\u00f3n de la cr\u00edtica:",
|
||||
"LabelAwardSummary": "Resumen de premios:",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "Accept",
|
||||
"Reject": "Reject",
|
||||
"Connect": "Conectar",
|
||||
"LabelDownloadTo": "Download to:"
|
||||
"HeaderMyMedia": "My Media",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelDownloadTo": "Download to:",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"HeaderLatestFrom": "Latest from {0}",
|
||||
"More": "M\u00e1s"
|
||||
}
|
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelMetascore": "Metascore:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelCriticRatingSummary": "Critic rating summary:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "Accept",
|
||||
"Reject": "Reject",
|
||||
"Connect": "Connect",
|
||||
"LabelDownloadTo": "Download to:"
|
||||
"HeaderMyMedia": "My Media",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelDownloadTo": "Download to:",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"HeaderLatestFrom": "Latest from {0}",
|
||||
"More": "More"
|
||||
}
|
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelMetascore": "Metascore:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelCriticRatingSummary": "Critic rating summary:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "Accept",
|
||||
"Reject": "Reject",
|
||||
"Connect": "Connect",
|
||||
"LabelDownloadTo": "Download to:"
|
||||
"HeaderMyMedia": "My Media",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelDownloadTo": "Download to:",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"HeaderLatestFrom": "Latest from {0}",
|
||||
"More": "More"
|
||||
}
|
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "Album :",
|
||||
"LabelCommunityRating": "Note de la communaut\u00e9",
|
||||
"LabelVoteCount": "Nombre de votes",
|
||||
"LabelMetascore": "Metascore",
|
||||
"LabelCriticRating": "Note des critiques",
|
||||
"LabelCriticRatingSummary": "R\u00e9sum\u00e9 des critiques",
|
||||
"LabelAwardSummary": "R\u00e9compenses",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "Accept",
|
||||
"Reject": "Reject",
|
||||
"Connect": "Connexion",
|
||||
"LabelDownloadTo": "Download to:"
|
||||
"HeaderMyMedia": "My Media",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelDownloadTo": "Download to:",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"HeaderLatestFrom": "Latest from {0}",
|
||||
"More": "Plus"
|
||||
}
|
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelMetascore": "Metascore:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelCriticRatingSummary": "Critic rating summary:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "Accept",
|
||||
"Reject": "Reject",
|
||||
"Connect": "Connect",
|
||||
"LabelDownloadTo": "Download to:"
|
||||
"HeaderMyMedia": "My Media",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelDownloadTo": "Download to:",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"HeaderLatestFrom": "Latest from {0}",
|
||||
"More": "More"
|
||||
}
|
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelMetascore": "Metascore:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelCriticRatingSummary": "Critic rating summary:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "Accept",
|
||||
"Reject": "Reject",
|
||||
"Connect": "Connect",
|
||||
"LabelDownloadTo": "Download to:"
|
||||
"HeaderMyMedia": "My Media",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelDownloadTo": "Download to:",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"HeaderLatestFrom": "Latest from {0}",
|
||||
"More": "More"
|
||||
}
|
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Ocjene zajednice:",
|
||||
"LabelVoteCount": "Prebrojavanje glasova:",
|
||||
"LabelMetascore": "Metascore:",
|
||||
"LabelCriticRating": "Ocjene kritike:",
|
||||
"LabelCriticRatingSummary": "Sa\u017eetak ocjena kritike:",
|
||||
"LabelAwardSummary": "Sa\u017eetak nagrada:",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "Accept",
|
||||
"Reject": "Reject",
|
||||
"Connect": "Connect",
|
||||
"LabelDownloadTo": "Download to:"
|
||||
"HeaderMyMedia": "My Media",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelDownloadTo": "Download to:",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"HeaderLatestFrom": "Latest from {0}",
|
||||
"More": "More"
|
||||
}
|
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "K\u00f6z\u00f6ss\u00e9gi \u00e9rt\u00e9kel\u00e9s:",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelMetascore": "Metascore:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelCriticRatingSummary": "Critic rating summary:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "Accept",
|
||||
"Reject": "Reject",
|
||||
"Connect": "Connect",
|
||||
"LabelDownloadTo": "Download to:"
|
||||
"HeaderMyMedia": "My Media",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelDownloadTo": "Download to:",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"HeaderLatestFrom": "Latest from {0}",
|
||||
"More": "Tov\u00e1bb"
|
||||
}
|
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelMetascore": "Metascore:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelCriticRatingSummary": "Critic rating summary:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "Accept",
|
||||
"Reject": "Reject",
|
||||
"Connect": "Connect",
|
||||
"LabelDownloadTo": "Download to:"
|
||||
"HeaderMyMedia": "My Media",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelDownloadTo": "Download to:",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"HeaderLatestFrom": "Latest from {0}",
|
||||
"More": "More"
|
||||
}
|
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Voto del pubblico:",
|
||||
"LabelVoteCount": "Numero di voti:",
|
||||
"LabelMetascore": "Punteggio:",
|
||||
"LabelCriticRating": "Voto della critica:",
|
||||
"LabelCriticRatingSummary": "Sintesi voto della critica:",
|
||||
"LabelAwardSummary": "Sintesi premi:",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "Accetta",
|
||||
"Reject": "Rifiuta",
|
||||
"Connect": "Connetti",
|
||||
"LabelDownloadTo": "Download to:"
|
||||
"HeaderMyMedia": "My Media",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelDownloadTo": "Download to:",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"HeaderLatestFrom": "Latest from {0}",
|
||||
"More": "Dettagli"
|
||||
}
|
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "\u0410\u043b\u044c\u0431\u043e\u043c:",
|
||||
"LabelCommunityRating": "\u049a\u0430\u0443\u044b\u043c \u0431\u0430\u0493\u0430\u043b\u0430\u0443\u044b:",
|
||||
"LabelVoteCount": "\u0414\u0430\u0443\u044b\u0441 \u0435\u0441\u0435\u0431\u0456:",
|
||||
"LabelMetascore": "Metascore \u0431\u0430\u0493\u0430\u043b\u0430\u0443\u044b:",
|
||||
"LabelCriticRating": "\u0421\u044b\u043d\u0448\u044b\u043b\u0430\u0440 \u0431\u0430\u0493\u0430\u043b\u0430\u0443\u044b:",
|
||||
"LabelCriticRatingSummary": "\u0421\u044b\u043d\u0448\u044b\u043b\u0430\u0440 \u0431\u0430\u0493\u0430\u043b\u0430\u0443 \u0430\u049b\u043f\u0430\u0440\u044b:",
|
||||
"LabelAwardSummary": "\u041c\u0430\u0440\u0430\u043f\u0430\u0442 \u0430\u049b\u043f\u0430\u0440\u044b:",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "\u049a\u0430\u0431\u044b\u043b\u0434\u0430\u0443",
|
||||
"Reject": "\u049a\u0430\u0431\u044b\u043b\u0434\u0430\u043c\u0430\u0443",
|
||||
"Connect": "\u049a\u043e\u0441\u044b\u043b\u0443",
|
||||
"LabelDownloadTo": "\u041c\u044b\u043d\u0430\u0493\u0430\u043d \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443:"
|
||||
"HeaderMyMedia": "\u041c\u0435\u043d\u0456\u04a3 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u043c",
|
||||
"LatestFromLibrary": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456 {0}",
|
||||
"HeaderLatestChannelMedia": "\u0410\u0440\u043d\u0430\u043b\u0430\u0440\u0434\u044b\u04a3 \u0435\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456 \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440\u044b",
|
||||
"HeaderContinueWatching": "\u049a\u0430\u0440\u0430\u0443\u0434\u044b \u0436\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443",
|
||||
"HeaderContinueListening": "\u0422\u044b\u04a3\u0434\u0430\u0443\u0434\u044b \u0436\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443",
|
||||
"HeaderActiveRecordings": "\u0411\u0435\u043b\u0441\u0435\u043d\u0434\u0456 \u0436\u0430\u0437\u0431\u0430\u043b\u0430\u0440",
|
||||
"HeaderLatestRecordings": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u04a3\u0433\u0456 \u0436\u0430\u0437\u0431\u0430\u043b\u0430\u0440",
|
||||
"LabelDownloadTo": "\u041c\u044b\u043d\u0430\u0493\u0430\u043d \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443:",
|
||||
"HeaderNextUp": "\u041a\u0435\u0437\u0435\u043a\u0442\u0456",
|
||||
"HeaderLatestFrom": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456 {0}",
|
||||
"More": "\u041a\u04e9\u0431\u0456\u0440\u0435\u043a"
|
||||
}
|
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "\uc568\ubc94",
|
||||
"LabelCommunityRating": "\ucee4\ubba4\ub2c8\ud2f0 \ud3c9\uc810:",
|
||||
"LabelVoteCount": "\ud3c9\uac00 \ud69f\uc218:",
|
||||
"LabelMetascore": "Metascore:",
|
||||
"LabelCriticRating": "Critic \ud3c9\uc810:",
|
||||
"LabelCriticRatingSummary": "Critic \ud3c9\uc810 \uc694\uc57d:",
|
||||
"LabelAwardSummary": "\uc218\uc0c1 \uc694\uc57d:",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "Accept",
|
||||
"Reject": "Reject",
|
||||
"Connect": "\uc811\uc18d",
|
||||
"LabelDownloadTo": "Download to:"
|
||||
"HeaderMyMedia": "My Media",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelDownloadTo": "Download to:",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"HeaderLatestFrom": "Latest from {0}",
|
||||
"More": "More"
|
||||
}
|
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelMetascore": "Metascore:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelCriticRatingSummary": "Critic rating summary:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "Accept",
|
||||
"Reject": "Reject",
|
||||
"Connect": "Connect",
|
||||
"LabelDownloadTo": "Download to:"
|
||||
"HeaderMyMedia": "My Media",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelDownloadTo": "Download to:",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"HeaderLatestFrom": "Latest from {0}",
|
||||
"More": "More"
|
||||
}
|
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Fellesskap anmeldelse:",
|
||||
"LabelVoteCount": "Stemme tall:",
|
||||
"LabelMetascore": "Metascore:",
|
||||
"LabelCriticRating": "Kritiker anmeldelse:",
|
||||
"LabelCriticRatingSummary": "Kritiker anmeldelse sammendrag:",
|
||||
"LabelAwardSummary": "Pris sammendrag:",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "Accept",
|
||||
"Reject": "Reject",
|
||||
"Connect": "Koble til",
|
||||
"LabelDownloadTo": "Download to:"
|
||||
"HeaderMyMedia": "My Media",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelDownloadTo": "Download to:",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"HeaderLatestFrom": "Latest from {0}",
|
||||
"More": "Mere"
|
||||
}
|
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Beoordeling gemeenschap:",
|
||||
"LabelVoteCount": "Aantal stemmen:",
|
||||
"LabelMetascore": "Metascore:",
|
||||
"LabelCriticRating": "Beoordeling critici:",
|
||||
"LabelCriticRatingSummary": "Samenvatting beoordeling critici:",
|
||||
"LabelAwardSummary": "Samenvatting prijzen:",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "Accept",
|
||||
"Reject": "Reject",
|
||||
"Connect": "Verbind",
|
||||
"LabelDownloadTo": "Download to:"
|
||||
"HeaderMyMedia": "My Media",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelDownloadTo": "Download to:",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"HeaderLatestFrom": "Latest from {0}",
|
||||
"More": "Meer"
|
||||
}
|
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "Album",
|
||||
"LabelCommunityRating": "Ocena spo\u0142eczno\u015bci:",
|
||||
"LabelVoteCount": "Liczba g\u0142os\u00f3w:",
|
||||
"LabelMetascore": "Ocena:",
|
||||
"LabelCriticRating": "Ocena krytyk\u00f3w:",
|
||||
"LabelCriticRatingSummary": "Podsumowanie oceny krytyk\u00f3w:",
|
||||
"LabelAwardSummary": "Zdobyte nagrody:",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "Accept",
|
||||
"Reject": "Reject",
|
||||
"Connect": "Po\u0142acz",
|
||||
"LabelDownloadTo": "Download to:"
|
||||
"HeaderMyMedia": "My Media",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelDownloadTo": "Download to:",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"HeaderLatestFrom": "Latest from {0}",
|
||||
"More": "Wi\u0119cej"
|
||||
}
|
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "\u00c1lbum:",
|
||||
"LabelCommunityRating": "Avalia\u00e7\u00e3o da comunidade:",
|
||||
"LabelVoteCount": "Contagem de votos:",
|
||||
"LabelMetascore": "Metascore:",
|
||||
"LabelCriticRating": "Avalia\u00e7\u00e3o da cr\u00edtica:",
|
||||
"LabelCriticRatingSummary": "Resumo da avalia\u00e7\u00e3o da cr\u00edtica:",
|
||||
"LabelAwardSummary": "Resumo da premia\u00e7\u00e3o:",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "Aceitar",
|
||||
"Reject": "Rejeitar",
|
||||
"Connect": "Conectar",
|
||||
"LabelDownloadTo": "Baixar para:"
|
||||
"HeaderMyMedia": "My Media",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelDownloadTo": "Baixar para:",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"HeaderLatestFrom": "Latest from {0}",
|
||||
"More": "Mais"
|
||||
}
|
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "\u00c1lbum:",
|
||||
"LabelCommunityRating": "Avalia\u00e7\u00e3o da comunidade:",
|
||||
"LabelVoteCount": "Contagem de votos:",
|
||||
"LabelMetascore": "Metascore:",
|
||||
"LabelCriticRating": "Avalia\u00e7\u00e3o da cr\u00edtica:",
|
||||
"LabelCriticRatingSummary": "Resumo da avalia\u00e7\u00e3o da cr\u00edtica:",
|
||||
"LabelAwardSummary": "Resumo da premia\u00e7\u00e3o:",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "Accept",
|
||||
"Reject": "Reject",
|
||||
"Connect": "Conectar",
|
||||
"LabelDownloadTo": "Download to:"
|
||||
"HeaderMyMedia": "My Media",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelDownloadTo": "Download to:",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"HeaderLatestFrom": "Latest from {0}",
|
||||
"More": "Mais"
|
||||
}
|
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelMetascore": "Metascore:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelCriticRatingSummary": "Critic rating summary:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "Accept",
|
||||
"Reject": "Reject",
|
||||
"Connect": "Connect",
|
||||
"LabelDownloadTo": "Download to:"
|
||||
"HeaderMyMedia": "My Media",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelDownloadTo": "Download to:",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"HeaderLatestFrom": "Latest from {0}",
|
||||
"More": "More"
|
||||
}
|
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "\u0410\u043b\u044c\u0431\u043e\u043c",
|
||||
"LabelCommunityRating": "\u041e\u0431\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u0430\u044f \u043e\u0446\u0435\u043d\u043a\u0430:",
|
||||
"LabelVoteCount": "\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0433\u043e\u043b\u043e\u0441\u043e\u0432:",
|
||||
"LabelMetascore": "\u041e\u0446\u0435\u043d\u043a\u0430 Metascore:",
|
||||
"LabelCriticRating": "\u041e\u0446\u0435\u043d\u043a\u0430 \u043a\u0440\u0438\u0442\u0438\u043a\u043e\u0432:",
|
||||
"LabelCriticRatingSummary": "\u0421\u0432\u043e\u0434\u043a\u0430 \u043e\u0446\u0435\u043d\u043a\u0438 \u043a\u0440\u0438\u0442\u0438\u043a\u043e\u0432:",
|
||||
"LabelAwardSummary": "\u0421\u0432\u043e\u0434\u043a\u0430 \u043d\u0430\u0433\u0440\u0430\u0436\u0434\u0435\u043d\u0438\u0439:",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "\u041f\u0440\u0438\u043d\u044f\u0442\u044c",
|
||||
"Reject": "\u041e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c",
|
||||
"Connect": "\u041f\u043e\u0434\u0441\u043e\u0435\u0434\u0438\u043d\u0438\u0442\u044c\u0441\u044f",
|
||||
"LabelDownloadTo": "\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u043d\u0430:"
|
||||
"HeaderMyMedia": "\u041c\u043e\u0438 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435",
|
||||
"LatestFromLibrary": "\u041d\u043e\u0432\u0435\u0439\u0448\u0435\u0435: {0}",
|
||||
"HeaderLatestChannelMedia": "\u041d\u043e\u0432\u0435\u0439\u0448\u0435\u0435 \u0438\u0437 \u043a\u0430\u043d\u0430\u043b\u043e\u0432",
|
||||
"HeaderContinueWatching": "\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0435\u043d\u0438\u0435 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430",
|
||||
"HeaderContinueListening": "\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0435\u043d\u0438\u0435 \u043f\u0440\u043e\u0441\u043b\u0443\u0448\u0438\u0432\u0430\u043d\u0438\u044f",
|
||||
"HeaderActiveRecordings": "\u0410\u043a\u0442\u0438\u0432\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438",
|
||||
"HeaderLatestRecordings": "\u041d\u043e\u0432\u0435\u0439\u0448\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438",
|
||||
"LabelDownloadTo": "\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u043d\u0430:",
|
||||
"HeaderNextUp": "\u041e\u0447\u0435\u0440\u0435\u0434\u043d\u043e\u0435",
|
||||
"HeaderLatestFrom": "\u041d\u043e\u0432\u0435\u0439\u0448\u0435\u0435 \u0438\u0437 {0}",
|
||||
"More": "\u0415\u0449\u0451..."
|
||||
}
|
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelMetascore": "Metascore:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelCriticRatingSummary": "Critic rating summary:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "Accept",
|
||||
"Reject": "Reject",
|
||||
"Connect": "Connect",
|
||||
"LabelDownloadTo": "Download to:"
|
||||
"HeaderMyMedia": "My Media",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelDownloadTo": "Download to:",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"HeaderLatestFrom": "Latest from {0}",
|
||||
"More": "More"
|
||||
}
|
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelMetascore": "Metascore:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelCriticRatingSummary": "Critic rating summary:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "Accept",
|
||||
"Reject": "Reject",
|
||||
"Connect": "Connect",
|
||||
"LabelDownloadTo": "Download to:"
|
||||
"HeaderMyMedia": "My Media",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelDownloadTo": "Download to:",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"HeaderLatestFrom": "Latest from {0}",
|
||||
"More": "More"
|
||||
}
|
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Anv\u00e4ndaromd\u00f6me:",
|
||||
"LabelVoteCount": "Antal r\u00f6ster:",
|
||||
"LabelMetascore": "Metabetyg:",
|
||||
"LabelCriticRating": "Kritikerbetyg:",
|
||||
"LabelCriticRatingSummary": "Sammanfattning av kritikerbetyg:",
|
||||
"LabelAwardSummary": "Sammanfattning av utm\u00e4rkelser:",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "Accept",
|
||||
"Reject": "Reject",
|
||||
"Connect": "Anslut",
|
||||
"LabelDownloadTo": "Download to:"
|
||||
"HeaderMyMedia": "My Media",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelDownloadTo": "Download to:",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"HeaderLatestFrom": "Latest from {0}",
|
||||
"More": "Mer"
|
||||
}
|
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelMetascore": "Metascore:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelCriticRatingSummary": "Critic rating summary:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "Accept",
|
||||
"Reject": "Reject",
|
||||
"Connect": "Connect",
|
||||
"LabelDownloadTo": "Download to:"
|
||||
"HeaderMyMedia": "My Media",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelDownloadTo": "Download to:",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"HeaderLatestFrom": "Latest from {0}",
|
||||
"More": "More"
|
||||
}
|
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelMetascore": "Metascore:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelCriticRatingSummary": "Critic rating summary:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "Accept",
|
||||
"Reject": "Reject",
|
||||
"Connect": "Connect",
|
||||
"LabelDownloadTo": "Download to:"
|
||||
"HeaderMyMedia": "My Media",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelDownloadTo": "Download to:",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"HeaderLatestFrom": "Latest from {0}",
|
||||
"More": "More"
|
||||
}
|
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelMetascore": "Metascore:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelCriticRatingSummary": "Critic rating summary:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "Accept",
|
||||
"Reject": "Reject",
|
||||
"Connect": "Connect",
|
||||
"LabelDownloadTo": "Download to:"
|
||||
"HeaderMyMedia": "My Media",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelDownloadTo": "Download to:",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"HeaderLatestFrom": "Latest from {0}",
|
||||
"More": "More"
|
||||
}
|
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "\u4e13\u8f91\uff1a",
|
||||
"LabelCommunityRating": "\u516c\u4f17\u8bc4\u5206\uff1a",
|
||||
"LabelVoteCount": "\u6295\u7968\u8ba1\u6570\uff1a",
|
||||
"LabelMetascore": "\u5a92\u4f53\u8bc4\u5206\uff1a",
|
||||
"LabelCriticRating": "\u5f71\u8bc4\u4eba\u8bc4\u5206\uff1a",
|
||||
"LabelCriticRatingSummary": "\u5f71\u8bc4\u4eba\u8bc4\u4ef7\uff1a",
|
||||
"LabelAwardSummary": "\u83b7\u5956\u6458\u8981\uff1a",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "Accept",
|
||||
"Reject": "Reject",
|
||||
"Connect": "Connect",
|
||||
"LabelDownloadTo": "Download to:"
|
||||
"HeaderMyMedia": "My Media",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelDownloadTo": "Download to:",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"HeaderLatestFrom": "Latest from {0}",
|
||||
"More": "More"
|
||||
}
|
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "\u8a0e\u8ad6\u5340\u8a55\u5206",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelMetascore": "Metascore:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelCriticRatingSummary": "Critic rating summary:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "Accept",
|
||||
"Reject": "Reject",
|
||||
"Connect": "Connect",
|
||||
"LabelDownloadTo": "Download to:"
|
||||
"HeaderMyMedia": "My Media",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelDownloadTo": "Download to:",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"HeaderLatestFrom": "Latest from {0}",
|
||||
"More": "More"
|
||||
}
|
|
@ -156,7 +156,6 @@
|
|||
"LabelAlbum": "Album:",
|
||||
"LabelCommunityRating": "Community rating:",
|
||||
"LabelVoteCount": "Vote count:",
|
||||
"LabelMetascore": "Metascore:",
|
||||
"LabelCriticRating": "Critic rating:",
|
||||
"LabelCriticRatingSummary": "Critic rating summary:",
|
||||
"LabelAwardSummary": "Award summary:",
|
||||
|
@ -395,5 +394,15 @@
|
|||
"Accept": "Accept",
|
||||
"Reject": "Reject",
|
||||
"Connect": "Connect",
|
||||
"LabelDownloadTo": "Download to:"
|
||||
"HeaderMyMedia": "My Media",
|
||||
"LatestFromLibrary": "Latest {0}",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"HeaderContinueWatching": "Continue Watching",
|
||||
"HeaderContinueListening": "Continue Listening",
|
||||
"HeaderActiveRecordings": "Active Recordings",
|
||||
"HeaderLatestRecordings": "Latest Recordings",
|
||||
"LabelDownloadTo": "Download to:",
|
||||
"HeaderNextUp": "Next Up",
|
||||
"HeaderLatestFrom": "Latest from {0}",
|
||||
"More": "More"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue