1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

support individual library refreshing

This commit is contained in:
Luke Pulverenti 2017-06-23 12:03:11 -04:00
parent b2b7f8d2d3
commit 5a82c4b0ab
104 changed files with 435 additions and 275 deletions

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1 @@
.progressring{position:relative;width:2.6em;height:2.6em;float:left;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-box-sizing:border-box;box-sizing:border-box}.progressring-bg{width:100%;height:100%;-webkit-border-radius:50%;border-radius:50%;border:.25em solid rgba(0,0,0,1);-webkit-box-sizing:border-box;box-sizing:border-box;background:rgba(0,0,0,.9);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}.spiner-holder-one,.spiner-holder-two{position:absolute;top:0;left:0;overflow:hidden;background:0 0;-webkit-box-sizing:border-box}.progressring-text{text-align:center;color:#ddd;font-size:90%}.spiner-holder-one{width:50%;height:50%;box-sizing:border-box}.spiner-holder-two{width:100%;height:100%;box-sizing:border-box}.progressring-spiner{width:200%;height:200%;-webkit-border-radius:50%;border-radius:50%;border:.25em solid #52B54B;-webkit-box-sizing:border-box;box-sizing:border-box}.animate-0-25-a{-webkit-transform:rotate(90deg);transform:rotate(90deg);-webkit-transform-origin:100% 100%;transform-origin:100% 100%;-webkit-transition:-webkit-transform 180ms ease-out;-o-transition:transform 180ms ease-out;transition:transform 180ms ease-out}.animate-0-25-b,.animate-25-50-a{-webkit-transition:-webkit-transform 180ms ease-out;-o-transition:transform 180ms ease-out}.animate-0-25-b{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);-webkit-transform-origin:100% 100%;transform-origin:100% 100%;transition:transform 180ms ease-out}.animate-25-50-a{-webkit-transform:rotate(180deg);transform:rotate(180deg);-webkit-transform-origin:100% 100%;transform-origin:100% 100%;transition:transform 180ms ease-out}.animate-25-50-b,.animate-50-75-a{-webkit-transition:-webkit-transform 180ms ease-out;-o-transition:transform 180ms ease-out}.animate-25-50-b{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);-webkit-transform-origin:100% 100%;transform-origin:100% 100%;transition:transform 180ms ease-out}.animate-50-75-a{-webkit-transform:rotate(270deg);transform:rotate(270deg);-webkit-transform-origin:100% 100%;transform-origin:100% 100%;transition:transform 180ms ease-out}.animate-50-75-b,.animate-75-100-a{-webkit-transition:-webkit-transform 180ms ease-out;-o-transition:transform 180ms ease-out}.animate-50-75-b{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);-webkit-transform-origin:100% 100%;transform-origin:100% 100%;transition:transform 180ms ease-out}.animate-75-100-a{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:100% 100%;transform-origin:100% 100%;transition:transform 180ms ease-out}.animate-75-100-b{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);-webkit-transform-origin:100% 100%;transform-origin:100% 100%;-webkit-transition:-webkit-transform 180ms ease-out;-o-transition:transform 180ms ease-out;transition:transform 180ms ease-out}

View file

@ -0,0 +1 @@
define(["emby-progressring","dom","serverNotifications","events","registerElement"],function(EmbyProgressRing,dom,serverNotifications,events){"use strict";function addNotificationEvent(instance,name,handler){var localHandler=handler.bind(instance);events.on(serverNotifications,name,localHandler),instance[name]=localHandler}function removeNotificationEvent(instance,name){var handler=instance[name];handler&&(events.off(serverNotifications,name,handler),instance[name]=null)}function onRefreshProgress(e,apiClient,info){var indicator=this;if(indicator.itemId||(indicator.itemId=dom.parentWithAttribute(indicator,"data-id").getAttribute("data-id")),info.ItemId===indicator.itemId){var progress=parseFloat(info.Progress);progress&&progress<100?this.classList.remove("hide"):this.classList.add("hide"),this.setProgress(progress)}}var EmbyItemRefreshIndicatorPrototype=Object.create(EmbyProgressRing);EmbyItemRefreshIndicatorPrototype.createdCallback=function(){EmbyProgressRing.createdCallback&&EmbyProgressRing.createdCallback.call(this),addNotificationEvent(this,"RefreshProgress",onRefreshProgress)},EmbyItemRefreshIndicatorPrototype.attachedCallback=function(){EmbyProgressRing.attachedCallback&&EmbyProgressRing.attachedCallback.call(this)},EmbyItemRefreshIndicatorPrototype.detachedCallback=function(){EmbyProgressRing.detachedCallback&&EmbyProgressRing.detachedCallback.call(this),removeNotificationEvent(this,"RefreshProgress"),this.itemId=null},document.registerElement("emby-itemrefreshindicator",{prototype:EmbyItemRefreshIndicatorPrototype,extends:"div"})});

View file

@ -0,0 +1 @@
.progressring{position:relative;width:2.6em;height:2.6em;float:left;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-box-sizing:border-box;box-sizing:border-box}.progressring-bg{width:100%;height:100%;-webkit-border-radius:50%;border-radius:50%;border:.25em solid rgba(0,0,0,1);-webkit-box-sizing:border-box;box-sizing:border-box;background:rgba(0,0,0,.9);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}.spiner-holder-one,.spiner-holder-two{position:absolute;top:0;left:0;overflow:hidden;background:0 0;-webkit-box-sizing:border-box}.progressring-text{text-align:center;color:#ddd;font-size:90%}.spiner-holder-one{width:50%;height:50%;box-sizing:border-box}.spiner-holder-two{width:100%;height:100%;box-sizing:border-box}.progressring-spiner{width:200%;height:200%;-webkit-border-radius:50%;border-radius:50%;border:.25em solid #52B54B;-webkit-box-sizing:border-box;box-sizing:border-box}.animate-0-25-a{-webkit-transform:rotate(90deg);transform:rotate(90deg);-webkit-transform-origin:100% 100%;transform-origin:100% 100%;-webkit-transition:-webkit-transform 180ms ease-out;-o-transition:transform 180ms ease-out;transition:transform 180ms ease-out}.animate-0-25-b,.animate-25-50-a{-webkit-transition:-webkit-transform 180ms ease-out;-o-transition:transform 180ms ease-out}.animate-0-25-b{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);-webkit-transform-origin:100% 100%;transform-origin:100% 100%;transition:transform 180ms ease-out}.animate-25-50-a{-webkit-transform:rotate(180deg);transform:rotate(180deg);-webkit-transform-origin:100% 100%;transform-origin:100% 100%;transition:transform 180ms ease-out}.animate-25-50-b,.animate-50-75-a{-webkit-transition:-webkit-transform 180ms ease-out;-o-transition:transform 180ms ease-out}.animate-25-50-b{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);-webkit-transform-origin:100% 100%;transform-origin:100% 100%;transition:transform 180ms ease-out}.animate-50-75-a{-webkit-transform:rotate(270deg);transform:rotate(270deg);-webkit-transform-origin:100% 100%;transform-origin:100% 100%;transition:transform 180ms ease-out}.animate-50-75-b,.animate-75-100-a{-webkit-transition:-webkit-transform 180ms ease-out;-o-transition:transform 180ms ease-out}.animate-50-75-b{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);-webkit-transform-origin:100% 100%;transform-origin:100% 100%;transition:transform 180ms ease-out}.animate-75-100-a{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:100% 100%;transform-origin:100% 100%;transition:transform 180ms ease-out}.animate-75-100-b{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);-webkit-transform-origin:100% 100%;transform-origin:100% 100%;-webkit-transition:-webkit-transform 180ms ease-out;-o-transition:transform 180ms ease-out;transition:transform 180ms ease-out}

View file

@ -0,0 +1 @@
define(["require","css!./emby-progressring","registerElement"],function(require){"use strict";var EmbyProgressRing=Object.create(HTMLDivElement.prototype);return EmbyProgressRing.createdCallback=function(){this.classList.add("progressring");var instance=this;require(["text!./emby-progressring.template.html"],function(template){instance.innerHTML=template,instance.setProgress(parseFloat(instance.getAttribute("data-progress")||"0"))})},EmbyProgressRing.setProgress=function(progress){progress=Math.floor(progress);var angle;progress<25?(angle=-90+progress/100*360,this.querySelector(".animate-0-25-b").style.transform="rotate("+angle+"deg)"):progress>=25&&progress<50?(angle=-90+(progress-25)/100*360,this.querySelector(".animate-0-25-b").style.transform="rotate(0deg)",this.querySelector(".animate-25-50-b").style.transform="rotate("+angle+"deg)"):progress>=50&&progress<75?(angle=-90+(progress-50)/100*360,this.querySelector(".animate-0-25-b").style.transform="rotate(0deg)",this.querySelector(".animate-25-50-b").style.transform="rotate(0deg)",this.querySelector(".animate-50-75-b").style.transform="rotate("+angle+"deg)"):progress>=75&&progress<=100&&(angle=-90+(progress-75)/100*360,this.querySelector(".animate-50-75-b").style.transform="rotate(0deg)",this.querySelector(".animate-25-50-b").style.transform="rotate(0deg)",this.querySelector(".animate-0-25-b").style.transform="rotate(0deg)",this.querySelector(".animate-75-100-b").style.transform="rotate("+angle+"deg)"),this.querySelector(".progressring-text").innerHTML=progress+"%"},EmbyProgressRing.attachedCallback=function(){},EmbyProgressRing.detachedCallback=function(){var observer=this.observer;observer&&(observer.disconnect(),this.observer=null)},document.registerElement("emby-progressring",{prototype:EmbyProgressRing,extends:"div"}),EmbyProgressRing});

View file

@ -0,0 +1,23 @@
<div class="progressring-bg">
<div class="progressring-text"></div>
</div>
<div class="spiner-holder-one animate-0-25-a">
<div class="spiner-holder-two animate-0-25-b">
<div class="progressring-spiner"></div>
</div>
</div>
<div class="spiner-holder-one animate-25-50-a">
<div class="spiner-holder-two animate-25-50-b">
<div class="progressring-spiner"></div>
</div>
</div>
<div class="spiner-holder-one animate-50-75-a">
<div class="spiner-holder-two animate-50-75-b">
<div class="progressring-spiner"></div>
</div>
</div>
<div class="spiner-holder-one animate-75-100-a">
<div class="spiner-holder-two animate-75-100-b">
<div class="progressring-spiner"></div>
</div>
</div>

View file

@ -1 +1 @@
.countIndicator,.indicator{-webkit-border-radius:500px;font-weight:500}.itemProgressBar{background:rgba(0,0,0,.5);position:relative;height:.35em}.itemProgressBarForeground{position:absolute;top:0;left:0;bottom:0;background-color:#52B54B}.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}.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}.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}.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}.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:rgba(0,0,0,.5);position:relative;height:.35em}.itemProgressBarForeground{position:absolute;top:0;left:0;bottom:0;background-color:#52B54B}.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,.iconIndicator{background:rgba(82,181,75,1);display:-webkit-flex;display:-webkit-box;-webkit-box-align:center}.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}.iconIndicator,.videoIndicator{-webkit-border-radius:500px;color:#fff}.iconIndicator{border-radius:500px;display:flex;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.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}.syncIndicator{color:#fff;-webkit-border-radius:500px;border-radius:500px}.emptySyncIndicator{background:#ccc;color:#333}.fullSyncIndicator{background:rgba(82,181,75,1)}

View file

@ -1 +1 @@
define(["datetime","itemHelper","css!./indicators.css","material-icons"],function(datetime,itemHelper){"use strict";function enableProgressIndicator(item){return"Video"===item.MediaType&&"TvChannel"!==item.Type||("AudioBook"===item.Type||"AudioPodcast"===item.Type)}function getProgressHtml(pct,options){var containerClass="itemProgressBar";return options&&options.containerClass&&(containerClass+=" "+options.containerClass),'<div class="'+containerClass+'"><div class="itemProgressBarForeground" style="width:'+pct+'%;"></div></div>'}function getAutoTimeProgressHtml(pct,options,start,end){var containerClass="itemProgressBar";return options&&options.containerClass&&(containerClass+=" "+options.containerClass),'<div is="emby-progressbar" data-automode="time" data-starttime="'+start+'" data-endtime="'+end+'" class="'+containerClass+'"><div class="itemProgressBarForeground" style="width:'+pct+'%;"></div></div>'}function getProgressBarHtml(item,options){var pct;if(enableProgressIndicator(item)){if("Recording"===item.Type&&item.CompletionPercentage)return getProgressHtml(item.CompletionPercentage,options);var userData=options?options.userData||item.UserData:item.UserData;if(userData&&(pct=userData.PlayedPercentage,pct&&pct<100))return getProgressHtml(pct,options)}if("Program"===item.Type&&item.StartDate&&item.EndDate){var startDate=0,endDate=1;try{startDate=datetime.parseISO8601Date(item.StartDate).getTime()}catch(err){}try{endDate=datetime.parseISO8601Date(item.EndDate).getTime()}catch(err){}var now=(new Date).getTime(),total=endDate-startDate;if(pct=100*((now-startDate)/total),pct>0&&pct<100)return getAutoTimeProgressHtml(pct,options,startDate,endDate)}return""}function enablePlayedIndicator(item){return itemHelper.canMarkPlayed(item)}function getPlayedIndicator(item){if(enablePlayedIndicator(item)){var userData=item.UserData||{};if(userData.UnplayedItemCount)return'<div class="countIndicator indicator">'+userData.UnplayedItemCount+"</div>";if(userData.PlayedPercentage&&userData.PlayedPercentage>=100||userData.Played)return'<div class="playedIndicator indicator"><i class="md-icon indicatorIcon">&#xE5CA;</i></div>'}return""}function getCountIndicatorHtml(count){return'<div class="countIndicator indicator">'+count+"</div>"}function getChildCountIndicatorHtml(item,options){var minCount=0;return options&&(minCount=options.minCount||minCount),item.ChildCount&&item.ChildCount>minCount?getCountIndicatorHtml(item.ChildCount):""}function getTimerIndicator(item){var status;if("SeriesTimer"===item.Type)return'<i class="md-icon timerIndicator indicatorIcon">&#xE062;</i>';if(item.TimerId||item.SeriesTimerId)status=item.Status||"Cancelled";else{if("Timer"!==item.Type)return"";status=item.Status}return item.SeriesTimerId?"Cancelled"!==status?'<i class="md-icon timerIndicator indicatorIcon">&#xE062;</i>':'<i class="md-icon timerIndicator timerIndicator-inactive indicatorIcon">&#xE062;</i>':'<i class="md-icon timerIndicator indicatorIcon">&#xE061;</i>'}function getSyncIndicator(item){return 100===item.SyncPercent?'<div class="syncIndicator indicator fullSyncIndicator"><i class="md-icon indicatorIcon">&#xE2C4;</i></div>':null!=item.SyncPercent?'<div class="syncIndicator indicator emptySyncIndicator"><i class="md-icon indicatorIcon">&#xE2C4;</i></div>':""}function getVideoIndicator(item){return"Video"===item.MediaType?'<div class="indicator videoIndicator"><i class="md-icon indicatorIcon">&#xE04B;</i></div>':""}function onAutoTimeProgress(){var start=parseInt(this.getAttribute("data-starttime")),end=parseInt(this.getAttribute("data-endtime")),now=(new Date).getTime(),total=end-start,pct=100*((now-start)/total);pct=Math.min(100,pct),pct=Math.max(0,pct);var itemProgressBarForeground=this.querySelector(".itemProgressBarForeground");itemProgressBarForeground.style.width=pct+"%"}var ProgressBarPrototype=Object.create(HTMLDivElement.prototype);return ProgressBarPrototype.attachedCallback=function(){this.timeInterval&&clearInterval(this.timeInterval),"time"===this.getAttribute("data-automode")&&(this.timeInterval=setInterval(onAutoTimeProgress.bind(this),6e4))},ProgressBarPrototype.detachedCallback=function(){this.timeInterval&&(clearInterval(this.timeInterval),this.timeInterval=null)},document.registerElement("emby-progressbar",{prototype:ProgressBarPrototype,extends:"div"}),{getProgressBarHtml:getProgressBarHtml,getPlayedIndicatorHtml:getPlayedIndicator,getChildCountIndicatorHtml:getChildCountIndicatorHtml,enableProgressIndicator:enableProgressIndicator,getTimerIndicator:getTimerIndicator,enablePlayedIndicator:enablePlayedIndicator,getSyncIndicator:getSyncIndicator,getVideoIndicator:getVideoIndicator}});
define(["datetime","itemHelper","css!./indicators.css","material-icons"],function(datetime,itemHelper){"use strict";function enableProgressIndicator(item){return"Video"===item.MediaType&&"TvChannel"!==item.Type||("AudioBook"===item.Type||"AudioPodcast"===item.Type)}function getProgressHtml(pct,options){var containerClass="itemProgressBar";return options&&options.containerClass&&(containerClass+=" "+options.containerClass),'<div class="'+containerClass+'"><div class="itemProgressBarForeground" style="width:'+pct+'%;"></div></div>'}function getAutoTimeProgressHtml(pct,options,start,end){var containerClass="itemProgressBar";return options&&options.containerClass&&(containerClass+=" "+options.containerClass),'<div is="emby-progressbar" data-automode="time" data-starttime="'+start+'" data-endtime="'+end+'" class="'+containerClass+'"><div class="itemProgressBarForeground" style="width:'+pct+'%;"></div></div>'}function getProgressBarHtml(item,options){var pct;if(enableProgressIndicator(item)){if("Recording"===item.Type&&item.CompletionPercentage)return getProgressHtml(item.CompletionPercentage,options);var userData=options?options.userData||item.UserData:item.UserData;if(userData&&(pct=userData.PlayedPercentage,pct&&pct<100))return getProgressHtml(pct,options)}if("Program"===item.Type&&item.StartDate&&item.EndDate){var startDate=0,endDate=1;try{startDate=datetime.parseISO8601Date(item.StartDate).getTime()}catch(err){}try{endDate=datetime.parseISO8601Date(item.EndDate).getTime()}catch(err){}var now=(new Date).getTime(),total=endDate-startDate;if(pct=100*((now-startDate)/total),pct>0&&pct<100)return getAutoTimeProgressHtml(pct,options,startDate,endDate)}return""}function enablePlayedIndicator(item){return itemHelper.canMarkPlayed(item)}function getPlayedIndicator(item){if(enablePlayedIndicator(item)){var userData=item.UserData||{};if(userData.UnplayedItemCount)return'<div class="countIndicator indicator">'+userData.UnplayedItemCount+"</div>";if(userData.PlayedPercentage&&userData.PlayedPercentage>=100||userData.Played)return'<div class="playedIndicator iconIndicator indicator"><i class="md-icon indicatorIcon">&#xE5CA;</i></div>'}return""}function getCountIndicatorHtml(count){return'<div class="countIndicator indicator">'+count+"</div>"}function getChildCountIndicatorHtml(item,options){var minCount=0;return options&&(minCount=options.minCount||minCount),item.ChildCount&&item.ChildCount>minCount?getCountIndicatorHtml(item.ChildCount):""}function getTimerIndicator(item){var status;if("SeriesTimer"===item.Type)return'<i class="md-icon timerIndicator indicatorIcon">&#xE062;</i>';if(item.TimerId||item.SeriesTimerId)status=item.Status||"Cancelled";else{if("Timer"!==item.Type)return"";status=item.Status}return item.SeriesTimerId?"Cancelled"!==status?'<i class="md-icon timerIndicator indicatorIcon">&#xE062;</i>':'<i class="md-icon timerIndicator timerIndicator-inactive indicatorIcon">&#xE062;</i>':'<i class="md-icon timerIndicator indicatorIcon">&#xE061;</i>'}function getSyncIndicator(item){return 100===item.SyncPercent?'<div class="syncIndicator indicator fullSyncIndicator"><i class="md-icon indicatorIcon">&#xE2C4;</i></div>':null!=item.SyncPercent?'<div class="syncIndicator indicator emptySyncIndicator"><i class="md-icon indicatorIcon">&#xE2C4;</i></div>':""}function getVideoIndicator(item){return"Video"===item.MediaType?'<div class="indicator videoIndicator"><i class="md-icon indicatorIcon">&#xE04B;</i></div>':""}function onAutoTimeProgress(){var start=parseInt(this.getAttribute("data-starttime")),end=parseInt(this.getAttribute("data-endtime")),now=(new Date).getTime(),total=end-start,pct=100*((now-start)/total);pct=Math.min(100,pct),pct=Math.max(0,pct);var itemProgressBarForeground=this.querySelector(".itemProgressBarForeground");itemProgressBarForeground.style.width=pct+"%"}var ProgressBarPrototype=Object.create(HTMLDivElement.prototype);return ProgressBarPrototype.attachedCallback=function(){this.timeInterval&&clearInterval(this.timeInterval),"time"===this.getAttribute("data-automode")&&(this.timeInterval=setInterval(onAutoTimeProgress.bind(this),6e4))},ProgressBarPrototype.detachedCallback=function(){this.timeInterval&&(clearInterval(this.timeInterval),this.timeInterval=null)},document.registerElement("emby-progressbar",{prototype:ProgressBarPrototype,extends:"div"}),{getProgressBarHtml:getProgressBarHtml,getPlayedIndicatorHtml:getPlayedIndicator,getChildCountIndicatorHtml:getChildCountIndicatorHtml,enableProgressIndicator:enableProgressIndicator,getTimerIndicator:getTimerIndicator,enablePlayedIndicator:enablePlayedIndicator,getSyncIndicator:getSyncIndicator,getVideoIndicator:getVideoIndicator}});

View file

@ -1 +1 @@
define(["shell","dialogHelper","loading","layoutManager","connectionManager","embyRouter","globalize","emby-input","emby-checkbox","paper-icon-button-light","emby-select","material-icons","css!./../formdialog","emby-button"],function(shell,dialogHelper,loading,layoutManager,connectionManager,embyRouter,globalize){"use strict";function parentWithClass(elem,className){for(;!elem.classList||!elem.classList.contains(className);)if(elem=elem.parentNode,!elem)return null;return elem}function getEditorHtml(){var html="";return html+='<div class="formDialogContent smoothScrollY" style="padding-top:2em;">',html+='<div class="dialogContentInner dialog-content-centered">',html+='<form style="margin:auto;">',html+='<div class="fldSelectPlaylist selectContainer">',html+='<select is="emby-select" id="selectMetadataRefreshMode" label="'+globalize.translate("sharedcomponents#LabelRefreshMode")+'">',html+='<option value="missing">'+globalize.translate("sharedcomponents#SearchForMissingMetadata")+"</option>",html+='<option value="all" selected>'+globalize.translate("sharedcomponents#ReplaceAllMetadata")+"</option>",html+="</select>",html+="</div>",html+='<label class="checkboxContainer">',html+='<input type="checkbox" is="emby-checkbox" class="chkReplaceImages" />',html+="<span>"+globalize.translate("sharedcomponents#ReplaceExistingImages")+"</span>",html+="</label>",html+='<div class="fieldDescription">',html+=globalize.translate("sharedcomponents#RefreshDialogHelp"),html+="</div>",html+='<input type="hidden" class="fldSelectedItemIds" />',html+="<br />",html+='<div class="formDialogFooter">',html+='<button is="emby-button" type="submit" class="raised btnSubmit block formDialogFooterItem button-submit">'+globalize.translate("sharedcomponents#Refresh")+"</button>",html+="</div>",html+="</form>",html+="</div>",html+="</div>"}function centerFocus(elem,horiz,on){require(["scrollHelper"],function(scrollHelper){var fn=on?"on":"off";scrollHelper.centerFocus[fn](elem,horiz)})}function onSubmit(e){loading.show();var instance=this,dlg=parentWithClass(e.target,"dialog"),options=instance.options,apiClient=connectionManager.getApiClient(options.serverId),replaceAllImages=dlg.querySelector(".chkReplaceImages").checked,replaceAllMetadata="all"===dlg.querySelector("#selectMetadataRefreshMode").value;return options.itemIds.forEach(function(itemId){apiClient.refreshItem(itemId,{Recursive:!0,ImageRefreshMode:"FullRefresh",MetadataRefreshMode:"FullRefresh",ReplaceAllImages:replaceAllImages,ReplaceAllMetadata:replaceAllMetadata})}),dialogHelper.close(dlg),require(["toast"],function(toast){toast(globalize.translate("sharedcomponents#RefreshQueued"))}),loading.hide(),e.preventDefault(),!1}function RefreshDialog(options){this.options=options}return RefreshDialog.prototype.show=function(){var dialogOptions={removeOnClose:!0,scrollY:!1};layoutManager.tv?dialogOptions.size="fullscreen":dialogOptions.size="small";var dlg=dialogHelper.createDialog(dialogOptions);dlg.classList.add("formDialog");var html="",title=globalize.translate("sharedcomponents#RefreshMetadata");return html+='<div class="formDialogHeader">',html+='<button is="paper-icon-button-light" class="btnCancel autoSize" tabindex="-1"><i class="md-icon">&#xE5C4;</i></button>',html+='<h3 class="formDialogHeaderTitle">',html+=title,html+="</h3>",html+="</div>",html+=getEditorHtml(),dlg.innerHTML=html,dlg.querySelector("form").addEventListener("submit",onSubmit.bind(this)),dlg.querySelector(".btnCancel").addEventListener("click",function(){dialogHelper.close(dlg)}),layoutManager.tv&&centerFocus(dlg.querySelector(".formDialogContent"),!1,!0),new Promise(function(resolve,reject){layoutManager.tv&&centerFocus(dlg.querySelector(".formDialogContent"),!1,!1),dlg.addEventListener("close",resolve),dialogHelper.open(dlg)})},RefreshDialog});
define(["shell","dialogHelper","loading","layoutManager","connectionManager","embyRouter","globalize","emby-input","emby-checkbox","paper-icon-button-light","emby-select","material-icons","css!./../formdialog","emby-button"],function(shell,dialogHelper,loading,layoutManager,connectionManager,embyRouter,globalize){"use strict";function parentWithClass(elem,className){for(;!elem.classList||!elem.classList.contains(className);)if(elem=elem.parentNode,!elem)return null;return elem}function getEditorHtml(){var html="";return html+='<div class="formDialogContent smoothScrollY" style="padding-top:2em;">',html+='<div class="dialogContentInner dialog-content-centered">',html+='<form style="margin:auto;">',html+='<div class="fldSelectPlaylist selectContainer">',html+='<select is="emby-select" id="selectMetadataRefreshMode" label="'+globalize.translate("sharedcomponents#LabelRefreshMode")+'">',html+='<option value="scan">'+globalize.translate("sharedcomponents#ScanForNewAndUpdatedFiles")+"</option>",html+='<option value="missing">'+globalize.translate("sharedcomponents#SearchForMissingMetadata")+"</option>",html+='<option value="all" selected>'+globalize.translate("sharedcomponents#ReplaceAllMetadata")+"</option>",html+="</select>",html+="</div>",html+='<label class="checkboxContainer hide fldReplaceExistingImages">',html+='<input type="checkbox" is="emby-checkbox" class="chkReplaceImages" />',html+="<span>"+globalize.translate("sharedcomponents#ReplaceExistingImages")+"</span>",html+="</label>",html+='<div class="fieldDescription">',html+=globalize.translate("sharedcomponents#RefreshDialogHelp"),html+="</div>",html+='<input type="hidden" class="fldSelectedItemIds" />',html+="<br />",html+='<div class="formDialogFooter">',html+='<button is="emby-button" type="submit" class="raised btnSubmit block formDialogFooterItem button-submit">'+globalize.translate("sharedcomponents#Refresh")+"</button>",html+="</div>",html+="</form>",html+="</div>",html+="</div>"}function centerFocus(elem,horiz,on){require(["scrollHelper"],function(scrollHelper){var fn=on?"on":"off";scrollHelper.centerFocus[fn](elem,horiz)})}function onSubmit(e){loading.show();var instance=this,dlg=parentWithClass(e.target,"dialog"),options=instance.options,apiClient=connectionManager.getApiClient(options.serverId),replaceAllMetadata="all"===dlg.querySelector("#selectMetadataRefreshMode").value,mode="scan"===dlg.querySelector("#selectMetadataRefreshMode").value?"Default":"FullRefresh",replaceAllImages="FullRefresh"===mode&&dlg.querySelector(".chkReplaceImages").checked;return options.itemIds.forEach(function(itemId){apiClient.refreshItem(itemId,{Recursive:!0,ImageRefreshMode:mode,MetadataRefreshMode:mode,ReplaceAllImages:replaceAllImages,ReplaceAllMetadata:replaceAllMetadata})}),dialogHelper.close(dlg),require(["toast"],function(toast){toast(globalize.translate("sharedcomponents#RefreshQueued"))}),loading.hide(),e.preventDefault(),!1}function RefreshDialog(options){this.options=options}return RefreshDialog.prototype.show=function(){var dialogOptions={removeOnClose:!0,scrollY:!1};layoutManager.tv?dialogOptions.size="fullscreen":dialogOptions.size="small";var dlg=dialogHelper.createDialog(dialogOptions);dlg.classList.add("formDialog");var html="",title=globalize.translate("sharedcomponents#RefreshMetadata");return html+='<div class="formDialogHeader">',html+='<button is="paper-icon-button-light" class="btnCancel autoSize" tabindex="-1"><i class="md-icon">&#xE5C4;</i></button>',html+='<h3 class="formDialogHeaderTitle">',html+=title,html+="</h3>",html+="</div>",html+=getEditorHtml(),dlg.innerHTML=html,dlg.querySelector("form").addEventListener("submit",onSubmit.bind(this)),dlg.querySelector("#selectMetadataRefreshMode").addEventListener("change",function(){"scan"===this.value?dlg.querySelector(".fldReplaceExistingImages").classList.add("hide"):dlg.querySelector(".fldReplaceExistingImages").classList.remove("hide")}),this.options.mode&&(dlg.querySelector("#selectMetadataRefreshMode").value=this.options.mode),dlg.querySelector("#selectMetadataRefreshMode").dispatchEvent(new CustomEvent("change")),dlg.querySelector(".btnCancel").addEventListener("click",function(){dialogHelper.close(dlg)}),layoutManager.tv&&centerFocus(dlg.querySelector(".formDialogContent"),!1,!0),new Promise(function(resolve,reject){layoutManager.tv&&centerFocus(dlg.querySelector(".formDialogContent"),!1,!1),dlg.addEventListener("close",resolve),dialogHelper.open(dlg)})},RefreshDialog});

View file

@ -440,5 +440,6 @@
"LiveTV": "Live TV",
"Schedule": "Schedule",
"Recordings": "Recordings",
"MarkWatched": "Mark watched"
"MarkWatched": "Mark watched",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -440,5 +440,6 @@
"LiveTV": "Live TV",
"Schedule": "Schedule",
"Recordings": "Recordings",
"MarkWatched": "Mark watched"
"MarkWatched": "Mark watched",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -1,29 +1,29 @@
{
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
"MessageUnlockAppWithPurchaseOrSupporter": "Activa aquesta funcionalitat amb un \u00fanic pagament, o amb una subscripci\u00f3 activa d'Emby Premiere.",
"MessageUnlockAppWithSupporter": "Activa aquesta funcionalitat amb una subscripci\u00f3 activa d'Emby Premiere.",
"MessageToValidateSupporter": "Si tens una subscripci\u00f3 activa d'Emby Premiere assegura't que l'has configurat al teu tauler de control de l'Emby Server, on pots accedir clicant a l'opci\u00f3 d'Emby Premiere al men\u00fa principal.",
"ValueSpecialEpisodeName": "Especial - {0}",
"Share": "Comparteix",
"Add": "Afegeix",
"ServerUpdateNeeded": "El Servidor Emby necessita ser actualitzat. Per descarregar la darrera versi\u00f3, si et plau, visita {0}",
"LiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.",
"LiveTvGuideRequiresUnlock": "La gu\u00eda de TV en directe est\u00e0 actualment limitada a {0} canals. Fes clic al bot\u00f3 d'activar per descobrir com gaudir d'una experi\u00e8ncia completa.",
"AttributeNew": "Nou",
"Premiere": "Premi\u00e8re",
"Live": "Live",
"Live": "Directe",
"Repeat": "Repeteix",
"TrackCount": "{0} pistes",
"ItemCount": "{0} \u00edtems",
"OriginalAirDateValue": "Original air date: {0}",
"EndsAtValue": "Ends at {0}",
"OriginalAirDateValue": "Data original d'emissi\u00f3: {0}",
"EndsAtValue": "Acaba a {0}",
"HeaderSelectDate": "Seleccionar Data",
"ButtonOk": "D'acord",
"ButtonCancel": "Cancel\u00b7la",
"ButtonGotIt": "Entesos",
"ButtonRestart": "Reiniciar",
"RecordingCancelled": "Enregistrament cancel\u00b7lat.",
"SeriesCancelled": "Series cancelled.",
"RecordingScheduled": "Recording scheduled.",
"SeriesRecordingScheduled": "Series recording scheduled.",
"SeriesCancelled": "S\u00e8rie cancel\u00b7lada.",
"RecordingScheduled": "Enregistrament programat.",
"SeriesRecordingScheduled": "Enregistrament de la s\u00e8rie programat.",
"HeaderNewRecording": "Nou Enregistrament",
"Sunday": "Diumenge",
"Monday": "Dilluns",
@ -33,14 +33,14 @@
"Friday": "Divendres",
"Saturday": "Dissabte",
"Days": "Dies",
"RecordSeries": "Record series",
"HeaderCinemaMode": "Cinema Mode",
"HeaderCloudSync": "Cloud Sync",
"HeaderDownloadedMedia": "Downloaded Media",
"Downloads": "Downloads",
"HeaderOfflineDownloads": "Offline Media",
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
"RecordSeries": "Enregistra la s\u00e8rie",
"HeaderCinemaMode": "Mode Cinema",
"HeaderCloudSync": "Sincronitzar amb el N\u00favol",
"HeaderDownloadedMedia": "Mitjans Descarregats",
"Downloads": "Desc\u00e0rregues",
"HeaderOfflineDownloads": "Mitjans Sense Connexi\u00f3",
"HeaderOfflineDownloadsDescription": "Descarrega mitjans als teus dispositius per a un f\u00e0cil \u00fas fora de l\u00ednia.",
"CloudSyncFeatureDescription": "Sincronitza els teus mitjans amb el n\u00favol per a copiar, arxivar i convertir f\u00e0cilment.",
"DvrFeatureDescription": "Schedule individual Live TV recordings, series recordings, and more with Emby DVR.",
"ButtonCancelSyncJob": "Cancel download",
"CancelSyncJobConfirmation": "Cancelling the download job will remove downloaded media from the device during the next background sync process. Are you sure you wish to proceed?",
@ -270,7 +270,7 @@
"LearnMore": "Learn more",
"LabelProfile": "Perfil:",
"LabelBitrateMbps": "Bitrate (Mbps):",
"SyncUnwatchedVideosOnly": "Sincronitza nom\u00e9s els v\u00eddeos no vists",
"SyncUnwatchedVideosOnly": "Descarrega nom\u00e9s els v\u00eddeos no vists",
"SyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be downloaded, and videos will be removed from the device as they are watched.",
"AutomaticallySyncNewContent": "Automatically download new content",
"AutomaticallySyncNewContentHelp": "New content added to this folder will be automatically downloaded to the device.",
@ -286,8 +286,8 @@
"ShowIndicatorsFor": "Show indicators for:",
"NewEpisodes": "New episodes",
"Episodes": "Episodes",
"HDPrograms": "HD programs",
"Programs": "Programs",
"HDPrograms": "Programes HD",
"Programs": "Programes",
"LiveBroadcasts": "Live broadcasts",
"Premieres": "Premieres",
"RepeatEpisodes": "Repeat episodes",
@ -440,5 +440,6 @@
"LiveTV": "Live TV",
"Schedule": "Schedule",
"Recordings": "Recordings",
"MarkWatched": "Mark watched"
"MarkWatched": "Mark watched",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -440,5 +440,6 @@
"LiveTV": "Live TV",
"Schedule": "Schedule",
"Recordings": "Recordings",
"MarkWatched": "Mark watched"
"MarkWatched": "Mark watched",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -440,5 +440,6 @@
"LiveTV": "Live TV",
"Schedule": "Schedule",
"Recordings": "Recordings",
"MarkWatched": "Mark watched"
"MarkWatched": "Mark watched",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -440,5 +440,6 @@
"LiveTV": "Live TV",
"Schedule": "Zeitplan",
"Recordings": "Aufnahmen",
"MarkWatched": "Als gesehen markieren"
"MarkWatched": "Als gesehen markieren",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -440,5 +440,6 @@
"LiveTV": "Live TV",
"Schedule": "Schedule",
"Recordings": "Recordings",
"MarkWatched": "Mark watched"
"MarkWatched": "Mark watched",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -440,5 +440,6 @@
"LiveTV": "Live TV",
"Schedule": "Schedule",
"Recordings": "Recordings",
"MarkWatched": "Mark watched"
"MarkWatched": "Mark watched",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -440,5 +440,6 @@
"LiveTV": "Live TV",
"Schedule": "Schedule",
"Recordings": "Recordings",
"MarkWatched": "Mark watched"
"MarkWatched": "Mark watched",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -440,5 +440,6 @@
"LiveTV": "Live TV",
"Schedule": "Schedule",
"Recordings": "Recordings",
"MarkWatched": "Mark watched"
"MarkWatched": "Mark watched",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -440,5 +440,6 @@
"LiveTV": "TV en Vivo",
"Schedule": "Programacion",
"Recordings": "Grabaciones",
"MarkWatched": "Marcar como Visto"
"MarkWatched": "Marcar como Visto",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -440,5 +440,6 @@
"LiveTV": "Live TV",
"Schedule": "Schedule",
"Recordings": "Recordings",
"MarkWatched": "Mark watched"
"MarkWatched": "Mark watched",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -440,5 +440,6 @@
"LiveTV": "Live TV",
"Schedule": "Schedule",
"Recordings": "Recordings",
"MarkWatched": "Mark watched"
"MarkWatched": "Mark watched",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -440,5 +440,6 @@
"LiveTV": "Live TV",
"Schedule": "Schedule",
"Recordings": "Recordings",
"MarkWatched": "Mark watched"
"MarkWatched": "Mark watched",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -440,5 +440,6 @@
"LiveTV": "TV en Direct",
"Schedule": "Programmer",
"Recordings": "Enregistrements",
"MarkWatched": "Marquer comme vu"
"MarkWatched": "Marquer comme vu",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -440,5 +440,6 @@
"LiveTV": "Live TV",
"Schedule": "Schedule",
"Recordings": "Recordings",
"MarkWatched": "Mark watched"
"MarkWatched": "Mark watched",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -440,5 +440,6 @@
"LiveTV": "Live TV",
"Schedule": "Schedule",
"Recordings": "Recordings",
"MarkWatched": "Mark watched"
"MarkWatched": "Mark watched",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -440,5 +440,6 @@
"LiveTV": "Live TV",
"Schedule": "Schedule",
"Recordings": "Recordings",
"MarkWatched": "Mark watched"
"MarkWatched": "Mark watched",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -440,5 +440,6 @@
"LiveTV": "Live TV",
"Schedule": "Schedule",
"Recordings": "Recordings",
"MarkWatched": "Mark watched"
"MarkWatched": "Mark watched",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -440,5 +440,6 @@
"LiveTV": "Live TV",
"Schedule": "Schedule",
"Recordings": "Recordings",
"MarkWatched": "Mark watched"
"MarkWatched": "Mark watched",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -440,5 +440,6 @@
"LiveTV": "Diretta TV",
"Schedule": "Programmazione",
"Recordings": "Registrazioni",
"MarkWatched": "Segna come visto"
"MarkWatched": "Segna come visto",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -440,5 +440,6 @@
"LiveTV": "\u042d\u0444\u0438\u0440",
"Schedule": "\u0406\u0441 \u043a\u0435\u0441\u0442\u0435\u0441\u0456",
"Recordings": "\u0416\u0430\u0437\u0431\u0430\u043b\u0430\u0440",
"MarkWatched": "\u049a\u0430\u0440\u0430\u043f \u0448\u044b\u049b\u049b\u0430\u043d"
"MarkWatched": "\u049a\u0430\u0440\u0430\u043f \u0448\u044b\u049b\u049b\u0430\u043d",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -440,5 +440,6 @@
"LiveTV": "Live TV",
"Schedule": "Schedule",
"Recordings": "Recordings",
"MarkWatched": "Mark watched"
"MarkWatched": "Mark watched",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -440,5 +440,6 @@
"LiveTV": "Live TV",
"Schedule": "Schedule",
"Recordings": "Recordings",
"MarkWatched": "Mark watched"
"MarkWatched": "Mark watched",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -440,5 +440,6 @@
"LiveTV": "Live TV",
"Schedule": "Schedule",
"Recordings": "Recordings",
"MarkWatched": "Mark watched"
"MarkWatched": "Mark watched",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -57,8 +57,8 @@
"Save": "Lagre",
"Edit": "Rediger",
"Download": "Nedlasting",
"Downloaded": "Downloaded",
"Downloading": "Downloading",
"Downloaded": "Nedlastet",
"Downloading": "Laster ned",
"Advanced": "Avansert",
"Delete": "Slett",
"HeaderDeleteItem": "Slett element",
@ -356,7 +356,7 @@
"OneChannel": "En kanal",
"ConfirmRemoveDownload": "Fjern nedlastet?",
"RemoveDownload": "Fjern nedlastet",
"KeepDownload": "Keep download",
"KeepDownload": "Behold nedlasting",
"AddedOnValue": "Lagt til {0}",
"RemovingFromDevice": "Fjerner fra enheten",
"KeepOnDevice": "Behold p\u00e5 enhet",
@ -440,5 +440,6 @@
"LiveTV": "Direkte TV",
"Schedule": "Planlegg",
"Recordings": "Opptak",
"MarkWatched": "Mark watched"
"MarkWatched": "Marker som sett",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -440,5 +440,6 @@
"LiveTV": "Live TV",
"Schedule": "Schedule",
"Recordings": "Recordings",
"MarkWatched": "Mark watched"
"MarkWatched": "Mark watched",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -440,5 +440,6 @@
"LiveTV": "Live TV",
"Schedule": "Schedule",
"Recordings": "Recordings",
"MarkWatched": "Mark watched"
"MarkWatched": "Mark watched",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -440,5 +440,6 @@
"LiveTV": "TV ao Vivo",
"Schedule": "Agendar",
"Recordings": "Grava\u00e7\u00f5es",
"MarkWatched": "Marcar como assisitido"
"MarkWatched": "Marcar como assisitido",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -440,5 +440,6 @@
"LiveTV": "Live TV",
"Schedule": "Schedule",
"Recordings": "Recordings",
"MarkWatched": "Mark watched"
"MarkWatched": "Mark watched",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -440,5 +440,6 @@
"LiveTV": "Live TV",
"Schedule": "Schedule",
"Recordings": "Recordings",
"MarkWatched": "Mark watched"
"MarkWatched": "Mark watched",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -440,5 +440,6 @@
"LiveTV": "\u042d\u0444\u0438\u0440",
"Schedule": "\u0420\u0430\u0441\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
"Recordings": "\u0417\u0430\u043f\u0438\u0441\u0438",
"MarkWatched": "\u041e\u0442\u043c\u0435\u0442\u0438\u0442\u044c \u043a\u0430\u043a \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u043e\u0435"
"MarkWatched": "\u041e\u0442\u043c\u0435\u0442\u0438\u0442\u044c \u043a\u0430\u043a \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u043e\u0435",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -440,5 +440,6 @@
"LiveTV": "Live TV",
"Schedule": "Schedule",
"Recordings": "Recordings",
"MarkWatched": "Mark watched"
"MarkWatched": "Mark watched",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -440,5 +440,6 @@
"LiveTV": "Live TV",
"Schedule": "Schedule",
"Recordings": "Recordings",
"MarkWatched": "Mark watched"
"MarkWatched": "Mark watched",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -440,5 +440,6 @@
"LiveTV": "Live TV",
"Schedule": "Schedule",
"Recordings": "Recordings",
"MarkWatched": "Mark watched"
"MarkWatched": "Mark watched",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -440,5 +440,6 @@
"LiveTV": "Live TV",
"Schedule": "Schedule",
"Recordings": "Recordings",
"MarkWatched": "Mark watched"
"MarkWatched": "Mark watched",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -440,5 +440,6 @@
"LiveTV": "Live TV",
"Schedule": "Schedule",
"Recordings": "Recordings",
"MarkWatched": "Mark watched"
"MarkWatched": "Mark watched",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -440,5 +440,6 @@
"LiveTV": "Live TV",
"Schedule": "Schedule",
"Recordings": "Recordings",
"MarkWatched": "Mark watched"
"MarkWatched": "Mark watched",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -440,5 +440,6 @@
"LiveTV": "Live TV",
"Schedule": "Schedule",
"Recordings": "Recordings",
"MarkWatched": "Mark watched"
"MarkWatched": "Mark watched",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -440,5 +440,6 @@
"LiveTV": "Live TV",
"Schedule": "Schedule",
"Recordings": "Recordings",
"MarkWatched": "Mark watched"
"MarkWatched": "Mark watched",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -440,5 +440,6 @@
"LiveTV": "Live TV",
"Schedule": "Schedule",
"Recordings": "Recordings",
"MarkWatched": "Mark watched"
"MarkWatched": "Mark watched",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files"
}

View file

@ -8,7 +8,7 @@
<div class="dialogContentInner dialog-content-centered">
<div style="display: flex; align-items: center;">
<h1 style="margin: .5em 0;">${HeadersFolders}</h1>
<button is="emby-button" type="button" class="raised btnAddFolder submit mini" style="margin-left:1em;" title="${ButtonAdd}">
<button is="emby-button" type="button" class="raised raised-mini btnAddFolder submit" style="margin-left:1em;" title="${ButtonAdd}">
<i class="md-icon">add</i>
<span>${ButtonAdd}</span>
</button>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -2,16 +2,16 @@
<div>
<div class="content-primary">
<div id="divVirtualFolders"></div>
<br />
<div>
<button is="emby-button" type="button" class="raised btnRefresh subdued">
<button is="emby-button" type="button" class="raised btnRefresh">
<i class="md-icon">refresh</i>
<span>${ButtonScanLibrary}</span>
<span>${ButtonScanAllLibraries}</span>
</button>
<progress max="100" min="0" style="display: inline-block; vertical-align: middle;" class="refreshProgress"></progress>
</div>
<br />
<div id="divVirtualFolders"></div>
</div>
</div>
</div>

File diff suppressed because one or more lines are too long

View file

@ -1 +1 @@
define(["jQuery","loading","libraryMenu","cardStyle"],function($,loading,libraryMenu){"use strict";function deletePlugin(page,uniqueid,name){var msg=Globalize.translate("UninstallPluginConfirmation").replace("{0}",name);require(["confirm"],function(confirm){confirm(msg,Globalize.translate("UninstallPluginHeader")).then(function(){loading.show(),ApiClient.uninstallPlugin(uniqueid).then(function(){reloadList(page)})})})}function showNoConfigurationMessage(){Dashboard.alert({message:Globalize.translate("NoPluginConfigurationMessage")})}function showConnectMessage(){Dashboard.alert({message:Globalize.translate("MessagePluginConfigurationRequiresLocalAccess")})}function getPluginCardHtml(plugin,pluginConfigurationPages){var configPage=$.grep(pluginConfigurationPages,function(pluginConfigurationPage){return pluginConfigurationPage.PluginId==plugin.Id})[0],html="",isConnectMode=Dashboard.isConnectMode(),configPageUrl=configPage?Dashboard.getConfigurationPageUrl(configPage.Name):null,href=configPage&&!isConnectMode?configPageUrl:null;return html+="<div data-id='"+plugin.Id+"' data-name='"+plugin.Name+"' class='card backdropCard scalableCard backdropCard-scalable'>",html+='<div class="cardBox cardBox-bottompadded visualCardBox">',html+='<div class="cardScalable visualCardBox-cardScalable">',html+='<div class="cardPadder cardPadder-backdrop"></div>',html+=href?'<a class="cardContent" href="'+href+'">':configPageUrl?isConnectMode?'<div class="cardContent connectModePluginCard">':'<div class="cardContent">':'<div class="cardContent noConfigPluginCard noHoverEffect">',html+=plugin.ImageUrl?'<div class="cardImage" style="background-image:url(\''+plugin.ImageUrl+"');\">":'<div class="cardImage" style="background-image:url(\'css/images/items/list/collection.png\');">',html+="</div>",html+=href?"</a>":"</div>",html+="</div>",html+='<div class="cardFooter visualCardBox-cardFooter">',html+='<div style="text-align:right; float:right;padding-top:5px;">',html+='<button type="button" is="paper-icon-button-light" class="btnCardMenu autoSize"><i class="md-icon">more_vert</i></button>',html+="</div>",html+="<div class='cardText'>",html+=plugin.Name,html+="</div>",html+="<div class='cardText'>",html+=plugin.Version,html+="</div>",html+="</div>",html+="</div>",html+="</div>"}function renderPlugins(page,plugins,showNoPluginsMessage){ApiClient.getJSON(ApiClient.getUrl("web/configurationpages")+"?pageType=PluginConfiguration").then(function(configPages){populateList(page,plugins,configPages,showNoPluginsMessage)})}function populateList(page,plugins,pluginConfigurationPages,showNoPluginsMessage){plugins=plugins.sort(function(plugin1,plugin2){return plugin1.Name>plugin2.Name?1:-1});var html=plugins.map(function(p){return getPluginCardHtml(p,pluginConfigurationPages)}).join("");if(plugins.length){var elem=$(".installedPlugins",page).addClass("itemsContainer").addClass("vertical-wrap").html(html);$(".noConfigPluginCard",elem).on("click",function(){showNoConfigurationMessage()}),$(".connectModePluginCard",elem).on("click",function(){showConnectMessage()}),$(".btnCardMenu",elem).on("click",function(){showPluginMenu(page,this)})}else showNoPluginsMessage&&(html+='<div style="padding:5px;">',AppInfo.enableAppStorePolicy?html+="<p>"+Globalize.translate("MessageNoPluginsDueToAppStore")+"</p>":(html+="<p>"+Globalize.translate("MessageNoPluginsInstalled")+"</p>",html+='<p><a href="plugincatalog.html">',html+=Globalize.translate("BrowsePluginCatalogMessage"),html+="</a></p>"),html+="</div>"),$(".installedPlugins",page).html(html);loading.hide()}function showPluginMenu(page,elem){var card=$(elem).parents(".card"),id=card.attr("data-id"),name=card.attr("data-name"),configHref=$(".cardContent",card).attr("href"),menuItems=[];configHref&&menuItems.push({name:Globalize.translate("ButtonSettings"),id:"open",ironIcon:"mode-edit"}),menuItems.push({name:Globalize.translate("ButtonUninstall"),id:"delete",ironIcon:"delete"}),require(["actionsheet"],function(actionsheet){actionsheet.show({items:menuItems,positionTo:elem,callback:function(resultId){switch(resultId){case"open":Dashboard.navigate(configHref);break;case"delete":deletePlugin(page,id,name)}}})})}function reloadList(page){loading.show(),ApiClient.getInstalledPlugins().then(function(plugins){renderPlugins(page,plugins,!0)})}function getTabs(){return[{href:"plugins.html",name:Globalize.translate("TabMyPlugins")},{href:"plugincatalog.html",name:Globalize.translate("TabCatalog")}]}$(document).on("pageshow","#pluginsPage",function(){libraryMenu.setTabs("plugins",0,getTabs),reloadList(this)}),window.PluginsPage={renderPlugins:renderPlugins}});
define(["jQuery","loading","libraryMenu","cardStyle"],function($,loading,libraryMenu){"use strict";function deletePlugin(page,uniqueid,name){var msg=Globalize.translate("UninstallPluginConfirmation").replace("{0}",name);require(["confirm"],function(confirm){confirm(msg,Globalize.translate("UninstallPluginHeader")).then(function(){loading.show(),ApiClient.uninstallPlugin(uniqueid).then(function(){reloadList(page)})})})}function showNoConfigurationMessage(){Dashboard.alert({message:Globalize.translate("NoPluginConfigurationMessage")})}function showConnectMessage(){Dashboard.alert({message:Globalize.translate("MessagePluginConfigurationRequiresLocalAccess")})}function getPluginCardHtml(plugin,pluginConfigurationPages){var configPage=$.grep(pluginConfigurationPages,function(pluginConfigurationPage){return pluginConfigurationPage.PluginId==plugin.Id})[0],html="",isConnectMode=Dashboard.isConnectMode(),configPageUrl=configPage?Dashboard.getConfigurationPageUrl(configPage.Name):null,href=configPage&&!isConnectMode?configPageUrl:null;return html+="<div data-id='"+plugin.Id+"' data-name='"+plugin.Name+"' class='card backdropCard scalableCard backdropCard-scalable'>",html+='<div class="cardBox cardBox-bottompadded visualCardBox">',html+='<div class="cardScalable visualCardBox-cardScalable">',html+='<div class="cardPadder cardPadder-backdrop"></div>',html+=href?'<a class="cardContent" href="'+href+'">':configPageUrl?isConnectMode?'<div class="cardContent connectModePluginCard">':'<div class="cardContent">':'<div class="cardContent noConfigPluginCard noHoverEffect">',html+=plugin.ImageUrl?'<div class="cardImage" style="background-image:url(\''+plugin.ImageUrl+"');\">":'<div class="cardImage" style="background-image:url(\'css/images/items/list/collection.png\');">',html+="</div>",html+=href?"</a>":"</div>",html+="</div>",html+='<div class="cardFooter visualCardBox-cardFooter">',html+='<div style="text-align:right; float:right;padding-top:5px;">',html+='<button type="button" is="paper-icon-button-light" class="btnCardMenu autoSize"><i class="md-icon">more_vert</i></button>',html+="</div>",html+="<div class='cardText'>",html+=plugin.Name,html+="</div>",html+="<div class='cardText cardText-secondary'>",html+=plugin.Version,html+="</div>",html+="</div>",html+="</div>",html+="</div>"}function renderPlugins(page,plugins,showNoPluginsMessage){ApiClient.getJSON(ApiClient.getUrl("web/configurationpages")+"?pageType=PluginConfiguration").then(function(configPages){populateList(page,plugins,configPages,showNoPluginsMessage)})}function populateList(page,plugins,pluginConfigurationPages,showNoPluginsMessage){plugins=plugins.sort(function(plugin1,plugin2){return plugin1.Name>plugin2.Name?1:-1});var html=plugins.map(function(p){return getPluginCardHtml(p,pluginConfigurationPages)}).join("");if(plugins.length){var elem=$(".installedPlugins",page).addClass("itemsContainer").addClass("vertical-wrap").html(html);$(".noConfigPluginCard",elem).on("click",function(){showNoConfigurationMessage()}),$(".connectModePluginCard",elem).on("click",function(){showConnectMessage()}),$(".btnCardMenu",elem).on("click",function(){showPluginMenu(page,this)})}else showNoPluginsMessage&&(html+='<div style="padding:5px;">',AppInfo.enableAppStorePolicy?html+="<p>"+Globalize.translate("MessageNoPluginsDueToAppStore")+"</p>":(html+="<p>"+Globalize.translate("MessageNoPluginsInstalled")+"</p>",html+='<p><a href="plugincatalog.html">',html+=Globalize.translate("BrowsePluginCatalogMessage"),html+="</a></p>"),html+="</div>"),$(".installedPlugins",page).html(html);loading.hide()}function showPluginMenu(page,elem){var card=$(elem).parents(".card"),id=card.attr("data-id"),name=card.attr("data-name"),configHref=$(".cardContent",card).attr("href"),menuItems=[];configHref&&menuItems.push({name:Globalize.translate("ButtonSettings"),id:"open",ironIcon:"mode-edit"}),menuItems.push({name:Globalize.translate("ButtonUninstall"),id:"delete",ironIcon:"delete"}),require(["actionsheet"],function(actionsheet){actionsheet.show({items:menuItems,positionTo:elem,callback:function(resultId){switch(resultId){case"open":Dashboard.navigate(configHref);break;case"delete":deletePlugin(page,id,name)}}})})}function reloadList(page){loading.show(),ApiClient.getInstalledPlugins().then(function(plugins){renderPlugins(page,plugins,!0)})}function getTabs(){return[{href:"plugins.html",name:Globalize.translate("TabMyPlugins")},{href:"plugincatalog.html",name:Globalize.translate("TabCatalog")}]}$(document).on("pageshow","#pluginsPage",function(){libraryMenu.setTabs("plugins",0,getTabs),reloadList(this)}),window.PluginsPage={renderPlugins:renderPlugins}});

File diff suppressed because one or more lines are too long

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"LabelPrevious": "\u0627\u0644\u0633\u0627\u0628\u0642",
"LabelFinish": "\u0627\u0646\u0647\u0627\u0621",
"LabelNext": "\u0627\u0644\u062a\u0627\u0644\u064a",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.",
"Programs": "Programs",
"News": "News",
"HeaderDownloadSync": "Download & Sync"
"HeaderDownloadSync": "Download & Sync",
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"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",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.",
"Programs": "Programs",
"News": "News",
"HeaderDownloadSync": "Download & Sync"
"HeaderDownloadSync": "Download & Sync",
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"LabelPrevious": "\u041f\u0440\u0435\u0434\u0438\u0448\u0435\u043d",
"LabelFinish": "\u041a\u0440\u0430\u0439",
"LabelNext": "\u0421\u043b\u0435\u0434\u0432\u0430\u0449",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.",
"Programs": "Programs",
"News": "News",
"HeaderDownloadSync": "Download & Sync"
"HeaderDownloadSync": "Download & Sync",
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"LabelPrevious": "Anterior",
"LabelFinish": "Finalitzar",
"LabelNext": "Seg\u00fcent",
@ -103,7 +100,7 @@
"ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.",
"MessageEnablingOptionLongerScans": "Enabling this option may result in significantly longer library scans.",
"HeaderVideoPlaybackSettings": "Opcions de Reproducci\u00f3 de V\u00eddeo",
"OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programs listed in the guide",
"OptionDownloadInternetMetadataTvPrograms": "Descarrega metadades d'internet per als programes llistats en aquesta guia.",
"HeaderPlaybackSettings": "Opcions de Reproducci\u00f3",
"LabelAudioLanguagePreference": "Prefer\u00e8ncia de l'idioma de l'\u00e0udio:",
"LabelSubtitleLanguagePreference": "Prefer\u00e8ncia de l'idioma dels subt\u00edtols:",
@ -529,7 +526,7 @@
"ButtonShutdown": "Atura",
"ButtonUpdateNow": "Actualitza Ara",
"TabHosting": "Hosting",
"PleaseUpdateManually": "Si et plau, apaga el servidor i actualitza manualment.",
"PleaseUpdateManually": "Si et plau, apaga Emby Server i actualitza manualment.",
"NewServerVersionAvailable": "Hi ha una nova versi\u00f3 del Servidor Emby disponible!",
"ServerUpToDate": "L'Emby est\u00e0 actualitzat",
"LabelComponentsUpdated": "Els seg\u00fcents components han estat instal\u00b7lats o actualitzats:",
@ -1010,7 +1007,7 @@
"TabDevices": "Dispositius",
"HeaderLibrarySettings": "Library Settings",
"HeaderChapterSettings": "Chapter Settings",
"HeaderCameraUploadHelp": "Carrega autom\u00e0ticament fotos i v\u00eddeos capturats amb els teus dispositius m\u00f2bils cap a l'Emby.",
"HeaderCameraUploadHelp": "Les apps d'emby poden carregar autom\u00e0ticament fotos i v\u00eddeos capturats amb els teus dispositius m\u00f2bils cap a l'Emby Server.",
"LabelCameraUploadPath": "Camera upload path:",
"LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.",
"LabelCreateCameraUploadSubfolder": "Create a subfolder for each device",
@ -1425,7 +1422,7 @@
"OptionBlockMovies": "Pel\u00b7l\u00edcules",
"OptionBlockBooks": "Llibres",
"OptionBlockGames": "Jocs",
"OptionBlockLiveTvPrograms": "Live TV Programs",
"OptionBlockLiveTvPrograms": "Programes de TV en directe",
"OptionBlockLiveTvChannels": "Live TV Channels",
"OptionBlockChannelContent": "Internet Channel Content",
"ButtonRevoke": "Revoke",
@ -1838,13 +1835,13 @@
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"VisualLoginFormHelp": "Select a user or sign in manually",
"LabelSportsCategories": "Sports categories:",
"XmlTvSportsCategoriesHelp": "Programs with these categories will be displayed as sports programs. Separate multiple with '|'.",
"XmlTvSportsCategoriesHelp": "Els programes amb aquestes categories es mostraran com a programes esportius. Separa'n varis emprant '|'.",
"LabelNewsCategories": "News categories:",
"XmlTvNewsCategoriesHelp": "Programs with these categories will be displayed as news programs. Separate multiple with '|'.",
"XmlTvNewsCategoriesHelp": "Els programes amb aquestes categories es mostraran com a programes de not\u00edcies. Separa'n varis emprant '|'.",
"LabelKidsCategories": "Children's categories:",
"XmlTvKidsCategoriesHelp": "Programs with these categories will be displayed as programs for children. Separate multiple with '|'.",
"XmlTvKidsCategoriesHelp": "Els programes amb aquestes categories es mostraran com a programes infantils. Separa'n varis emprant '|'.",
"LabelMovieCategories": "Movie categories:",
"XmlTvMovieCategoriesHelp": "Programs with these categories will be displayed as movies. Separate multiple with '|'.",
"XmlTvMovieCategoriesHelp": "Els programes amb aquestes categories es mostraran com a pel\u00b7l\u00edcules. Separa'n varis emprant '|'.",
"XmlTvPathHelp": "A path to an xml tv file. Emby will read this file and periodically check it for updates. You are responsible for creating and updating the file.",
"LabelBindToLocalNetworkAddress": "Bind to local network address:",
"LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the http server to. If left empty, the server will bind to all availabile addresses. Changing this value requires restarting Emby Server.",
@ -1885,7 +1882,7 @@
"Downloads": "Desc\u00e0rregues",
"LabelEnableDebugLogging": "Habilita registre de depuraci\u00f3",
"OptionEnableExternalContentInSuggestions": "Enable external content in suggestions",
"OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.",
"OptionEnableExternalContentInSuggestionsHelp": "Permet incloure tr\u00e0ilers d'internet i programes de TV en directe amb el continguts suggerits.",
"LabelH264EncodingPreset": "H264 encoding preset:",
"H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.",
"LabelH264Crf": "H264 encoding CRF:",
@ -1928,7 +1925,12 @@
"Downloading": "Downloading",
"LabelCertificatePassword": "Certificate password:",
"LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.",
"Programs": "Programs",
"Programs": "Programes",
"News": "News",
"HeaderDownloadSync": "Download & Sync"
"HeaderDownloadSync": "Download & Sync",
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"LabelPrevious": "P\u0159edchoz\u00ed",
"LabelFinish": "Dokon\u010dit",
"LabelNext": "Dal\u0161\u00ed",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.",
"Programs": "Programs",
"News": "News",
"HeaderDownloadSync": "Download & Sync"
"HeaderDownloadSync": "Download & Sync",
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"LabelPrevious": "Forrige",
"LabelFinish": "Afslut",
"LabelNext": "N\u00e6ste",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.",
"Programs": "Programs",
"News": "News",
"HeaderDownloadSync": "Download & Sync"
"HeaderDownloadSync": "Download & Sync",
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"LabelPrevious": "Previous",
"LabelFinish": "Finish",
"LabelNext": "Next",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.",
"Programs": "Programs",
"News": "News",
"HeaderDownloadSync": "Download & Sync"
"HeaderDownloadSync": "Download & Sync",
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Aktiviere Hardware-Decoding",
"EnableHardwareEncoding": "Aktiviere Hardware-Encoding",
"Rate": "Rate",
"LabelPrevious": "Vorheriges",
"LabelFinish": "Fertig",
"LabelNext": "N\u00e4chstes",
@ -1150,7 +1147,7 @@
"MessageTunerDeviceNotListed": "Wird Ihr Tuner hier nicht angezeigt? Installieren Sie einen externen Dienst f\u00fcr Weitere Live-TV Funktionen.",
"LabelImportOnlyFavoriteChannels": "Beschr\u00e4nke auf favorisierte Kan\u00e4le",
"ImportFavoriteChannelsHelp": "Wenn aktiviert, werden nur auf dem Tuner favorisierte Kan\u00e4le importiert.",
"ButtonRepeat": "Wiederholen",
"ButtonRepeat": "Wiederholung",
"LabelEnableThisTuner": "Aktiviere diesen Tuner",
"LabelEnableThisTunerHelp": "Abw\u00e4hlen um das importieren von Kan\u00e4len dieses Tuners zu verhindern",
"HeaderImagePrimary": "Bevorzugt",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "Wenn Dein Zertifikat ein Passwort ben\u00f6tigt, gib es hier ein.",
"Programs": "Programme",
"News": "News",
"HeaderDownloadSync": "Herunterladen & Synchronisieren"
"HeaderDownloadSync": "Herunterladen & Synchronisieren",
"EnableHardwareDecoding": "Aktiviere Hardware-Decoding",
"EnableHardwareEncoding": "Aktiviere Hardware-Encoding",
"Rate": "Rate",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"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",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.",
"Programs": "Programs",
"News": "News",
"HeaderDownloadSync": "Download & Sync"
"HeaderDownloadSync": "Download & Sync",
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"LabelPrevious": "Previous",
"LabelFinish": "Finish",
"LabelNext": "Next",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.",
"Programs": "Programmes",
"News": "News",
"HeaderDownloadSync": "Download & Sync"
"HeaderDownloadSync": "Download & Sync",
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1930,5 +1930,7 @@
"HeaderDownloadSync": "Download & Sync",
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate"
"Rate": "Rate",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Habilitar la descodificaci\u00f3n de hardware",
"EnableHardwareEncoding": "Habilitar la codificaci\u00f3n de hardware",
"Rate": "Rate",
"LabelPrevious": "Anterior",
"LabelFinish": "Terminar",
"LabelNext": "Siguiente",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.",
"Programs": "Programs",
"News": "News",
"HeaderDownloadSync": "Download & Sync"
"HeaderDownloadSync": "Download & Sync",
"EnableHardwareDecoding": "Habilitar la descodificaci\u00f3n de hardware",
"EnableHardwareEncoding": "Habilitar la codificaci\u00f3n de hardware",
"Rate": "Rate",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"LabelPrevious": "Anterior",
"LabelFinish": "Terminar",
"LabelNext": "Siguiente",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.",
"Programs": "Programs",
"News": "News",
"HeaderDownloadSync": "Download & Sync"
"HeaderDownloadSync": "Download & Sync",
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Habilitar decodificaci\u00f3n por hardware",
"EnableHardwareEncoding": "Habilitar codificaci\u00f3n por hardware",
"Rate": "Calificaci\u00f3n",
"LabelPrevious": "Anterior",
"LabelFinish": "Terminar",
"LabelNext": "Siguiente",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "Si su certificado requiere de una contrase\u00f1a, por favor introd\u00fazcala aqu\u00ed.",
"Programs": "Programas",
"News": "Noticias",
"HeaderDownloadSync": "Descargar y Sincronizar"
"HeaderDownloadSync": "Descargar y Sincronizar",
"EnableHardwareDecoding": "Habilitar decodificaci\u00f3n por hardware",
"EnableHardwareEncoding": "Habilitar codificaci\u00f3n por hardware",
"Rate": "Calificaci\u00f3n",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"LabelPrevious": "Anterior",
"LabelFinish": "Terminar",
"LabelNext": "Siguiente",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "Si tu certificado requiere una contrase\u00f1a, por favor introducela aqui",
"Programs": "Programs",
"News": "News",
"HeaderDownloadSync": "Download & Sync"
"HeaderDownloadSync": "Download & Sync",
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"LabelPrevious": "\u0642\u0628\u0644\u06cc",
"LabelFinish": "\u067e\u0627\u06cc\u0627\u0646",
"LabelNext": "\u0628\u0639\u062f\u06cc",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.",
"Programs": "Programs",
"News": "News",
"HeaderDownloadSync": "Download & Sync"
"HeaderDownloadSync": "Download & Sync",
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"LabelPrevious": "Edellinen",
"LabelFinish": "Valmis",
"LabelNext": "Seuraava",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.",
"Programs": "Programs",
"News": "News",
"HeaderDownloadSync": "Download & Sync"
"HeaderDownloadSync": "Download & Sync",
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"LabelPrevious": "Pr\u00e9c\u00e9dent",
"LabelFinish": "Terminer",
"LabelNext": "Suivant",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.",
"Programs": "Programs",
"News": "News",
"HeaderDownloadSync": "Download & Sync"
"HeaderDownloadSync": "Download & Sync",
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Activer le d\u00e9codage mat\u00e9riel",
"EnableHardwareEncoding": "Activer l'encodage mat\u00e9riel",
"Rate": "D\u00e9bit",
"LabelPrevious": "Pr\u00e9c\u00e9dent",
"LabelFinish": "Terminer",
"LabelNext": "Suivant",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "Si votre certificat n\u00e9cessite un mot de passe, veuillez le renseigner ici.",
"Programs": "Programmes",
"News": "Actualit\u00e9s",
"HeaderDownloadSync": "T\u00e9l\u00e9charger et synchroniser"
"HeaderDownloadSync": "T\u00e9l\u00e9charger et synchroniser",
"EnableHardwareDecoding": "Activer le d\u00e9codage mat\u00e9riel",
"EnableHardwareEncoding": "Activer l'encodage mat\u00e9riel",
"Rate": "D\u00e9bit",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Activer le d\u00e9codage mat\u00e9riel",
"EnableHardwareEncoding": "Activer l'encodage mat\u00e9riel",
"Rate": "D\u00e9bit",
"LabelPrevious": "Pr\u00e9c\u00e9dent",
"LabelFinish": "Terminer",
"LabelNext": "Suivant",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "Si votre certificat n\u00e9cessite un mot de passe, veuillez le renseigner ici.",
"Programs": "Programmes",
"News": "Actualit\u00e9s",
"HeaderDownloadSync": "T\u00e9l\u00e9charger et synchroniser"
"HeaderDownloadSync": "T\u00e9l\u00e9charger et synchroniser",
"EnableHardwareDecoding": "Activer le d\u00e9codage mat\u00e9riel",
"EnableHardwareEncoding": "Activer l'encodage mat\u00e9riel",
"Rate": "D\u00e9bit",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"LabelPrevious": "Vorher",
"LabelFinish": "Beende",
"LabelNext": "N\u00f6chst",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.",
"Programs": "Programs",
"News": "News",
"HeaderDownloadSync": "Download & Sync"
"HeaderDownloadSync": "Download & Sync",
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"LabelPrevious": "\u05d4\u05e7\u05d5\u05d3\u05dd",
"LabelFinish": "\u05e1\u05d9\u05d9\u05dd",
"LabelNext": "\u05d4\u05d1\u05d0",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.",
"Programs": "Programs",
"News": "News",
"HeaderDownloadSync": "Download & Sync"
"HeaderDownloadSync": "Download & Sync",
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"LabelPrevious": "Prethodni",
"LabelFinish": "Kraj",
"LabelNext": "Sljede\u0107i",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.",
"Programs": "Programs",
"News": "News",
"HeaderDownloadSync": "Download & Sync"
"HeaderDownloadSync": "Download & Sync",
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"LabelPrevious": "El\u0151z\u0151",
"LabelFinish": "Befejez",
"LabelNext": "K\u00f6vetkez\u0151",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.",
"Programs": "Programs",
"News": "News",
"HeaderDownloadSync": "Download & Sync"
"HeaderDownloadSync": "Download & Sync",
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"LabelPrevious": "Sebelumnya",
"LabelFinish": "Selesai",
"LabelNext": "Berikutnya",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.",
"Programs": "Programs",
"News": "News",
"HeaderDownloadSync": "Download & Sync"
"HeaderDownloadSync": "Download & Sync",
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Abilita la decodifica hardware",
"EnableHardwareEncoding": "Abilita la codifica hardware",
"Rate": "Vota",
"LabelPrevious": "Precedente",
"LabelFinish": "Finito",
"LabelNext": "Prossimo",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "Se il tuo certificato richiede una password, per favore inseriscila qui",
"Programs": "Programmi",
"News": "Notizie",
"HeaderDownloadSync": "Scarica & Sincronizza"
"HeaderDownloadSync": "Scarica & Sincronizza",
"EnableHardwareDecoding": "Abilita la decodifica hardware",
"EnableHardwareEncoding": "Abilita la codifica hardware",
"Rate": "Vota",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "\u0410\u043f\u043f\u0430\u0440\u0430\u0442\u044b\u049b \u043a\u043e\u0434\u0441\u044b\u0437\u0434\u0430\u043d\u0434\u044b\u0440\u0443\u0434\u044b \u049b\u043e\u0441\u0443",
"EnableHardwareEncoding": "\u0410\u043f\u043f\u0430\u0440\u0430\u0442\u044b\u049b \u043a\u043e\u0434\u0442\u0430\u0443\u0443\u0434\u044b \u049b\u043e\u0441\u0443",
"Rate": "\u0411\u0430\u0493\u0430\u043b\u0430\u0443",
"LabelPrevious": "\u0410\u043b\u0434\u044b\u04a3\u0493\u044b",
"LabelFinish": "\u0410\u044f\u049b\u0442\u0430\u0443",
"LabelNext": "\u041a\u0435\u043b\u0435\u0441\u0456",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "\u0415\u0433\u0435\u0440 \u043a\u0443\u04d9\u043b\u0456\u0433\u0456\u04a3\u0456\u0437\u0433\u0435 \u049b\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437 \u049b\u0430\u0436\u0435\u0442 \u0431\u043e\u043b\u0441\u0430, \u043e\u043d\u044b \u043c\u04b1\u043d\u0434\u0430 \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437.",
"Programs": "\u041a\u04e9\u0440\u0441\u0435\u0442\u0456\u043c\u0434\u0435\u0440",
"News": "\u0416\u0430\u04a3\u0430\u043b\u044b\u049b\u0442\u0430\u0440",
"HeaderDownloadSync": "\u0416\u04af\u043a\u0442\u0435\u0443 \u043c\u0435\u043d \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443"
"HeaderDownloadSync": "\u0416\u04af\u043a\u0442\u0435\u0443 \u043c\u0435\u043d \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443",
"EnableHardwareDecoding": "\u0410\u043f\u043f\u0430\u0440\u0430\u0442\u044b\u049b \u043a\u043e\u0434\u0441\u044b\u0437\u0434\u0430\u043d\u0434\u044b\u0440\u0443\u0434\u044b \u049b\u043e\u0441\u0443",
"EnableHardwareEncoding": "\u0410\u043f\u043f\u0430\u0440\u0430\u0442\u044b\u049b \u043a\u043e\u0434\u0442\u0430\u0443\u0443\u0434\u044b \u049b\u043e\u0441\u0443",
"Rate": "\u0411\u0430\u0493\u0430\u043b\u0430\u0443",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"LabelPrevious": "\uc774\uc804",
"LabelFinish": "\ub05d\ub0b4\uae30",
"LabelNext": "\ub2e4\uc74c",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.",
"Programs": "Programs",
"News": "News",
"HeaderDownloadSync": "Download & Sync"
"HeaderDownloadSync": "Download & Sync",
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"LabelPrevious": "Ankstesnis",
"LabelFinish": "Baigti",
"LabelNext": "Kitas",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.",
"Programs": "Programs",
"News": "News",
"HeaderDownloadSync": "Download & Sync"
"HeaderDownloadSync": "Download & Sync",
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"LabelPrevious": "Sebelumnya",
"LabelFinish": "Habis",
"LabelNext": "Seterusnya",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.",
"Programs": "Programs",
"News": "News",
"HeaderDownloadSync": "Download & Sync"
"HeaderDownloadSync": "Download & Sync",
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Aktiver hardware dekoding",
"EnableHardwareEncoding": "Aktiver hardware enkoding",
"Rate": "Rate",
"LabelPrevious": "Forrige",
"LabelFinish": "Ferdig",
"LabelNext": "Neste",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "Hvis sertifikatet ditt krever et passord, vennligst skriv det inn her.",
"Programs": "Programmer",
"News": "Nyheter",
"HeaderDownloadSync": "Last ned og synkronisere"
"HeaderDownloadSync": "Last ned og synkronisere",
"EnableHardwareDecoding": "Aktiver hardware dekoding",
"EnableHardwareEncoding": "Aktiver hardware enkoding",
"Rate": "Rate",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"LabelPrevious": "Vorige",
"LabelFinish": "Voltooien",
"LabelNext": "Volgende",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.",
"Programs": "Programs",
"News": "News",
"HeaderDownloadSync": "Download & Sync"
"HeaderDownloadSync": "Download & Sync",
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"LabelPrevious": "Wstecz",
"LabelFinish": "Koniec",
"LabelNext": "Dalej",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.",
"Programs": "Programs",
"News": "News",
"HeaderDownloadSync": "Download & Sync"
"HeaderDownloadSync": "Download & Sync",
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Ativar decodifica\u00e7\u00e3o por hardware",
"EnableHardwareEncoding": "Ativar codifica\u00e7\u00e3o por hardware",
"Rate": "Avalia\u00e7\u00e3o",
"LabelPrevious": "Anterior",
"LabelFinish": "Finalizar",
"LabelNext": "Pr\u00f3ximo",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "Se o seu certificado exige uma senha, por favor digite aqui.",
"Programs": "Programas",
"News": "Not\u00edcias",
"HeaderDownloadSync": "Download & Sincroniza\u00e7\u00e3o"
"HeaderDownloadSync": "Download & Sincroniza\u00e7\u00e3o",
"EnableHardwareDecoding": "Ativar decodifica\u00e7\u00e3o por hardware",
"EnableHardwareEncoding": "Ativar codifica\u00e7\u00e3o por hardware",
"Rate": "Avalia\u00e7\u00e3o",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"LabelPrevious": "Anterior",
"LabelFinish": "Terminar",
"LabelNext": "Seguinte",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.",
"Programs": "Programs",
"News": "News",
"HeaderDownloadSync": "Download & Sync"
"HeaderDownloadSync": "Download & Sync",
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"LabelPrevious": "Anteriorul",
"LabelFinish": "Termina",
"LabelNext": "Urmatorul",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.",
"Programs": "Programs",
"News": "News",
"HeaderDownloadSync": "Download & Sync"
"HeaderDownloadSync": "Download & Sync",
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0430\u043f\u043f\u0430\u0440\u0430\u0442\u043d\u043e\u0435 \u0434\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435",
"EnableHardwareEncoding": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0430\u043f\u043f\u0430\u0440\u0430\u0442\u043d\u043e\u0435 \u043a\u043e\u0434\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435",
"Rate": "\u041e\u0446\u0435\u043d\u043a\u0430",
"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",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "\u0415\u0441\u043b\u0438 \u0434\u043b\u044f \u0432\u0430\u0448\u0435\u0433\u043e \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u0430 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043f\u0430\u0440\u043e\u043b\u044c, \u0442\u043e \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0435\u0433\u043e \u0437\u0434\u0435\u0441\u044c.",
"Programs": "\u041f\u0435\u0440\u0435\u0434\u0430\u0447\u0438",
"News": "\u041d\u043e\u0432\u043e\u0441\u0442\u0438",
"HeaderDownloadSync": "\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u0438 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f"
"HeaderDownloadSync": "\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u0438 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f",
"EnableHardwareDecoding": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0430\u043f\u043f\u0430\u0440\u0430\u0442\u043d\u043e\u0435 \u0434\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435",
"EnableHardwareEncoding": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0430\u043f\u043f\u0430\u0440\u0430\u0442\u043d\u043e\u0435 \u043a\u043e\u0434\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435",
"Rate": "\u041e\u0446\u0435\u043d\u043a\u0430",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"LabelPrevious": "Previous",
"LabelFinish": "Finish",
"LabelNext": "Next",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.",
"Programs": "Programs",
"News": "News",
"HeaderDownloadSync": "Download & Sync"
"HeaderDownloadSync": "Download & Sync",
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"LabelPrevious": "Nazaj",
"LabelFinish": "Konec",
"LabelNext": "Naprej",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.",
"Programs": "Programs",
"News": "News",
"HeaderDownloadSync": "Download & Sync"
"HeaderDownloadSync": "Download & Sync",
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"LabelPrevious": "F\u00f6reg\u00e5ende",
"LabelFinish": "Klart",
"LabelNext": "N\u00e4sta",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "Skriv in l\u00f6senordet h\u00e4r om ditt certifikat kr\u00e4ver detta.",
"Programs": "Programs",
"News": "News",
"HeaderDownloadSync": "Download & Sync"
"HeaderDownloadSync": "Download & Sync",
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"LabelPrevious": "\u00d6nceki",
"LabelFinish": "Bitir",
"LabelNext": "Sonraki",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.",
"Programs": "Programs",
"News": "News",
"HeaderDownloadSync": "Download & Sync"
"HeaderDownloadSync": "Download & Sync",
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"LabelPrevious": "\u041d\u0430\u0437\u0430\u0434",
"LabelFinish": "Finish",
"LabelNext": "\u0412\u043f\u0435\u0440\u0435\u0434",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.",
"Programs": "Programs",
"News": "News",
"HeaderDownloadSync": "Download & Sync"
"HeaderDownloadSync": "Download & Sync",
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

View file

@ -1,7 +1,4 @@
{
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"LabelPrevious": "Tr\u01b0\u1edbc",
"LabelFinish": "K\u1ebft th\u00fac",
"LabelNext": "Ti\u1ebfp theo",
@ -1930,5 +1927,10 @@
"LabelCertificatePasswordHelp": "If your certificate requires a password, please enter it here.",
"Programs": "Programs",
"News": "News",
"HeaderDownloadSync": "Download & Sync"
"HeaderDownloadSync": "Download & Sync",
"EnableHardwareDecoding": "Enable hardware decoding",
"EnableHardwareEncoding": "Enable hardware encoding",
"Rate": "Rate",
"ButtonScanAllLibraries": "Scan All Libraries",
"ScanLibrary": "Scan library"
}

Some files were not shown because too many files have changed in this diff Show more