mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update recordings
This commit is contained in:
parent
67f859195a
commit
d8482e7870
84 changed files with 587 additions and 1881 deletions
|
@ -165,6 +165,13 @@
|
|||
}
|
||||
};
|
||||
|
||||
// too buggy in IE, not even worth it
|
||||
if (browser.msie) {
|
||||
dlg.animationConfig = null;
|
||||
dlg.entryAnimation = null;
|
||||
dlg.exitAnimation = null;
|
||||
}
|
||||
|
||||
dlg.classList.add('paperDialog');
|
||||
|
||||
dlg.classList.add('scrollY');
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
define(['paperdialoghelper', 'events', 'paper-checkbox', 'jqmcollapsible', 'css!components/filterdialog/style', 'paper-radio-button', 'paper-radio-group'], function (paperDialogHelper, events) {
|
||||
define(['paperdialoghelper', 'events', 'browser', 'paper-checkbox', 'jqmcollapsible', 'css!components/filterdialog/style', 'paper-radio-button', 'paper-radio-group'], function (paperDialogHelper, events, browser) {
|
||||
|
||||
function renderOptions(context, selector, cssClass, items, isCheckedFn) {
|
||||
|
||||
|
@ -84,9 +84,9 @@
|
|||
|
||||
if (options.mode == 'livetvchannels') {
|
||||
|
||||
$('.chkFavorite', context).checked(query.IsFavorite == true);
|
||||
$('.chkLikes', context).checked(query.IsLiked == true);
|
||||
$('.chkDislikes', context).checked(query.IsDisliked == true);
|
||||
context.querySelector('.chkFavorite').checked = query.IsFavorite == true;
|
||||
context.querySelector('.chkLikes').checked = query.IsLiked == true;
|
||||
context.querySelector('.chkDislikes').checked = query.IsDisliked == true;
|
||||
|
||||
} else {
|
||||
$('.chkStandardFilter', context).each(function () {
|
||||
|
@ -95,7 +95,6 @@
|
|||
var filterName = this.getAttribute('data-filter');
|
||||
|
||||
this.checked = filters.indexOf(',' + filterName) != -1;
|
||||
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -107,15 +106,15 @@
|
|||
this.checked = filters.indexOf(',' + filterName) != -1;
|
||||
});
|
||||
|
||||
$('.chk3DFilter', context).checked(query.Is3D == true);
|
||||
$('.chkHDFilter', context).checked(query.IsHD == true);
|
||||
$('.chkSDFilter', context).checked(query.IsHD == false);
|
||||
context.querySelector('.chk3DFilter').checked = query.Is3D == true;
|
||||
context.querySelector('.chkHDFilter').checked = query.IsHD == true;
|
||||
context.querySelector('.chkSDFilter').checked = query.IsHD == true;
|
||||
|
||||
$('#chkSubtitle', context).checked(query.HasSubtitles == true);
|
||||
$('#chkTrailer', context).checked(query.HasTrailer == true);
|
||||
$('#chkThemeSong', context).checked(query.HasThemeSong == true);
|
||||
$('#chkThemeVideo', context).checked(query.HasThemeVideo == true);
|
||||
$('#chkSpecialFeature', context).checked(query.HasSpecialFeature == true);
|
||||
context.querySelector('#chkSubtitle').checked = query.HasSubtitles == true;
|
||||
context.querySelector('#chkTrailer').checked = query.HasTrailer == true;
|
||||
context.querySelector('#chkThemeSong').checked = query.HasThemeSong == true;
|
||||
context.querySelector('#chkThemeVideo').checked = query.HasThemeVideo == true;
|
||||
context.querySelector('#chkSpecialFeature').checked = query.HasSpecialFeature == true;
|
||||
|
||||
$('#chkSpecialEpisode', context).checked(query.ParentIndexNumber == 0);
|
||||
$('#chkMissingEpisode', context).checked(query.IsMissing == true);
|
||||
|
@ -513,7 +512,8 @@
|
|||
modal: false,
|
||||
enableHistory: false,
|
||||
entryAnimationDuration: 160,
|
||||
exitAnimationDuration: 200
|
||||
exitAnimationDuration: 200,
|
||||
autoFocus: false
|
||||
});
|
||||
|
||||
dlg.classList.add('ui-body-a');
|
||||
|
@ -522,28 +522,34 @@
|
|||
dlg.classList.add('formDialog');
|
||||
dlg.classList.add('filterDialog');
|
||||
|
||||
var html = '';
|
||||
|
||||
html += Globalize.translateDocument(template);
|
||||
|
||||
dlg.innerHTML = html;
|
||||
dlg.innerHTML = Globalize.translateDocument(template);
|
||||
|
||||
setVisibility(dlg, options);
|
||||
document.body.appendChild(dlg);
|
||||
|
||||
// needed for jqm collapsibles
|
||||
$(dlg.querySelector('.filterDialogContent')).trigger('create');
|
||||
$(dlg.querySelectorAll('div[data-role="collapsible"]')).collapsible({});
|
||||
|
||||
paperDialogHelper.open(dlg);
|
||||
|
||||
dlg.addEventListener('iron-overlay-closed', resolve);
|
||||
|
||||
updateFilterControls(dlg, options);
|
||||
bindEvents(self, dlg, options);
|
||||
var onTimeout = function () {
|
||||
updateFilterControls(dlg, options);
|
||||
bindEvents(self, dlg, options);
|
||||
|
||||
if (enableDynamicFilters(options.mode)) {
|
||||
dlg.classList.add('dynamicFilterDialog');
|
||||
loadDynamicFilters(dlg, Dashboard.getCurrentUserId(), options.query);
|
||||
if (enableDynamicFilters(options.mode)) {
|
||||
dlg.classList.add('dynamicFilterDialog');
|
||||
loadDynamicFilters(dlg, Dashboard.getCurrentUserId(), options.query);
|
||||
}
|
||||
};
|
||||
|
||||
// In browsers without native web components (FF/IE), there are some quirks with the checkboxes appearing incorrectly with no visible checkmark
|
||||
// Applying a delay after setting innerHTML seems to resolve this
|
||||
if (browser.animate) {
|
||||
onTimeout();
|
||||
} else {
|
||||
setTimeout(onTimeout, 100);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,12 +1,14 @@
|
|||
define(['paperdialoghelper', 'paper-checkbox', 'paper-dialog', 'paper-input', 'paper-item-body', 'paper-icon-item', 'paper-textarea'], function (paperDialogHelper) {
|
||||
define(['paperdialoghelper', 'paper-checkbox', 'paper-dialog', 'paper-input', 'paper-item-body', 'paper-icon-item', 'paper-textarea', 'paper-fab'], function (paperDialogHelper) {
|
||||
|
||||
var currentDialog;
|
||||
var currentContext;
|
||||
var metadataEditorInfo;
|
||||
var currentItem;
|
||||
|
||||
function closeDialog(isSubmitted) {
|
||||
|
||||
paperDialogHelper.close(currentDialog);
|
||||
if (currentContext.tagName == 'PAPER-DIALOG') {
|
||||
paperDialogHelper.close(currentContext);
|
||||
}
|
||||
}
|
||||
|
||||
function submitUpdatedItem(form, item) {
|
||||
|
@ -259,6 +261,148 @@
|
|||
});
|
||||
}
|
||||
|
||||
function showRefreshMenu(context, button) {
|
||||
|
||||
var items = [];
|
||||
|
||||
items.push({
|
||||
name: Globalize.translate('ButtonLocalRefresh'),
|
||||
id: 'local',
|
||||
ironIcon: 'refresh'
|
||||
});
|
||||
|
||||
items.push({
|
||||
name: Globalize.translate('ButtonAddMissingData'),
|
||||
id: 'missing',
|
||||
ironIcon: 'refresh'
|
||||
});
|
||||
|
||||
items.push({
|
||||
name: Globalize.translate('ButtonFullRefresh'),
|
||||
id: 'full',
|
||||
ironIcon: 'refresh'
|
||||
});
|
||||
|
||||
require(['actionsheet'], function (actionsheet) {
|
||||
|
||||
actionsheet.show({
|
||||
items: items,
|
||||
positionTo: button,
|
||||
callback: function (id) {
|
||||
|
||||
if (id) {
|
||||
|
||||
Dashboard.showLoadingMsg();
|
||||
// For now this is a hack
|
||||
setTimeout(function () {
|
||||
Dashboard.hideLoadingMsg();
|
||||
}, 5000);
|
||||
}
|
||||
|
||||
switch (id) {
|
||||
|
||||
case 'local':
|
||||
ApiClient.refreshItem(currentItem.Id, {
|
||||
Recursive: true,
|
||||
ImageRefreshMode: 'None',
|
||||
MetadataRefreshMode: 'ValidationOnly',
|
||||
ReplaceAllImages: false,
|
||||
ReplaceAllMetadata: false
|
||||
});
|
||||
break;
|
||||
case 'missing':
|
||||
ApiClient.refreshItem(currentItem.Id, {
|
||||
Recursive: true,
|
||||
ImageRefreshMode: 'FullRefresh',
|
||||
MetadataRefreshMode: 'FullRefresh',
|
||||
ReplaceAllImages: false,
|
||||
ReplaceAllMetadata: false
|
||||
});
|
||||
break;
|
||||
case 'full':
|
||||
ApiClient.refreshItem(currentItem.Id, {
|
||||
Recursive: true,
|
||||
ImageRefreshMode: 'FullRefresh',
|
||||
MetadataRefreshMode: 'FullRefresh',
|
||||
ReplaceAllImages: false,
|
||||
ReplaceAllMetadata: true
|
||||
});
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
function showMoreMenu(context, button) {
|
||||
|
||||
var items = [];
|
||||
|
||||
items.push({
|
||||
name: Globalize.translate('ButtonIdentify'),
|
||||
id: 'identify',
|
||||
ironIcon: 'info'
|
||||
});
|
||||
|
||||
items.push({
|
||||
name: Globalize.translate('ButtonRefresh'),
|
||||
id: 'refresh',
|
||||
ironIcon: 'refresh'
|
||||
});
|
||||
|
||||
require(['actionsheet'], function (actionsheet) {
|
||||
|
||||
actionsheet.show({
|
||||
items: items,
|
||||
positionTo: button,
|
||||
callback: function (id) {
|
||||
|
||||
switch (id) {
|
||||
|
||||
case 'identify':
|
||||
LibraryBrowser.identifyItem(currentItem.Id);
|
||||
break;
|
||||
case 'refresh':
|
||||
showRefreshMenu(context, button);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
function onWebSocketMessageReceived(e, data) {
|
||||
|
||||
var msg = data;
|
||||
|
||||
if (msg.MessageType === "LibraryChanged") {
|
||||
|
||||
if (msg.Data.ItemsUpdated.indexOf(currentItem.Id) != -1) {
|
||||
|
||||
console.log('Item updated - reloading metadata');
|
||||
reload(currentContext, currentItem.Id);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function bindItemChanged(context) {
|
||||
|
||||
Events.on(ApiClient, "websocketmessage", onWebSocketMessageReceived);
|
||||
}
|
||||
|
||||
function unbindItemChanged(context) {
|
||||
|
||||
Events.off(ApiClient, "websocketmessage", onWebSocketMessageReceived);
|
||||
}
|
||||
|
||||
function init(context) {
|
||||
|
||||
$('.btnCancel', context).on('click', function () {
|
||||
|
@ -266,6 +410,11 @@
|
|||
closeDialog(false);
|
||||
});
|
||||
|
||||
context.querySelector('.btnMore').addEventListener('click', function (e) {
|
||||
|
||||
showMoreMenu(context, e.target);
|
||||
});
|
||||
|
||||
context.querySelector('.btnHeaderSave').addEventListener('click', function (e) {
|
||||
|
||||
context.querySelector('.btnSave').click();
|
||||
|
@ -300,6 +449,11 @@
|
|||
|
||||
editPerson(context, {}, -1);
|
||||
});
|
||||
|
||||
// For now this is only supported in dialog mode because we have a way of knowing when it closes
|
||||
if (currentContext.tagName == 'PAPER-DIALOG') {
|
||||
bindItemChanged(context);
|
||||
}
|
||||
}
|
||||
|
||||
function getItem(itemId) {
|
||||
|
@ -1074,16 +1228,43 @@
|
|||
paperDialogHelper.open(dlg);
|
||||
|
||||
dlg.addEventListener('iron-overlay-closed', function () {
|
||||
bindItemChanged(context);
|
||||
resolve();
|
||||
});
|
||||
|
||||
currentDialog = dlg;
|
||||
currentContext = dlg;
|
||||
|
||||
init(dlg);
|
||||
|
||||
reload(dlg, itemId);
|
||||
}
|
||||
|
||||
xhr.send();
|
||||
});
|
||||
},
|
||||
|
||||
embed: function (elem, itemId) {
|
||||
return new Promise(function (resolve, reject) {
|
||||
|
||||
Dashboard.showLoadingMsg();
|
||||
|
||||
var xhr = new XMLHttpRequest();
|
||||
xhr.open('GET', 'components/metadataeditor/metadataeditor.template.html', true);
|
||||
|
||||
xhr.onload = function (e) {
|
||||
|
||||
var template = this.response;
|
||||
|
||||
elem.innerHTML = Globalize.translateDocument(template);
|
||||
|
||||
elem.querySelector('.btnCancel').classList.add('hide');
|
||||
|
||||
currentContext = elem;
|
||||
|
||||
init(elem);
|
||||
reload(elem, itemId);
|
||||
}
|
||||
|
||||
xhr.send();
|
||||
});
|
||||
}
|
||||
|
|
|
@ -3,10 +3,13 @@
|
|||
<div class="dialogHeaderTitle">
|
||||
${ButtonEdit}
|
||||
</div>
|
||||
<paper-button class="btnHeaderSave accent" tabindex="-1" style="margin-left:auto;">
|
||||
<iron-icon icon="check"></iron-icon>
|
||||
<span>${ButtonSave}</span>
|
||||
</paper-button>
|
||||
<div style="margin-left:auto; display: flex; align-items: center; justify-content: center;">
|
||||
<paper-button class="btnHeaderSave accent" tabindex="-1">
|
||||
<iron-icon icon="check"></iron-icon>
|
||||
<span>${ButtonSave}</span>
|
||||
</paper-button>
|
||||
<paper-icon-button icon="more-vert" tabindex="-1" class="btnMore"></paper-icon-button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<form class="editItemMetadataForm editMetadataForm" style="margin:0;">
|
||||
|
|
|
@ -4,423 +4,16 @@
|
|||
<title>Emby</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="editItemMetadataPage" data-role="page" class="page libraryPage metadataEditorPage noSecondaryNavPage" data-contextname="${HeaderMetadataManager}" data-require="jqmcheckbox,jqmcollapsible,jqmlistview,jqmpopup,scripts/editorsidebar,scripts/edititemmetadata,paper-checkbox,paper-input">
|
||||
<div id="editItemMetadataPage" data-role="page" class="page libraryPage metadataEditorPage noSecondaryNavPage" data-contextname="${HeaderMetadataManager}" data-require="scripts/editorsidebar,scripts/edititemmetadata">
|
||||
<div class="editPageSidebar" style="overflow:auto;">
|
||||
<div class="libraryTree">
|
||||
<ul></ul>
|
||||
</div>
|
||||
</div>
|
||||
<div data-role="content">
|
||||
<div class="editPageInnerContent" style="visibility:hidden;">
|
||||
<h1 class="itemName editPageName"> </h1>
|
||||
<br />
|
||||
<form class="editItemMetadataForm editMetadataForm ">
|
||||
<div class="metadataFormFields">
|
||||
|
||||
<div style="margin:2em 0 .5em;text-align:center;">
|
||||
|
||||
<paper-button raised class="submit">
|
||||
<button class="btnSave clearButton" type="submit" data-role="none" style="display:inline-block;">
|
||||
<iron-icon icon="check"></iron-icon><span>${ButtonSave}</span>
|
||||
</button>
|
||||
</paper-button>
|
||||
|
||||
<paper-button raised class="subdued btnEditImages"><iron-icon icon="photo"></iron-icon><span>${ButtonEditImages}</span></paper-button>
|
||||
<paper-button raised class="subdued btnRefresh btnSimpleRefresh"><iron-icon icon="refresh"></iron-icon><span>${ButtonRefresh}</span></paper-button>
|
||||
<paper-button id="btnIdentify" raised class="subdued"><iron-icon icon="info"></iron-icon><span>${ButtonIdentify}</span></paper-button>
|
||||
</div>
|
||||
|
||||
<div style="padding: 0 0 10px;">
|
||||
<div id="fldContentType" style="display:none;">
|
||||
<label for="selectContentType">${LabelContentType}</label>
|
||||
<select id="selectContentType" data-mini="true"></select>
|
||||
</div>
|
||||
<div id="fldPath">
|
||||
<paper-input id="txtPath" type="text" label="${LabelPath}" readonly></paper-input>
|
||||
</div>
|
||||
<div>
|
||||
<paper-input id="txtName" type="text" label="${LabelName}" required="required"></paper-input>
|
||||
</div>
|
||||
<div id="fldSortName" style="display: none;">
|
||||
<paper-input id="txtSortName" type="text" label="${LabelSortName}"></paper-input>
|
||||
</div>
|
||||
<div id="fldDateAdded" style="display: none;">
|
||||
<paper-input id="txtDateAdded" type="date" label="${LabelDateAdded}"></paper-input>
|
||||
</div>
|
||||
<div id="fldStatus" style="display: none;margin:1em 0;">
|
||||
<label for="selectStatus">${LabelStatus}</label>
|
||||
<select id="selectStatus" data-mini="true"></select>
|
||||
</div>
|
||||
<div id="fldArtist" style="display: none;">
|
||||
<paper-input id="txtArtist" type="text" label="${LabelArtists}" placeholder="${LabelArtistsHelp}"></paper-input>
|
||||
</div>
|
||||
<div id="fldAlbumArtist" style="display: none;">
|
||||
<paper-input id="txtAlbumArtist" type="text" label="${LabelAlbumArtists}" placeholder="${LabelArtistsHelp}"></paper-input>
|
||||
</div>
|
||||
<div id="fldAlbum" style="display: none;">
|
||||
<paper-input id="txtAlbum" type="text" label="${LabelAlbum}"></paper-input>
|
||||
</div>
|
||||
<div id="fldParentIndexNumber" style="display: none;">
|
||||
<paper-input id="txtParentIndexNumber" type="number"></paper-input>
|
||||
</div>
|
||||
<div id="fldIndexNumber" style="display: none;">
|
||||
<paper-input id="txtIndexNumber" type="number" pattern="[0-9]*"></paper-input>
|
||||
</div>
|
||||
<div id="fldCommunityRating" style="display: none;">
|
||||
<paper-input id="txtCommunityRating" type="number" step=".1" min="0" max="10" label="${LabelCommunityRating}"></paper-input>
|
||||
</div>
|
||||
<div id="fldCommunityVoteCount" style="display: none;">
|
||||
<paper-input id="txtCommunityVoteCount" type="number" step="1" label="${LabelVoteCount}"></paper-input>
|
||||
</div>
|
||||
<div id="fldMetascore" style="display: none;">
|
||||
<paper-input id="txtMetascore" type="number" step="1" min="0" max="100" label="${LabelMetascore}"></paper-input>
|
||||
</div>
|
||||
<div id="fldCriticRating" style="display: none;">
|
||||
<paper-input id="txtCriticRating" type="number" step=".1" label="${LabelCriticRating}"></paper-input>
|
||||
</div>
|
||||
<div id="fldCriticRatingSummary" style="display: none;">
|
||||
<paper-input id="txtCriticRatingSummary" type="text" label="${LabelCriticRatingSummary}"></paper-input>
|
||||
</div>
|
||||
<div id="fldAwardSummary" style="display: none;">
|
||||
<paper-input id="txtAwardSummary" type="text" label="${LabelAwardSummary}"></paper-input>
|
||||
</div>
|
||||
<div>
|
||||
<paper-input id="txtHomePageUrl" type="text" label="${LabelWebsite}"></paper-input>
|
||||
</div>
|
||||
<div id="fldTagline" style="display: none;">
|
||||
<paper-input id="txtTagline" type="text" label="${LabelTagline}"></paper-input>
|
||||
</div>
|
||||
<div>
|
||||
<label for="txtOverview" class="likePaperLabel">${LabelOverview}</label>
|
||||
<textarea id="txtOverview" class="likePaperText" data-role="none"></textarea>
|
||||
<br />
|
||||
</div>
|
||||
<div id="fldShortOverview" style="display: none;">
|
||||
<paper-input id="txtShortOverview" type="text" label="${LabelShortOverview}"></paper-input>
|
||||
</div>
|
||||
<div id="fldPremiereDate" style="display: none;">
|
||||
<label for="txtPremiereDate" class="likePaperLabel">${LabelReleaseDate}</label>
|
||||
<input id="txtPremiereDate" type="date" class="likePaperText" data-role="none" />
|
||||
</div>
|
||||
<div id="fldYear" style="display: none;">
|
||||
<paper-input id="txtProductionYear" type="number" label="${LabelYear}"></paper-input>
|
||||
</div>
|
||||
<div id="fldPlaceOfBirth" style="display: none;">
|
||||
<paper-input id="txtPlaceOfBirth" type="text" label="${LabelPlaceOfBirth}"></paper-input>
|
||||
</div>
|
||||
<div id="fldEndDate" style="display: none;">
|
||||
<label for="txtEndDate" class="likePaperLabel">${LabelEndDate}</label>
|
||||
<input id="txtEndDate" type="date" class="likePaperText" data-role="none" />
|
||||
</div>
|
||||
<div id="fldAirDays" style="display: none;">
|
||||
<p>${LabelAirDays}</p>
|
||||
|
||||
<div>
|
||||
<paper-checkbox class="chkAirDay" data-day="Sunday">${OptionSunday}</paper-checkbox>
|
||||
<paper-checkbox class="chkAirDay" data-day="Monday">${OptionMonday}</paper-checkbox>
|
||||
<paper-checkbox class="chkAirDay" data-day="Tuesday">${OptionTuesday}</paper-checkbox>
|
||||
<paper-checkbox class="chkAirDay" data-day="Wednesday">${OptionWednesday}</paper-checkbox>
|
||||
<paper-checkbox class="chkAirDay" data-day="Thursday">${OptionThursday}</paper-checkbox>
|
||||
<paper-checkbox class="chkAirDay" data-day="Friday">${OptionFriday}</paper-checkbox>
|
||||
<paper-checkbox class="chkAirDay" data-day="Saturday">${OptionSaturday}</paper-checkbox>
|
||||
</div>
|
||||
<br />
|
||||
|
||||
</div>
|
||||
<div id="fldAirTime" style="display: none;">
|
||||
<paper-input id="txtAirTime" type="text" label="${LabelAirTime}"></paper-input>
|
||||
</div>
|
||||
<div id="fldSeriesRuntime" style="display: none;">
|
||||
<paper-input id="txtSeriesRuntime" type="number" label="${LabelRuntimeMinutes}"></paper-input>
|
||||
</div>
|
||||
<div id="fldOfficialRating" style="display: none;">
|
||||
<br />
|
||||
<label for="selectOfficialRating">${LabelParentalRating}</label>
|
||||
<select id="selectOfficialRating" data-mini="true"></select>
|
||||
</div>
|
||||
<div id="fldCustomRating" style="display: none;">
|
||||
<br />
|
||||
<label for="selectCustomRating">${LabelCustomRating}</label>
|
||||
<select id="selectCustomRating" data-mini="true"></select>
|
||||
</div>
|
||||
<div id="fldBudget" style="display: none;">
|
||||
<paper-input id="txtBudget" type="number" label="${LabelBudget}"></paper-input>
|
||||
</div>
|
||||
<div id="fldRevenue" style="display: none;">
|
||||
<paper-input id="txtRevenue" type="number" label="${LabelRevenue}"></paper-input>
|
||||
</div>
|
||||
<div id="fldOriginalAspectRatio" style="display: none;">
|
||||
<paper-input id="txtOriginalAspectRatio" type="text" label="${LabelOriginalAspectRatio}"></paper-input>
|
||||
</div>
|
||||
<div id="fldPlayers" style="display: none;">
|
||||
<paper-input id="txtPlayers" type="number" pattern="[0-9]*" label="${LabelPlayers}"></paper-input>
|
||||
</div>
|
||||
<div id="fld3dFormat" style="display: none;">
|
||||
<br />
|
||||
<label for="select3dFormat">${Label3DFormat}</label>
|
||||
<select id="select3dFormat" data-mini="true">
|
||||
<option value=""></option>
|
||||
<option value="HalfSideBySide">HSBS</option>
|
||||
<option value="HalfTopAndBottom">HTAB</option>
|
||||
<option value="FullSideBySide">FSBS</option>
|
||||
<option value="FullTopAndBottom">FTAB</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<br />
|
||||
|
||||
<div class="detailSection" id="collapsibleDvdEpisodeInfo" style="display: none;">
|
||||
<h1>
|
||||
${HeaderAlternateEpisodeNumbers}
|
||||
</h1>
|
||||
<div class="detailSectionContent">
|
||||
<div>
|
||||
<paper-input id="txtDvdSeasonNumber" type="number" pattern="[0-9]*" label="${LabelDvdSeasonNumber}"></paper-input>
|
||||
</div>
|
||||
<div>
|
||||
<paper-input id="txtDvdEpisodeNumber" type="number" pattern="[0-9]*" label="${LabelDvdEpisodeNumber}"></paper-input>
|
||||
</div>
|
||||
<div>
|
||||
<paper-input id="txtAbsoluteEpisodeNumber" type="number" pattern="[0-9]*" label="${LabelAbsoluteEpisodeNumber}"></paper-input>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="detailSection" id="collapsibleSpecialEpisodeInfo" style="display: none;">
|
||||
<h1>
|
||||
${HeaderSpecialEpisodeInfo}
|
||||
</h1>
|
||||
<div class="detailSectionContent">
|
||||
<div>
|
||||
<paper-input id="txtAirsBeforeSeason" type="number" pattern="[0-9]*" label="${LabelAirsBeforeSeason}"></paper-input>
|
||||
</div>
|
||||
<div>
|
||||
<paper-input id="txtAirsAfterSeason" type="number" pattern="[0-9]*" label="${LabelAirsAfterSeason}"></paper-input>
|
||||
</div>
|
||||
<div>
|
||||
<paper-input id="txtAirsBeforeEpisode" type="number" pattern="[0-9]*" label="${LabelAirsBeforeEpisode}"></paper-input>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="detailSection">
|
||||
<h1>
|
||||
${HeaderExternalIds}
|
||||
</h1>
|
||||
<div class="detailSectionContent">
|
||||
<div class="externalIds editorFieldset">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="detailSection" id="collapsibleDisplaySettings" style="display:none;">
|
||||
<h1>
|
||||
${HeaderDisplaySettings}
|
||||
</h1>
|
||||
<div class="detailSectionContent">
|
||||
<div id="fldSourceType" style="display: none;" class="fldDisplaySetting">
|
||||
<paper-input id="txtDisplayMediaType" type="text" label="${LabelTreatImageAs}"></paper-input>
|
||||
</div>
|
||||
<div id="fldDisplaySpecialsInline" class="fldDisplaySetting">
|
||||
<br />
|
||||
<paper-checkbox id="chkDisplaySpecialsInline">${LabelDisplaySpecialsWithinSeasons}</paper-checkbox>
|
||||
</div>
|
||||
<div id="fldDisplayOrder" class="fldDisplaySetting">
|
||||
<label for="selectDisplayOrder" id="labelDisplayOrder">${LabelDisplayOrder}</label>
|
||||
<select id="selectDisplayOrder" data-mini="true"></select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div data-role="collapsible" data-mini="true" id="countriesCollapsible" style="display: none; margin-top: 1em;">
|
||||
<h3>${HeaderCountries}</h3>
|
||||
<div data-role="editableListviewContainer">
|
||||
<div>
|
||||
<div style="display: inline-block; width: 80%;">
|
||||
<input type="text" class="txtEditableListview" />
|
||||
</div>
|
||||
<paper-icon-button icon="add" onclick="EditItemMetadataPage.addElementToEditableListview(this)"></paper-icon-button>
|
||||
</div>
|
||||
<ul data-role="listview" data-inset="true" data-split-icon="delete" id="listCountries"></ul>
|
||||
</div>
|
||||
</div>
|
||||
<div data-role="collapsible" data-mini="true" id="genresCollapsible" style="display: none; margin-top: 1em;">
|
||||
<h3>${HeaderGenres}</h3>
|
||||
<div data-role="editableListviewContainer">
|
||||
<div>
|
||||
<div style="display: inline-block; width: 80%;">
|
||||
<input type="text" class="txtEditableListview" />
|
||||
</div>
|
||||
<paper-icon-button icon="add" onclick="EditItemMetadataPage.addElementToEditableListview(this)"></paper-icon-button>
|
||||
</div>
|
||||
<ul data-role="listview" data-inset="true" data-split-icon="delete" id="listGenres"></ul>
|
||||
</div>
|
||||
</div>
|
||||
<div data-mini="true" data-role="collapsible" id="peopleCollapsible" style="display: none; margin-top: 1em;">
|
||||
<h3>${HeaderPeople}</h3>
|
||||
<div>
|
||||
<br />
|
||||
<button type="button" id="btnAddPerson" data-icon="plus" data-mini="true" data-theme="a">${ButtonAdd}</button>
|
||||
<br />
|
||||
<ul data-role="listview" data-inset="true" data-split-icon="delete" id="peopleList"></ul>
|
||||
</div>
|
||||
</div>
|
||||
<div data-mini="true" data-role="collapsible" id="keywordsCollapsible" style="display: none; margin-top: 1em;">
|
||||
<h3>${HeaderPlotKeywords}</h3>
|
||||
<div data-role="editableListviewContainer">
|
||||
<div>
|
||||
<div style="display: inline-block; width: 80%;">
|
||||
<input type="text" class="txtEditableListview" />
|
||||
</div>
|
||||
<paper-icon-button icon="add" onclick="EditItemMetadataPage.addElementToEditableListview(this)"></paper-icon-button>
|
||||
</div>
|
||||
<ul data-role="listview" data-inset="true" data-split-icon="delete" id="listKeywords"></ul>
|
||||
</div>
|
||||
</div>
|
||||
<div data-role="collapsible" data-mini="true" id="studiosCollapsible" style="display: none; margin-top: 1em;">
|
||||
<h3>${HeaderStudios}</h3>
|
||||
<div data-role="editableListviewContainer">
|
||||
<div>
|
||||
<div style="display: inline-block; width: 80%;">
|
||||
<input type="text" class="txtEditableListview" />
|
||||
</div>
|
||||
<paper-icon-button icon="add" onclick="EditItemMetadataPage.addElementToEditableListview(this)"></paper-icon-button>
|
||||
</div>
|
||||
<ul data-role="listview" data-inset="true" data-split-icon="delete" id="listStudios"></ul>
|
||||
</div>
|
||||
</div>
|
||||
<div data-mini="true" data-role="collapsible" id="tagsCollapsible" style="display: none; margin-top: 1em;">
|
||||
<h3>${HeaderTags}</h3>
|
||||
<div data-role="editableListviewContainer">
|
||||
<div>
|
||||
<div style="display: inline-block; width: 80%;">
|
||||
<input type="text" class="txtEditableListview" />
|
||||
</div>
|
||||
<paper-icon-button icon="add" onclick="EditItemMetadataPage.addElementToEditableListview(this)"></paper-icon-button>
|
||||
</div>
|
||||
<ul data-role="listview" data-inset="true" data-split-icon="delete" id="listTags"></ul>
|
||||
</div>
|
||||
</div>
|
||||
<div id="metadataSettingsCollapsible" style="display: none; margin-top: 3em;">
|
||||
<h1>${HeaderMetadataSettings}</h1>
|
||||
<div>
|
||||
<div>
|
||||
<label for="selectLanguage">${LabelMetadataDownloadLanguage}</label>
|
||||
<select id="selectLanguage" data-mini="true"></select>
|
||||
</div>
|
||||
<div class="fieldDescription editorfieldDescription">${MessageLeaveEmptyToInherit}</div>
|
||||
<br />
|
||||
<div>
|
||||
<label for="selectCountry">${LabelCountry}</label>
|
||||
<select id="selectCountry" data-mini="true"></select>
|
||||
</div>
|
||||
<div class="fieldDescription editorfieldDescription">${MessageLeaveEmptyToInherit}</div>
|
||||
|
||||
<div>
|
||||
<br /><br />
|
||||
<paper-checkbox id="chkLockData" onchange="EditItemMetadataPage.setProviderSettingsContainerVisibility(this)">${LabelLockItemToPreventChanges}</paper-checkbox>
|
||||
</div>
|
||||
<br />
|
||||
<div id="providerSettingsContainer" style="display: none">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<br />
|
||||
<button type="submit" data-role="none" class="clearButton btnSave">
|
||||
<paper-button raised class="submit block"><iron-icon icon="check"></iron-icon><span>${ButtonSave}</span></paper-button>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
<div class="editPageInnerContent">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div data-role="popup" id="popupEditPerson" class="popup" data-theme="b">
|
||||
|
||||
<div class="ui-bar-a" style="text-align: center; padding: 0 20px;">
|
||||
<h3>${HeaderPersonInfo}</h3>
|
||||
</div>
|
||||
|
||||
<div data-role="content">
|
||||
<form class="popupEditPersonForm">
|
||||
|
||||
<br />
|
||||
<div>
|
||||
<label for="txtPersonName">${LabelName}</label>
|
||||
<input type="text" id="txtPersonName" required="required" />
|
||||
</div>
|
||||
|
||||
<br />
|
||||
<div>
|
||||
<label for="selectPersonType">${LabelType}</label>
|
||||
<select id="selectPersonType" data-mini="true">
|
||||
<option value=""></option>
|
||||
<option value="Actor">${OptionActor}</option>
|
||||
<option value="Composer">${OptionComposer}</option>
|
||||
<option value="Director">${OptionDirector}</option>
|
||||
<option value="GuestStar">${OptionGuestStar}</option>
|
||||
<option value="Producer">${OptionProducer}</option>
|
||||
<option value="Writer">${OptionWriter}</option>
|
||||
</select>
|
||||
</div>
|
||||
<br />
|
||||
<div>
|
||||
<label for="txtPersonRole">${LabelPersonRole}</label>
|
||||
<input type="text" id="txtPersonRole" />
|
||||
<div class="fieldDescription">${LabelPersonRoleHelp}</div>
|
||||
</div>
|
||||
<br />
|
||||
<input type="hidden" id="fldPersonIndex" />
|
||||
<p>
|
||||
<button type="submit" data-role="none" class="clearButton">
|
||||
<paper-button raised class="submit block"><iron-icon icon="check"></iron-icon><span>${ButtonOk}</span></paper-button>
|
||||
</button>
|
||||
<paper-button raised class="cancel block btnCancel" onclick="jQuery(this).parents('.popup').popup('close');"><iron-icon icon="close"></iron-icon><span>${ButtonCancel}</span></paper-button>
|
||||
</p>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div data-role="popup" class="popup popupAdvancedRefresh" data-theme="b">
|
||||
|
||||
<div class="ui-bar-a" style="text-align: center; padding: 0 20px;">
|
||||
<h3>${HeaderRefreshMetadata}</h3>
|
||||
</div>
|
||||
|
||||
<div data-role="content">
|
||||
<form class="popupAdvancedRefreshForm" style="min-width: 200px;">
|
||||
|
||||
<br />
|
||||
<div>
|
||||
<label for="selectMetadataRefreshMode">${LabelMetadataRefreshMode}</label>
|
||||
<select id="selectMetadataRefreshMode" data-mini="true">
|
||||
<option value="">${OptionNone}</option>
|
||||
<option value="local">${OptionLocalRefreshOnly}</option>
|
||||
<option value="missing">${OptionAddMissingDataOnly}</option>
|
||||
<option value="all">${OptionRefreshAllData}</option>
|
||||
</select>
|
||||
</div>
|
||||
<br />
|
||||
<div>
|
||||
<label for="selectImageRefreshMode">${LabelImageRefreshMode}</label>
|
||||
<select id="selectImageRefreshMode" data-mini="true">
|
||||
<option value="">${OptionNone}</option>
|
||||
<option value="missing">${OptionDownloadMissingImages}</option>
|
||||
<option value="all">${OptionReplaceExistingImages}</option>
|
||||
</select>
|
||||
</div>
|
||||
<br />
|
||||
<p>
|
||||
<button type="submit" data-role="none" class="clearButton">
|
||||
<paper-button raised class="submit block"><iron-icon icon="check"></iron-icon><span>${ButtonOk}</span></paper-button>
|
||||
</button>
|
||||
<paper-button raised class="cancel block btnCancel" onclick="jQuery(this).parents('.popup').popup('close');"><iron-icon icon="close"></iron-icon><span>${ButtonCancel}</span></paper-button>
|
||||
</p>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
<paper-tab>${TabArtists}</paper-tab>
|
||||
<paper-tab>${TabSongs}</paper-tab>
|
||||
<paper-tab>${TabGenres}</paper-tab>
|
||||
<paper-tab class="hide">${TabFolders}</paper-tab>
|
||||
<paper-tab>${TabFolders}</paper-tab>
|
||||
</paper-tabs>
|
||||
<div class="legacyTabs scopedLibraryViewNav">
|
||||
<a href="music.html">${TabSuggestions}</a>
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -481,7 +481,7 @@
|
|||
"LabelEnableRealtimeMonitor": "Enable real time monitoring",
|
||||
"LabelEnableRealtimeMonitorHelp": "Changes will be processed immediately, on supported file systems.",
|
||||
"ButtonScanLibrary": "Scan Library",
|
||||
"HeaderNumberOfPlayers": "Players:",
|
||||
"HeaderNumberOfPlayers": "Players",
|
||||
"OptionAnyNumberOfPlayers": "Any",
|
||||
"Option1Player": "1+",
|
||||
"Option2Player": "2+",
|
||||
|
@ -1027,10 +1027,6 @@
|
|||
"HeaderUser": "User",
|
||||
"HeaderDateIssued": "Date Issued",
|
||||
"LabelChapterName": "Chapter {0}",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"HeaderHttpHeaders": "Http Headers",
|
||||
"HeaderIdentificationHeader": "Identification Header",
|
||||
"LabelValue": "Value:",
|
||||
|
|
|
@ -1027,10 +1027,6 @@
|
|||
"HeaderUser": "User",
|
||||
"HeaderDateIssued": "Date Issued",
|
||||
"LabelChapterName": "Chapter {0}",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "\u0420\u0430\u0437\u0440\u0435\u0448\u0435\u0442\u0435 \u043d\u0430 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0434\u0430 \u043a\u043e\u043c\u0443\u043d\u0438\u043a\u0438\u0440\u0430 \u0441 Emby \u0441\u044a\u0440\u0432\u044a\u0440\u044a\u0442.",
|
||||
"HeaderHttpHeaders": "Http Headers",
|
||||
"HeaderIdentificationHeader": "Identification Header",
|
||||
"LabelValue": "Value:",
|
||||
|
|
|
@ -185,7 +185,7 @@
|
|||
"TabPeople": "Gent",
|
||||
"TabNetworks": "Cadenes",
|
||||
"HeaderUsers": "Usuaris",
|
||||
"HeaderFilters": "Filtres:",
|
||||
"HeaderFilters": "Filtres",
|
||||
"ButtonFilter": "Filtra",
|
||||
"OptionFavorite": "Preferits",
|
||||
"OptionLikes": "M'agrada",
|
||||
|
@ -1027,10 +1027,6 @@
|
|||
"HeaderUser": "Usuari",
|
||||
"HeaderDateIssued": "Date Issued",
|
||||
"LabelChapterName": "Cap\u00edtol {0}",
|
||||
"HeaderNewApiKey": "Nova Clau Api",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"HeaderHttpHeaders": "Cap\u00e7aleres Http",
|
||||
"HeaderIdentificationHeader": "Cap\u00e7alera d'Identificaci\u00f3",
|
||||
"LabelValue": "Valor:",
|
||||
|
|
|
@ -1027,10 +1027,6 @@
|
|||
"HeaderUser": "U\u017eivatel",
|
||||
"HeaderDateIssued": "Datum vyd\u00e1n\u00ed",
|
||||
"LabelChapterName": "Kapitola {0}",
|
||||
"HeaderNewApiKey": "Nov\u00fd kl\u00ed\u010d API",
|
||||
"LabelAppName": "N\u00e1zev aplikace",
|
||||
"LabelAppNameExample": "P\u0159\u00edklad: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Ud\u011blit povolen\u00ed aplikac\u00ed pro komunikaci s Emby Server.",
|
||||
"HeaderHttpHeaders": "HTTP hlavi\u010dky",
|
||||
"HeaderIdentificationHeader": "Hlavi\u010dka identifikace",
|
||||
"LabelValue": "Hodnota:",
|
||||
|
|
|
@ -1027,10 +1027,6 @@
|
|||
"HeaderUser": "Bruger",
|
||||
"HeaderDateIssued": "Udstedelsesdato",
|
||||
"LabelChapterName": "Kapitel {0}",
|
||||
"HeaderNewApiKey": "Ny Api n\u00f8gle",
|
||||
"LabelAppName": "App navn",
|
||||
"LabelAppNameExample": "F. eks: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Giv applikationen tilladelse til at kommunikere med Emby.",
|
||||
"HeaderHttpHeaders": "Http Headers",
|
||||
"HeaderIdentificationHeader": "Identification Header",
|
||||
"LabelValue": "V\u00e6rdi:",
|
||||
|
|
|
@ -1027,10 +1027,6 @@
|
|||
"HeaderUser": "Benutzer",
|
||||
"HeaderDateIssued": "Datum gesetzt",
|
||||
"LabelChapterName": "Kapitel {0}",
|
||||
"HeaderNewApiKey": "Neuer API Schl\u00fcssel",
|
||||
"LabelAppName": "App Name",
|
||||
"LabelAppNameExample": "Beispiel: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Geben Sie einer Applikation die Erlaubnis mit dem Emby Server zu kommunizieren.",
|
||||
"HeaderHttpHeaders": "Http Headers",
|
||||
"HeaderIdentificationHeader": "Identfikations Header",
|
||||
"LabelValue": "Wert:",
|
||||
|
|
|
@ -1027,10 +1027,6 @@
|
|||
"HeaderUser": "User",
|
||||
"HeaderDateIssued": "Date Issued",
|
||||
"LabelChapterName": "Chapter {0}",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"HeaderHttpHeaders": "Http Headers",
|
||||
"HeaderIdentificationHeader": "Identification Header",
|
||||
"LabelValue": "Value:",
|
||||
|
|
|
@ -206,8 +206,8 @@
|
|||
"TabAlbumArtists": "Album Artists",
|
||||
"TabMusicVideos": "Music Videos",
|
||||
"ButtonSort": "Sort",
|
||||
"HeaderSortBy": "Sort By:",
|
||||
"HeaderSortOrder": "Sort Order:",
|
||||
"HeaderSortBy": "Sort By",
|
||||
"HeaderSortOrder": "Sort Order",
|
||||
"OptionPlayed": "Played",
|
||||
"OptionUnplayed": "Unplayed",
|
||||
"OptionAscending": "Ascending",
|
||||
|
@ -481,7 +481,7 @@
|
|||
"LabelEnableRealtimeMonitor": "Enable real time monitoring",
|
||||
"LabelEnableRealtimeMonitorHelp": "Changes will be processed immediately, on supported file systems.",
|
||||
"ButtonScanLibrary": "Scan Library",
|
||||
"HeaderNumberOfPlayers": "Players:",
|
||||
"HeaderNumberOfPlayers": "Players",
|
||||
"OptionAnyNumberOfPlayers": "Any",
|
||||
"Option1Player": "1+",
|
||||
"Option2Player": "2+",
|
||||
|
@ -1027,10 +1027,6 @@
|
|||
"HeaderUser": "User",
|
||||
"HeaderDateIssued": "Date Issued",
|
||||
"LabelChapterName": "Chapter {0}",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"HeaderHttpHeaders": "Http Headers",
|
||||
"HeaderIdentificationHeader": "Identification Header",
|
||||
"LabelValue": "Value:",
|
||||
|
|
|
@ -185,7 +185,7 @@
|
|||
"TabPeople": "People",
|
||||
"TabNetworks": "Networks",
|
||||
"HeaderUsers": "Users",
|
||||
"HeaderFilters": "Filters:",
|
||||
"HeaderFilters": "Filters",
|
||||
"ButtonFilter": "Filter",
|
||||
"OptionFavorite": "Favorites",
|
||||
"OptionLikes": "Likes",
|
||||
|
@ -206,8 +206,8 @@
|
|||
"TabAlbumArtists": "Album Artists",
|
||||
"TabMusicVideos": "Music Videos",
|
||||
"ButtonSort": "Sort",
|
||||
"HeaderSortBy": "Sort By:",
|
||||
"HeaderSortOrder": "Sort Order:",
|
||||
"HeaderSortBy": "Sort By",
|
||||
"HeaderSortOrder": "Sort Order",
|
||||
"OptionPlayed": "Played",
|
||||
"OptionUnplayed": "Unplayed",
|
||||
"OptionAscending": "Ascending",
|
||||
|
@ -481,7 +481,7 @@
|
|||
"LabelEnableRealtimeMonitor": "Enable real time monitoring",
|
||||
"LabelEnableRealtimeMonitorHelp": "Changes will be processed immediately, on supported file systems.",
|
||||
"ButtonScanLibrary": "Scan Library",
|
||||
"HeaderNumberOfPlayers": "Players:",
|
||||
"HeaderNumberOfPlayers": "Players",
|
||||
"OptionAnyNumberOfPlayers": "Any",
|
||||
"Option1Player": "1+",
|
||||
"Option2Player": "2+",
|
||||
|
@ -1027,10 +1027,6 @@
|
|||
"HeaderUser": "User",
|
||||
"HeaderDateIssued": "Date Issued",
|
||||
"LabelChapterName": "Chapter {0}",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"HeaderHttpHeaders": "Http Headers",
|
||||
"HeaderIdentificationHeader": "Identification Header",
|
||||
"LabelValue": "Value:",
|
||||
|
|
|
@ -185,7 +185,7 @@
|
|||
"TabPeople": "People",
|
||||
"TabNetworks": "Networks",
|
||||
"HeaderUsers": "Users",
|
||||
"HeaderFilters": "Filters:",
|
||||
"HeaderFilters": "Filters",
|
||||
"ButtonFilter": "Filter",
|
||||
"OptionFavorite": "Favorites",
|
||||
"OptionLikes": "Likes",
|
||||
|
@ -206,8 +206,8 @@
|
|||
"TabAlbumArtists": "Album Artists",
|
||||
"TabMusicVideos": "Music Videos",
|
||||
"ButtonSort": "Sort",
|
||||
"HeaderSortBy": "Sort By:",
|
||||
"HeaderSortOrder": "Sort Order:",
|
||||
"HeaderSortBy": "Sort By",
|
||||
"HeaderSortOrder": "Sort Order",
|
||||
"OptionPlayed": "Played",
|
||||
"OptionUnplayed": "Unplayed",
|
||||
"OptionAscending": "Ascending",
|
||||
|
@ -481,7 +481,7 @@
|
|||
"LabelEnableRealtimeMonitor": "Enable real time monitoring",
|
||||
"LabelEnableRealtimeMonitorHelp": "Changes will be processed immediately, on supported file systems.",
|
||||
"ButtonScanLibrary": "Scan Library",
|
||||
"HeaderNumberOfPlayers": "Players:",
|
||||
"HeaderNumberOfPlayers": "Players",
|
||||
"OptionAnyNumberOfPlayers": "Any",
|
||||
"Option1Player": "1+",
|
||||
"Option2Player": "2+",
|
||||
|
@ -1027,10 +1027,6 @@
|
|||
"HeaderUser": "User",
|
||||
"HeaderDateIssued": "Date Issued",
|
||||
"LabelChapterName": "Chapter {0}",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"HeaderHttpHeaders": "Http Headers",
|
||||
"HeaderIdentificationHeader": "Identification Header",
|
||||
"LabelValue": "Value:",
|
||||
|
|
|
@ -1027,10 +1027,6 @@
|
|||
"HeaderUser": "Usuario",
|
||||
"HeaderDateIssued": "Fecha de Emisi\u00f3n",
|
||||
"LabelChapterName": "Cap\u00edtulo {0}",
|
||||
"HeaderNewApiKey": "Nueva llave de API",
|
||||
"LabelAppName": "Nombre del App",
|
||||
"LabelAppNameExample": "Ejemplo: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Conceder acceso a una aplicaci\u00f3n para comunicarse con el Servidor Emby.",
|
||||
"HeaderHttpHeaders": "Encabezados Http",
|
||||
"HeaderIdentificationHeader": "Encabezado de Identificaci\u00f3n",
|
||||
"LabelValue": "Valor:",
|
||||
|
|
|
@ -1027,10 +1027,6 @@
|
|||
"HeaderUser": "Usuario",
|
||||
"HeaderDateIssued": "Fecha de emisi\u00f3n",
|
||||
"LabelChapterName": "Cap\u00edtulo {0}",
|
||||
"HeaderNewApiKey": "Nueva Clave Api",
|
||||
"LabelAppName": "Nombre de la app",
|
||||
"LabelAppNameExample": "Ejemplo: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"HeaderHttpHeaders": "Http Headers",
|
||||
"HeaderIdentificationHeader": "Identification Header",
|
||||
"LabelValue": "Value:",
|
||||
|
|
|
@ -185,7 +185,7 @@
|
|||
"TabPeople": "People",
|
||||
"TabNetworks": "Networks",
|
||||
"HeaderUsers": "Users",
|
||||
"HeaderFilters": "Filters:",
|
||||
"HeaderFilters": "Filters",
|
||||
"ButtonFilter": "Filter",
|
||||
"OptionFavorite": "Favorites",
|
||||
"OptionLikes": "Likes",
|
||||
|
@ -206,8 +206,8 @@
|
|||
"TabAlbumArtists": "Album Artists",
|
||||
"TabMusicVideos": "Music Videos",
|
||||
"ButtonSort": "Sort",
|
||||
"HeaderSortBy": "Sort By:",
|
||||
"HeaderSortOrder": "Sort Order:",
|
||||
"HeaderSortBy": "Sort By",
|
||||
"HeaderSortOrder": "Sort Order",
|
||||
"OptionPlayed": "Played",
|
||||
"OptionUnplayed": "Unplayed",
|
||||
"OptionAscending": "Ascending",
|
||||
|
@ -481,7 +481,7 @@
|
|||
"LabelEnableRealtimeMonitor": "Enable real time monitoring",
|
||||
"LabelEnableRealtimeMonitorHelp": "Changes will be processed immediately, on supported file systems.",
|
||||
"ButtonScanLibrary": "Scan Library",
|
||||
"HeaderNumberOfPlayers": "Players:",
|
||||
"HeaderNumberOfPlayers": "Players",
|
||||
"OptionAnyNumberOfPlayers": "Any",
|
||||
"Option1Player": "1+",
|
||||
"Option2Player": "2+",
|
||||
|
@ -1027,10 +1027,6 @@
|
|||
"HeaderUser": "User",
|
||||
"HeaderDateIssued": "Date Issued",
|
||||
"LabelChapterName": "Chapter {0}",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"HeaderHttpHeaders": "Http Headers",
|
||||
"HeaderIdentificationHeader": "Identification Header",
|
||||
"LabelValue": "Value:",
|
||||
|
|
|
@ -1027,10 +1027,6 @@
|
|||
"HeaderUser": "Utilisateur",
|
||||
"HeaderDateIssued": "Date de publication",
|
||||
"LabelChapterName": "Chapitre {0}",
|
||||
"HeaderNewApiKey": "Nouvelle cl\u00e9 API",
|
||||
"LabelAppName": "Nom de l'app",
|
||||
"LabelAppNameExample": "Exemple: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Permet \u00e0 une application de communiquer avec le serveur Emby.",
|
||||
"HeaderHttpHeaders": "En-t\u00eates HTTP",
|
||||
"HeaderIdentificationHeader": "En-t\u00eate d'identification",
|
||||
"LabelValue": "Valeur :",
|
||||
|
|
|
@ -481,7 +481,7 @@
|
|||
"LabelEnableRealtimeMonitor": "Enable real time monitoring",
|
||||
"LabelEnableRealtimeMonitorHelp": "Changes will be processed immediately, on supported file systems.",
|
||||
"ButtonScanLibrary": "Scan Library",
|
||||
"HeaderNumberOfPlayers": "Players:",
|
||||
"HeaderNumberOfPlayers": "Players",
|
||||
"OptionAnyNumberOfPlayers": "Any",
|
||||
"Option1Player": "1+",
|
||||
"Option2Player": "2+",
|
||||
|
@ -1027,10 +1027,6 @@
|
|||
"HeaderUser": "User",
|
||||
"HeaderDateIssued": "Date Issued",
|
||||
"LabelChapterName": "Chapter {0}",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"HeaderHttpHeaders": "Http Headers",
|
||||
"HeaderIdentificationHeader": "Identification Header",
|
||||
"LabelValue": "Value:",
|
||||
|
|
|
@ -1027,10 +1027,6 @@
|
|||
"HeaderUser": "User",
|
||||
"HeaderDateIssued": "Date Issued",
|
||||
"LabelChapterName": "Chapter {0}",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"HeaderHttpHeaders": "Http Headers",
|
||||
"HeaderIdentificationHeader": "Identification Header",
|
||||
"LabelValue": "Value:",
|
||||
|
|
|
@ -1027,10 +1027,6 @@
|
|||
"HeaderUser": "User",
|
||||
"HeaderDateIssued": "Date Issued",
|
||||
"LabelChapterName": "Chapter {0}",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"HeaderHttpHeaders": "Http Headers",
|
||||
"HeaderIdentificationHeader": "Identification Header",
|
||||
"LabelValue": "Value:",
|
||||
|
|
|
@ -206,8 +206,8 @@
|
|||
"TabAlbumArtists": "Album Artists",
|
||||
"TabMusicVideos": "Music Videos",
|
||||
"ButtonSort": "Sort",
|
||||
"HeaderSortBy": "Sort By:",
|
||||
"HeaderSortOrder": "Sort Order:",
|
||||
"HeaderSortBy": "Sort By",
|
||||
"HeaderSortOrder": "Sort Order",
|
||||
"OptionPlayed": "J\u00e1tszott",
|
||||
"OptionUnplayed": "Nemj\u00e1tszott",
|
||||
"OptionAscending": "Ascending",
|
||||
|
@ -481,7 +481,7 @@
|
|||
"LabelEnableRealtimeMonitor": "Enable real time monitoring",
|
||||
"LabelEnableRealtimeMonitorHelp": "Changes will be processed immediately, on supported file systems.",
|
||||
"ButtonScanLibrary": "Scan Library",
|
||||
"HeaderNumberOfPlayers": "Players:",
|
||||
"HeaderNumberOfPlayers": "Players",
|
||||
"OptionAnyNumberOfPlayers": "Any",
|
||||
"Option1Player": "1+",
|
||||
"Option2Player": "2+",
|
||||
|
@ -1027,10 +1027,6 @@
|
|||
"HeaderUser": "User",
|
||||
"HeaderDateIssued": "Date Issued",
|
||||
"LabelChapterName": "Fejezet {0}",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"HeaderHttpHeaders": "Http Headers",
|
||||
"HeaderIdentificationHeader": "Identification Header",
|
||||
"LabelValue": "Value:",
|
||||
|
|
|
@ -185,7 +185,7 @@
|
|||
"TabPeople": "People",
|
||||
"TabNetworks": "Networks",
|
||||
"HeaderUsers": "Users",
|
||||
"HeaderFilters": "Filters:",
|
||||
"HeaderFilters": "Filters",
|
||||
"ButtonFilter": "Filter",
|
||||
"OptionFavorite": "Favorites",
|
||||
"OptionLikes": "Likes",
|
||||
|
@ -206,8 +206,8 @@
|
|||
"TabAlbumArtists": "Album Artists",
|
||||
"TabMusicVideos": "Music Videos",
|
||||
"ButtonSort": "Sort",
|
||||
"HeaderSortBy": "Sort By:",
|
||||
"HeaderSortOrder": "Sort Order:",
|
||||
"HeaderSortBy": "Sort By",
|
||||
"HeaderSortOrder": "Sort Order",
|
||||
"OptionPlayed": "Played",
|
||||
"OptionUnplayed": "Unplayed",
|
||||
"OptionAscending": "Ascending",
|
||||
|
@ -481,7 +481,7 @@
|
|||
"LabelEnableRealtimeMonitor": "Enable real time monitoring",
|
||||
"LabelEnableRealtimeMonitorHelp": "Changes will be processed immediately, on supported file systems.",
|
||||
"ButtonScanLibrary": "Scan Library",
|
||||
"HeaderNumberOfPlayers": "Players:",
|
||||
"HeaderNumberOfPlayers": "Players",
|
||||
"OptionAnyNumberOfPlayers": "Any",
|
||||
"Option1Player": "1+",
|
||||
"Option2Player": "2+",
|
||||
|
@ -1027,10 +1027,6 @@
|
|||
"HeaderUser": "User",
|
||||
"HeaderDateIssued": "Date Issued",
|
||||
"LabelChapterName": "Chapter {0}",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"HeaderHttpHeaders": "Http Headers",
|
||||
"HeaderIdentificationHeader": "Identification Header",
|
||||
"LabelValue": "Value:",
|
||||
|
|
|
@ -1027,10 +1027,6 @@
|
|||
"HeaderUser": "Utente",
|
||||
"HeaderDateIssued": "data di pubblicazione",
|
||||
"LabelChapterName": "Capitolo {0}",
|
||||
"HeaderNewApiKey": "Nuova Chiave Api",
|
||||
"LabelAppName": "Nome app",
|
||||
"LabelAppNameExample": "Esempio: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Concedere un permesso per applicazione al fine di comunicare con il Server Emby.",
|
||||
"HeaderHttpHeaders": "Intestazioni Http",
|
||||
"HeaderIdentificationHeader": "Identification Header",
|
||||
"LabelValue": "valore:",
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
"OptionRememberOrganizeCorrection": "\u0421\u0430\u049b\u0442\u0430\u0443 \u0436\u04d9\u043d\u0435 \u0430\u0442\u0442\u0430\u0440\u044b \u04b1\u049b\u0441\u0430\u0441 \u0431\u043e\u043b\u0430\u0448\u0430\u049b \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u0493\u0430 \u043e\u0441\u044b \u0442\u04af\u0437\u0435\u0442\u0443\u0434\u0456 \u049b\u043e\u043b\u0434\u0430\u043d\u0443",
|
||||
"OptionConvertRecordingsToStreamingFormat": "\u0416\u0430\u0437\u0443\u043b\u0430\u0440\u0434\u044b \u0442\u0430\u0440\u0430\u0442\u0443 \u04af\u0448\u0456\u043d \u043e\u04a3\u0430\u0439 \u043f\u0456\u0448\u0456\u043c\u0433\u0435 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443",
|
||||
"OptionConvertRecordingsToStreamingFormatHelp": "\u0416\u0430\u0437\u0431\u0430\u043b\u0430\u0440 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u044b\u04a3\u044b\u0437\u0434\u0430 \u043e\u04a3\u0430\u0439 \u043e\u0439\u043d\u0430\u0442\u0443 \u04af\u0448\u0456\u043d \u043d\u0430\u049b\u0442\u044b \u0443\u0430\u049b\u044b\u0442\u0442\u0430 MP4 \u043f\u0456\u0448\u0456\u043c\u0456\u043d\u0435 \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0456\u043b\u0435\u0434\u0456.",
|
||||
"FeatureRequiresEmbyPremiere": "\u041e\u0441\u044b \u049b\u04b1\u0440\u0430\u043c\u0436\u0430\u0441 \u04af\u0448\u0456\u043d \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby Premiere \u0436\u0430\u0437\u044b\u043b\u044b\u043c\u044b \u049b\u0430\u0436\u0435\u0442",
|
||||
"FeatureRequiresEmbyPremiere": "\u041e\u0441\u044b \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441 \u04af\u0448\u0456\u043d \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby Premiere \u0436\u0430\u0437\u044b\u043b\u044b\u043c\u044b \u049b\u0430\u0436\u0435\u0442",
|
||||
"LabelExit": "\u0428\u044b\u0493\u0443",
|
||||
"LabelVisitCommunity": "\u049a\u0430\u0443\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u049b\u049b\u0430 \u0431\u0430\u0440\u0443",
|
||||
"LabelGithub": "GitHub \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u0439\u0456",
|
||||
|
@ -185,7 +185,7 @@
|
|||
"TabPeople": "\u0410\u0434\u0430\u043c\u0434\u0430\u0440",
|
||||
"TabNetworks": "\u0416\u0435\u043b\u0456\u043b\u0435\u0440",
|
||||
"HeaderUsers": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440",
|
||||
"HeaderFilters": "\u0421\u04af\u0437\u0433\u0456\u043b\u0435\u0440:",
|
||||
"HeaderFilters": "\u0421\u04af\u0437\u0433\u0456\u043b\u0435\u0440",
|
||||
"ButtonFilter": "\u0421\u04af\u0437\u0443",
|
||||
"OptionFavorite": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b\u043b\u0430\u0440",
|
||||
"OptionLikes": "\u04b0\u043d\u0430\u0442\u0443\u043b\u0430\u0440",
|
||||
|
@ -206,8 +206,8 @@
|
|||
"TabAlbumArtists": "\u0410\u043b\u044c\u0431\u043e\u043c \u043e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440\u044b",
|
||||
"TabMusicVideos": "\u041c\u0443\u0437\u044b\u043a\u0430\u043b\u044b\u049b \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440",
|
||||
"ButtonSort": "\u0421\u04b1\u0440\u044b\u043f\u0442\u0430\u0443",
|
||||
"HeaderSortBy": "\u0421\u04b1\u0440\u044b\u043f\u0442\u0430\u0443 \u0442\u04d9\u0441\u0456\u043b\u0456:",
|
||||
"HeaderSortOrder": "\u0421\u04b1\u0440\u044b\u043f\u0442\u0430\u0443 \u0440\u0435\u0442\u0456:",
|
||||
"HeaderSortBy": "\u0421\u04b1\u0440\u044b\u043f\u0442\u0430\u0443 \u0442\u04d9\u0441\u0456\u043b\u0456",
|
||||
"HeaderSortOrder": "\u0421\u04b1\u0440\u044b\u043f\u0442\u0430\u0443 \u0440\u0435\u0442\u0456",
|
||||
"OptionPlayed": "\u041e\u0439\u043d\u0430\u0442\u044b\u043b\u0493\u0430\u043d",
|
||||
"OptionUnplayed": "\u041e\u0439\u043d\u0430\u0442\u044b\u043b\u043c\u0430\u0493\u0430\u043d",
|
||||
"OptionAscending": "\u0410\u0440\u0442\u0443\u044b \u0431\u043e\u0439\u044b\u043d\u0448\u0430",
|
||||
|
@ -1027,10 +1027,6 @@
|
|||
"HeaderUser": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b",
|
||||
"HeaderDateIssued": "\u0411\u0435\u0440\u0456\u043b\u0433\u0435\u043d \u043a\u04af\u043d\u0456",
|
||||
"LabelChapterName": "{0}-\u0441\u0430\u0445\u043d\u0430",
|
||||
"HeaderNewApiKey": "\u0416\u0430\u04a3\u0430 API-\u043a\u0456\u043b\u0442",
|
||||
"LabelAppName": "\u049a\u043e\u043b\u0434\u0430\u043d\u0431\u0430 \u0430\u0442\u044b",
|
||||
"LabelAppNameExample": "\u041c\u044b\u0441\u0430\u043b\u044b: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Emby Server \u049b\u0430\u0440\u0430\u0439 \u049b\u0430\u0442\u044b\u043d\u0430\u0441\u0443 \u049b\u04b1\u049b\u044b\u049b\u044b\u0493\u044b \u04af\u0448\u0456\u043d \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u0493\u0430 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0443.",
|
||||
"HeaderHttpHeaders": "HTTP \u04af\u0441\u0442\u0456\u04a3\u0433\u0456 \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u043c\u0435\u043b\u0435\u0440\u0456",
|
||||
"HeaderIdentificationHeader": "\u0410\u043d\u044b\u049b\u0442\u0430\u0443\u0434\u044b\u04a3 \u04af\u0441\u0442\u0456\u04a3\u0433\u0456 \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u043c\u0435\u0441\u0456",
|
||||
"LabelValue": "\u041c\u04d9\u043d\u0456:",
|
||||
|
|
|
@ -1027,10 +1027,6 @@
|
|||
"HeaderUser": "\uc0ac\uc6a9\uc790",
|
||||
"HeaderDateIssued": "Date Issued",
|
||||
"LabelChapterName": "\ucc55\ud130 {0}",
|
||||
"HeaderNewApiKey": "\uc0c8 API \ud0a4",
|
||||
"LabelAppName": "\uc571 \uc774\ub984",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Emby \uc11c\ubc84\uc640\uc758 \ud1b5\uc2e0\uc744 \uc704\ud574 \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uad8c\ud55c\uc744 \ubd80\uc5ec\ud569\ub2c8\ub2e4.",
|
||||
"HeaderHttpHeaders": "Http Headers",
|
||||
"HeaderIdentificationHeader": "Identification Header",
|
||||
"LabelValue": "Value:",
|
||||
|
|
|
@ -185,7 +185,7 @@
|
|||
"TabPeople": "People",
|
||||
"TabNetworks": "Networks",
|
||||
"HeaderUsers": "Users",
|
||||
"HeaderFilters": "Filters:",
|
||||
"HeaderFilters": "Filters",
|
||||
"ButtonFilter": "Filter",
|
||||
"OptionFavorite": "Favorites",
|
||||
"OptionLikes": "Likes",
|
||||
|
@ -206,8 +206,8 @@
|
|||
"TabAlbumArtists": "Album Artists",
|
||||
"TabMusicVideos": "Music Videos",
|
||||
"ButtonSort": "Sort",
|
||||
"HeaderSortBy": "Sort By:",
|
||||
"HeaderSortOrder": "Sort Order:",
|
||||
"HeaderSortBy": "Sort By",
|
||||
"HeaderSortOrder": "Sort Order",
|
||||
"OptionPlayed": "Played",
|
||||
"OptionUnplayed": "Unplayed",
|
||||
"OptionAscending": "Ascending",
|
||||
|
@ -481,7 +481,7 @@
|
|||
"LabelEnableRealtimeMonitor": "Enable real time monitoring",
|
||||
"LabelEnableRealtimeMonitorHelp": "Changes will be processed immediately, on supported file systems.",
|
||||
"ButtonScanLibrary": "Scan Library",
|
||||
"HeaderNumberOfPlayers": "Players:",
|
||||
"HeaderNumberOfPlayers": "Players",
|
||||
"OptionAnyNumberOfPlayers": "Any",
|
||||
"Option1Player": "1+",
|
||||
"Option2Player": "2+",
|
||||
|
@ -1027,10 +1027,6 @@
|
|||
"HeaderUser": "User",
|
||||
"HeaderDateIssued": "Date Issued",
|
||||
"LabelChapterName": "Chapter {0}",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"HeaderHttpHeaders": "Http Headers",
|
||||
"HeaderIdentificationHeader": "Identification Header",
|
||||
"LabelValue": "Value:",
|
||||
|
|
|
@ -1,9 +1,11 @@
|
|||
{
|
||||
"HeaderTaskTriggers": "Oppgave Triggers",
|
||||
"TabSmartMatches": "Smart Matches",
|
||||
"LabelOrganizeSmartMatchOption": "In the future, organize all files into the selected series if the name contains",
|
||||
"TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog",
|
||||
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
|
||||
"OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format",
|
||||
"OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 for easy playback on your devices.",
|
||||
"FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.",
|
||||
"LabelExit": "Avslutt",
|
||||
"LabelVisitCommunity": "Bes\u00f8k oss",
|
||||
"LabelGithub": "Github",
|
||||
|
@ -1025,10 +1027,6 @@
|
|||
"HeaderUser": "Bruker",
|
||||
"HeaderDateIssued": "Dato utstedt",
|
||||
"LabelChapterName": "Kapittel {0}",
|
||||
"HeaderNewApiKey": "Ny Api N\u00f8kkel",
|
||||
"LabelAppName": "Applikasjonsnavn",
|
||||
"LabelAppNameExample": "Eksempel: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"HeaderHttpHeaders": "Http Headere",
|
||||
"HeaderIdentificationHeader": "Identifiseringsheader",
|
||||
"LabelValue": "Verdi:",
|
||||
|
|
|
@ -185,7 +185,7 @@
|
|||
"TabPeople": "Personen",
|
||||
"TabNetworks": "TV-Studio's",
|
||||
"HeaderUsers": "Gebruikers",
|
||||
"HeaderFilters": "Filters:",
|
||||
"HeaderFilters": "Filters",
|
||||
"ButtonFilter": "Filter",
|
||||
"OptionFavorite": "Favorieten",
|
||||
"OptionLikes": "Leuk",
|
||||
|
@ -206,8 +206,8 @@
|
|||
"TabAlbumArtists": "Albumartiesten",
|
||||
"TabMusicVideos": "Muziek Videos",
|
||||
"ButtonSort": "Sorteren",
|
||||
"HeaderSortBy": "Sorteren op:",
|
||||
"HeaderSortOrder": "Sorteer volgorde:",
|
||||
"HeaderSortBy": "Sorteren op",
|
||||
"HeaderSortOrder": "Sorteer volgorde",
|
||||
"OptionPlayed": "Afgespeeld",
|
||||
"OptionUnplayed": "Onafgespeeld",
|
||||
"OptionAscending": "Oplopend",
|
||||
|
@ -1027,10 +1027,6 @@
|
|||
"HeaderUser": "Gebruiker",
|
||||
"HeaderDateIssued": "Datum uitgegeven",
|
||||
"LabelChapterName": "Hoofdstuk {0}",
|
||||
"HeaderNewApiKey": "Nieuwe Api sleutel",
|
||||
"LabelAppName": "Applicatie Naam",
|
||||
"LabelAppNameExample": "Voorbeeld: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Geef een applicatie toestemming om te communiceren met Emby Server.",
|
||||
"HeaderHttpHeaders": "Http Headers",
|
||||
"HeaderIdentificationHeader": "Identificatie Header",
|
||||
"LabelValue": "Waarde:",
|
||||
|
|
|
@ -1027,10 +1027,6 @@
|
|||
"HeaderUser": "U\u017cytkownik",
|
||||
"HeaderDateIssued": "Data wydania",
|
||||
"LabelChapterName": "Rozdzia\u0142 {0}",
|
||||
"HeaderNewApiKey": "Nowy Klucz Api",
|
||||
"LabelAppName": "Nazwa Aplikacji",
|
||||
"LabelAppNameExample": "Przyk\u0142ad: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Przyznaj uprawnienia aplikacji do komunikacji z Serwerem Emby.",
|
||||
"HeaderHttpHeaders": "Nag\u0142\u00f3wki Http",
|
||||
"HeaderIdentificationHeader": "Nag\u0142\u00f3wek identyfikacyjny",
|
||||
"LabelValue": "Warto\u015b\u0107:",
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"HeaderTaskTriggers": "Disparadores de Tarefa",
|
||||
"TabSmartMatches": "Smart Matches",
|
||||
"TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog",
|
||||
"TabSmartMatchInfo": "Gerencie suas smart matches que foram adicionadas usando a op\u00e7\u00e3o de corre\u00e7\u00e3o do Auto-Organizar",
|
||||
"OptionRememberOrganizeCorrection": "Salvar e aplicar esta corre\u00e7\u00e3o para arquivos futuros com nomes similares",
|
||||
"OptionConvertRecordingsToStreamingFormat": "Converter automaticamente grava\u00e7\u00f5es para um formato amig\u00e1vel a streaming",
|
||||
"OptionConvertRecordingsToStreamingFormatHelp": "Grava\u00e7\u00f5es ser\u00e3o convertidas automaticamente para MP4 para uma reprodu\u00e7\u00e3o mais f\u00e1cil em seus dispositivos.",
|
||||
|
@ -185,7 +185,7 @@
|
|||
"TabPeople": "Pessoas",
|
||||
"TabNetworks": "Redes",
|
||||
"HeaderUsers": "Usu\u00e1rios",
|
||||
"HeaderFilters": "Filtros:",
|
||||
"HeaderFilters": "Filtros",
|
||||
"ButtonFilter": "Filtro",
|
||||
"OptionFavorite": "Favoritos",
|
||||
"OptionLikes": "Curtidas",
|
||||
|
@ -206,8 +206,8 @@
|
|||
"TabAlbumArtists": "Artistas do \u00c1lbum",
|
||||
"TabMusicVideos": "V\u00eddeos Musicais",
|
||||
"ButtonSort": "Ordenar",
|
||||
"HeaderSortBy": "Ordenar Por:",
|
||||
"HeaderSortOrder": "Forma para Ordenar:",
|
||||
"HeaderSortBy": "Ordenar Por",
|
||||
"HeaderSortOrder": "Forma para Ordenar",
|
||||
"OptionPlayed": "Reproduzido",
|
||||
"OptionUnplayed": "N\u00e3o-reproduzido",
|
||||
"OptionAscending": "Crescente",
|
||||
|
@ -1027,10 +1027,6 @@
|
|||
"HeaderUser": "Usu\u00e1rio",
|
||||
"HeaderDateIssued": "Data da Emiss\u00e3o",
|
||||
"LabelChapterName": "Cap\u00edtulo {0}",
|
||||
"HeaderNewApiKey": "Nova Chave da Api",
|
||||
"LabelAppName": "Nome do app",
|
||||
"LabelAppNameExample": "Exemplo: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Conceda permiss\u00e3o \u00e0 aplica\u00e7\u00e3o de se comunicar com o Servidor Emby.",
|
||||
"HeaderHttpHeaders": "Cabe\u00e7alhos de Http",
|
||||
"HeaderIdentificationHeader": "Cabe\u00e7alho de Identifica\u00e7\u00e3o",
|
||||
"LabelValue": "Valor:",
|
||||
|
|
|
@ -1027,10 +1027,6 @@
|
|||
"HeaderUser": "User",
|
||||
"HeaderDateIssued": "Date Issued",
|
||||
"LabelChapterName": "Chapter {0}",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"HeaderHttpHeaders": "Http Headers",
|
||||
"HeaderIdentificationHeader": "Identification Header",
|
||||
"LabelValue": "Valor:",
|
||||
|
|
|
@ -481,7 +481,7 @@
|
|||
"LabelEnableRealtimeMonitor": "Enable real time monitoring",
|
||||
"LabelEnableRealtimeMonitorHelp": "Changes will be processed immediately, on supported file systems.",
|
||||
"ButtonScanLibrary": "Scan Library",
|
||||
"HeaderNumberOfPlayers": "Players:",
|
||||
"HeaderNumberOfPlayers": "Players",
|
||||
"OptionAnyNumberOfPlayers": "Any",
|
||||
"Option1Player": "1+",
|
||||
"Option2Player": "2+",
|
||||
|
@ -1027,10 +1027,6 @@
|
|||
"HeaderUser": "User",
|
||||
"HeaderDateIssued": "Date Issued",
|
||||
"LabelChapterName": "Chapter {0}",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"HeaderHttpHeaders": "Http Headers",
|
||||
"HeaderIdentificationHeader": "Identification Header",
|
||||
"LabelValue": "Value:",
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
"TabSmartMatches": "\u0418\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442\u0443\u0430\u043b\u044c\u043d\u044b\u0435 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u044f",
|
||||
"TabSmartMatchInfo": "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0432\u0430\u0448\u0438\u043c\u0438 \u0438\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442\u0443\u0430\u043b\u044c\u043d\u044b\u043c\u0438 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u044f\u043c\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0431\u044b\u043b\u0438 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u044b \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u0434\u0438\u0430\u043b\u043e\u0433\u0430 \u043a\u043e\u0440\u0440\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0432 \u0410\u0432\u0442\u043e\u043f\u043e\u0440\u044f\u0434\u043a\u0435",
|
||||
"OptionRememberOrganizeCorrection": "\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0438 \u043f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u044d\u0442\u0443 \u043a\u043e\u0440\u0440\u0435\u043a\u0446\u0438\u044e \u043a \u0431\u0443\u0434\u0443\u0449\u0438\u043c \u0444\u0430\u0439\u043b\u0430\u043c \u0441 \u043f\u043e\u0445\u043e\u0436\u0438\u043c\u0438 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u044f\u043c\u0438",
|
||||
"OptionConvertRecordingsToStreamingFormat": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u044b\u0432\u0430\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438 \u0432 \u0444\u043e\u0440\u043c\u0430\u0442 \u0443\u0434\u043e\u0431\u043d\u044b\u0439 \u0434\u043b\u044f \u0442\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u0438",
|
||||
"OptionConvertRecordingsToStreamingFormat": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u044b\u0432\u0430\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438 \u0432 \u0443\u0434\u043e\u0431\u043d\u044b\u0439 \u0434\u043b\u044f \u0442\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u0438 \u0444\u043e\u0440\u043c\u0430\u0442",
|
||||
"OptionConvertRecordingsToStreamingFormatHelp": "\u0417\u0430\u043f\u0438\u0441\u0438 \u0431\u0443\u0434\u0443\u0442 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u044b\u0432\u0430\u0442\u044c\u0441\u044f \u0432 \u0440\u0435\u0436\u0438\u043c\u0435 \u0440\u0435\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u0432 MP4 \u0434\u043b\u044f \u0443\u0434\u043e\u0431\u0441\u0442\u0432\u0430 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043d\u0430 \u0432\u0430\u0448\u0438\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0445.",
|
||||
"FeatureRequiresEmbyPremiere": "\u0414\u043b\u044f \u0434\u0430\u043d\u043d\u043e\u0439 \u0444\u0443\u043d\u043a\u0446\u0438\u0438 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0430\u044f \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u0430 Emby Premiere.",
|
||||
"LabelExit": "\u0412\u044b\u0445\u043e\u0434",
|
||||
|
@ -185,7 +185,7 @@
|
|||
"TabPeople": "\u041b\u044e\u0434\u0438",
|
||||
"TabNetworks": "\u0422\u0435\u043b\u0435\u0441\u0435\u0442\u0438",
|
||||
"HeaderUsers": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438",
|
||||
"HeaderFilters": "\u0424\u0438\u043b\u044c\u0442\u0440\u044b:",
|
||||
"HeaderFilters": "\u0424\u0438\u043b\u044c\u0442\u0440\u044b",
|
||||
"ButtonFilter": "\u0424\u0438\u043b\u044c\u0442\u0440\u043e\u0432\u0430\u0442\u044c",
|
||||
"OptionFavorite": "\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u044b\u0435",
|
||||
"OptionLikes": "\u041d\u0440\u0430\u0432\u044f\u0449\u0438\u0435\u0441\u044f",
|
||||
|
@ -206,8 +206,8 @@
|
|||
"TabAlbumArtists": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438 \u0430\u043b\u044c\u0431\u043e\u043c\u0430",
|
||||
"TabMusicVideos": "\u041c\u0443\u0437\u044b\u043a\u0430\u043b\u044c\u043d\u044b\u0435 \u0432\u0438\u0434\u0435\u043e\u043a\u043b\u0438\u043f\u044b",
|
||||
"ButtonSort": "\u0421\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c",
|
||||
"HeaderSortBy": "\u0421\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0430 \u043f\u043e:",
|
||||
"HeaderSortOrder": "\u041f\u043e\u0440\u044f\u0434\u043e\u043a \u0441\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0438:",
|
||||
"HeaderSortBy": "\u0421\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0430 \u043f\u043e",
|
||||
"HeaderSortOrder": "\u041f\u043e\u0440\u044f\u0434\u043e\u043a \u0441\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0438",
|
||||
"OptionPlayed": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u0435",
|
||||
"OptionUnplayed": "\u041d\u0435\u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0451\u043d\u043d\u043e\u0435",
|
||||
"OptionAscending": "\u041f\u043e \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u0430\u043d\u0438\u044e",
|
||||
|
@ -1027,10 +1027,6 @@
|
|||
"HeaderUser": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c",
|
||||
"HeaderDateIssued": "\u0414\u0430\u0442\u0430 \u0432\u044b\u0434\u0430\u0447\u0438",
|
||||
"LabelChapterName": "\u0421\u0446\u0435\u043d\u0430 {0}",
|
||||
"HeaderNewApiKey": "\u041d\u043e\u0432\u044b\u0439 API-\u043a\u043b\u044e\u0447",
|
||||
"LabelAppName": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f",
|
||||
"LabelAppNameExample": "\u041f\u0440\u0438\u043c\u0435\u0440: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "\u041f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044e \u043f\u0440\u0430\u0432\u0430 \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u043a Emby Server.",
|
||||
"HeaderHttpHeaders": "HTTP-\u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438",
|
||||
"HeaderIdentificationHeader": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a \u0434\u043b\u044f \u0440\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d\u0438\u044f",
|
||||
"LabelValue": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435:",
|
||||
|
|
|
@ -1169,14 +1169,6 @@
|
|||
"HeaderViewOrder": "View Order",
|
||||
"ButtonResetEasyPassword": "Reset easy pin code",
|
||||
"LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps",
|
||||
"LabelMetadataRefreshMode": "Metadata refresh mode:",
|
||||
"LabelImageRefreshMode": "Image refresh mode:",
|
||||
"OptionDownloadMissingImages": "Download missing images",
|
||||
"OptionReplaceExistingImages": "Replace existing images",
|
||||
"OptionRefreshAllData": "Refresh all data",
|
||||
"OptionAddMissingDataOnly": "Add missing data only",
|
||||
"OptionLocalRefreshOnly": "Local refresh only",
|
||||
"HeaderRefreshMetadata": "Refresh Metadata",
|
||||
"HeaderPersonInfo": "Person Info",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"HeaderConfirmDeletion": "Confirm Deletion",
|
||||
|
|
|
@ -206,8 +206,8 @@
|
|||
"TabAlbumArtists": "Izvajalci Albumov",
|
||||
"TabMusicVideos": "Music Videos",
|
||||
"ButtonSort": "Sort",
|
||||
"HeaderSortBy": "Sort By:",
|
||||
"HeaderSortOrder": "Sort Order:",
|
||||
"HeaderSortBy": "Sort By",
|
||||
"HeaderSortOrder": "Sort Order",
|
||||
"OptionPlayed": "Predvajano",
|
||||
"OptionUnplayed": "Nepredvajano",
|
||||
"OptionAscending": "Ascending",
|
||||
|
@ -481,7 +481,7 @@
|
|||
"LabelEnableRealtimeMonitor": "Enable real time monitoring",
|
||||
"LabelEnableRealtimeMonitorHelp": "Changes will be processed immediately, on supported file systems.",
|
||||
"ButtonScanLibrary": "Scan Library",
|
||||
"HeaderNumberOfPlayers": "Players:",
|
||||
"HeaderNumberOfPlayers": "Players",
|
||||
"OptionAnyNumberOfPlayers": "Any",
|
||||
"Option1Player": "1+",
|
||||
"Option2Player": "2+",
|
||||
|
@ -1027,10 +1027,6 @@
|
|||
"HeaderUser": "Uporabnik",
|
||||
"HeaderDateIssued": "Date Issued",
|
||||
"LabelChapterName": "Chapter {0}",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"HeaderHttpHeaders": "Http Headers",
|
||||
"HeaderIdentificationHeader": "Identification Header",
|
||||
"LabelValue": "Value:",
|
||||
|
|
|
@ -1027,10 +1027,6 @@
|
|||
"HeaderUser": "Anv\u00e4ndare",
|
||||
"HeaderDateIssued": "Utgivningsdatum",
|
||||
"LabelChapterName": "Kapitel {0}",
|
||||
"HeaderNewApiKey": "Ny API-nyckel",
|
||||
"LabelAppName": "Appens namn",
|
||||
"LabelAppNameExample": "Exempel: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"HeaderHttpHeaders": "Http-rubriker",
|
||||
"HeaderIdentificationHeader": "ID-rubrik",
|
||||
"LabelValue": "V\u00e4rde:",
|
||||
|
|
|
@ -1027,10 +1027,6 @@
|
|||
"HeaderUser": "User",
|
||||
"HeaderDateIssued": "Date Issued",
|
||||
"LabelChapterName": "Chapter {0}",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"HeaderHttpHeaders": "Http Headers",
|
||||
"HeaderIdentificationHeader": "Identification Header",
|
||||
"LabelValue": "Value:",
|
||||
|
|
|
@ -206,8 +206,8 @@
|
|||
"TabAlbumArtists": "Album Artists",
|
||||
"TabMusicVideos": "Music Videos",
|
||||
"ButtonSort": "Sort",
|
||||
"HeaderSortBy": "Sort By:",
|
||||
"HeaderSortOrder": "Sort Order:",
|
||||
"HeaderSortBy": "Sort By",
|
||||
"HeaderSortOrder": "Sort Order",
|
||||
"OptionPlayed": "Played",
|
||||
"OptionUnplayed": "Unplayed",
|
||||
"OptionAscending": "Ascending",
|
||||
|
@ -481,7 +481,7 @@
|
|||
"LabelEnableRealtimeMonitor": "Enable real time monitoring",
|
||||
"LabelEnableRealtimeMonitorHelp": "Changes will be processed immediately, on supported file systems.",
|
||||
"ButtonScanLibrary": "Scan Library",
|
||||
"HeaderNumberOfPlayers": "Players:",
|
||||
"HeaderNumberOfPlayers": "Players",
|
||||
"OptionAnyNumberOfPlayers": "Any",
|
||||
"Option1Player": "1+",
|
||||
"Option2Player": "2+",
|
||||
|
@ -1027,10 +1027,6 @@
|
|||
"HeaderUser": "User",
|
||||
"HeaderDateIssued": "Date Issued",
|
||||
"LabelChapterName": "Chapter {0}",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"HeaderHttpHeaders": "Http Headers",
|
||||
"HeaderIdentificationHeader": "Identification Header",
|
||||
"LabelValue": "Value:",
|
||||
|
|
|
@ -185,7 +185,7 @@
|
|||
"TabPeople": "M\u1ecdi ng\u01b0\u1eddi",
|
||||
"TabNetworks": "C\u00e1c m\u1ea1ng",
|
||||
"HeaderUsers": "d\u00f9ng",
|
||||
"HeaderFilters": "Filters:",
|
||||
"HeaderFilters": "Filters",
|
||||
"ButtonFilter": "Filter",
|
||||
"OptionFavorite": "Y\u00eau th\u00edch",
|
||||
"OptionLikes": "Th\u00edch",
|
||||
|
@ -481,7 +481,7 @@
|
|||
"LabelEnableRealtimeMonitor": "Enable real time monitoring",
|
||||
"LabelEnableRealtimeMonitorHelp": "Changes will be processed immediately, on supported file systems.",
|
||||
"ButtonScanLibrary": "Scan Library",
|
||||
"HeaderNumberOfPlayers": "Players:",
|
||||
"HeaderNumberOfPlayers": "Players",
|
||||
"OptionAnyNumberOfPlayers": "B\u1ea5t k\u1ef3",
|
||||
"Option1Player": "1+",
|
||||
"Option2Player": "2+",
|
||||
|
@ -1027,10 +1027,6 @@
|
|||
"HeaderUser": "User",
|
||||
"HeaderDateIssued": "Date Issued",
|
||||
"LabelChapterName": "Chapter {0}",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"HeaderHttpHeaders": "Http Headers",
|
||||
"HeaderIdentificationHeader": "Identification Header",
|
||||
"LabelValue": "Value:",
|
||||
|
|
|
@ -1027,10 +1027,6 @@
|
|||
"HeaderUser": "\u7528\u6237",
|
||||
"HeaderDateIssued": "\u53d1\u5e03\u65e5\u671f",
|
||||
"LabelChapterName": "\u7ae0\u8282 {0}",
|
||||
"HeaderNewApiKey": "\u65b0Api \u5bc6\u94a5",
|
||||
"LabelAppName": "APP\u540d\u79f0",
|
||||
"LabelAppNameExample": "\u4f8b\u5982\uff1a Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"HeaderHttpHeaders": "HTTP\u6807\u5934",
|
||||
"HeaderIdentificationHeader": "\u8eab\u4efd\u8ba4\u8bc1\u6807\u5934",
|
||||
"LabelValue": "\u6570\u503c\uff1a",
|
||||
|
|
|
@ -1027,10 +1027,6 @@
|
|||
"HeaderUser": "User",
|
||||
"HeaderDateIssued": "Date Issued",
|
||||
"LabelChapterName": "Chapter {0}",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"HeaderHttpHeaders": "Http Headers",
|
||||
"HeaderIdentificationHeader": "Identification Header",
|
||||
"LabelValue": "Value:",
|
||||
|
|
|
@ -1027,10 +1027,6 @@
|
|||
"HeaderUser": "User",
|
||||
"HeaderDateIssued": "Date Issued",
|
||||
"LabelChapterName": "Chapter {0}",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"HeaderHttpHeaders": "Http Headers",
|
||||
"HeaderIdentificationHeader": "Identification Header",
|
||||
"LabelValue": "Value:",
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"ButtonLocalRefresh": "Local refresh",
|
||||
"ButtonAddMissingData": "Add missing data only",
|
||||
"ButtonFullRefresh": "Full refresh",
|
||||
"SettingsSaved": "\u062a\u0645 \u062d\u0641\u0638 \u0627\u0644\u0627\u0639\u062f\u0627\u062f\u0627\u062a.",
|
||||
"AddUser": "\u0627\u0636\u0627\u0641\u0629 \u0645\u0633\u062a\u062e\u062f\u0645",
|
||||
"Users": "\u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646",
|
||||
|
@ -30,6 +33,10 @@
|
|||
"NoPluginConfigurationMessage": "\u0647\u0630\u0627 \u0627\u0644\u0645\u0644\u062d\u0642 \u0644\u064a\u0633 \u0644\u0647 \u0636\u0628\u0637.",
|
||||
"NoPluginsInstalledMessage": "\u0644\u0627 \u064a\u0648\u062c\u062f \u0644\u062f\u064a\u0643 \u0627\u0649 \u0645\u0644\u0627\u062d\u0642 \u0645\u062b\u0628\u062a\u0629.",
|
||||
"BrowsePluginCatalogMessage": "\u062a\u0635\u0641\u062d \u0642\u0627\u0626\u0645\u062a\u0646\u0627 \u0644\u0644\u0645\u0644\u062d\u0642 \u0644\u062a\u0631\u0649 \u0627\u0644\u0645\u062a\u0648\u0641\u0631 \u0645\u0646 \u0627\u0644\u0645\u0644\u0627\u062d\u0642.",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"MessageKeyEmailedTo": "Key emailed to {0}.",
|
||||
"MessageKeysLinked": "Keys linked.",
|
||||
"HeaderConfirmation": "Confirmation",
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"ButtonLocalRefresh": "Local refresh",
|
||||
"ButtonAddMissingData": "Add missing data only",
|
||||
"ButtonFullRefresh": "Full refresh",
|
||||
"SettingsSaved": "Settings saved.",
|
||||
"AddUser": "Add User",
|
||||
"Users": "Users",
|
||||
|
@ -30,6 +33,10 @@
|
|||
"NoPluginConfigurationMessage": "This plugin has nothing to configure.",
|
||||
"NoPluginsInstalledMessage": "You have no plugins installed.",
|
||||
"BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "\u0420\u0430\u0437\u0440\u0435\u0448\u0435\u0442\u0435 \u043d\u0430 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0434\u0430 \u043a\u043e\u043c\u0443\u043d\u0438\u043a\u0438\u0440\u0430 \u0441 Emby \u0441\u044a\u0440\u0432\u044a\u0440\u044a\u0442.",
|
||||
"MessageKeyEmailedTo": "Key emailed to {0}.",
|
||||
"MessageKeysLinked": "Keys linked.",
|
||||
"HeaderConfirmation": "Confirmation",
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"ButtonLocalRefresh": "Local refresh",
|
||||
"ButtonAddMissingData": "Add missing data only",
|
||||
"ButtonFullRefresh": "Full refresh",
|
||||
"SettingsSaved": "Configuraci\u00f3 guardada.",
|
||||
"AddUser": "Afegir Usuari",
|
||||
"Users": "Usuaris",
|
||||
|
@ -30,6 +33,10 @@
|
|||
"NoPluginConfigurationMessage": "Aquest complement no necessita configuraci\u00f3.",
|
||||
"NoPluginsInstalledMessage": "No tens cap complement instal\u00b7lat.",
|
||||
"BrowsePluginCatalogMessage": "Consulta el nostre cat\u00e0leg per veure els complements disponibles.",
|
||||
"HeaderNewApiKey": "Nova Clau Api",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"MessageKeyEmailedTo": "Key emailed to {0}.",
|
||||
"MessageKeysLinked": "Keys linked.",
|
||||
"HeaderConfirmation": "Confirmation",
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"ButtonLocalRefresh": "Local refresh",
|
||||
"ButtonAddMissingData": "Add missing data only",
|
||||
"ButtonFullRefresh": "Full refresh",
|
||||
"SettingsSaved": "Nastaven\u00ed ulo\u017eeno.",
|
||||
"AddUser": "P\u0159idat u\u017eivatele",
|
||||
"Users": "U\u017eivatel\u00e9",
|
||||
|
@ -30,6 +33,10 @@
|
|||
"NoPluginConfigurationMessage": "Tento plugin nem\u00e1 nastaven\u00ed.",
|
||||
"NoPluginsInstalledMessage": "Nem\u00e1te nainstalov\u00e1n \u017e\u00e1dn\u00fd plugin.",
|
||||
"BrowsePluginCatalogMessage": "Prohl\u00e9dn\u011bte si n\u00e1\u0161 katalog, kde najdete dostupn\u00e9 pluginy.",
|
||||
"HeaderNewApiKey": "Nov\u00fd kl\u00ed\u010d API",
|
||||
"LabelAppName": "N\u00e1zev aplikace",
|
||||
"LabelAppNameExample": "P\u0159\u00edklad: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Ud\u011blit povolen\u00ed aplikac\u00ed pro komunikaci s Emby Server.",
|
||||
"MessageKeyEmailedTo": "Kl\u00ed\u010d odesl\u00e1n na {0}",
|
||||
"MessageKeysLinked": "Kl\u00ed\u010de spojeny.",
|
||||
"HeaderConfirmation": "Potvrzen\u00ed",
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"ButtonLocalRefresh": "Local refresh",
|
||||
"ButtonAddMissingData": "Add missing data only",
|
||||
"ButtonFullRefresh": "Full refresh",
|
||||
"SettingsSaved": "Indstillinger er gemt",
|
||||
"AddUser": "Tilf\u00f8j bruger",
|
||||
"Users": "Brugere",
|
||||
|
@ -30,6 +33,10 @@
|
|||
"NoPluginConfigurationMessage": "Der er ingenting at konfigurere i dette plugin.",
|
||||
"NoPluginsInstalledMessage": "Der er ikke installeret nogle plugins.",
|
||||
"BrowsePluginCatalogMessage": "Gennemse vores plugin-katalog for at se tilg\u00e6ngelige plugins.",
|
||||
"HeaderNewApiKey": "Ny Api n\u00f8gle",
|
||||
"LabelAppName": "App navn",
|
||||
"LabelAppNameExample": "F. eks: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Giv applikationen tilladelse til at kommunikere med Emby.",
|
||||
"MessageKeyEmailedTo": "N\u00f8gle sendt med e-mail til {0}.",
|
||||
"MessageKeysLinked": "N\u00f8gler sammenknyttet.",
|
||||
"HeaderConfirmation": "Bekr\u00e6ftelse",
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"ButtonLocalRefresh": "Local refresh",
|
||||
"ButtonAddMissingData": "Add missing data only",
|
||||
"ButtonFullRefresh": "Full refresh",
|
||||
"SettingsSaved": "Einstellungen gespeichert.",
|
||||
"AddUser": "Benutzer anlegen",
|
||||
"Users": "Benutzer",
|
||||
|
@ -30,6 +33,10 @@
|
|||
"NoPluginConfigurationMessage": "Bei diesem Plugin kann nichts eingestellt werden.",
|
||||
"NoPluginsInstalledMessage": "Du hast keine Plugins installiert.",
|
||||
"BrowsePluginCatalogMessage": "Durchsuche unsere Bibliothek, um alle verf\u00fcgbaren Plugins anzuzeigen.",
|
||||
"HeaderNewApiKey": "Neuer API Schl\u00fcssel",
|
||||
"LabelAppName": "App Name",
|
||||
"LabelAppNameExample": "Beispiel: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Geben Sie einer Applikation die Erlaubnis mit dem Emby Server zu kommunizieren.",
|
||||
"MessageKeyEmailedTo": "E-Mail mit Zugangsschl\u00fcssel an: {0}.",
|
||||
"MessageKeysLinked": "Schl\u00fcssel verkn\u00fcpft.",
|
||||
"HeaderConfirmation": "Best\u00e4tigung",
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"ButtonLocalRefresh": "Local refresh",
|
||||
"ButtonAddMissingData": "Add missing data only",
|
||||
"ButtonFullRefresh": "Full refresh",
|
||||
"SettingsSaved": "\u039f\u03b9 \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c4\u03b7\u03ba\u03b1\u03bd",
|
||||
"AddUser": "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7",
|
||||
"Users": "\u039f\u03b9 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2",
|
||||
|
@ -30,6 +33,10 @@
|
|||
"NoPluginConfigurationMessage": "\u0391\u03c5\u03c4\u03cc \u03c4\u03bf plugin \u03ad\u03c7\u03b5\u03b9 \u03c4\u03af\u03c0\u03bf\u03c4\u03b1 \u03bd\u03b1 \u03b4\u03b9\u03b1\u03bc\u03bf\u03c1\u03c6\u03ce\u03c3\u03b5\u03c4\u03b5",
|
||||
"NoPluginsInstalledMessage": "\u0388\u03c7\u03b5\u03c4\u03b5 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ae\u03c3\u03b5\u03b9 \u03ba\u03b1\u03bd\u03ad\u03bd\u03b1 plugins ",
|
||||
"BrowsePluginCatalogMessage": "\u03a0\u03bb\u03bf\u03b7\u03b3\u03b7\u03b8\u03b5\u03af\u03c4\u03b5 \u03c3\u03c4\u03bf\u03bd \u03ba\u03b1\u03c4\u03ac\u03bb\u03bf\u03b3\u03bf plugin \u03bc\u03b1\u03c2 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b4\u03b5\u03af\u03c4\u03b5 \u03c4\u03b1 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b1 plugins",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"MessageKeyEmailedTo": "Key emailed to {0}.",
|
||||
"MessageKeysLinked": "Keys linked.",
|
||||
"HeaderConfirmation": "Confirmation",
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"ButtonLocalRefresh": "Local refresh",
|
||||
"ButtonAddMissingData": "Add missing data only",
|
||||
"ButtonFullRefresh": "Full refresh",
|
||||
"SettingsSaved": "Settings saved.",
|
||||
"AddUser": "Add User",
|
||||
"Users": "Users",
|
||||
|
@ -30,6 +33,10 @@
|
|||
"NoPluginConfigurationMessage": "This plugin has nothing to configure.",
|
||||
"NoPluginsInstalledMessage": "You have no plugins installed.",
|
||||
"BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"MessageKeyEmailedTo": "Key emailed to {0}.",
|
||||
"MessageKeysLinked": "Keys linked.",
|
||||
"HeaderConfirmation": "Confirmation",
|
||||
|
@ -859,8 +866,8 @@
|
|||
"HeaderTopPlugins": "Top Plugins",
|
||||
"ButtonRecord": "Record",
|
||||
"ButtonOther": "Other",
|
||||
"HeaderSortBy": "Sort By:",
|
||||
"HeaderSortOrder": "Sort Order:",
|
||||
"HeaderSortBy": "Sort By",
|
||||
"HeaderSortOrder": "Sort Order",
|
||||
"OptionAscending": "Ascending",
|
||||
"OptionDescending": "Descending",
|
||||
"OptionNameSort": "Name",
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"ButtonLocalRefresh": "Local refresh",
|
||||
"ButtonAddMissingData": "Add missing data only",
|
||||
"ButtonFullRefresh": "Full refresh",
|
||||
"SettingsSaved": "Settings saved.",
|
||||
"AddUser": "Add User",
|
||||
"Users": "Users",
|
||||
|
@ -30,6 +33,10 @@
|
|||
"NoPluginConfigurationMessage": "This plugin has nothing to configure.",
|
||||
"NoPluginsInstalledMessage": "You have no plugins installed.",
|
||||
"BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"MessageKeyEmailedTo": "Key emailed to {0}.",
|
||||
"MessageKeysLinked": "Keys linked.",
|
||||
"HeaderConfirmation": "Confirmation",
|
||||
|
@ -37,10 +44,6 @@
|
|||
"MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
|
||||
"HeaderSupportTheTeam": "Support the Emby Team",
|
||||
"TextEnjoyBonusFeatures": "Enjoy Bonus Features",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"TitleLiveTV": "Live TV",
|
||||
"ButtonCancelSyncJob": "Cancel sync",
|
||||
"HeaderAddTag": "Add Tag",
|
||||
|
@ -863,8 +866,8 @@
|
|||
"HeaderTopPlugins": "Top Plugins",
|
||||
"ButtonRecord": "Record",
|
||||
"ButtonOther": "Other",
|
||||
"HeaderSortBy": "Sort By:",
|
||||
"HeaderSortOrder": "Sort Order:",
|
||||
"HeaderSortBy": "Sort By",
|
||||
"HeaderSortOrder": "Sort Order",
|
||||
"OptionAscending": "Ascending",
|
||||
"OptionDescending": "Descending",
|
||||
"OptionNameSort": "Name",
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"ButtonLocalRefresh": "Local refresh",
|
||||
"ButtonAddMissingData": "Add missing data only",
|
||||
"ButtonFullRefresh": "Full refresh",
|
||||
"SettingsSaved": "Settings saved.",
|
||||
"AddUser": "Add User",
|
||||
"Users": "Users",
|
||||
|
@ -30,6 +33,10 @@
|
|||
"NoPluginConfigurationMessage": "This plugin has nothing to configure.",
|
||||
"NoPluginsInstalledMessage": "You have no plugins installed.",
|
||||
"BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"MessageKeyEmailedTo": "Key emailed to {0}.",
|
||||
"MessageKeysLinked": "Keys linked.",
|
||||
"HeaderConfirmation": "Confirmation",
|
||||
|
@ -859,8 +866,8 @@
|
|||
"HeaderTopPlugins": "Top Plugins",
|
||||
"ButtonRecord": "Record",
|
||||
"ButtonOther": "Other",
|
||||
"HeaderSortBy": "Sort By:",
|
||||
"HeaderSortOrder": "Sort Order:",
|
||||
"HeaderSortBy": "Sort By",
|
||||
"HeaderSortOrder": "Sort Order",
|
||||
"OptionAscending": "Ascending",
|
||||
"OptionDescending": "Descending",
|
||||
"OptionNameSort": "Name",
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"ButtonLocalRefresh": "Local refresh",
|
||||
"ButtonAddMissingData": "Add missing data only",
|
||||
"ButtonFullRefresh": "Full refresh",
|
||||
"SettingsSaved": "Configuraci\u00f3n guardada.",
|
||||
"AddUser": "Agregar usuario",
|
||||
"Users": "Usuarios",
|
||||
|
@ -30,6 +33,10 @@
|
|||
"NoPluginConfigurationMessage": "El complemento no requiere configuraci\u00f3n",
|
||||
"NoPluginsInstalledMessage": "No tiene complementos instalados.",
|
||||
"BrowsePluginCatalogMessage": "Explorar el catalogo de complementos para ver los complementos disponibles.",
|
||||
"HeaderNewApiKey": "Nueva llave de API",
|
||||
"LabelAppName": "Nombre del App",
|
||||
"LabelAppNameExample": "Ejemplo: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Conceder acceso a una aplicaci\u00f3n para comunicarse con el Servidor Emby.",
|
||||
"MessageKeyEmailedTo": "Clave enviada por correo a {0}.",
|
||||
"MessageKeysLinked": "Llaves Vinculadas",
|
||||
"HeaderConfirmation": "Confirmaci\u00f3n",
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"ButtonLocalRefresh": "Local refresh",
|
||||
"ButtonAddMissingData": "Add missing data only",
|
||||
"ButtonFullRefresh": "Full refresh",
|
||||
"SettingsSaved": "Configuraci\u00f3n guardada",
|
||||
"AddUser": "Agregar usuario",
|
||||
"Users": "Usuarios",
|
||||
|
@ -30,6 +33,10 @@
|
|||
"NoPluginConfigurationMessage": "El plugin no requiere configuraci\u00f3n",
|
||||
"NoPluginsInstalledMessage": "No tiene plugins instalados.",
|
||||
"BrowsePluginCatalogMessage": "Navegar el catalogo de plugins para ver los plugins disponibles.",
|
||||
"HeaderNewApiKey": "Nueva Clave Api",
|
||||
"LabelAppName": "Nombre de la app",
|
||||
"LabelAppNameExample": "Ejemplo: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"MessageKeyEmailedTo": "Clave enviada por email a {0}.",
|
||||
"MessageKeysLinked": "Claves vinculadas.",
|
||||
"HeaderConfirmation": "Confirmaci\u00f3n",
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"ButtonLocalRefresh": "Local refresh",
|
||||
"ButtonAddMissingData": "Add missing data only",
|
||||
"ButtonFullRefresh": "Full refresh",
|
||||
"SettingsSaved": "Asetukset tallennettu.",
|
||||
"AddUser": "Lis\u00e4\u00e4 K\u00e4ytt\u00e4j\u00e4",
|
||||
"Users": "K\u00e4ytt\u00e4j\u00e4t",
|
||||
|
@ -30,6 +33,10 @@
|
|||
"NoPluginConfigurationMessage": "T\u00e4ll\u00e4 lis\u00e4osalla ei ole mit\u00e4\u00e4n muokattavaa.",
|
||||
"NoPluginsInstalledMessage": "Sinulla ei ole mit\u00e4\u00e4n lis\u00e4osia asennettuna.",
|
||||
"BrowsePluginCatalogMessage": "Selaa meid\u00e4n lis\u00e4osa listaa katsoaksesi saatavilla olevia lis\u00e4osia.",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"MessageKeyEmailedTo": "Key emailed to {0}.",
|
||||
"MessageKeysLinked": "Keys linked.",
|
||||
"HeaderConfirmation": "Confirmation",
|
||||
|
@ -859,8 +866,8 @@
|
|||
"HeaderTopPlugins": "Top Plugins",
|
||||
"ButtonRecord": "Record",
|
||||
"ButtonOther": "Other",
|
||||
"HeaderSortBy": "Sort By:",
|
||||
"HeaderSortOrder": "Sort Order:",
|
||||
"HeaderSortBy": "Sort By",
|
||||
"HeaderSortOrder": "Sort Order",
|
||||
"OptionAscending": "Ascending",
|
||||
"OptionDescending": "Descending",
|
||||
"OptionNameSort": "Name",
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"ButtonLocalRefresh": "Local refresh",
|
||||
"ButtonAddMissingData": "Add missing data only",
|
||||
"ButtonFullRefresh": "Full refresh",
|
||||
"SettingsSaved": "Param\u00e8tres sauvegard\u00e9s.",
|
||||
"AddUser": "Ajouter un utilisateur",
|
||||
"Users": "Utilisateurs",
|
||||
|
@ -30,6 +33,10 @@
|
|||
"NoPluginConfigurationMessage": "Ce plugin n'a rien \u00e0 configurer.",
|
||||
"NoPluginsInstalledMessage": "Vous n'avez aucun plugin install\u00e9.",
|
||||
"BrowsePluginCatalogMessage": "Explorer notre catalogue des plugins pour voir les plugins disponibles.",
|
||||
"HeaderNewApiKey": "Nouvelle cl\u00e9 API",
|
||||
"LabelAppName": "Nom de l'app",
|
||||
"LabelAppNameExample": "Exemple: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Permet \u00e0 une application de communiquer avec le serveur Emby.",
|
||||
"MessageKeyEmailedTo": "Cl\u00e9 envoy\u00e9e par courriel \u00e0 {0}",
|
||||
"MessageKeysLinked": "Cl\u00e9s associ\u00e9es.",
|
||||
"HeaderConfirmation": "Confirmation",
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"ButtonLocalRefresh": "Local refresh",
|
||||
"ButtonAddMissingData": "Add missing data only",
|
||||
"ButtonFullRefresh": "Full refresh",
|
||||
"SettingsSaved": "Settings saved.",
|
||||
"AddUser": "Add User",
|
||||
"Users": "Users",
|
||||
|
@ -30,6 +33,10 @@
|
|||
"NoPluginConfigurationMessage": "This plugin has nothing to configure.",
|
||||
"NoPluginsInstalledMessage": "You have no plugins installed.",
|
||||
"BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"MessageKeyEmailedTo": "Key emailed to {0}.",
|
||||
"MessageKeysLinked": "Keys linked.",
|
||||
"HeaderConfirmation": "Confirmation",
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"ButtonLocalRefresh": "Local refresh",
|
||||
"ButtonAddMissingData": "Add missing data only",
|
||||
"ButtonFullRefresh": "Full refresh",
|
||||
"SettingsSaved": "\u05d4\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05e0\u05e9\u05de\u05e8\u05d5.",
|
||||
"AddUser": "\u05d4\u05d5\u05e1\u05e3 \u05de\u05e9\u05ea\u05de\u05e9",
|
||||
"Users": "\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd",
|
||||
|
@ -30,6 +33,10 @@
|
|||
"NoPluginConfigurationMessage": "\u05dc\u05ea\u05d5\u05e1\u05e3 \u05d4\u05d6\u05d4 \u05d0\u05d9\u05df \u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05de\u05d9\u05d5\u05d7\u05d3\u05d5\u05ea.",
|
||||
"NoPluginsInstalledMessage": "\u05d0\u05d9\u05df \u05dc\u05da \u05ea\u05d5\u05e1\u05e4\u05d9\u05dd \u05de\u05d5\u05ea\u05e7\u05e0\u05d9\u05dd.",
|
||||
"BrowsePluginCatalogMessage": "\u05e2\u05d1\u05d5\u05e8 \u05dc\u05e7\u05d8\u05dc\u05d5\u05d2 \u05d4\u05ea\u05d5\u05e1\u05e4\u05d9\u05dd \u05dc\u05e8\u05d0\u05d5\u05ea \u05d0\u05d9\u05dc\u05d5 \u05d6\u05de\u05d9\u05e0\u05d9\u05dd.",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"MessageKeyEmailedTo": "Key emailed to {0}.",
|
||||
"MessageKeysLinked": "Keys linked.",
|
||||
"HeaderConfirmation": "Confirmation",
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"ButtonLocalRefresh": "Local refresh",
|
||||
"ButtonAddMissingData": "Add missing data only",
|
||||
"ButtonFullRefresh": "Full refresh",
|
||||
"SettingsSaved": "Postavke snimljene",
|
||||
"AddUser": "Dodaj korisnika",
|
||||
"Users": "Korisnici",
|
||||
|
@ -30,6 +33,10 @@
|
|||
"NoPluginConfigurationMessage": "Ovaj dodatak nema ni\u0161ta za podesiti.",
|
||||
"NoPluginsInstalledMessage": "Nemate instaliranih dodataka.",
|
||||
"BrowsePluginCatalogMessage": "Pregledajte dostupne dodatke u na\u0161em katalogu.",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"MessageKeyEmailedTo": "Key emailed to {0}.",
|
||||
"MessageKeysLinked": "Keys linked.",
|
||||
"HeaderConfirmation": "Confirmation",
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"ButtonLocalRefresh": "Local refresh",
|
||||
"ButtonAddMissingData": "Add missing data only",
|
||||
"ButtonFullRefresh": "Full refresh",
|
||||
"SettingsSaved": "Settings saved.",
|
||||
"AddUser": "Add User",
|
||||
"Users": "Users",
|
||||
|
@ -30,6 +33,10 @@
|
|||
"NoPluginConfigurationMessage": "This plugin has nothing to configure.",
|
||||
"NoPluginsInstalledMessage": "You have no plugins installed.",
|
||||
"BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"MessageKeyEmailedTo": "Key emailed to {0}.",
|
||||
"MessageKeysLinked": "Keys linked.",
|
||||
"HeaderConfirmation": "Confirmation",
|
||||
|
@ -859,8 +866,8 @@
|
|||
"HeaderTopPlugins": "Top Plugins",
|
||||
"ButtonRecord": "Record",
|
||||
"ButtonOther": "Other",
|
||||
"HeaderSortBy": "Sort By:",
|
||||
"HeaderSortOrder": "Sort Order:",
|
||||
"HeaderSortBy": "Sort By",
|
||||
"HeaderSortOrder": "Sort Order",
|
||||
"OptionAscending": "Ascending",
|
||||
"OptionDescending": "Descending",
|
||||
"OptionNameSort": "Name",
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"ButtonLocalRefresh": "Local refresh",
|
||||
"ButtonAddMissingData": "Add missing data only",
|
||||
"ButtonFullRefresh": "Full refresh",
|
||||
"SettingsSaved": "Settaggi salvati.",
|
||||
"AddUser": "Aggiungi utente",
|
||||
"Users": "Utenti",
|
||||
|
@ -30,6 +33,10 @@
|
|||
"NoPluginConfigurationMessage": "Questo Plugin non \u00e8 stato configurato.",
|
||||
"NoPluginsInstalledMessage": "Non ci sono Plugins installati.",
|
||||
"BrowsePluginCatalogMessage": "Sfoglia il catalogo dei Plugins.",
|
||||
"HeaderNewApiKey": "Nuova Chiave Api",
|
||||
"LabelAppName": "Nome app",
|
||||
"LabelAppNameExample": "Esempio: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Concedere un permesso per applicazione al fine di comunicare con il Server Emby.",
|
||||
"MessageKeyEmailedTo": "Chiave inviata all'email {0}.",
|
||||
"MessageKeysLinked": "Chiave Collegata.",
|
||||
"HeaderConfirmation": "Conferma",
|
||||
|
|
|
@ -965,5 +965,8 @@
|
|||
"ButtonOff": "Off",
|
||||
"TitleHardwareAcceleration": "Hardware Acceleration",
|
||||
"HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.",
|
||||
"HeaderSelectCodecIntrosPath": "Select Codec Intros Path"
|
||||
"HeaderSelectCodecIntrosPath": "Select Codec Intros Path",
|
||||
"ButtonLocalRefresh": "Local refresh",
|
||||
"ButtonAddMissingData": "Add missing data only",
|
||||
"ButtonFullRefresh": "Full refresh"
|
||||
}
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"ButtonLocalRefresh": "Local refresh",
|
||||
"ButtonAddMissingData": "Add missing data only",
|
||||
"ButtonFullRefresh": "Full refresh",
|
||||
"SettingsSaved": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440 \u0441\u0430\u049b\u0442\u0430\u043b\u0434\u044b.",
|
||||
"AddUser": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043d\u044b \u04af\u0441\u0442\u0435\u0443",
|
||||
"Users": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440",
|
||||
|
@ -30,6 +33,10 @@
|
|||
"NoPluginConfigurationMessage": "\u041e\u0441\u044b \u043f\u043b\u0430\u0433\u0438\u043d\u0434\u0435 \u0435\u0448\u0442\u0435\u04a3\u0435 \u0442\u0435\u04a3\u0448\u0435\u043b\u0435\u0442\u0456\u043d \u0436\u043e\u049b.",
|
||||
"NoPluginsInstalledMessage": "\u041e\u0440\u043d\u0430\u0442\u044b\u043b\u0493\u0430\u043d \u043f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440 \u0436\u043e\u049b.",
|
||||
"BrowsePluginCatalogMessage": "\u049a\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u043f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440\u043c\u0435\u043d \u0442\u0430\u043d\u044b\u0441\u0443 \u04af\u0448\u0456\u043d \u043f\u043b\u0430\u0433\u0438\u043d \u0442\u0456\u0437\u0456\u043c\u0434\u0435\u043c\u0435\u0441\u0456\u043d \u0448\u043e\u043b\u044b\u04a3\u044b\u0437.",
|
||||
"HeaderNewApiKey": "\u0416\u0430\u04a3\u0430 API-\u043a\u0456\u043b\u0442",
|
||||
"LabelAppName": "\u049a\u043e\u043b\u0434\u0430\u043d\u0431\u0430 \u0430\u0442\u044b",
|
||||
"LabelAppNameExample": "\u041c\u044b\u0441\u0430\u043b\u044b: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Emby Server \u049b\u0430\u0440\u0430\u0439 \u049b\u0430\u0442\u044b\u043d\u0430\u0441\u0443 \u049b\u04b1\u049b\u044b\u049b\u044b\u0493\u044b \u04af\u0448\u0456\u043d \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u0493\u0430 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0443.",
|
||||
"MessageKeyEmailedTo": "\u041a\u0456\u043b\u0442 {0} \u04af\u0448\u0456\u043d \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u0434\u044b \u043f\u043e\u0448\u0442\u0430\u043c\u0435\u043d \u0436\u0456\u0431\u0435\u0440\u0456\u043b\u0434\u0456.",
|
||||
"MessageKeysLinked": "\u041a\u0456\u043b\u0442\u0442\u0435\u0440 \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u044b\u0440\u044b\u043b\u0434\u044b.",
|
||||
"HeaderConfirmation": "\u0420\u0430\u0441\u0442\u0430\u0443",
|
||||
|
@ -859,8 +866,8 @@
|
|||
"HeaderTopPlugins": "\u0422\u0430\u043d\u044b\u043c\u0430\u043b \u043f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440",
|
||||
"ButtonRecord": "\u0416\u0430\u0437\u0443",
|
||||
"ButtonOther": "\u0411\u0430\u0441\u049b\u0430",
|
||||
"HeaderSortBy": "\u0421\u04b1\u0440\u044b\u043f\u0442\u0430\u0443 \u0442\u04d9\u0441\u0456\u043b\u0456:",
|
||||
"HeaderSortOrder": "\u0421\u04b1\u0440\u044b\u043f\u0442\u0430\u0443 \u0440\u0435\u0442\u0456:",
|
||||
"HeaderSortBy": "\u0421\u04b1\u0440\u044b\u043f\u0442\u0430\u0443 \u0442\u04d9\u0441\u0456\u043b\u0456",
|
||||
"HeaderSortOrder": "\u0421\u04b1\u0440\u044b\u043f\u0442\u0430\u0443 \u0440\u0435\u0442\u0456",
|
||||
"OptionAscending": "\u0410\u0440\u0442\u0443\u044b \u0431\u043e\u0439\u044b\u043d\u0448\u0430",
|
||||
"OptionDescending": "\u041a\u0435\u043c\u0443\u0456 \u0431\u043e\u0439\u044b\u043d\u0448\u0430",
|
||||
"OptionNameSort": "\u0410\u0442\u044b",
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"ButtonLocalRefresh": "Local refresh",
|
||||
"ButtonAddMissingData": "Add missing data only",
|
||||
"ButtonFullRefresh": "Full refresh",
|
||||
"SettingsSaved": "\uc124\uc815\uc774 \uc800\uc7a5\ub418\uc5c8\uc2b5\ub2c8\ub2e4.",
|
||||
"AddUser": "\uc0ac\uc6a9\uc790 \ucd94\uac00",
|
||||
"Users": "\uc0ac\uc6a9\uc790",
|
||||
|
@ -30,6 +33,10 @@
|
|||
"NoPluginConfigurationMessage": "\uc774 \ud50c\ub7ec\uadf8\uc778\uc740 \uc124\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.",
|
||||
"NoPluginsInstalledMessage": "\uc124\uce58\ud55c \ud50c\ub7ec\uadf8\uc778\uc774 \uc5c6\uc2b5\ub2c8\ub2e4.",
|
||||
"BrowsePluginCatalogMessage": "\uc0ac\uc6a9 \uac00\ub2a5\ud55c \ud50c\ub7ec\uadf8\uc778\uc744 \ubcf4\ub824\uba74 \ud50c\ub7ec\uadf8\uc778 \uce74\ud0c8\ub85c\uadf8\ub97c \ud0d0\uc0c9\ud558\uc138\uc694.",
|
||||
"HeaderNewApiKey": "\uc0c8 API \ud0a4",
|
||||
"LabelAppName": "\uc571 \uc774\ub984",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Emby \uc11c\ubc84\uc640\uc758 \ud1b5\uc2e0\uc744 \uc704\ud574 \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uad8c\ud55c\uc744 \ubd80\uc5ec\ud569\ub2c8\ub2e4.",
|
||||
"MessageKeyEmailedTo": "\ud0a4\uac00 {0}\uc5d0\uac8c \uc774\uba54\uc77c\ub85c \uc804\uc1a1\ub418\uc5c8\uc2b5\ub2c8\ub2e4.",
|
||||
"MessageKeysLinked": "\ud0a4\uac00 \uc5f0\uacb0\ub418\uc5c8\uc2b5\ub2c8\ub2e4.",
|
||||
"HeaderConfirmation": "\ud655\uc778",
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"ButtonLocalRefresh": "Local refresh",
|
||||
"ButtonAddMissingData": "Add missing data only",
|
||||
"ButtonFullRefresh": "Full refresh",
|
||||
"SettingsSaved": "Seting Disimpan",
|
||||
"AddUser": "Tambah Pengguna",
|
||||
"Users": "Para Pengguna",
|
||||
|
@ -30,6 +33,10 @@
|
|||
"NoPluginConfigurationMessage": "This plugin has nothing to configure.",
|
||||
"NoPluginsInstalledMessage": "You have no plugins installed.",
|
||||
"BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"MessageKeyEmailedTo": "Key emailed to {0}.",
|
||||
"MessageKeysLinked": "Keys linked.",
|
||||
"HeaderConfirmation": "Confirmation",
|
||||
|
@ -859,8 +866,8 @@
|
|||
"HeaderTopPlugins": "Top Plugins",
|
||||
"ButtonRecord": "Record",
|
||||
"ButtonOther": "Other",
|
||||
"HeaderSortBy": "Sort By:",
|
||||
"HeaderSortOrder": "Sort Order:",
|
||||
"HeaderSortBy": "Sort By",
|
||||
"HeaderSortOrder": "Sort Order",
|
||||
"OptionAscending": "Ascending",
|
||||
"OptionDescending": "Descending",
|
||||
"OptionNameSort": "Name",
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"ButtonLocalRefresh": "Local refresh",
|
||||
"ButtonAddMissingData": "Add missing data only",
|
||||
"ButtonFullRefresh": "Full refresh",
|
||||
"SettingsSaved": "Innstillinger lagret",
|
||||
"AddUser": "Legg til bruker",
|
||||
"Users": "Brukere",
|
||||
|
@ -30,6 +33,10 @@
|
|||
"NoPluginConfigurationMessage": "Dette programtillegget har ingenting \u00e5 konfigurere.",
|
||||
"NoPluginsInstalledMessage": "Du har ingen programtillegg installert.",
|
||||
"BrowsePluginCatalogMessage": "Browse v\u00e5r plugin-katalog for \u00e5 se tilgjengelige plugins",
|
||||
"HeaderNewApiKey": "Ny Api N\u00f8kkel",
|
||||
"LabelAppName": "Applikasjonsnavn",
|
||||
"LabelAppNameExample": "Eksempel: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"MessageKeyEmailedTo": "N\u00f8kkel sendt til {0}",
|
||||
"MessageKeysLinked": "N\u00f8kler lenket.",
|
||||
"HeaderConfirmation": "Bekreftelse",
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"ButtonLocalRefresh": "Local refresh",
|
||||
"ButtonAddMissingData": "Add missing data only",
|
||||
"ButtonFullRefresh": "Full refresh",
|
||||
"SettingsSaved": "Instellingen opgeslagen.",
|
||||
"AddUser": "Gebruiker toevoegen",
|
||||
"Users": "Gebruikers",
|
||||
|
@ -30,6 +33,10 @@
|
|||
"NoPluginConfigurationMessage": "Deze Plug-in heeft niets in te stellen",
|
||||
"NoPluginsInstalledMessage": "U heeft geen Plugin ge\u00efnstalleerd",
|
||||
"BrowsePluginCatalogMessage": "Bekijk de Plugin catalogus voor beschikbare Plug-ins.",
|
||||
"HeaderNewApiKey": "Nieuwe Api sleutel",
|
||||
"LabelAppName": "Applicatie Naam",
|
||||
"LabelAppNameExample": "Voorbeeld: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Geef een applicatie toestemming om te communiceren met Emby Server.",
|
||||
"MessageKeyEmailedTo": "Sleutel gemaild naar {0}.",
|
||||
"MessageKeysLinked": "Sleutels gekoppeld.",
|
||||
"HeaderConfirmation": "Bevestiging",
|
||||
|
@ -859,8 +866,8 @@
|
|||
"HeaderTopPlugins": "Top Plugins",
|
||||
"ButtonRecord": "Opnemen",
|
||||
"ButtonOther": "Andere",
|
||||
"HeaderSortBy": "Sorteren op:",
|
||||
"HeaderSortOrder": "Sorteer volgorde:",
|
||||
"HeaderSortBy": "Sorteren op",
|
||||
"HeaderSortOrder": "Sorteer volgorde",
|
||||
"OptionAscending": "Oplopend",
|
||||
"OptionDescending": "Aflopend",
|
||||
"OptionNameSort": "Naam",
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"ButtonLocalRefresh": "Local refresh",
|
||||
"ButtonAddMissingData": "Add missing data only",
|
||||
"ButtonFullRefresh": "Full refresh",
|
||||
"SettingsSaved": "Ustawienia zapisane.",
|
||||
"AddUser": "Dodaj u\u017cytkownika",
|
||||
"Users": "U\u017cytkownicy",
|
||||
|
@ -30,6 +33,10 @@
|
|||
"NoPluginConfigurationMessage": "Ta wtyczka nie ma \u017cadnych ustawie\u0144.",
|
||||
"NoPluginsInstalledMessage": "Nie masz \u017cadnych wtyczek zainstalowanych.",
|
||||
"BrowsePluginCatalogMessage": "Przejrzyj nasz katalog wtyczek \u017ceby zobaczy\u0107 dost\u0119pne wtyczki.",
|
||||
"HeaderNewApiKey": "Nowy Klucz Api",
|
||||
"LabelAppName": "Nazwa Aplikacji",
|
||||
"LabelAppNameExample": "Przyk\u0142ad: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Przyznaj uprawnienia aplikacji do komunikacji z Serwerem Emby.",
|
||||
"MessageKeyEmailedTo": "Klucz wys\u0142any do {0}.",
|
||||
"MessageKeysLinked": "Klucz po\u0142\u0105czony.",
|
||||
"HeaderConfirmation": "Potwierdzenie",
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"ButtonLocalRefresh": "Local refresh",
|
||||
"ButtonAddMissingData": "Add missing data only",
|
||||
"ButtonFullRefresh": "Full refresh",
|
||||
"SettingsSaved": "Ajustes salvos.",
|
||||
"AddUser": "Adicionar Usu\u00e1rio",
|
||||
"Users": "Usu\u00e1rios",
|
||||
|
@ -30,6 +33,10 @@
|
|||
"NoPluginConfigurationMessage": "Este plugin n\u00e3o precisa ser configurado.",
|
||||
"NoPluginsInstalledMessage": "N\u00e3o existem plugins instalados.",
|
||||
"BrowsePluginCatalogMessage": "Explore nosso cat\u00e1logo de plugins para ver os dispon\u00edveis.",
|
||||
"HeaderNewApiKey": "Nova Chave da Api",
|
||||
"LabelAppName": "Nome do app",
|
||||
"LabelAppNameExample": "Exemplo: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Conceda permiss\u00e3o \u00e0 aplica\u00e7\u00e3o de se comunicar com o Servidor Emby.",
|
||||
"MessageKeyEmailedTo": "Chave enviada para {0}.",
|
||||
"MessageKeysLinked": "Chaves unificadas.",
|
||||
"HeaderConfirmation": "Confirma\u00e7\u00e3o",
|
||||
|
@ -648,7 +655,7 @@
|
|||
"ValueGuestStar": "Ator convidado",
|
||||
"MediaInfoSize": "Tamanho",
|
||||
"MediaInfoPath": "Caminho",
|
||||
"MediaInfoFile": "File",
|
||||
"MediaInfoFile": "Arquivo",
|
||||
"MediaInfoFormat": "Formato",
|
||||
"MediaInfoContainer": "Recipiente",
|
||||
"MediaInfoDefault": "Padr\u00e3o",
|
||||
|
@ -859,8 +866,8 @@
|
|||
"HeaderTopPlugins": "Plugins Mais Usados",
|
||||
"ButtonRecord": "Gravar",
|
||||
"ButtonOther": "Outro",
|
||||
"HeaderSortBy": "Ordenar Por:",
|
||||
"HeaderSortOrder": "Forma para Ordenar:",
|
||||
"HeaderSortBy": "Ordenar Por",
|
||||
"HeaderSortOrder": "Forma para Ordenar",
|
||||
"OptionAscending": "Crescente",
|
||||
"OptionDescending": "Decrescente",
|
||||
"OptionNameSort": "Nome",
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"ButtonLocalRefresh": "Local refresh",
|
||||
"ButtonAddMissingData": "Add missing data only",
|
||||
"ButtonFullRefresh": "Full refresh",
|
||||
"SettingsSaved": "Configura\u00e7\u00f5es guardadas.",
|
||||
"AddUser": "Adicionar Utilizador",
|
||||
"Users": "Utilizadores",
|
||||
|
@ -30,6 +33,10 @@
|
|||
"NoPluginConfigurationMessage": "Esta extens\u00e3o n\u00e3o \u00e9 configur\u00e1vel.",
|
||||
"NoPluginsInstalledMessage": "N\u00e3o tem extens\u00f5es instaladas.",
|
||||
"BrowsePluginCatalogMessage": "Navegue o nosso cat\u00e1logo de extens\u00f5es, para ver as extens\u00f5es dispon\u00edveis.",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"MessageKeyEmailedTo": "Key emailed to {0}.",
|
||||
"MessageKeysLinked": "Keys linked.",
|
||||
"HeaderConfirmation": "Confirmation",
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"ButtonLocalRefresh": "Local refresh",
|
||||
"ButtonAddMissingData": "Add missing data only",
|
||||
"ButtonFullRefresh": "Full refresh",
|
||||
"SettingsSaved": "Settings saved.",
|
||||
"AddUser": "Add User",
|
||||
"Users": "Users",
|
||||
|
@ -30,6 +33,10 @@
|
|||
"NoPluginConfigurationMessage": "This plugin has nothing to configure.",
|
||||
"NoPluginsInstalledMessage": "You have no plugins installed.",
|
||||
"BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"MessageKeyEmailedTo": "Key emailed to {0}.",
|
||||
"MessageKeysLinked": "Keys linked.",
|
||||
"HeaderConfirmation": "Confirmation",
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"ButtonLocalRefresh": "Local refresh",
|
||||
"ButtonAddMissingData": "Add missing data only",
|
||||
"ButtonFullRefresh": "Full refresh",
|
||||
"SettingsSaved": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u044b.",
|
||||
"AddUser": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f",
|
||||
"Users": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438",
|
||||
|
@ -30,6 +33,10 @@
|
|||
"NoPluginConfigurationMessage": "\u0412 \u0434\u0430\u043d\u043d\u043e\u043c \u043f\u043b\u0430\u0433\u0438\u043d\u0435 \u043d\u0435\u0442 \u043d\u0438\u043a\u0430\u043a\u0438\u0445 \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a.",
|
||||
"NoPluginsInstalledMessage": "\u041d\u0435 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e \u043d\u0438 \u043e\u0434\u043d\u043e\u0433\u043e \u043f\u043b\u0430\u0433\u0438\u043d\u0430.",
|
||||
"BrowsePluginCatalogMessage": "\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0438\u0442\u0435 \u043a\u0430\u0442\u0430\u043b\u043e\u0433 \u043f\u043b\u0430\u0433\u0438\u043d\u043e\u0432, \u0447\u0442\u043e\u0431\u044b \u043e\u0437\u043d\u0430\u043a\u043e\u043c\u0438\u0442\u044c\u0441\u044f \u0441 \u0438\u043c\u0435\u044e\u0449\u0438\u043c\u0438\u0441\u044f \u043f\u043b\u0430\u0433\u0438\u043d\u0430\u043c\u0438.",
|
||||
"HeaderNewApiKey": "\u041d\u043e\u0432\u044b\u0439 API-\u043a\u043b\u044e\u0447",
|
||||
"LabelAppName": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f",
|
||||
"LabelAppNameExample": "\u041f\u0440\u0438\u043c\u0435\u0440: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "\u041f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044e \u043f\u0440\u0430\u0432\u0430 \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u043a Emby Server.",
|
||||
"MessageKeyEmailedTo": "\u041a\u043b\u044e\u0447 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d \u043d\u0430 {0}.",
|
||||
"MessageKeysLinked": "\u041a\u043b\u044e\u0447\u0438 \u0441\u0432\u044f\u0437\u0430\u043d\u044b.",
|
||||
"HeaderConfirmation": "\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435",
|
||||
|
@ -859,8 +866,8 @@
|
|||
"HeaderTopPlugins": "\u041f\u043e\u043f\u0443\u043b\u044f\u0440\u043d\u044b\u0435 \u043f\u043b\u0430\u0433\u0438\u043d\u044b",
|
||||
"ButtonRecord": "\u0417\u0430\u043f\u0438\u0441\u0430\u0442\u044c",
|
||||
"ButtonOther": "\u0414\u0440\u0443\u0433\u043e\u0435",
|
||||
"HeaderSortBy": "\u0421\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0430 \u043f\u043e:",
|
||||
"HeaderSortOrder": "\u041f\u043e\u0440\u044f\u0434\u043e\u043a \u0441\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0438:",
|
||||
"HeaderSortBy": "\u0421\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0430 \u043f\u043e",
|
||||
"HeaderSortOrder": "\u041f\u043e\u0440\u044f\u0434\u043e\u043a \u0441\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0438",
|
||||
"OptionAscending": "\u041f\u043e \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u0430\u043d\u0438\u044e",
|
||||
"OptionDescending": "\u041f\u043e \u0443\u0431\u044b\u0432\u0430\u043d\u0438\u044e",
|
||||
"OptionNameSort": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435",
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"ButtonLocalRefresh": "Local refresh",
|
||||
"ButtonAddMissingData": "Add missing data only",
|
||||
"ButtonFullRefresh": "Full refresh",
|
||||
"SettingsSaved": "Settings saved.",
|
||||
"AddUser": "Add User",
|
||||
"Users": "Users",
|
||||
|
@ -30,6 +33,10 @@
|
|||
"NoPluginConfigurationMessage": "This plugin has nothing to configure.",
|
||||
"NoPluginsInstalledMessage": "You have no plugins installed.",
|
||||
"BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"MessageKeyEmailedTo": "Key emailed to {0}.",
|
||||
"MessageKeysLinked": "Keys linked.",
|
||||
"HeaderConfirmation": "Confirmation",
|
||||
|
@ -859,8 +866,8 @@
|
|||
"HeaderTopPlugins": "Top Plugins",
|
||||
"ButtonRecord": "Record",
|
||||
"ButtonOther": "Other",
|
||||
"HeaderSortBy": "Sort By:",
|
||||
"HeaderSortOrder": "Sort Order:",
|
||||
"HeaderSortBy": "Sort By",
|
||||
"HeaderSortOrder": "Sort Order",
|
||||
"OptionAscending": "Ascending",
|
||||
"OptionDescending": "Descending",
|
||||
"OptionNameSort": "Name",
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"ButtonLocalRefresh": "Local refresh",
|
||||
"ButtonAddMissingData": "Add missing data only",
|
||||
"ButtonFullRefresh": "Full refresh",
|
||||
"SettingsSaved": "Inst\u00e4llningarna sparade.",
|
||||
"AddUser": "Skapa anv\u00e4ndare",
|
||||
"Users": "Anv\u00e4ndare",
|
||||
|
@ -30,6 +33,10 @@
|
|||
"NoPluginConfigurationMessage": "Detta till\u00e4gg har inga inst\u00e4llningar.",
|
||||
"NoPluginsInstalledMessage": "Du har inte installerat n\u00e5gra till\u00e4gg.",
|
||||
"BrowsePluginCatalogMessage": "Bes\u00f6k katalogen f\u00f6r att se tillg\u00e4ngliga till\u00e4gg.",
|
||||
"HeaderNewApiKey": "Ny API-nyckel",
|
||||
"LabelAppName": "Appens namn",
|
||||
"LabelAppNameExample": "Exempel: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"MessageKeyEmailedTo": "Koden har epostats till {0}.",
|
||||
"MessageKeysLinked": "Koderna har kopplats.",
|
||||
"HeaderConfirmation": "Bekr\u00e4ftelse",
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"ButtonLocalRefresh": "Local refresh",
|
||||
"ButtonAddMissingData": "Add missing data only",
|
||||
"ButtonFullRefresh": "Full refresh",
|
||||
"SettingsSaved": "Ayarlar Kaydedildi",
|
||||
"AddUser": "Kullan\u0131c\u0131 Ekle",
|
||||
"Users": "Kullan\u0131c\u0131lar",
|
||||
|
@ -30,6 +33,10 @@
|
|||
"NoPluginConfigurationMessage": "Eklenti \u0130cin Ayar Yok",
|
||||
"NoPluginsInstalledMessage": "Eklentiler Y\u00fckl\u00fc De\u011fil",
|
||||
"BrowsePluginCatalogMessage": "Mevcut Eklentileri G\u00f6rebilmek \u0130\u00e7in Eklenti Katologuna G\u00f6z At\u0131n.",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"MessageKeyEmailedTo": "Key emailed to {0}.",
|
||||
"MessageKeysLinked": "Keys linked.",
|
||||
"HeaderConfirmation": "Confirmation",
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"ButtonLocalRefresh": "Local refresh",
|
||||
"ButtonAddMissingData": "Add missing data only",
|
||||
"ButtonFullRefresh": "Full refresh",
|
||||
"SettingsSaved": "Settings saved.",
|
||||
"AddUser": "Add User",
|
||||
"Users": "Users",
|
||||
|
@ -30,6 +33,10 @@
|
|||
"NoPluginConfigurationMessage": "This plugin has nothing to configure.",
|
||||
"NoPluginsInstalledMessage": "You have no plugins installed.",
|
||||
"BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"MessageKeyEmailedTo": "Key emailed to {0}.",
|
||||
"MessageKeysLinked": "Keys linked.",
|
||||
"HeaderConfirmation": "Confirmation",
|
||||
|
@ -859,8 +866,8 @@
|
|||
"HeaderTopPlugins": "Top Plugins",
|
||||
"ButtonRecord": "Record",
|
||||
"ButtonOther": "Other",
|
||||
"HeaderSortBy": "Sort By:",
|
||||
"HeaderSortOrder": "Sort Order:",
|
||||
"HeaderSortBy": "Sort By",
|
||||
"HeaderSortOrder": "Sort Order",
|
||||
"OptionAscending": "Ascending",
|
||||
"OptionDescending": "Descending",
|
||||
"OptionNameSort": "\u0406\u043c\u2019\u044f",
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"ButtonLocalRefresh": "Local refresh",
|
||||
"ButtonAddMissingData": "Add missing data only",
|
||||
"ButtonFullRefresh": "Full refresh",
|
||||
"SettingsSaved": "L\u01b0u c\u00e1c c\u00e0i \u0111\u1eb7t.",
|
||||
"AddUser": "Th\u00eam ng\u01b0\u1eddi d\u00f9ng",
|
||||
"Users": "Ng\u01b0\u1eddi d\u00f9ng",
|
||||
|
@ -30,6 +33,10 @@
|
|||
"NoPluginConfigurationMessage": "Plugin n\u00e0y kh\u00f4ng c\u00f3 g\u00ec \u0111\u1ec3 c\u1ea5u h\u00ecnh.",
|
||||
"NoPluginsInstalledMessage": "B\u1ea1n \u0111\u00e3 ch\u01b0a c\u00e0i \u0111\u1eb7t c\u00e1c plugin.",
|
||||
"BrowsePluginCatalogMessage": "Duy\u1ec7t qua c\u00e1c danh m\u1ee5c plugin c\u1ee7a ch\u00fang t\u00f4i \u0111\u1ec3 xem c\u00e1c plugin c\u00f3 s\u1eb5n.",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"MessageKeyEmailedTo": "Key emailed to {0}.",
|
||||
"MessageKeysLinked": "Keys linked.",
|
||||
"HeaderConfirmation": "Confirmation",
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"ButtonLocalRefresh": "Local refresh",
|
||||
"ButtonAddMissingData": "Add missing data only",
|
||||
"ButtonFullRefresh": "Full refresh",
|
||||
"SettingsSaved": "\u8bbe\u7f6e\u5df2\u4fdd\u5b58",
|
||||
"AddUser": "\u6dfb\u52a0\u7528\u6237",
|
||||
"Users": "\u7528\u6237",
|
||||
|
@ -30,6 +33,10 @@
|
|||
"NoPluginConfigurationMessage": "\u6b64\u63d2\u4ef6\u6ca1\u6709\u914d\u7f6e\u9009\u9879\u3002",
|
||||
"NoPluginsInstalledMessage": "\u4f60\u6ca1\u6709\u5b89\u88c5\u63d2\u4ef6\u3002",
|
||||
"BrowsePluginCatalogMessage": "\u6d4f\u89c8\u6211\u4eec\u7684\u63d2\u4ef6\u76ee\u5f55\u6765\u67e5\u770b\u73b0\u6709\u63d2\u4ef6\u3002",
|
||||
"HeaderNewApiKey": "\u65b0Api \u5bc6\u94a5",
|
||||
"LabelAppName": "APP\u540d\u79f0",
|
||||
"LabelAppNameExample": "\u4f8b\u5982\uff1a Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"MessageKeyEmailedTo": "\u5e8f\u53f7\u901a\u8fc7\u7535\u5b50\u90ae\u4ef6\u53d1\u9001\u7ed9 {0}.",
|
||||
"MessageKeysLinked": "\u5e8f\u53f7\u5df2\u5173\u8054",
|
||||
"HeaderConfirmation": "\u786e\u8ba4",
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"ButtonLocalRefresh": "Local refresh",
|
||||
"ButtonAddMissingData": "Add missing data only",
|
||||
"ButtonFullRefresh": "Full refresh",
|
||||
"SettingsSaved": "Settings saved.",
|
||||
"AddUser": "Add User",
|
||||
"Users": "\u7528\u6236",
|
||||
|
@ -30,6 +33,10 @@
|
|||
"NoPluginConfigurationMessage": "This plugin has nothing to configure.",
|
||||
"NoPluginsInstalledMessage": "You have no plugins installed.",
|
||||
"BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"MessageKeyEmailedTo": "Key emailed to {0}.",
|
||||
"MessageKeysLinked": "Keys linked.",
|
||||
"HeaderConfirmation": "Confirmation",
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"ButtonLocalRefresh": "Local refresh",
|
||||
"ButtonAddMissingData": "Add missing data only",
|
||||
"ButtonFullRefresh": "Full refresh",
|
||||
"SettingsSaved": "\u8a2d\u7f6e\u5df2\u4fdd\u5b58\u3002",
|
||||
"AddUser": "\u6dfb\u52a0\u7528\u6236",
|
||||
"Users": "\u7528\u6236",
|
||||
|
@ -30,6 +33,10 @@
|
|||
"NoPluginConfigurationMessage": "\u9019\u500b\u63d2\u4ef6\u6c92\u6709\u8a2d\u5b9a\u9078\u9805\u3002",
|
||||
"NoPluginsInstalledMessage": "\u4f60\u6c92\u6709\u5b89\u88dd\u63d2\u4ef6\u3002",
|
||||
"BrowsePluginCatalogMessage": "\u700f\u89bd\u6211\u5011\u7684\u63d2\u4ef6\u76ee\u9304\u4f86\u67e5\u770b\u53ef\u7528\u7684\u63d2\u4ef6\u3002",
|
||||
"HeaderNewApiKey": "New Api Key",
|
||||
"LabelAppName": "App name",
|
||||
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
|
||||
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
|
||||
"MessageKeyEmailedTo": "Key emailed to {0}.",
|
||||
"MessageKeysLinked": "Keys linked.",
|
||||
"HeaderConfirmation": "Confirmation",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue