mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
show buffer progress
This commit is contained in:
parent
33008fd2ff
commit
7f5cde6e16
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
define(["browser","dom","layoutManager","css!./emby-slider","registerElement","emby-input"],function(browser,dom,layoutManager){"use strict";function updateValues(range,backgroundLower,backgroundUpper){var value=range.value;requestAnimationFrame(function(){if(backgroundLower){var fraction=(value-range.min)/(range.max-range.min);browser.noFlex&&(backgroundLower.style["-webkit-flex"]=fraction,backgroundUpper.style["-webkit-flex"]=1-fraction,backgroundLower.style["-webkit-box-flex"]=fraction,backgroundUpper.style["-webkit-box-flex"]=1-fraction),backgroundLower.style.flex=fraction,backgroundUpper.style.flex=1-fraction}})}function updateBubble(range,value,bubble,bubbleText){requestAnimationFrame(function(){bubble.style.left=value+"%",range.getBubbleHtml?value=range.getBubbleHtml(value):(value=range.getBubbleText?range.getBubbleText(value):Math.round(value),value='<h1 class="sliderBubbleText">'+value+"</h1>"),bubble.innerHTML=value})}function startInterval(range,backgroundLower,backgroundUpper){var interval=range.interval;interval&&clearInterval(interval),range.interval=setInterval(function(){updateValues(range,backgroundLower,backgroundUpper)},100)}var EmbySliderPrototype=Object.create(HTMLInputElement.prototype),supportsNativeProgressStyle=browser.firefox||browser.edge||browser.msie,supportsValueSetOverride=!1;if(Object.getOwnPropertyDescriptor&&Object.defineProperty){var descriptor=Object.getOwnPropertyDescriptor(HTMLInputElement.prototype,"value");descriptor&&descriptor.configurable&&(supportsValueSetOverride=!0)}EmbySliderPrototype.attachedCallback=function(){if("true"!==this.getAttribute("data-embyslider")){this.setAttribute("data-embyslider","true"),this.classList.add("mdl-slider"),this.classList.add("mdl-js-slider"),this.classList.contains("slider-medium-thumb")||(layoutManager.mobile?this.classList.add("slider-large-thumb"):layoutManager.tv&&this.classList.add("slider-small-thumb")),browser.noFlex&&this.classList.add("slider-no-webkit-thumb");var containerElement=this.parentNode;containerElement.classList.add("mdl-slider__container");var htmlToInsert="";supportsNativeProgressStyle||(htmlToInsert+='<div class="mdl-slider__background-flex"><div class="mdl-slider__background-lower"></div><div class="mdl-slider__background-upper"></div></div>'),htmlToInsert+='<div class="sliderBubble hide"></div>',containerElement.insertAdjacentHTML("beforeend",htmlToInsert);var backgroundLower=containerElement.querySelector(".mdl-slider__background-lower"),backgroundUpper=containerElement.querySelector(".mdl-slider__background-upper"),sliderBubble=containerElement.querySelector(".sliderBubble"),hasHideClass=sliderBubble.classList.contains("hide");dom.addEventListener(this,"input",function(e){this.dragging=!0,updateBubble(this,this.value,sliderBubble),hasHideClass&&(sliderBubble.classList.remove("hide"),hasHideClass=!1)},{passive:!0}),dom.addEventListener(this,"change",function(){this.dragging=!1,updateValues(this,backgroundLower,backgroundUpper),sliderBubble.classList.add("hide"),hasHideClass=!0},{passive:!0}),browser.firefox||(dom.addEventListener(this,"mousemove",function(e){if(!this.dragging){var rect=this.getBoundingClientRect(),clientX=e.clientX,bubbleValue=(clientX-rect.left)/rect.width;bubbleValue*=100,updateBubble(this,bubbleValue,sliderBubble),hasHideClass&&(sliderBubble.classList.remove("hide"),hasHideClass=!1)}},{passive:!0}),dom.addEventListener(this,"mouseleave",function(){sliderBubble.classList.add("hide"),hasHideClass=!0},{passive:!0})),supportsNativeProgressStyle||(supportsValueSetOverride?this.addEventListener("valueset",function(){updateValues(this,backgroundLower,backgroundUpper)}):startInterval(this,backgroundLower,backgroundUpper))}},EmbySliderPrototype.detachedCallback=function(){var interval=this.interval;interval&&clearInterval(interval),this.interval=null},document.registerElement("emby-slider",{prototype:EmbySliderPrototype,extends:"input"})});
|
||||
define(["browser","dom","layoutManager","css!./emby-slider","registerElement","emby-input"],function(browser,dom,layoutManager){"use strict";function updateValues(range,backgroundLower){var value=range.value;requestAnimationFrame(function(){if(backgroundLower){var fraction=(value-range.min)/(range.max-range.min);enableWidthWithTransform?backgroundLower.style.transform="scaleX("+fraction+")":(fraction*=100,backgroundLower.style.width=fraction+"%")}})}function updateBubble(range,value,bubble,bubbleText){requestAnimationFrame(function(){bubble.style.left=value+"%",range.getBubbleHtml?value=range.getBubbleHtml(value):(value=range.getBubbleText?range.getBubbleText(value):Math.round(value),value='<h1 class="sliderBubbleText">'+value+"</h1>"),bubble.innerHTML=value})}function setRange(elem,startPercent,endPercent){var style=elem.style;style.left=Math.max(startPercent,0)+"%";var widthPercent=endPercent-startPercent;style.width=Math.max(Math.min(widthPercent,100),0)+"%"}function mapRangesFromRuntimeToPercent(ranges,runtime){return runtime?ranges.map(function(r){return{start:r.start/runtime*100,end:r.end/runtime*100}}):[]}function startInterval(range,backgroundLower){var interval=range.interval;interval&&clearInterval(interval),range.interval=setInterval(function(){updateValues(range,backgroundLower)},100)}var enableWidthWithTransform,EmbySliderPrototype=Object.create(HTMLInputElement.prototype),supportsNativeProgressStyle=browser.firefox,supportsValueSetOverride=!1;if(Object.getOwnPropertyDescriptor&&Object.defineProperty){var descriptor=Object.getOwnPropertyDescriptor(HTMLInputElement.prototype,"value");descriptor&&descriptor.configurable&&(supportsValueSetOverride=!0)}EmbySliderPrototype.attachedCallback=function(){if("true"!==this.getAttribute("data-embyslider")){null==enableWidthWithTransform&&(enableWidthWithTransform=browser.supportsCssAnimation()),this.setAttribute("data-embyslider","true"),this.classList.add("mdl-slider"),this.classList.add("mdl-js-slider"),this.classList.contains("slider-medium-thumb")||(layoutManager.mobile?this.classList.add("slider-large-thumb"):layoutManager.tv&&this.classList.add("slider-small-thumb")),browser.noFlex&&this.classList.add("slider-no-webkit-thumb"),layoutManager.mobile||this.classList.add("mdl-slider-hoverthumb");var containerElement=this.parentNode;containerElement.classList.add("mdl-slider__container");var htmlToInsert="";supportsNativeProgressStyle||(htmlToInsert+='<div class="mdl-slider__background-flex">',htmlToInsert+='<div class="mdl-slider__background-upper"></div>',htmlToInsert+=enableWidthWithTransform?'<div class="mdl-slider__background-lower mdl-slider__background-lower-withtransform"></div>':'<div class="mdl-slider__background-lower"></div>',htmlToInsert+="</div>"),htmlToInsert+='<div class="sliderBubble hide"></div>',containerElement.insertAdjacentHTML("beforeend",htmlToInsert);var backgroundLower=containerElement.querySelector(".mdl-slider__background-lower");this.backgroundUpper=containerElement.querySelector(".mdl-slider__background-upper");var sliderBubble=containerElement.querySelector(".sliderBubble"),hasHideClass=sliderBubble.classList.contains("hide");dom.addEventListener(this,"input",function(e){this.dragging=!0,updateBubble(this,this.value,sliderBubble),hasHideClass&&(sliderBubble.classList.remove("hide"),hasHideClass=!1)},{passive:!0}),dom.addEventListener(this,"change",function(){this.dragging=!1,updateValues(this,backgroundLower),sliderBubble.classList.add("hide"),hasHideClass=!0},{passive:!0}),browser.firefox||(dom.addEventListener(this,"mousemove",function(e){if(!this.dragging){var rect=this.getBoundingClientRect(),clientX=e.clientX,bubbleValue=(clientX-rect.left)/rect.width;bubbleValue*=100,updateBubble(this,bubbleValue,sliderBubble),hasHideClass&&(sliderBubble.classList.remove("hide"),hasHideClass=!1)}},{passive:!0}),dom.addEventListener(this,"mouseleave",function(){sliderBubble.classList.add("hide"),hasHideClass=!0},{passive:!0})),supportsNativeProgressStyle||(supportsValueSetOverride?this.addEventListener("valueset",function(){updateValues(this,backgroundLower)}):startInterval(this,backgroundLower))}},EmbySliderPrototype.setBufferedRanges=function(ranges,runtime,position){var elem=this.backgroundUpper;if(elem){null!=runtime&&(ranges=mapRangesFromRuntimeToPercent(ranges,runtime),position=position/runtime*100);for(var i=0,length=ranges.length;i<length;i++){var range=ranges[i];if(!(null!=position&&position>=range.end))return void setRange(elem,range.start,range.end)}setRange(elem,0,0)}},EmbySliderPrototype.detachedCallback=function(){var interval=this.interval;interval&&clearInterval(interval),this.interval=null,this.backgroundUpper=null},document.registerElement("emby-slider",{prototype:EmbySliderPrototype,extends:"input"})});
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
.countIndicator,.indicator{-webkit-border-radius:500px;font-weight:500}.itemProgressBar{background:#333;position:relative;height:.27em}.itemProgressBarForeground{position:absolute;top:0;left:0;bottom:0;background-color:#52B54B}.itemProgressBarForeground-recording{background-color:#CB272A}.indicator{border-radius:500px;display:-webkit-flex;display:-webkit-box;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;width:2em;height:2em}.countIndicator,.playedIndicator{background:rgba(82,181,75,1);display:-webkit-flex;display:-webkit-box;-webkit-box-align:center;-webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.2)}.timerIndicator{color:#CB272A}.timerIndicator-inactive{color:#888}.indicator+.indicator{margin-left:.25em}.indicatorIcon{width:auto;height:auto;font-size:1.6em}.countIndicator{border-radius:500px;display:flex;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;color:#fff;box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.2);font-size:88%}.playedIndicator,.videoIndicator{-webkit-border-radius:500px;color:#fff}.playedIndicator{border-radius:500px;display:flex;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.2);font-size:80%}.videoIndicator{background:#444;border-radius:500px;display:-webkit-flex;display:-webkit-box;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-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.2);box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.2);font-size:88%}.syncIndicator{color:#fff;-webkit-border-radius:500px;border-radius:500px}.emptySyncIndicator{background:#ccc;color:#333}.fullSyncIndicator{background:rgba(82,181,75,1)}
|
||||
.countIndicator,.indicator{-webkit-border-radius:500px;font-weight:500}.itemProgressBar{background:#333;position:relative;height:.26em}.itemProgressBarForeground{position:absolute;top:0;left:0;bottom:0;background-color:#52B54B}.itemProgressBarForeground-recording{background-color:#CB272A}.indicator{border-radius:500px;display:-webkit-flex;display:-webkit-box;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;width:2em;height:2em}.countIndicator,.playedIndicator{background:rgba(82,181,75,1);display:-webkit-flex;display:-webkit-box;-webkit-box-align:center;-webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.2)}.timerIndicator{color:#CB272A}.timerIndicator-inactive{color:#888}.indicator+.indicator{margin-left:.25em}.indicatorIcon{width:auto;height:auto;font-size:1.6em}.countIndicator{border-radius:500px;display:flex;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;color:#fff;box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.2);font-size:88%}.playedIndicator,.videoIndicator{-webkit-border-radius:500px;color:#fff}.playedIndicator{border-radius:500px;display:flex;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.2);font-size:80%}.videoIndicator{background:#444;border-radius:500px;display:-webkit-flex;display:-webkit-box;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-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.2);box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.2);font-size:88%}.syncIndicator{color:#fff;-webkit-border-radius:500px;border-radius:500px}.emptySyncIndicator{background:#ccc;color:#333}.fullSyncIndicator{background:rgba(82,181,75,1)}
|
@ -1 +1 @@
|
||||
.mediaButton.active{color:#52B54B}.nowPlayingBarInfoContainer{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;height:100%}.nowPlayingBar{color:#ccc;text-align:center;will-change:transform;contain:layout style;-webkit-transition:-webkit-transform .2s ease-out;-o-transition:transform .2s ease-out;transition:transform .2s ease-out}.nowPlayingBar-hidden{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.nowPlayingBarTop{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;flex-direction:row;-webkit-box-align:center;-webkit-align-items:center;align-items:center;height:4.2em}.mediaButton,.nowPlayingBarUserDataButtons .btnUserItemRating{vertical-align:middle;margin:0;text-align:center}.mediaButton i{height:1em;width:1em;font-size:200%}.nowPlayingBar .nowPlayingImage{background-position:center center;background-repeat:no-repeat;-webkit-background-size:contain;background-size:contain;height:70%;width:4.2em;-webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.2);box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.2)}.nowPlayingBarText{overflow:hidden;white-space:nowrap;-o-text-overflow:ellipsis;text-overflow:ellipsis;vertical-align:middle;text-align:left;max-width:10em;-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1;font-size:92%;margin-right:2.4em}.nowPlayingBarSecondaryText{color:#999}.repeatActive{color:#52B54B}@media (min-width:31.25em){.nowPlayingBarText{max-width:15.3em}}@media (min-width:37.5em){.nowPlayingBarText{max-width:17em}}@media (min-width:43.75em){.nowPlayingBarText{max-width:20.4em}}@media (min-width:50em){.nowPlayingBarText{max-width:25.5em}}@media (min-width:56.25em){.nowPlayingBarText{max-width:34em}}.nowPlayingBarCenter{vertical-align:middle;text-align:center;z-index:2;-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.nowPlayingBarPositionContainer{position:absolute!important;left:0;top:-8px;right:0;z-index:1}.nowPlayingBarPositionContainer .mdl-slider__background-upper{background:#222}.headroom--unpinned .nowPlayingBarPositionContainer,.noMediaProgress .nowPlayingBarPositionContainer{display:none}.nowPlayingBarRight{position:relative;margin:0 .5em 0 auto;z-index:2;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.nowPlayingBarCurrentTime{vertical-align:middle;font-weight:400;text-align:center;display:inline-block;padding-left:1.5em}.nowPlayingBarVolumeSliderContainer{margin-right:2em}.nowPlayingBarUserDataButtons{display:inline-block;margin-left:1em;margin-right:1em}@media all and (max-width:87.5em){.nowPlayingBarUserDataButtons{display:none}}@media all and (max-width:68.75em){.nowPlayingBar .muteButton,.nowPlayingBar .unmuteButton,.nowPlayingBarVolumeSliderContainer{display:none!important}}@media all and (max-width:50em){.nowPlayingBarCenter>*{display:none!important}.toggleRepeatButton{display:none}}@media all and (min-width:50em){.nowPlayingBarRight .playPauseButton{display:none}}
|
||||
.mediaButton.active{color:#52B54B}.nowPlayingBarInfoContainer{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;height:100%}.nowPlayingBar{color:#ccc;text-align:center;will-change:transform;contain:layout style;-webkit-transition:-webkit-transform .2s ease-out;-o-transition:transform .2s ease-out;transition:transform .2s ease-out}.nowPlayingBar-hidden{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.nowPlayingBarTop{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;flex-direction:row;-webkit-box-align:center;-webkit-align-items:center;align-items:center;height:4.2em}.mediaButton,.nowPlayingBarUserDataButtons .btnUserItemRating{vertical-align:middle;margin:0;text-align:center}.mediaButton i{height:1em;width:1em;font-size:200%}.nowPlayingBar .nowPlayingImage{background-position:center center;background-repeat:no-repeat;-webkit-background-size:contain;background-size:contain;height:70%;width:4.2em;-webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.2);box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.2)}.nowPlayingBarText{overflow:hidden;white-space:nowrap;-o-text-overflow:ellipsis;text-overflow:ellipsis;vertical-align:middle;text-align:left;max-width:10em;-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1;font-size:92%;margin-right:2.4em}.nowPlayingBarSecondaryText{color:#999}.repeatActive{color:#52B54B}@media (min-width:31.25em){.nowPlayingBarText{max-width:15.3em}}@media (min-width:37.5em){.nowPlayingBarText{max-width:17em}}@media (min-width:43.75em){.nowPlayingBarText{max-width:20.4em}}@media (min-width:50em){.nowPlayingBarText{max-width:25.5em}}@media (min-width:56.25em){.nowPlayingBarText{max-width:34em}}.nowPlayingBarCenter{vertical-align:middle;text-align:center;z-index:2;-webkit-box-flex:1;-webkit-flex-grow:1;flex-grow:1;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.nowPlayingBarPositionContainer{position:absolute!important;left:0;top:-8px;right:0;z-index:1}.headroom--unpinned .nowPlayingBarPositionContainer,.noMediaProgress .nowPlayingBarPositionContainer{display:none}.nowPlayingBarRight{position:relative;margin:0 .5em 0 auto;z-index:2;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.nowPlayingBarCurrentTime{vertical-align:middle;font-weight:400;text-align:center;display:inline-block;padding-left:1.5em}.nowPlayingBarVolumeSliderContainer{margin-right:2em}.nowPlayingBarUserDataButtons{display:inline-block;margin-left:1em;margin-right:1em}@media all and (max-width:87.5em){.nowPlayingBarUserDataButtons{display:none}}@media all and (max-width:68.75em){.nowPlayingBar .muteButton,.nowPlayingBar .unmuteButton,.nowPlayingBarVolumeSliderContainer{display:none!important}}@media all and (max-width:50em){.nowPlayingBarCenter>*{display:none!important}.toggleRepeatButton{display:none}}@media all and (min-width:50em){.nowPlayingBarRight .playPauseButton{display:none}}
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -519,5 +519,5 @@
|
||||
"Normal": "Normal",
|
||||
"BurnSubtitlesHelp": "D\u00e9termine si le serveur doit graver les sous-titres lors de la conversion vid\u00e9o en fonction du format des sous-titres. \u00c9viter la gravure des sous-titres am\u00e9liorera les performances du serveur. S\u00e9lectionnez Auto pour graver les formats bas\u00e9s sur l'image (par exemple, VOBSUB, PGS, SUB \/ IDX, etc.) ainsi que certains sous-titres ASS \/ SSA",
|
||||
"AllComplexFormats": "Tous les formats complexes (ASS, SSA, VOBSUB, PGS, SUB \/ IDX, etc.)",
|
||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device."
|
||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "Ces param\u00e8tres s'appliquent \u00e9galement \u00e0 toute lecture Chromecast d\u00e9marr\u00e9e par ce p\u00e9riph\u00e9rique."
|
||||
}
|
@ -486,7 +486,7 @@
|
||||
"ErrorDeletingItem": "Si \u00e8 verificato un errore durante l'eliminazione dell'elemento da Emby Server. Verifica che Emby Server abbia accesso in scrittura sulla cartella multimediale e riprova.",
|
||||
"NoSubtitles": "Nessun Sottotitolo",
|
||||
"Default": "Predefinito",
|
||||
"Smart": "Smart",
|
||||
"Smart": "Intelligente",
|
||||
"Small": "Piccolo",
|
||||
"Medium": "Medio",
|
||||
"Large": "Grande",
|
||||
|
@ -169,7 +169,7 @@
|
||||
"Label3DFormat": "3D \u043f\u0456\u0448\u0456\u043c\u0456:",
|
||||
"FormatValue": "\u041f\u0456\u0448\u0456\u043c: {0}",
|
||||
"DownloadsValue": "\u0416\u04af\u043a\u0442\u0435\u0443\u043b\u0435\u0440: {0}",
|
||||
"PerfectMatch": "Perfect match",
|
||||
"PerfectMatch": "\u04ae\u0437\u0434\u0456\u043a \u0442\u0435\u04a3",
|
||||
"HeaderAlternateEpisodeNumbers": "\u0411\u0430\u043b\u0430\u043c\u0430\u043b\u044b \u0431\u04e9\u043b\u0456\u043c \u043d\u04e9\u043c\u0456\u0440\u043b\u0435\u0440\u0456",
|
||||
"LabelDvdSeasonNumber": "DVD \u043c\u0430\u0443\u0441\u044b\u043c \u043d\u04e9\u043c\u0456\u0440\u0456",
|
||||
"LabelDvdEpisodeNumber": "DVD \u0431\u04e9\u043b\u0456\u043c \u043d\u04e9\u043c\u0456\u0440\u0456",
|
||||
@ -454,19 +454,19 @@
|
||||
"DirectPlaying": "\u0422\u0456\u043a\u0435\u043b\u0435\u0439 \u043e\u0439\u043d\u0430\u0442\u0443\u0434\u0430",
|
||||
"DirectStreaming": "\u0422\u0456\u043a\u0435\u043b\u0435\u0439 \u0442\u0430\u0441\u044b\u043c\u0430\u043b\u0434\u0430\u043d\u0443\u0434\u0430",
|
||||
"Transcoding": "\u049a\u0430\u0439\u0442\u0430 \u043a\u043e\u0434\u0442\u0430\u0443\u0434\u0430",
|
||||
"VideoCodecNotSupported": "\u0411\u0435\u0439\u043d\u0435 \u043a\u043e\u0434\u0435\u043a \u049b\u043e\u043b\u0434\u0430\u0443\u0434\u0430 \u0435\u043c\u0435\u0441",
|
||||
"VideoCodecNotSupported": "\u0411\u0435\u0439\u043d\u0435 \u043a\u043e\u0434\u0435\u043a \u04af\u0448\u0456\u043d \u049b\u043e\u043b\u0434\u0430\u0443 \u043a\u04e9\u0440\u0441\u0435\u0442\u0456\u043b\u043c\u0435\u0439\u0434\u0456",
|
||||
"AudioCodecNotSupported": "\u0414\u044b\u0431\u044b\u0441 \u043a\u043e\u0434\u0435\u043a \u049b\u043e\u043b\u0434\u0430\u0443\u0434\u0430 \u0435\u043c\u0435\u0441",
|
||||
"SubtitleCodecNotSupported": "Subtitle format not supported",
|
||||
"ContainerNotSupported": "\u041a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440 \u049b\u043e\u043b\u0434\u0430\u0443\u0434\u0430 \u0435\u043c\u0435\u0441",
|
||||
"VideoLevelNotSupported": "Video level not supported",
|
||||
"AudioBitrateNotSupported": "\u0414\u044b\u0431\u044b\u0441 \u049b\u0430\u0440\u049b\u044b\u043d\u044b \u049b\u043e\u043b\u0434\u0430\u0443\u0434\u0430 \u0435\u043c\u0435\u0441",
|
||||
"AudioChannelsNotSupported": "\u0414\u044b\u0431\u044b\u0441 \u0430\u0440\u043d\u0430\u043b\u0430\u0440\u044b \u049b\u043e\u043b\u0434\u0430\u0443\u0434\u0430 \u0435\u043c\u0435\u0441",
|
||||
"VideoResolutionNotSupported": "\u0411\u0435\u0439\u043d\u0435 \u0430\u0436\u044b\u0440\u0430\u0442\u044b\u043b\u044b\u043c\u0434\u044b\u0493\u044b \u049b\u043e\u043b\u0434\u0430\u0443\u0434\u0430 \u0435\u043c\u0435\u0441",
|
||||
"AudioProfileNotSupported": "\u0414\u044b\u0431\u044b\u0441 \u043f\u0440\u043e\u0444\u0430\u0439\u043b\u044b \u049b\u043e\u043b\u0434\u0430\u0443\u0434\u0430 \u0435\u043c\u0435\u0441",
|
||||
"AudioSampleRateNotSupported": "\u04ae\u043b\u0433\u0456 \u0436\u0438\u0456\u043b\u0456\u0433\u0456 \u049b\u043e\u043b\u0434\u0430\u0443\u0434\u0430 \u0435\u043c\u0435\u0441",
|
||||
"AnamorphicVideoNotSupported": "Anamorphic video not supported",
|
||||
"InterlacedVideoNotSupported": "Interlaced video not supported",
|
||||
"SecondaryAudioNotSupported": "Audio track switching not supported",
|
||||
"SubtitleCodecNotSupported": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440 \u043f\u0456\u0448\u0456\u043c \u04af\u0448\u0456\u043d \u049b\u043e\u043b\u0434\u0430\u0443 \u043a\u04e9\u0440\u0441\u0435\u0442\u0456\u043b\u043c\u0435\u0439\u0434\u0456",
|
||||
"ContainerNotSupported": "\u041a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440 \u04af\u0448\u0456\u043d \u049b\u043e\u043b\u0434\u0430\u0443 \u043a\u04e9\u0440\u0441\u0435\u0442\u0456\u043b\u043c\u0435\u0439\u0434\u0456",
|
||||
"VideoLevelNotSupported": "\u0411\u0435\u0439\u043d\u0435 \u0434\u0435\u04a3\u0433\u0435\u0439\u0456 \u04af\u0448\u0456\u043d \u049b\u043e\u043b\u0434\u0430\u0443 \u043a\u04e9\u0440\u0441\u0435\u0442\u0456\u043b\u043c\u0435\u0439\u0434\u0456",
|
||||
"AudioBitrateNotSupported": "\u0414\u044b\u0431\u044b\u0441 \u049b\u0430\u0440\u049b\u044b\u043d\u044b \u04af\u0448\u0456\u043d \u049b\u043e\u043b\u0434\u0430\u0443 \u043a\u04e9\u0440\u0441\u0435\u0442\u0456\u043b\u043c\u0435\u0439\u0434\u0456",
|
||||
"AudioChannelsNotSupported": "\u0414\u044b\u0431\u044b\u0441 \u0430\u0440\u043d\u0430\u043b\u0430\u0440\u044b \u04af\u0448\u0456\u043d \u049b\u043e\u043b\u0434\u0430\u0443 \u043a\u04e9\u0440\u0441\u0435\u0442\u0456\u043b\u043c\u0435\u0439\u0434\u0456",
|
||||
"VideoResolutionNotSupported": "\u0411\u0435\u0439\u043d\u0435 \u0430\u0436\u044b\u0440\u0430\u0442\u044b\u043b\u044b\u043c\u0434\u044b\u0493\u044b \u04af\u0448\u0456\u043d \u049b\u043e\u043b\u0434\u0430\u0443 \u043a\u04e9\u0440\u0441\u0435\u0442\u0456\u043b\u043c\u0435\u0439\u0434\u0456",
|
||||
"AudioProfileNotSupported": "\u0414\u044b\u0431\u044b\u0441 \u043f\u0440\u043e\u0444\u0430\u0439\u043b\u044b \u04af\u0448\u0456\u043d \u049b\u043e\u043b\u0434\u0430\u0443 \u043a\u04e9\u0440\u0441\u0435\u0442\u0456\u043b\u043c\u0435\u0439\u0434\u0456",
|
||||
"AudioSampleRateNotSupported": "\u04ae\u043b\u0433\u0456 \u0436\u0438\u0456\u043b\u0456\u0433\u0456 \u04af\u0448\u0456\u043d \u049b\u043e\u043b\u0434\u0430\u0443 \u043a\u04e9\u0440\u0441\u0435\u0442\u0456\u043b\u043c\u0435\u0439\u0434\u0456",
|
||||
"AnamorphicVideoNotSupported": "\u0410\u043d\u0430\u043c\u043e\u0440\u0444\u0442\u044b\u049b \u0431\u0435\u0439\u043d\u0435 \u04af\u0448\u0456\u043d \u049b\u043e\u043b\u0434\u0430\u0443 \u043a\u04e9\u0440\u0441\u0435\u0442\u0456\u043b\u043c\u0435\u0439\u0434\u0456",
|
||||
"InterlacedVideoNotSupported": "\u041a\u0435\u0437\u0435\u043a\u0442\u0435\u0441\u0443\u043b\u0456\u043a \u0431\u0435\u0439\u043d\u0435 \u04af\u0448\u0456\u043d \u049b\u043e\u043b\u0434\u0430\u0443 \u043a\u04e9\u0440\u0441\u0435\u0442\u0456\u043b\u043c\u0435\u0439\u0434\u0456",
|
||||
"SecondaryAudioNotSupported": "\u0414\u044b\u0431\u044b\u0441 \u0436\u043e\u043b\u0448\u044b\u0493\u044b\u043d \u0430\u0443\u044b\u0441\u0442\u044b\u0440\u0443 \u04af\u0448\u0456\u043d \u049b\u043e\u043b\u0434\u0430\u0443 \u043a\u04e9\u0440\u0441\u0435\u0442\u0456\u043b\u043c\u0435\u0439\u0434\u0456",
|
||||
"ErrorRemovingEmbyConnectAccount": "Emby Connect \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456\u043d \u0430\u043b\u0430\u0441\u0442\u0430\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. \u0411\u0435\u043b\u0441\u0435\u043d\u0434\u0456 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442 \u049b\u043e\u0441\u044b\u043b\u044b\u043c\u044b \u0431\u0430\u0440 \u0435\u043a\u0435\u043d\u0456\u043d\u0435 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437 \u0436\u04d9\u043d\u0435 \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u043a\u0435\u0439\u0456\u043d \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.",
|
||||
"HeaderEmbyAccountRemoved": "Emby \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456 \u0430\u043b\u0430\u0441\u0442\u0430\u043b\u0434\u044b",
|
||||
"MessageEmbyAccontRemoved": "Emby \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456 \u043e\u0441\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u0434\u0430\u043d \u0430\u043b\u0430\u0441\u0442\u0430\u043b\u044b\u043d\u0434\u044b.",
|
||||
@ -482,42 +482,42 @@
|
||||
"MessageEmbyAccountAdded": "Emby \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456 \u043e\u0441\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u0433\u0430 \u04af\u0441\u0442\u0435\u043b\u0456\u043d\u0434\u0456.",
|
||||
"MessagePendingEmbyAccountAdded": "Emby \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456 \u043e\u0441\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u0433\u0430 \u04af\u0441\u0442\u0435\u043b\u0456\u043d\u0434\u0456. \u0422\u0456\u0440\u043a\u0435\u043b\u0433\u0456 \u0438\u0435\u0441\u0456\u043d\u0435 \u044d-\u043f\u043e\u0448\u0442\u0430 \u0436\u0456\u0431\u0435\u0440\u0456\u043b\u0435\u0434\u0456. \u042d-\u043f\u043e\u0448\u0442\u0430\u0434\u0430\u0493\u044b \u0441\u0456\u043b\u0442\u0435\u043c\u0435\u043d\u0456 \u043d\u04b1\u049b\u044b\u043f \u0448\u0430\u049b\u044b\u0440\u0443\u0434\u044b \u0440\u0430\u0441\u0442\u0430\u0443 \u049b\u0430\u0436\u0435\u0442 \u0431\u043e\u043b\u0430\u0434\u044b.",
|
||||
"HeaderEmbyAccountAdded": "Emby \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456 \u04af\u0441\u0442\u0435\u043b\u0456\u043d\u0434\u0456",
|
||||
"LabelSubtitlePlaybackMode": "Subtitle mode:",
|
||||
"ErrorDeletingItem": "There was an error deleting the item from Emby Server. Please check that Emby Server has write access to the media folder and try again.",
|
||||
"NoSubtitles": "No subtitles",
|
||||
"Default": "Default",
|
||||
"Smart": "Smart",
|
||||
"Small": "Small",
|
||||
"Medium": "Medium",
|
||||
"Large": "Large",
|
||||
"ExtraLarge": "Extra large",
|
||||
"OnlyForcedSubtitles": "Only forced subtitles",
|
||||
"AlwaysPlaySubtitles": "Always play subtitles",
|
||||
"DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.",
|
||||
"SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
|
||||
"LabelSubtitlePlaybackMode": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440 \u0440\u0435\u0436\u0456\u043c\u0456:",
|
||||
"ErrorDeletingItem": "Emby Server \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0456\u043d \u0436\u043e\u044e \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. Emby Server \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u049b\u0430\u043b\u0442\u0430\u0441\u044b\u043d\u0430 \u0436\u0430\u0437\u0443\u0493\u0430 \u0440\u04b1\u049b\u0441\u0430\u0442\u044b \u0431\u0430\u0440 \u0435\u043a\u0435\u043d\u0456\u043d \u0442\u0435\u043a\u0441\u0435\u0440\u0456\u043f, \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u043f \u043a\u04e9\u0440\u0456\u04a3\u0456\u0437.",
|
||||
"NoSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440\u0441\u0456\u0437",
|
||||
"Default": "\u04d8\u0434\u0435\u043f\u043a\u0456",
|
||||
"Smart": "\u0417\u0438\u044f\u0442\u0442\u044b",
|
||||
"Small": "\u04b0\u0441\u0430\u049b",
|
||||
"Medium": "\u041e\u0440\u0442\u0430\u0448\u0430",
|
||||
"Large": "\u0406\u0440\u0456",
|
||||
"ExtraLarge": "\u04e8\u0442\u0435 \u0456\u0440\u0456",
|
||||
"OnlyForcedSubtitles": "\u0422\u0435\u043a \u049b\u0430\u043d\u0430 \u043c\u04d9\u0436\u0431\u04af\u0440\u043b\u0456 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440",
|
||||
"AlwaysPlaySubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440\u0434\u0456 \u04d9\u0440\u049b\u0430\u0448\u0430\u043d \u043e\u0439\u043d\u0430\u0442\u0443",
|
||||
"DefaultSubtitlesHelp": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440 \u0435\u043d\u0433\u0456\u0437\u0456\u043b\u0433\u0435\u043d \u043c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0435\u0433\u0456 \u04d9\u0434\u0435\u043f\u043a\u0456 \u0436\u04d9\u043d\u0435 \u043c\u04d9\u0436\u0431\u04af\u0440\u043b\u0456 \u0436\u0430\u043b\u0430\u0443\u0448\u0430\u043b\u0430\u0440\u044b \u043d\u0435\u0433\u0456\u0437\u0456\u043d\u0434\u0435 \u0436\u04af\u043a\u0442\u0435\u043b\u0456\u043f \u0430\u043b\u044b\u043d\u0430\u0434\u044b. \u0411\u0456\u0440\u043d\u0435\u0448\u0435 \u043e\u043f\u0446\u0438\u044f \u049b\u043e\u043b\u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0431\u043e\u043b\u0493\u0430\u043d\u0434\u0430 \u0442\u0456\u043b \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0456 \u049b\u0430\u0440\u0430\u0441\u0442\u044b\u0440\u044b\u043b\u0430\u0434\u044b.",
|
||||
"SmartSubtitlesHelp": "\u0422\u0456\u043b \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0456\u043d\u0435 \u0441\u04d9\u0439\u043a\u0435\u0441 \u043a\u0435\u043b\u0433\u0435\u043d \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440 \u0434\u044b\u0431\u044b\u0441 \u0448\u0435\u0442\u0435\u043b \u0442\u0456\u043b\u0456\u043d\u0434\u0435 \u0431\u043e\u043b\u0493\u0430\u043d\u0434\u0430 \u0436\u04af\u043a\u0442\u0435\u043b\u0435\u0434\u0456.",
|
||||
"HeaderSubtitleSettings": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456",
|
||||
"HeaderSubtitleAppearance": "Subtitle Appearance",
|
||||
"OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
|
||||
"AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
|
||||
"NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.",
|
||||
"LabelPreferredSubtitleLanguage": "Preferred subtitle language:",
|
||||
"LabelTextSize": "Text size:",
|
||||
"TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device",
|
||||
"LabelDropShadow": "Drop shadow:",
|
||||
"LabelTextBackgroundColor": "Text background color:",
|
||||
"LabelWindowBackgroundColor": "Text background color:",
|
||||
"LabelFont": "Font:",
|
||||
"LabelTextColor": "Text color:",
|
||||
"Raised": "Raised",
|
||||
"Depressed": "Depressed",
|
||||
"Uniform": "Uniform",
|
||||
"DropShadow": "Drop shadow",
|
||||
"SmallCaps": "Small caps",
|
||||
"HeaderSubtitleAppearance": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440 \u043a\u04e9\u0440\u0456\u043d\u0456\u0441\u0456",
|
||||
"OnlyForcedSubtitlesHelp": "\u0422\u0435\u043a \u049b\u0430\u043d\u0430 \u043c\u04d9\u0436\u0431\u04af\u0440\u043b\u0456 \u0434\u0435\u043f \u0431\u0435\u043b\u0433\u0456\u043b\u0435\u043d\u0433\u0435\u043d \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440 \u0436\u04af\u043a\u0442\u0435\u043b\u0435\u0434\u0456.",
|
||||
"AlwaysPlaySubtitlesHelp": "\u0422\u0456\u043b \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0456\u043d\u0435 \u0441\u04d9\u0439\u043a\u0435\u0441 \u043a\u0435\u043b\u0433\u0435\u043d \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440 \u0434\u044b\u0431\u044b\u0441 \u0442\u0456\u043b\u0456\u043d\u0435 \u049b\u0430\u0442\u044b\u0441\u0441\u044b\u0437 \u0436\u04af\u043a\u0442\u0435\u043b\u0435\u0434\u0456.",
|
||||
"NoSubtitlesHelp": "\u04d8\u0434\u0435\u043f\u043a\u0456\u0434\u0435 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440 \u0436\u04af\u043a\u0442\u0435\u043b\u043c\u0435\u0439\u0434\u0456. \u041e\u043b\u0430\u0440\u0434\u044b \u043e\u0439\u043d\u0430\u0442\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u04d9\u043b\u0456 \u0434\u0435 \u049b\u043e\u043b\u043c\u0435\u043d \u049b\u043e\u0441\u0443\u0493\u0430 \u0431\u043e\u043b\u0430\u0434\u044b.",
|
||||
"LabelPreferredSubtitleLanguage": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440 \u0442\u0456\u043b\u0456\u043d\u0456\u04a3 \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0456:",
|
||||
"LabelTextSize": "\u041c\u04d9\u0442\u0456\u043d \u04e9\u043b\u0448\u0435\u043c\u0456:",
|
||||
"TheseSettingsAffectSubtitlesOnThisDevice": "\u0411\u04b1\u043b \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440 \u043e\u0441\u044b \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u0434\u0430\u0493\u044b \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440\u0433\u0435 \u04d9\u0441\u0435\u0440 \u0435\u0442\u0435\u0434\u0456",
|
||||
"LabelDropShadow": "\u0416\u0438\u0435\u043a\u0442\u0435\u0440:",
|
||||
"LabelTextBackgroundColor": "\u041c\u04d9\u0442\u0456\u043d \u04e9\u04a3\u0456\u043d\u0456\u04a3 \u0442\u04af\u0441\u0456:",
|
||||
"LabelWindowBackgroundColor": "\u0422\u0435\u0440\u0435\u0437\u0435 \u04e9\u04a3\u0456\u043d\u0456\u04a3 \u0442\u04af\u0441\u0456:",
|
||||
"LabelFont": "\u049a\u0430\u0440\u0456\u043f:",
|
||||
"LabelTextColor": "\u041c\u04d9\u0442\u0456\u043d \u0442\u04af\u0441\u0456:",
|
||||
"Raised": "\u041a\u04e9\u0442\u0435\u0440\u0456\u043b\u0433\u0435\u043d",
|
||||
"Depressed": "\u0422\u04e9\u043c\u0435\u043d \u0442\u04af\u0441\u0456\u0440\u0456\u043b\u0433\u0435\u043d",
|
||||
"Uniform": "\u0411\u0456\u0440\u044b\u04a3\u0493\u0430\u0439",
|
||||
"DropShadow": "\u041a\u04e9\u043b\u0435\u04a3\u043a\u0435\u043b\u0456",
|
||||
"SmallCaps": "\u041a\u0456\u0448\u0456 \u0431\u0430\u0441 \u04d9\u0440\u0456\u043f\u0442\u0435\u0440",
|
||||
"SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS\/SSA).",
|
||||
"LabelBurnSubtitles": "Burn subtitles:",
|
||||
"OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||
"LabelBurnSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440\u0434\u0456 \u0436\u0430\u0437\u0443:",
|
||||
"OnlyImageFormats": "\u0422\u0435\u043a \u043a\u0435\u0441\u043a\u0456\u043d \u043f\u0456\u0448\u0456\u043c\u0434\u0435\u0440\u0456 (VOBSUB, PGS, SUB\/IDX \u0436\u04d9\u043d\u0435 \u0442.\u0431. )",
|
||||
"Normal": "\u041a\u04d9\u0434\u0456\u043c\u0433\u0456",
|
||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
||||
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device."
|
||||
"AllComplexFormats": "\u0411\u0430\u0440\u043b\u044b\u049b \u043a\u04af\u0440\u0434\u0435\u043b\u0456 \u043f\u0456\u0448\u0456\u043c\u0434\u0435\u0440\u0456 (ASS, SSA, VOBSUB, PGS, SUB\/IDX \u0436\u04d9\u043d\u0435 \u0442.\u0431.)",
|
||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "\u0411\u04b1\u043b \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440 \u043e\u0441\u044b \u049b\u04b1\u0440\u044b\u043b\u0493\u044b \u0430\u0440\u049b\u044b\u043b\u044b \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u044b\u043b\u0493\u0430\u043d \u043a\u0435\u0437-\u043a\u0435\u043b\u0433\u0435\u043d Chromecast \u043e\u0439\u043d\u0430\u0442\u0443\u044b\u043d\u0430 \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u043b\u0430\u0434\u044b."
|
||||
}
|
@ -189,7 +189,7 @@
|
||||
"Tags": "\u0422\u0435\u0433\u0438",
|
||||
"HeaderMetadataSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445",
|
||||
"People": "\u041b\u044e\u0434\u0438",
|
||||
"LabelMetadataDownloadLanguage": "\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u0435\u043c\u044b\u0439 \u044f\u0437\u044b\u043a \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u043e\u0433\u043e:",
|
||||
"LabelMetadataDownloadLanguage": "\u0412\u044b\u0431\u043e\u0440 \u044f\u0437\u044b\u043a\u0430 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u043e\u0433\u043e:",
|
||||
"LabelLockItemToPreventChanges": "\u0417\u0430\u0444\u0438\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0439 \u044d\u043b\u0435\u043c\u0435\u043d\u0442, \u0447\u0442\u043e\u0431\u044b \u0437\u0430\u043f\u0440\u0435\u0442\u0438\u0442\u044c \u0431\u0443\u0434\u0443\u0449\u0438\u0435 \u043f\u0440\u0430\u0432\u043a\u0438",
|
||||
"MessageLeaveEmptyToInherit": "\u041d\u0435 \u0437\u0430\u043f\u043e\u043b\u043d\u044f\u0439\u0442\u0435, \u0447\u0442\u043e\u0431\u044b \u043d\u0430\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u044c \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u043e\u0442 \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430, \u0438\u043b\u0438 \u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e.",
|
||||
"LabelCountry": "\u0421\u0442\u0440\u0430\u043d\u0430:",
|
||||
@ -500,7 +500,7 @@
|
||||
"OnlyForcedSubtitlesHelp": "\u0417\u0430\u0433\u0440\u0443\u0436\u0435\u043d\u044b \u0431\u0443\u0434\u0443\u0442 \u0442\u043e\u043b\u044c\u043a\u043e \u0444\u043e\u0440\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u044b.",
|
||||
"AlwaysPlaySubtitlesHelp": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u044b, \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0435 \u044f\u0437\u044b\u043a\u0430, \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c\u0441\u044f \u043d\u0435\u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e \u043e\u0442 \u044f\u0437\u044b\u043a\u0430 \u0430\u0443\u0434\u0438\u043e.",
|
||||
"NoSubtitlesHelp": "\u041f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e, \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u044b \u043d\u0435 \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c\u0441\u044f. \u041e\u043d\u0438 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u0432\u0441\u0435 \u0435\u0449\u0451 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u044b \u0432\u0440\u0443\u0447\u043d\u0443\u044e \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f.",
|
||||
"LabelPreferredSubtitleLanguage": "\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u0435\u043c\u044b\u0439 \u044f\u0437\u044b\u043a \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432:",
|
||||
"LabelPreferredSubtitleLanguage": "\u0412\u044b\u0431\u043e\u0440 \u044f\u0437\u044b\u043a\u0430 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432:",
|
||||
"LabelTextSize": "\u0420\u0430\u0437\u043c\u0435\u0440 \u0442\u0435\u043a\u0441\u0442\u0430:",
|
||||
"TheseSettingsAffectSubtitlesOnThisDevice": "\u042d\u0442\u0438 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0432\u043b\u0438\u044f\u044e\u0442 \u043d\u0430 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u044b \u043d\u0430 \u0434\u0430\u043d\u043d\u043e\u043c \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435",
|
||||
"LabelDropShadow": "\u041e\u043a\u0430\u043d\u0442\u043e\u0432\u043a\u0430:",
|
||||
@ -519,5 +519,5 @@
|
||||
"Normal": "\u041e\u0431\u044b\u0447\u043d\u044b\u0439",
|
||||
"BurnSubtitlesHelp": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442\u0441\u044f, \u0434\u043e\u043b\u0436\u0435\u043d \u043b\u0438 \u0441\u0435\u0440\u0432\u0435\u0440 \u0437\u0430\u043f\u0438\u0441\u044b\u0432\u0430\u0442\u044c \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u044b \u043f\u0440\u0438 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u0438 \u0432\u0438\u0434\u0435\u043e \u0432 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0438 \u043e\u0442 \u0444\u043e\u0440\u043c\u0430\u0442\u0430 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432. \u0418\u0437\u0431\u0435\u0433\u0430\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432 \u0443\u043b\u0443\u0447\u0448\u0438\u0442 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u0441\u0435\u0440\u0432\u0435\u0440\u0430. \u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u00ab\u0410\u0432\u0442\u043e\u00bb \u0434\u043b\u044f \u0437\u0430\u043f\u0438\u0441\u0438 \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u043d\u0430 \u0433\u0440\u0430\u0444\u0438\u043a\u0435 \u0444\u043e\u0440\u043c\u0430\u0442\u043e\u0432 (\u043d\u043f\u0440, VOBSUB, PGS, SUB\/IDX \u0438 \u0442.\u0434.), \u0430 \u0442\u0430\u043a\u0436\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0451\u043d\u043d\u044b\u0445\u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432 ASS\/SSA.",
|
||||
"AllComplexFormats": "\u0412\u0441\u0435 \u043a\u043e\u043c\u043b\u0435\u043a\u0441\u043d\u044b\u0435 \u0444\u043e\u0440\u043c\u0430\u0442\u044b (ASS, SSA, VOBSUB, PGS, SUB\/IDX \u0438 \u0442.\u0434.)",
|
||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device."
|
||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "\u042d\u0442\u0438 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0442\u0430\u043a\u0436\u0435 \u043f\u0440\u0438\u043c\u0435\u043d\u0438\u043c\u044b \u043a \u043b\u044e\u0431\u043e\u043c\u0443 Chromecast-\u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044e \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u043d\u043e\u043c\u0443 \u0434\u0430\u043d\u043d\u044b\u043c \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e\u043c."
|
||||
}
|
@ -36,13 +36,13 @@
|
||||
"RecordSeries": "Spela in serie",
|
||||
"HeaderCinemaMode": "Biol\u00e4ge",
|
||||
"HeaderCloudSync": "Molnsynkronisering",
|
||||
"HeaderDownloadedMedia": "Downloaded Media",
|
||||
"Downloads": "Downloads",
|
||||
"HeaderMyDownloads": "My Downloads",
|
||||
"HeaderDownloadedMedia": "H\u00e4mtad media",
|
||||
"Downloads": "H\u00e4mtningar",
|
||||
"HeaderMyDownloads": "Mina nedladdningar",
|
||||
"HeaderOfflineDownloads": "Offlinemedia",
|
||||
"HeaderOfflineDownloadsDescription": "Ladda ner media till dina enheter f\u00f6r att sen spela upp dom enkelt offline.",
|
||||
"CloudSyncFeatureDescription": "Synka din media till molnet f\u00f6r l\u00e4tttillg\u00e4ngligt backup, arkivering och konvertering.",
|
||||
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
|
||||
"DvrFeatureDescription": "Schemal\u00e4gg individuella LiveTV-inspelningar, serie-inspelningar och mer med Emby DVR.",
|
||||
"ButtonCancelSyncJob": "Avbryt synkronisering",
|
||||
"CancelSyncJobConfirmation": "Om synkroniseringen avbryts kommer synkad media tas bort under n\u00e4sta synkprocess. \u00c4r du s\u00e4ker p\u00e5 att du vill forts\u00e4tta?",
|
||||
"CinemaModeFeatureDescription": "Biol\u00e4get ger dig en bioupplevelse med trailers och anpassade intros f\u00f6re varje film.",
|
||||
@ -58,8 +58,8 @@
|
||||
"Save": "Spara",
|
||||
"Edit": "\u00c4ndra",
|
||||
"Download": "Ladda ned",
|
||||
"Downloaded": "Downloaded",
|
||||
"Downloading": "Downloading",
|
||||
"Downloaded": "Nedladdade",
|
||||
"Downloading": "Laddar ner",
|
||||
"Advanced": "Avancerat",
|
||||
"Delete": "Ta bort",
|
||||
"HeaderDeleteItem": "Radera objekt",
|
||||
@ -149,7 +149,7 @@
|
||||
"LabelArtistsHelp": "Separera med ; vid flera",
|
||||
"LabelAlbumArtists": "Albumartist:",
|
||||
"LabelAlbum": "Album:",
|
||||
"Artists": "Artists",
|
||||
"Artists": "Artister",
|
||||
"LabelCommunityRating": "Anv\u00e4ndaromd\u00f6me:",
|
||||
"LabelCriticRating": "Kritikerbetyg:",
|
||||
"LabelWebsite": "Hemsida:",
|
||||
@ -168,8 +168,8 @@
|
||||
"LabelPlayers": "Spelare:",
|
||||
"Label3DFormat": "3D-format:",
|
||||
"FormatValue": "Format: {0}",
|
||||
"DownloadsValue": "Downloads: {0}",
|
||||
"PerfectMatch": "Perfect match",
|
||||
"DownloadsValue": "Nedladdningar: {0}",
|
||||
"PerfectMatch": "Perfekt matchning",
|
||||
"HeaderAlternateEpisodeNumbers": "Alternativ avsnittsnumrering",
|
||||
"LabelDvdSeasonNumber": "S\u00e4songsnummer p\u00e5 DVD:",
|
||||
"LabelDvdEpisodeNumber": "Avsnittsnummer p\u00e5 DVD:",
|
||||
@ -251,15 +251,15 @@
|
||||
"ValueOneMusicVideo": "1 musikvideo",
|
||||
"ValueMusicVideoCount": "{0} musikvideor",
|
||||
"ValueMinutes": "{0} min",
|
||||
"Albums": "Albums",
|
||||
"Songs": "Songs",
|
||||
"Books": "Books",
|
||||
"HeaderAudioBooks": "Audio Books",
|
||||
"Albums": "Album",
|
||||
"Songs": "L\u00e5tar",
|
||||
"Books": "B\u00f6cker",
|
||||
"HeaderAudioBooks": "Ljudb\u00f6cker",
|
||||
"HeaderIdentifyItemHelp": "Ange ett eller flera s\u00f6kkriterier. Ta bort kriterier f\u00f6r att f\u00e5 fler tr\u00e4ffar.",
|
||||
"PleaseEnterNameOrId": "Ange ett namn eller externt id.",
|
||||
"MessageItemSaved": "Objektet har sparats.",
|
||||
"SearchResults": "S\u00f6kresultat",
|
||||
"DownloadToOtherDevice": "Download to other device",
|
||||
"DownloadToOtherDevice": "Ladda ner till annan enhet",
|
||||
"ServerNameIsRestarting": "Emby Server - {0} startas om.",
|
||||
"ServerNameIsShuttingDown": "Emby Server - {0} st\u00e4ngs ner.",
|
||||
"HeaderDeleteItems": "Ta bort objekt",
|
||||
@ -289,9 +289,9 @@
|
||||
"Settings": "Inst\u00e4llningar",
|
||||
"ShowIndicatorsFor": "Visa indikatorer f\u00f6r:",
|
||||
"NewEpisodes": "Nya avsnitt",
|
||||
"Episodes": "Episodes",
|
||||
"Episodes": "Avsnitt",
|
||||
"HDPrograms": "HD-program",
|
||||
"Programs": "Programs",
|
||||
"Programs": "Program",
|
||||
"LiveBroadcasts": "Lives\u00e4ndningar",
|
||||
"Premieres": "Premi\u00e4rer",
|
||||
"RepeatEpisodes": "Upprepa avsnitt",
|
||||
@ -323,7 +323,7 @@
|
||||
"MinutesAfter": "minuter efter",
|
||||
"SkipEpisodesAlreadyInMyLibrary": "Spela inte in avsnitt som redan finns i mitt bibliotek",
|
||||
"SkipEpisodesAlreadyInMyLibraryHelp": "Avsnitt kommer att j\u00e4mf\u00f6ras med s\u00e4songs- och avsnittsnummer, n\u00e4r det finns.",
|
||||
"LabelKeepUpTo": "Keep up to:",
|
||||
"LabelKeepUpTo": "Beh\u00e5ll upp till:",
|
||||
"AsManyAsPossible": "S\u00e5 m\u00e5nga som m\u00f6jligt",
|
||||
"DefaultErrorMessage": "Ett fel uppstd vid beg\u00e4ran. F\u00f6rs\u00f6k igen senare.",
|
||||
"LabelKeep:": "Beh\u00e5ll:",
|
||||
@ -360,7 +360,7 @@
|
||||
"OneChannel": "En kanal",
|
||||
"ConfirmRemoveDownload": "Ta bort nedladdning?",
|
||||
"RemoveDownload": "Ta bort nedladdning",
|
||||
"KeepDownload": "Keep download",
|
||||
"KeepDownload": "Beh\u00e5ll nedladdning",
|
||||
"AddedOnValue": "{0} tillagd",
|
||||
"RemovingFromDevice": "Tar bort fr\u00e5n enhet",
|
||||
"KeepOnDevice": "Beh\u00e5ll p\u00e5 enhet",
|
||||
@ -381,7 +381,7 @@
|
||||
"HeaderRemoteControl": "Fj\u00e4rrkontroll",
|
||||
"Disconnect": "Koppla bort",
|
||||
"EnableDisplayMirroring": "Aktivera sk\u00e4rmspegling",
|
||||
"HeaderPlayOn": "Play On",
|
||||
"HeaderPlayOn": "Spela p\u00e5",
|
||||
"Quality": "Kvalitet",
|
||||
"Auto": "Auto",
|
||||
"AndroidUnlockRestoreHelp": "F\u00f6r att \u00e5terst\u00e4lla ditt tidigare k\u00f6p, se till s\u00e5 att du \u00e4r inloggad p\u00e5 enheten med samma Google (eller Amazon) konto som genomf\u00f6rde k\u00f6pet. Kolla s\u00e5 att appstore \u00e4r aktiverat och att det inte \u00e4r begr\u00e4nsat med barnsp\u00e4rrar samt att det finns en aktiv internetuppkoppling. Du beh\u00f6ver endast g\u00f6ra detta en g\u00e5ng f\u00f6r att \u00e5terst\u00e4lla ditt tidigare k\u00f6p.",
|
||||
@ -389,135 +389,135 @@
|
||||
"Original": "Original",
|
||||
"Fill": "Fyll",
|
||||
"BestFit": "Anpassad",
|
||||
"MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.",
|
||||
"MessageNoServersAvailableToConnect": "Inga servers finns tillg\u00e4ngliga att ansluta mot. Om du har blivit inbjuden till att dela en server, se till att acceptera nedan eller klicka p\u00e5 l\u00e4nken i mailet.",
|
||||
"MessagePlayAccessRestricted": "Uppspelning av detta inneh\u00e5llet \u00e4r f\u00f6r n\u00e4rvarande begr\u00e4nsat. Kontakta din Emby Server administrat\u00f6r f\u00f6r mer information.",
|
||||
"Accept": "Accept",
|
||||
"Reject": "Reject",
|
||||
"Accept": "Acceptera",
|
||||
"Reject": "Neka",
|
||||
"Connect": "Anslut",
|
||||
"HeaderMyMedia": "My Media",
|
||||
"HeaderMyMediaSmall": "My Media (small)",
|
||||
"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}",
|
||||
"LabelHomeScreenSectionValue": "Home screen section {0}:",
|
||||
"SettingsSaved": "Settings saved.",
|
||||
"None": "None",
|
||||
"HeaderMyMedia": "Min Media",
|
||||
"HeaderMyMediaSmall": "Min Media (liten)",
|
||||
"LatestFromLibrary": "Senaste {0}",
|
||||
"HeaderLatestChannelMedia": "Senaste nytt i Kanaler",
|
||||
"HeaderContinueWatching": "Forts\u00e4tt kolla p\u00e5",
|
||||
"HeaderContinueListening": "Forts\u00e4tt lyssna p\u00e5",
|
||||
"HeaderActiveRecordings": "P\u00e5g\u00e5ende inspelningar",
|
||||
"HeaderLatestRecordings": "Senaste inspelningar",
|
||||
"LabelDownloadTo": "Ladda ner till:",
|
||||
"HeaderNextUp": "N\u00e4sta p\u00e5 tur",
|
||||
"HeaderLatestFrom": "Senaste fr\u00e5n {0}",
|
||||
"LabelHomeScreenSectionValue": "Hemsk\u00e4rmsdel {0}:",
|
||||
"SettingsSaved": "Inst\u00e4llningarna sparade.",
|
||||
"None": "Inga",
|
||||
"More": "Mer",
|
||||
"Up": "Up",
|
||||
"Down": "Down",
|
||||
"HeaderHomeScreen": "Home Screen",
|
||||
"HeaderLatestMedia": "Latest Media",
|
||||
"HeaderLatestChannelItems": "Latest Channel Items",
|
||||
"LabelSelectLastestItemsFolders": "Include items from the following sections in Latest Media",
|
||||
"HeaderLibraryOrder": "Library Order",
|
||||
"HideWatchedContentFromLatestMedia": "Hide watched content from latest media",
|
||||
"HeaderOnNow": "On Now",
|
||||
"Up": "Upp",
|
||||
"Down": "Ner",
|
||||
"HeaderHomeScreen": "Hemsk\u00e4rm",
|
||||
"HeaderLatestMedia": "Nytillkommet",
|
||||
"HeaderLatestChannelItems": "Senaste nytt i Kanaler",
|
||||
"LabelSelectLastestItemsFolders": "Inkludera media fr\u00e5n f\u00f6ljande sektioner i senaste media",
|
||||
"HeaderLibraryOrder": "Biblioteksordning",
|
||||
"HideWatchedContentFromLatestMedia": "D\u00f6lj visat inneh\u00e5ll ifr\u00e5n senaste media",
|
||||
"HeaderOnNow": "Visas nu",
|
||||
"HeaderPlaybackError": "Uppspelningsfel",
|
||||
"PlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.",
|
||||
"PlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.",
|
||||
"PlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.",
|
||||
"PlaybackErrorNotAllowed": "Du har inte tillg\u00e5ng att spela upp det h\u00e4r inneh\u00e5llet. Kontakta din systemadministrat\u00f6r f\u00f6r mer detaljer.",
|
||||
"PlaybackErrorNoCompatibleStream": "Inga kompatibla str\u00f6mmar finns att tillg\u00e5. V\u00e4nligen f\u00f6rs\u00f6k igen senare eller kontakta din systemadministrat\u00f6r f\u00f6r mer detaljer.",
|
||||
"PlaybackErrorPlaceHolder": "S\u00e4tt in skivan f\u00f6r att kunna spela upp den h\u00e4r videon.",
|
||||
"Guide": "Guide",
|
||||
"Suggestions": "Suggestions",
|
||||
"Favorites": "Favorites",
|
||||
"Collections": "Collections",
|
||||
"LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:",
|
||||
"LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.",
|
||||
"Shows": "Shows",
|
||||
"HeaderLibraryFolders": "Library Folders",
|
||||
"HeaderLandingScreens": "Landing Screens",
|
||||
"LandingScreensHelp": "Select the default landing screen when clicking on a library.",
|
||||
"HeaderTermsOfPurchase": "Terms of Purchase",
|
||||
"PrivacyPolicy": "Privacy policy",
|
||||
"TermsOfUse": "Terms of use",
|
||||
"RepeatMode": "Repeat mode",
|
||||
"RepeatOne": "Repeat one",
|
||||
"RepeatAll": "Repeat all",
|
||||
"ConfirmEndPlayerSession": "Would you like to close Emby on the device?",
|
||||
"Yes": "Yes",
|
||||
"No": "No",
|
||||
"LiveTV": "Live TV",
|
||||
"Schedule": "Schedule",
|
||||
"Recordings": "Recordings",
|
||||
"MarkWatched": "Mark watched",
|
||||
"ScanForNewAndUpdatedFiles": "Scan for new and updated files",
|
||||
"DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.",
|
||||
"DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.",
|
||||
"MediaIsBeingConverted": "The media is being converted into a format that is compatible with the device that is playing the media.",
|
||||
"Suggestions": "F\u00f6rslag",
|
||||
"Favorites": "Favoriter",
|
||||
"Collections": "Samlingar",
|
||||
"LabelSelectFolderGroups": "Gruppera automatiskt inneh\u00e5ll fr\u00e5n dessa mappar i vyer, t ex Filmer, Musik eller TV:",
|
||||
"LabelSelectFolderGroupsHelp": "Ej valda mappar kommer att visas f\u00f6r sig sj\u00e4lva i en egen vy.",
|
||||
"Shows": "Serier",
|
||||
"HeaderLibraryFolders": "Biblioteksmappar",
|
||||
"HeaderLandingScreens": "Landningssidor",
|
||||
"LandingScreensHelp": "V\u00e4lj landningssidan som ska visas n\u00e4r man v\u00e4ljer ett bibliotek.",
|
||||
"HeaderTermsOfPurchase": "K\u00f6pvillkor",
|
||||
"PrivacyPolicy": "Sekretesspolicy",
|
||||
"TermsOfUse": "Anv\u00e4ndarvillkor",
|
||||
"RepeatMode": "Repeat-l\u00e4ge",
|
||||
"RepeatOne": "Upprepa en g\u00e5ng",
|
||||
"RepeatAll": "Upprepa alla",
|
||||
"ConfirmEndPlayerSession": "Vill du st\u00e4nga ner Emby p\u00e5 enheten?",
|
||||
"Yes": "Ja",
|
||||
"No": "Nej",
|
||||
"LiveTV": "Live-TV",
|
||||
"Schedule": "Schema",
|
||||
"Recordings": "Inspelningar",
|
||||
"MarkWatched": "Markera som visad",
|
||||
"ScanForNewAndUpdatedFiles": "S\u00f6k efter nya och uppdaterade filer",
|
||||
"DirectStreamHelp1": "Inneh\u00e5llet \u00e4r kompatibelt med enheten vad g\u00e4ller uppl\u00f6sning och mediatyp (H.264, AC3, etc.) men det \u00e4r en inkompatibel filkontainer (.mkv, .avi, .wmv etc.). Video-filen kommer att packas om live innan str\u00f6mningen startar till enheten.",
|
||||
"DirectStreamHelp2": "Direktstr\u00f6mning av en fil anv\u00e4nder v\u00e4ldigt lite resurser av CPU'n utan att bildkvaliten f\u00f6rs\u00e4mras.",
|
||||
"MediaIsBeingConverted": "Media h\u00e5ller p\u00e5 att konverteras till ett format som \u00e4r kompatibelt med enheten som ska anv\u00e4ndas.",
|
||||
"StatsForNerds": "Stats for nerds",
|
||||
"LabelReasonForTranscoding": "Reason for transcoding:",
|
||||
"DirectPlaying": "Direct playing",
|
||||
"DirectStreaming": "Direct streaming",
|
||||
"Transcoding": "Transcoding",
|
||||
"VideoCodecNotSupported": "Video codec not supported",
|
||||
"AudioCodecNotSupported": "Audio codec not supported",
|
||||
"SubtitleCodecNotSupported": "Subtitle format not supported",
|
||||
"ContainerNotSupported": "Container not supported",
|
||||
"VideoLevelNotSupported": "Video level not supported",
|
||||
"AudioBitrateNotSupported": "Audio bitrate not supported",
|
||||
"AudioChannelsNotSupported": "Audio channels not supported",
|
||||
"VideoResolutionNotSupported": "Video resolution not supported",
|
||||
"AudioProfileNotSupported": "Audio profile not supported",
|
||||
"AudioSampleRateNotSupported": "Audio sample rate not supported",
|
||||
"AnamorphicVideoNotSupported": "Anamorphic video not supported",
|
||||
"InterlacedVideoNotSupported": "Interlaced video not supported",
|
||||
"SecondaryAudioNotSupported": "Audio track switching not supported",
|
||||
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
||||
"HeaderEmbyAccountRemoved": "Emby Account Removed",
|
||||
"MessageEmbyAccontRemoved": "The Emby account has been removed from this user.",
|
||||
"HeaderInvitationSent": "Invitation Sent",
|
||||
"MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.",
|
||||
"MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.",
|
||||
"GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.",
|
||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
||||
"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.",
|
||||
"HeaderEmbyAccountAdded": "Emby Account Added",
|
||||
"LabelSubtitlePlaybackMode": "Subtitle mode:",
|
||||
"ErrorDeletingItem": "There was an error deleting the item from Emby Server. Please check that Emby Server has write access to the media folder and try again.",
|
||||
"NoSubtitles": "No subtitles",
|
||||
"Default": "Default",
|
||||
"LabelReasonForTranscoding": "Orsak f\u00f6r omkodning:",
|
||||
"DirectPlaying": "Direktuppspelning",
|
||||
"DirectStreaming": "Direktstr\u00f6mning",
|
||||
"Transcoding": "Omkodning",
|
||||
"VideoCodecNotSupported": "Video codec st\u00f6ds inte",
|
||||
"AudioCodecNotSupported": "Ljud codec st\u00f6ds inte",
|
||||
"SubtitleCodecNotSupported": "Undertextsformatet st\u00f6ds inte",
|
||||
"ContainerNotSupported": "Kontainern st\u00f6ds inte",
|
||||
"VideoLevelNotSupported": "Videoniv\u00e5n st\u00f6ds inte",
|
||||
"AudioBitrateNotSupported": "Ljudbitrate st\u00f6ds inte",
|
||||
"AudioChannelsNotSupported": "Ljudkanaler st\u00f6ds inte",
|
||||
"VideoResolutionNotSupported": "Bilduppl\u00f6sning st\u00f6ds inte",
|
||||
"AudioProfileNotSupported": "Ljudprofil st\u00f6ds inte",
|
||||
"AudioSampleRateNotSupported": "Ljudsamplingrate st\u00f6ds inte",
|
||||
"AnamorphicVideoNotSupported": "Anamorphic video st\u00f6ds inte",
|
||||
"InterlacedVideoNotSupported": "Interlaced video st\u00f6ds inte",
|
||||
"SecondaryAudioNotSupported": "Ljudsp\u00e5rs-switching st\u00f6ds inte",
|
||||
"ErrorRemovingEmbyConnectAccount": "Ett fel uppstod n\u00e4r Emby Connect-kontot f\u00f6rs\u00f6kte tas bort. Se till att du har en aktiv internetuppkoppling och f\u00f6rs\u00f6k igen.",
|
||||
"HeaderEmbyAccountRemoved": "Emby-kontot har tagits bort",
|
||||
"MessageEmbyAccontRemoved": "Emby-kontot har tagits bort fr\u00e5n den h\u00e4r anv\u00e4ndaren.",
|
||||
"HeaderInvitationSent": "Inbjudan skickad",
|
||||
"MessageInvitationSentToUser": "Ett mail har skickats till {0}, med en bekfr\u00e4ftelse f\u00f6r att acceptera din delade inbjudan.",
|
||||
"MessageInvitationSentToNewUser": "Ett mail har skickats till {0} med en inbjudan att registrera sig med Emby.",
|
||||
"GuestUserNotFound": "Anv\u00e4ndaren kunde inte hittas. Se till s\u00e5 att namnet \u00e4r korrekt och f\u00f6rs\u00f6k igen, eller pr\u00f6va att ange emailadressen ist\u00e4llet.",
|
||||
"ErrorReachingEmbyConnect": "Ett fel uppstod n\u00e4r Emby Connect f\u00f6rs\u00f6kte n\u00e5s. Se till att du har en aktiv internetuppkoppling och f\u00f6rs\u00f6k igen.",
|
||||
"ErrorAddingEmbyConnectAccount1": "Det gick inte att l\u00e4gga till ditt Emby Connect-konto. Har du ett Emby Connect-konto? Du kan skapa ett p\u00e5 {0}",
|
||||
"ErrorAddingEmbyConnectAccount2": "Kontrollera att ditt konto aktiverats genom att f\u00f6lja instruktionerna som skickades per epost n\u00e4r du skapade ditt konto. Om du inte f\u00e5tt denna epost, skicka epost till {0} fr\u00e5n den apostadress du anv\u00e4nde n\u00e4r du skapade kontot.",
|
||||
"ErrorAddingGuestAccount1": "Det gick inte att l\u00e4gga till Emby Connect-kontot. Har din g\u00e4st ett Emby-konto? Dom kan skapa ett p\u00e5 {0}",
|
||||
"ErrorAddingGuestAccount2": "Kontrollera att din g\u00e4st aktiverats genom att f\u00f6lja instruktionerna som skickades per e-post n\u00e4r kontot skapades. Om dom inte f\u00e5tt denna epost, skicka ett mail till {0}, och inkludera din mailadress och \u00e4ven g\u00e4stens.",
|
||||
"MessageEmbyAccountAdded": "Embykontot har lagts till f\u00f6r den h\u00e4r anv\u00e4ndaren.",
|
||||
"MessagePendingEmbyAccountAdded": "Emby-kontot har lagts till den h\u00e4r anv\u00e4ndaren. Ett mail har skickats ut till \u00e4gren av kontot. Inbjudan bekr\u00e4ftas genom att klicka p\u00e5 l\u00e4nken i mailet.",
|
||||
"HeaderEmbyAccountAdded": "Embykontot har lagts till",
|
||||
"LabelSubtitlePlaybackMode": "Undertextl\u00e4ge:",
|
||||
"ErrorDeletingItem": "Det gick inte att ta bort det h\u00e4r objektet fr\u00e5n Emby-servern. Kontrollera att Emby-servern har skrivr\u00e4ttigheter till media-mappen och f\u00f6rs\u00f6k igen.",
|
||||
"NoSubtitles": "Inga undertexter",
|
||||
"Default": "Standard",
|
||||
"Smart": "Smart",
|
||||
"Small": "Small",
|
||||
"Small": "Liten",
|
||||
"Medium": "Medium",
|
||||
"Large": "Large",
|
||||
"ExtraLarge": "Extra large",
|
||||
"OnlyForcedSubtitles": "Only forced subtitles",
|
||||
"AlwaysPlaySubtitles": "Always play subtitles",
|
||||
"DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.",
|
||||
"SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
|
||||
"Large": "Stor",
|
||||
"ExtraLarge": "Extra stor",
|
||||
"OnlyForcedSubtitles": "Endast tvingande undertexter",
|
||||
"AlwaysPlaySubtitles": "Visa alltid undertexter",
|
||||
"DefaultSubtitlesHelp": "Undertexter visas baserat p\u00e5 standardspr\u00e5k och tvingande undertexter i den inb\u00e4ddade metadatan. F\u00f6rvalsspr\u00e5k kommer v\u00e4ljas n\u00e4r fler val \u00e4r m\u00f6jliga.",
|
||||
"SmartSubtitlesHelp": "Undertexter som matchar f\u00f6rvalsspr\u00e5ket kommer visas n\u00e4r ljudsp\u00e5ret \u00e4r p\u00e5 ett annat spr\u00e5k.",
|
||||
"HeaderSubtitleSettings": "Inst\u00e4llningar f\u00f6r undertexter",
|
||||
"HeaderSubtitleAppearance": "Subtitle Appearance",
|
||||
"OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
|
||||
"AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
|
||||
"NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.",
|
||||
"LabelPreferredSubtitleLanguage": "Preferred subtitle language:",
|
||||
"LabelTextSize": "Text size:",
|
||||
"TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device",
|
||||
"LabelDropShadow": "Drop shadow:",
|
||||
"LabelTextBackgroundColor": "Text background color:",
|
||||
"LabelWindowBackgroundColor": "Text background color:",
|
||||
"LabelFont": "Font:",
|
||||
"LabelTextColor": "Text color:",
|
||||
"Raised": "Raised",
|
||||
"Depressed": "Depressed",
|
||||
"HeaderSubtitleAppearance": "Undertextutseende",
|
||||
"OnlyForcedSubtitlesHelp": "Endast undertexter markerade som tvingande kommer att laddas.",
|
||||
"AlwaysPlaySubtitlesHelp": "Undertexter p\u00e5 det \u00f6nskade spr\u00e5ket kommer att laddas oavsett ljudsp\u00e5rets spr\u00e5k.",
|
||||
"NoSubtitlesHelp": "Undertexter kommer inte visas per standard. Det kan fortfarande s\u00e4ttas p\u00e5 manuellt under uppspelning.",
|
||||
"LabelPreferredSubtitleLanguage": "\u00d6nskat spr\u00e5k f\u00f6r undertexter:",
|
||||
"LabelTextSize": "Textstorlek:",
|
||||
"TheseSettingsAffectSubtitlesOnThisDevice": "Dessa inst\u00e4llningar p\u00e5verkar undertexter p\u00e5 den h\u00e4r enheten",
|
||||
"LabelDropShadow": "Visa skugga:",
|
||||
"LabelTextBackgroundColor": "Bakgrundsf\u00e4rg f\u00f6r text:",
|
||||
"LabelWindowBackgroundColor": "Bakgrundsf\u00e4rg f\u00f6r text:",
|
||||
"LabelFont": "Typsnitt:",
|
||||
"LabelTextColor": "Textf\u00e4rg:",
|
||||
"Raised": "Upph\u00f6jd",
|
||||
"Depressed": "Neds\u00e4nkt",
|
||||
"Uniform": "Uniform",
|
||||
"DropShadow": "Drop shadow",
|
||||
"SmallCaps": "Small caps",
|
||||
"SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS\/SSA).",
|
||||
"LabelBurnSubtitles": "Burn subtitles:",
|
||||
"OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||
"DropShadow": "Visa skugga",
|
||||
"SmallCaps": "Sm\u00e5 bokst\u00e4ver",
|
||||
"SubtitleAppearanceSettingsDisclaimer": "Dessa inst\u00e4llningar kommer inte g\u00e4lla f\u00f6r grafiska undertexter (PGS, DVD, etc), eller undertexter som har en egen inb\u00e4ddad stil (ASS\/SSA).",
|
||||
"LabelBurnSubtitles": "Br\u00e4nn untertexter:",
|
||||
"OnlyImageFormats": "Endast image-format (VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||
"Normal": "Normal",
|
||||
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
|
||||
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device."
|
||||
"BurnSubtitlesHelp": "Avg\u00f6r ifall servern ska \"br\u00e4nna in\" undertexterna under videokonverteringen, beroende p\u00e5 undertextsformatet. Att undvika inbr\u00e4nning av undertexter kommer att f\u00f6rb\u00e4ttra prestandan p\u00e5 servern. V\u00e4lj Auto f\u00f6r att br\u00e4nna image-baserade formats (ex. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA undertexter.",
|
||||
"AllComplexFormats": "Alla komplexa format (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
|
||||
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "Dessa inst\u00e4llningar g\u00e4ller ocks\u00e5 f\u00f6r alla uppspelningar p\u00e5 Chromecast som startas av den h\u00e4r enheten."
|
||||
}
|
@ -5,7 +5,7 @@
|
||||
<div class="scrollSlider flex-grow" style="padding: 8vh 0 0;">
|
||||
|
||||
<div class="verticalSection latestSection padded-left padded-right hide" data-mediatype="Video">
|
||||
<h2 class="sectionTitle">${HeaderLatestOfflineVideos}</h2>
|
||||
<h2 class="sectionTitle">${HeaderLatestDownloadedVideos}</h2>
|
||||
<div is="emby-itemscontainer" class="itemsContainer vertical-wrap"></div>
|
||||
</div>
|
||||
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "\u0627\u0644\u0633\u0627\u0628\u0642",
|
||||
"LabelFinish": "\u0627\u0646\u0647\u0627\u0621",
|
||||
"LabelNext": "\u0627\u0644\u062a\u0627\u0644\u064a",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "\u041f\u0430\u043f\u044f\u0440\u044d\u0434\u043d\u044f\u0435",
|
||||
"LabelFinish": "\u0413\u0430\u0442\u043e\u0432\u0430",
|
||||
"LabelNext": "\u041d\u0430\u0441\u0442\u0443\u043f\u043d\u0430\u0435",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "\u041f\u0440\u0435\u0434\u0438\u0448\u0435\u043d",
|
||||
"LabelFinish": "\u041a\u0440\u0430\u0439",
|
||||
"LabelNext": "\u0421\u043b\u0435\u0434\u0432\u0430\u0449",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "Anterior",
|
||||
"LabelFinish": "Finalitzar",
|
||||
"LabelNext": "Seg\u00fcent",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "P\u0159edchoz\u00ed",
|
||||
"LabelFinish": "Dokon\u010dit",
|
||||
"LabelNext": "Dal\u0161\u00ed",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "Forrige",
|
||||
"LabelFinish": "Afslut",
|
||||
"LabelNext": "N\u00e6ste",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "Previous",
|
||||
"LabelFinish": "Finish",
|
||||
"LabelNext": "Next",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "Um https als externe Adresse zu aktivieren, ben\u00f6tigst du ein vertrauensw\u00fcrdiges SSL-Zertifikat wie Let's Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Neueste heruntergeladene Videos",
|
||||
"LabelPrevious": "Vorheriges",
|
||||
"LabelFinish": "Fertig",
|
||||
"LabelNext": "N\u00e4chstes",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf\u03c2",
|
||||
"LabelFinish": "\u03a4\u03ad\u03bb\u03bf\u03c2",
|
||||
"LabelNext": "\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "Previous",
|
||||
"LabelFinish": "Finish",
|
||||
"LabelNext": "Next",
|
||||
|
@ -1936,5 +1936,6 @@
|
||||
"ScanLibrary": "Scan library",
|
||||
"EnableStreamLooping": "Auto-loop live streams",
|
||||
"EnableStreamLoopingHelp": "Enable this if live streams only contain a few seconds of data and need to be continuously requested.",
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt."
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos"
|
||||
}
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "Anterior",
|
||||
"LabelFinish": "Terminar",
|
||||
"LabelNext": "Siguiente",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "Anterior",
|
||||
"LabelFinish": "Terminar",
|
||||
"LabelNext": "Siguiente",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "Para habilitar el reporte de https como su direcci\u00f3n externa, necesita suministrar un certificado SSL de confianza, como el de Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "\u00daltimos Videos Descargados",
|
||||
"LabelPrevious": "Anterior",
|
||||
"LabelFinish": "Terminar",
|
||||
"LabelNext": "Siguiente",
|
||||
@ -1821,7 +1823,7 @@
|
||||
"LabelAllowHWTranscoding": "Permitir transcodificacion de hardware",
|
||||
"AllowHWTranscodingHelp": "Si se habilita, permite a la sintonizadora transcodificar transmisiones al vuelo. Esto podr\u00eda ayudar a reducir la transcodificacion requer\u00eda por el Servidor Emby.",
|
||||
"OptionRequirePerfectSubtitleMatch": "Solo descargar subtitulos que corresponden perfectamente para mis archivos de video.",
|
||||
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
||||
"OptionRequirePerfectSubtitleMatchHelp": "Solicitar una coincidencia perfecta filtrara los subtitulos para incluir solo aquellos que han sido verificados exactamente con su archivo de video. Desmarcar esta opci\u00f3n incrementara las probabilidades de que los subtitulos sean descargados, a la vez que incrementara las posibilidades de obtener subtitulos mal sincronizados o con texto incorrecto.",
|
||||
"ErrorAddingGuestAccount1": "Hubo un error agregando la cuenta de Emby Connect. \u00bfSu invitado ya ha creado una cuenta de Emby Connect? Puede registrarse en {0}.",
|
||||
"ErrorAddingGuestAccount2": "Por favor aseg\u00farese de que su invitado ha completado la activaci\u00f3n siguiendo las instrucciones que le fueron enviadas en el correo electr\u00f3nico despu\u00e9s de crear la cuenta. Si no recibi\u00f3 dicho correo entonces escriba un correo electr\u00f3nico a {0}, e incluya su direcci\u00f3n de correo electr\u00f3nico ademas de la de su invitado.",
|
||||
"GuestUserNotFound": "Usuario no encontrado. Por favor aseg\u00farese de que el nombre es correcto e intente de nuevo, o intente introducir la direcci\u00f3n de correo de su invitado.",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "Anterior",
|
||||
"LabelFinish": "Terminar",
|
||||
"LabelNext": "Siguiente",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "\u0642\u0628\u0644\u06cc",
|
||||
"LabelFinish": "\u067e\u0627\u06cc\u0627\u0646",
|
||||
"LabelNext": "\u0628\u0639\u062f\u06cc",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "Edellinen",
|
||||
"LabelFinish": "Valmis",
|
||||
"LabelNext": "Seuraava",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "Pr\u00e9c\u00e9dent",
|
||||
"LabelFinish": "Terminer",
|
||||
"LabelNext": "Suivant",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "Pour pouvoir utiliser https comme adresse externe, vous devez fournir un certificat SSL v\u00e9rifi\u00e9, fourni par Let's Encrypt par exemple.",
|
||||
"HeaderLatestDownloadedVideos": "Derni\u00e8res vid\u00e9os t\u00e9l\u00e9charg\u00e9es",
|
||||
"LabelPrevious": "Pr\u00e9c\u00e9dent",
|
||||
"LabelFinish": "Terminer",
|
||||
"LabelNext": "Suivant",
|
||||
@ -1821,7 +1823,7 @@
|
||||
"LabelAllowHWTranscoding": "Autoriser le transcodage mat\u00e9riel",
|
||||
"AllowHWTranscodingHelp": "Si activ\u00e9e, autorise le tuner \u00e0 transcoder les flux \u00e0 la vol\u00e9e. Cela peut aider \u00e0 r\u00e9duire le transcodage requis par le serveur Emby.",
|
||||
"OptionRequirePerfectSubtitleMatch": "Uniquement t\u00e9l\u00e9charger les sous titres qui conviennent parfaitement pour mes fichiers vid\u00e9os",
|
||||
"OptionRequirePerfectSubtitleMatchHelp": "Requiring a perfect match will filter subtitles to include only those that have been tested and verified with your exact video file. Unchecking this will increase the likelihood of subtitles being downloaded, but will increase the chances of mistimed or incorrect subtitle text.",
|
||||
"OptionRequirePerfectSubtitleMatchHelp": "En activant cette option, seuls les sous-titres ayant \u00e9t\u00e9 test\u00e9s et v\u00e9rifi\u00e9s avec votre fichier vid\u00e9o seront t\u00e9l\u00e9charg\u00e9s. En d\u00e9sactivant cette option, vous aurez plus de chance que des sous-titres soient t\u00e9l\u00e9charg\u00e9s, mais ils risquent d'\u00eatre d\u00e9cal\u00e9s ou incorrects.",
|
||||
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
|
||||
"ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
|
||||
"GuestUserNotFound": "Utilisateur non trouv\u00e9. S'il vous pla\u00eet v\u00e9rifiez que le nom est correct et ressayez, ou essayez d'entrer leur adresse e-mail.",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "Pour pouvoir utiliser https comme adresse externe, vous devez fournir un certificat SSL v\u00e9rifi\u00e9, fourni par Let's Encrypt par exemple.",
|
||||
"HeaderLatestDownloadedVideos": "Derni\u00e8res vid\u00e9os t\u00e9l\u00e9charg\u00e9es",
|
||||
"LabelPrevious": "Pr\u00e9c\u00e9dent",
|
||||
"LabelFinish": "Terminer",
|
||||
"LabelNext": "Suivant",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "Vorher",
|
||||
"LabelFinish": "Beende",
|
||||
"LabelNext": "N\u00f6chst",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "\u05d4\u05e7\u05d5\u05d3\u05dd",
|
||||
"LabelFinish": "\u05e1\u05d9\u05d9\u05dd",
|
||||
"LabelNext": "\u05d4\u05d1\u05d0",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "Prethodni",
|
||||
"LabelFinish": "Kraj",
|
||||
"LabelNext": "Sljede\u0107i",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "El\u0151z\u0151",
|
||||
"LabelFinish": "Befejez",
|
||||
"LabelNext": "K\u00f6vetkez\u0151",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "Sebelumnya",
|
||||
"LabelFinish": "Selesai",
|
||||
"LabelNext": "Berikutnya",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "Per abilitare https come indirizzo esterno, sar\u00e0 necessario fornire un certificato SSL attendibile, ad esempio Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "Precedente",
|
||||
"LabelFinish": "Finito",
|
||||
"LabelNext": "Prossimo",
|
||||
@ -1102,7 +1104,7 @@
|
||||
"HeaderViewStyles": "Stili Viste",
|
||||
"TabPhotos": "Foto",
|
||||
"HeaderWelcomeToEmby": "Benvenuto in Emby",
|
||||
"EmbyIntroMessage": "Con Emby si pu\u00f2 facilmente lo streaming di video, musica e foto da smartphone, tablet e altri dispositivi dal vostro ricamato Server.",
|
||||
"EmbyIntroMessage": "Con Emby si pu\u00f2 facilmente eseguire lo streaming di video, musica e foto da smartphone, tablet e altri dispositivi dal vostro Server Emby.",
|
||||
"ButtonSkip": "Salta",
|
||||
"TextConnectToServerManually": "Connetti al mio server manualmente",
|
||||
"ButtonSignInWithConnect": "Accedi con Emby Connect",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "\u0410\u043b\u0434\u044b\u04a3\u0493\u044b",
|
||||
"LabelFinish": "\u0410\u044f\u049b\u0442\u0430\u0443",
|
||||
"LabelNext": "\u041a\u0435\u043b\u0435\u0441\u0456",
|
||||
@ -708,10 +710,10 @@
|
||||
"ButtonRegister": "\u0422\u0456\u0440\u043a\u0435\u043b\u0443",
|
||||
"LabelSkipIfAudioTrackPresent": "\u0415\u0433\u0435\u0440 \u04d9\u0434\u0435\u043f\u043a\u0456 \u0434\u044b\u0431\u044b\u0441 \u0436\u043e\u043b\u0448\u044b\u0493\u044b \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u044b\u043d\u0430\u0442\u044b\u043d \u0442\u0456\u043b\u0433\u0435 \u0441\u04d9\u0439\u043a\u0435\u0441 \u043a\u0435\u043b\u0441\u0435 \u04e9\u0442\u043a\u0456\u0437\u0456\u043f \u0436\u0456\u0431\u0435\u0440\u0443",
|
||||
"LabelSkipIfAudioTrackPresentHelp": "\u0411\u0430\u0440\u043b\u044b\u049b \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440\u0434\u0435, \u0434\u044b\u0431\u044b\u0441 \u0442\u0456\u043b\u0456\u043d\u0435 \u049b\u0430\u0442\u044b\u0441\u0441\u044b\u0437, \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440 \u0431\u043e\u043b\u0493\u0430\u043d\u044b\u043d\u0430 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0443 \u04af\u0448\u0456\u043d \u049b\u04b1\u0441\u0431\u0435\u043b\u0433\u0456\u043d\u0456 \u0430\u043b\u044b\u04a3\u044b\u0437.",
|
||||
"SendMessage": "Send message",
|
||||
"SendMessage": "\u0425\u0430\u0431\u0430\u0440 \u0436\u0456\u0431\u0435\u0440\u0443",
|
||||
"HeaderSendMessage": "\u0425\u0430\u0431\u0430\u0440 \u0436\u0456\u0431\u0435\u0440\u0443",
|
||||
"ButtonSend": "\u0416\u0456\u0431\u0435\u0440\u0443",
|
||||
"ViewPlaybackInfo": "View playback info",
|
||||
"ViewPlaybackInfo": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0443\u0440\u0430\u043b\u044b \u0430\u049b\u043f\u0430\u0440\u0430\u0442",
|
||||
"LabelMessageText": "\u0425\u0430\u0431\u0430\u0440 \u043c\u04d9\u0442\u0456\u043d\u0456",
|
||||
"LabelMessageTitle": "\u0425\u0430\u0431\u0430\u0440 \u0442\u0430\u049b\u044b\u0440\u044b\u0431\u044b:",
|
||||
"MessageNoAvailablePlugins": "\u049a\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u043f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440 \u0436\u043e\u049b",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "\uc774\uc804",
|
||||
"LabelFinish": "\ub05d\ub0b4\uae30",
|
||||
"LabelNext": "\ub2e4\uc74c",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "Ankstesnis",
|
||||
"LabelFinish": "Baigti",
|
||||
"LabelNext": "Kitas",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "Sebelumnya",
|
||||
"LabelFinish": "Habis",
|
||||
"LabelNext": "Seterusnya",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "Forrige",
|
||||
"LabelFinish": "Ferdig",
|
||||
"LabelNext": "Neste",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "Vorige",
|
||||
"LabelFinish": "Voltooien",
|
||||
"LabelNext": "Volgende",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "Zg\u0142aszanie si\u0119 serwera na na zewn\u0119trznym adresie HTTPS, wymaga dostarczenia zaufanego certyfikatu SSL takiego, jak Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "Wstecz",
|
||||
"LabelFinish": "Zako\u0144cz",
|
||||
"LabelNext": "Dalej",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "Anterior",
|
||||
"LabelFinish": "Finalizar",
|
||||
"LabelNext": "Pr\u00f3ximo",
|
||||
@ -27,7 +29,7 @@
|
||||
"DeleteMedia": "Excluir m\u00eddia",
|
||||
"HeaderSync": "Sincroniza\u00e7\u00e3o",
|
||||
"HeaderUpcomingNews": "Pr\u00f3ximas Not\u00edcias",
|
||||
"ButtonOk": "Ok",
|
||||
"ButtonOk": "OK",
|
||||
"ButtonCancel": "Cancelar",
|
||||
"ButtonExit": "Sair",
|
||||
"ButtonNew": "Novo",
|
||||
@ -129,7 +131,7 @@
|
||||
"ChannelAccessHelp": "Selecione os canais a compartilhar com este usu\u00e1rio. Administradores poder\u00e3o editar todos os canais usando o gerenciador de metadados.",
|
||||
"ButtonDeleteImage": "Excluir Imagem",
|
||||
"LabelSelectUsers": "Selecionar usu\u00e1rios:",
|
||||
"ButtonUpload": "Upload",
|
||||
"ButtonUpload": "Enviar",
|
||||
"HeaderUploadNewImage": "Fazer Upload da Nova Imagem",
|
||||
"ImageUploadAspectRatioHelp": "Propor\u00e7\u00e3o de Imagem 1:1 Recomendada. Apenas JPG\/PNG",
|
||||
"MessageNothingHere": "Nada aqui.",
|
||||
@ -207,8 +209,8 @@
|
||||
"HeaderFrequentlyPlayed": "Reproduzido Frequentemente",
|
||||
"LabelVideoType": "Tipo de V\u00eddeo:",
|
||||
"OptionBluray": "Bluray",
|
||||
"OptionDvd": "Dvd",
|
||||
"OptionIso": "Iso",
|
||||
"OptionDvd": "DVD",
|
||||
"OptionIso": "ISO",
|
||||
"Option3D": "3D",
|
||||
"LabelStatus": "Status:",
|
||||
"LabelLastResult": "\u00daltimo resultado:",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "Anterior",
|
||||
"LabelFinish": "Terminar",
|
||||
"LabelNext": "Seguinte",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "Anteriorul",
|
||||
"LabelFinish": "Termina",
|
||||
"LabelNext": "Urmatorul",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "\u0427\u0442\u043e\u0431\u044b \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0438\u0437\u0432\u0435\u0449\u0435\u043d\u0438\u0435, \u0447\u0442\u043e \u043f\u0440\u043e\u0442\u043e\u043a\u043e\u043b HTTPS \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0432\u0430\u0448\u0438\u043c \u0432\u043d\u0435\u0448\u043d\u0438\u043c \u0430\u0434\u0440\u0435\u0441\u043e\u043c, \u0432\u0430\u043c \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0434\u043e\u0432\u0435\u0440\u0435\u043d\u043d\u044b\u0439 \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442 SSL, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, Lets\u00a0Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0435\u0435",
|
||||
"LabelFinish": "\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c",
|
||||
"LabelNext": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435",
|
||||
@ -75,7 +77,7 @@
|
||||
"LabelCountry": "\u0421\u0442\u0440\u0430\u043d\u0430:",
|
||||
"LabelLanguage": "\u042f\u0437\u044b\u043a:",
|
||||
"LabelTimeLimitHours": "\u0412\u0440\u0435\u043c\u0435\u043d\u043d\u043e\u0439 \u043b\u0438\u043c\u0438\u0442 (\u0447\u0430\u0441):",
|
||||
"HeaderPreferredMetadataLanguage": "\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u0435\u043c\u044b\u0439 \u044f\u0437\u044b\u043a \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445",
|
||||
"HeaderPreferredMetadataLanguage": "\u0412\u044b\u0431\u043e\u0440 \u044f\u0437\u044b\u043a\u0430 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445",
|
||||
"LabelSaveLocalMetadata": "\u0421\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c \u0438\u043b\u043b\u044e\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u0438 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0432\u043d\u0443\u0442\u0440\u044c \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043e\u043a",
|
||||
"LabelSaveLocalMetadataHelp": "\u041f\u0440\u0438 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0438 \u0438\u043b\u043b\u044e\u0441\u0442\u0440\u0430\u0446\u0438\u0439 \u0438 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u043d\u0435\u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0435\u043d\u043d\u043e \u0432\u043d\u0443\u0442\u0440\u044c \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043e\u043a, \u043e\u043d\u0438 \u0431\u0443\u0434\u0443\u0442 \u0432 \u0442\u043e\u043c \u043c\u0435\u0441\u0442\u0435, \u0433\u0434\u0435 \u0438\u0445 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043b\u0435\u0433\u043a\u043e \u043f\u0440\u0430\u0432\u0438\u0442\u044c.",
|
||||
"LabelDownloadInternetMetadata": "\u0417\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c \u0438\u043b\u043b\u044e\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u0438 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0438\u0437 \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0430",
|
||||
@ -320,7 +322,7 @@
|
||||
"LabelFanartApiKey": "\u0418\u043d\u0434\u0438\u0432\u0438\u0434\u0443\u0430\u043b\u044c\u043d\u044b\u0439 API-\u043a\u043b\u044e\u0447:",
|
||||
"LabelFanartApiKeyHelp": "\u0417\u0430\u043f\u0440\u043e\u0441\u044b \u043a Fanart \u0431\u0435\u0437 \u0438\u043d\u0434\u0438\u0432\u0438\u0434\u0443\u0430\u043b\u044c\u043d\u043e\u0433\u043e API-\u043a\u043b\u044e\u0447\u0430 \u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0430\u044e\u0442 \u0440\u0438\u0441\u0443\u043d\u043a\u0438 \u0438\u0437 \u043e\u0434\u043e\u0431\u0440\u0435\u043d\u043d\u044b\u0445 \u0441\u0432\u044b\u0448\u0435 7 \u0434\u043d\u0435\u0439 \u043d\u0430\u0437\u0430\u0434. \u0421 \u0438\u043d\u0434\u0438\u0432\u0438\u0434\u0443\u0430\u043b\u044c\u043d\u044b\u043c API-\u043a\u043b\u044e\u0447\u043e\u043c \u0441\u0440\u043e\u043a \u0443\u043c\u0435\u043d\u044c\u0448\u0430\u0435\u0442\u0441\u044f \u0434\u043e 48 \u0447\u0430\u0441\u043e\u0432, \u0430 \u0435\u0441\u043b\u0438 \u0432\u044b \u0442\u0430\u043a\u0436\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0435\u0441\u044c VIP-\u0447\u043b\u0435\u043d\u043e\u043c Fanart, \u0442\u043e \u044d\u0442\u043e \u0432\u0440\u0435\u043c\u044f \u0443\u043c\u0435\u043d\u044c\u0448\u0438\u0442\u0441\u044f \u043f\u043e\u0447\u0442\u0438 \u0434\u043e 10 \u043c\u0438\u043d\u0443\u0442.",
|
||||
"ExtractChapterImagesHelp": "\u0418\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0438\u0435 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u0441\u0446\u0435\u043d \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u043c \u0434\u043b\u044f \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043c\u0435\u043d\u044e \u0432\u044b\u0431\u043e\u0440\u0430 \u0441\u0446\u0435\u043d\u044b. \u0414\u0430\u043d\u043d\u044b\u0439 \u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043c\u0435\u0434\u043b\u0435\u043d\u043d\u044b\u043c, \u043d\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u0442 \u0426\u041f \u0438 \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u043d\u0430\u0434\u043e\u0431\u0438\u0442\u044c\u0441\u044f \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0433\u0438\u0433\u0430\u0431\u0430\u0439\u0442 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0430. \u041e\u043d \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u043f\u0440\u0438 \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d\u0438\u0438 \u0432\u0438\u0434\u0435\u043e\u0444\u0430\u0439\u043b\u043e\u0432, \u0430 \u0442\u0430\u043a\u0436\u0435, \u043a\u0430\u043a \u0437\u0430\u0434\u0430\u0447\u0430, \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u0430\u044f \u043d\u0430 \u043d\u043e\u0447\u044c. \u0420\u0430\u0441\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0435\u0440\u0435\u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0432 \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u041d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044b\u0445 \u0437\u0430\u0434\u0430\u0447. \u041d\u0435 \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u0442\u0441\u044f \u0437\u0430\u043f\u0443\u0441\u043a\u0430\u0442\u044c \u0434\u0430\u043d\u043d\u0443\u044e \u0437\u0430\u0434\u0430\u0447\u0443 \u0432 \u0447\u0430\u0441\u044b \u043f\u0438\u043a.",
|
||||
"LabelMetadataDownloadLanguage": "\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u0435\u043c\u044b\u0439 \u044f\u0437\u044b\u043a \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445:",
|
||||
"LabelMetadataDownloadLanguage": "\u0412\u044b\u0431\u043e\u0440 \u044f\u0437\u044b\u043a\u0430 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445:",
|
||||
"ButtonSignIn": "\u0412\u0445\u043e\u0434",
|
||||
"TitleSignIn": "\u0412\u0445\u043e\u0434",
|
||||
"HeaderPleaseSignIn": "\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u0435 \u0432\u0445\u043e\u0434",
|
||||
@ -443,7 +445,7 @@
|
||||
"LinkApi": "API",
|
||||
"LabelFriendlyServerName": "\u041f\u043e\u043d\u044f\u0442\u043d\u043e\u0435 \u0438\u043c\u044f \u0441\u0435\u0440\u0432\u0435\u0440\u0430:",
|
||||
"LabelFriendlyServerNameHelp": "\u0414\u0430\u043d\u043d\u043e\u0435 \u0438\u043c\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u0440\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u0432\u0430\u043d\u0438\u044f \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0441\u0435\u0440\u0432\u0435\u0440\u0430. \u0415\u0441\u043b\u0438 \u043f\u043e\u043b\u0435 \u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043d\u0435\u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u043d\u044b\u043c, \u0442\u043e \u0431\u0443\u0434\u0435\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u043e \u0438\u043c\u044f \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u0430.",
|
||||
"LabelPreferredDisplayLanguage": "\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u0435\u043c\u044b\u0439 \u044f\u0437\u044b\u043a \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f:",
|
||||
"LabelPreferredDisplayLanguage": "\u0412\u044b\u0431\u043e\u0440 \u044f\u0437\u044b\u043a\u0430 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f:",
|
||||
"LabelPreferredDisplayLanguageHelp": "\u041f\u0435\u0440\u0435\u0432\u043e\u0434 Emby \u0432\u0435\u0434\u0451\u0442\u0441\u044f \u043d\u0430 \u043f\u043e\u0441\u0442\u043e\u044f\u043d\u043d\u043e\u0439 \u043e\u0441\u043d\u043e\u0432\u0435.",
|
||||
"LabelReadHowYouCanContribute": "\u0418\u0437\u0443\u0447\u0438\u0442\u0435, \u043a\u0430\u043a \u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0432\u043d\u0435\u0441\u0442\u0438 \u0441\u0432\u043e\u0439 \u0432\u043a\u043b\u0430\u0434.",
|
||||
"ButtonSubmit": "\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c",
|
||||
@ -759,7 +761,7 @@
|
||||
"MessageNoPlaylistsAvailable": "\u041f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442\u044b (\u0441\u043f\u0438\u0441\u043a\u0438 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f) \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u044e\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0441\u043f\u0438\u0441\u043a\u043e\u0432 \u0438\u0437 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0441\u0442\u0438 \u0435\u0434\u0438\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e. \u0427\u0442\u043e\u0431\u044b \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u0432\u043e \u0441\u043f\u0438\u0441\u043a\u0438, \u0449\u0435\u043b\u043a\u043d\u0438\u0442\u0435 \u043f\u0440\u0430\u0432\u043e\u0439 \u043a\u043d\u043e\u043f\u043a\u043e\u0439 \u043c\u044b\u0448\u0438 \u0438\u043b\u0438 \u043a\u043e\u0441\u043d\u0438\u0442\u0435\u0441\u044c \u0438 \u0443\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0439\u0442\u0435, \u0437\u0430\u0442\u0435\u043c \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u00ab\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u043f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442\u00bb.",
|
||||
"MessageNoPlaylistItemsAvailable": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u0434\u0430\u043d\u043d\u044b\u0439 \u043f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442 \u043f\u0443\u0441\u0442.",
|
||||
"ButtonEditOtherUserPreferences": "\u041f\u0440\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u043e\u0444\u0438\u043b\u044c, \u0440\u0438\u0441\u0443\u043d\u043e\u043a \u0438 \u043b\u0438\u0447\u043d\u044b\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f.",
|
||||
"LabelChannelStreamQuality": "\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u0435\u043c\u043e\u0435 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u043e \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u043a\u0430\u043d\u0430\u043b\u0430:",
|
||||
"LabelChannelStreamQuality": "\u0412\u044b\u0431\u043e\u0440 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0430 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u043a\u0430\u043d\u0430\u043b\u0430:",
|
||||
"LabelChannelStreamQualityHelp": "\u0412 \u0441\u0440\u0435\u0434\u0435 \u0441 \u043d\u0438\u0437\u043a\u043e\u0439 \u043f\u0440\u043e\u043f\u0443\u0441\u043a\u043d\u043e\u0439 \u0441\u043f\u043e\u0441\u043e\u0431\u043d\u043e\u0441\u0442\u044c\u044e, \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0430 \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u043c\u043e\u0447\u044c \u0433\u0430\u0440\u0430\u043d\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u043f\u0435\u0447\u0430\u0442\u043b\u0435\u043d\u0438\u0435 \u043f\u043b\u0430\u0432\u043d\u043e\u0439 \u0442\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u0438.",
|
||||
"OptionBestAvailableStreamQuality": "\u041d\u0430\u0438\u043b\u0443\u0447\u0448\u0435\u0435 \u0438\u043c\u0435\u044e\u0449\u0435\u0435\u0441\u044f",
|
||||
"ViewTypeMovies": "\u041a\u0438\u043d\u043e",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "Previous",
|
||||
"LabelFinish": "Finish",
|
||||
"LabelNext": "Next",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "Nazaj",
|
||||
"LabelFinish": "Konec",
|
||||
"LabelNext": "Naprej",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "F\u00f6reg\u00e5ende",
|
||||
"LabelFinish": "Klart",
|
||||
"LabelNext": "N\u00e4sta",
|
||||
@ -708,10 +710,10 @@
|
||||
"ButtonRegister": "Registrera",
|
||||
"LabelSkipIfAudioTrackPresent": "Hoppa \u00f6ver om det f\u00f6rvalda ljudsp\u00e5rets spr\u00e5k \u00e4r samma som det h\u00e4mtade.",
|
||||
"LabelSkipIfAudioTrackPresentHelp": "Bocka ur denna f\u00f6r att ge undertexter \u00e5t alla videor oavsett ljudsp\u00e5rets spr\u00e5k.",
|
||||
"SendMessage": "Send message",
|
||||
"SendMessage": "Skicka meddelande",
|
||||
"HeaderSendMessage": "Skicka meddelande",
|
||||
"ButtonSend": "Skicka",
|
||||
"ViewPlaybackInfo": "View playback info",
|
||||
"ViewPlaybackInfo": "Visa uppspelningsinfo",
|
||||
"LabelMessageText": "Meddelandetext",
|
||||
"LabelMessageTitle": "Meddelandetitel",
|
||||
"MessageNoAvailablePlugins": "Inga till\u00e4gg tillg\u00e4ngliga.",
|
||||
@ -1928,14 +1930,14 @@
|
||||
"Downloading": "Laddar ner",
|
||||
"LabelCertificatePassword": "Certifikatsl\u00f6senord:",
|
||||
"LabelCertificatePasswordHelp": "Skriv in l\u00f6senordet h\u00e4r om ditt certifikat kr\u00e4ver detta.",
|
||||
"Programs": "Programs",
|
||||
"News": "News",
|
||||
"HeaderDownloadSync": "Download & Sync",
|
||||
"EnableHardwareDecoding": "Enable hardware decoding",
|
||||
"EnableHardwareEncoding": "Enable hardware encoding",
|
||||
"Rate": "Rate",
|
||||
"ButtonScanAllLibraries": "Scan All Libraries",
|
||||
"ScanLibrary": "Scan library",
|
||||
"Programs": "Program",
|
||||
"News": "Nyheter",
|
||||
"HeaderDownloadSync": "Ladda ner & Synka",
|
||||
"EnableHardwareDecoding": "Aktivera h\u00e5rdvaruomkodning",
|
||||
"EnableHardwareEncoding": "Aktivera h\u00e5rdvaruomkodning",
|
||||
"Rate": "Betygs\u00e4tt",
|
||||
"ButtonScanAllLibraries": "Scanna alla bibliotek",
|
||||
"ScanLibrary": "Scanna bibliotek",
|
||||
"EnableStreamLooping": "Auto-loop live streams",
|
||||
"EnableStreamLoopingHelp": "Enable this if live streams only contain a few seconds of data and need to be continuously requested."
|
||||
}
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "\u00d6nceki",
|
||||
"LabelFinish": "Bitir",
|
||||
"LabelNext": "Sonraki",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "\u041d\u0430\u0437\u0430\u0434",
|
||||
"LabelFinish": "Finish",
|
||||
"LabelNext": "\u0412\u043f\u0435\u0440\u0435\u0434",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "Tr\u01b0\u1edbc",
|
||||
"LabelFinish": "K\u1ebft th\u00fac",
|
||||
"LabelNext": "Ti\u1ebfp theo",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "\u4e0a\u4e00\u4e2a",
|
||||
"LabelFinish": "\u5b8c\u6210",
|
||||
"LabelNext": "\u4e0b\u4e00\u4e2a",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "\u524d\u4e00\u500b",
|
||||
"LabelFinish": "\u5b8c\u6210",
|
||||
"LabelNext": "\u4e0b\u4e00\u500b",
|
||||
|
@ -1,4 +1,6 @@
|
||||
{
|
||||
"HttpsRequiresCert": "To enable reporting https as your external address, you will need to supply a trusted SSL certificate, such as Lets Encrypt.",
|
||||
"HeaderLatestDownloadedVideos": "Latest Downloaded Videos",
|
||||
"LabelPrevious": "\u4e0a\u4e00\u500b",
|
||||
"LabelFinish": "\u5b8c\u6210",
|
||||
"LabelNext": "\u4e0b\u4e00\u500b",
|
||||
|
Loading…
Reference in New Issue
Block a user