mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update identifier
This commit is contained in:
parent
41eeda7bab
commit
bb142cf26e
46 changed files with 879 additions and 130 deletions
|
@ -14,12 +14,12 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {},
|
"devDependencies": {},
|
||||||
"ignore": [],
|
"ignore": [],
|
||||||
"version": "1.4.135",
|
"version": "1.4.137",
|
||||||
"_release": "1.4.135",
|
"_release": "1.4.137",
|
||||||
"_resolution": {
|
"_resolution": {
|
||||||
"type": "version",
|
"type": "version",
|
||||||
"tag": "1.4.135",
|
"tag": "1.4.137",
|
||||||
"commit": "769b3fed535db71b82c65e113ac39505078a2a82"
|
"commit": "db46115f2b51107bb01be383bb914d392a4a91f2"
|
||||||
},
|
},
|
||||||
"_source": "https://github.com/MediaBrowser/emby-webcomponents.git",
|
"_source": "https://github.com/MediaBrowser/emby-webcomponents.git",
|
||||||
"_target": "^1.2.0",
|
"_target": "^1.2.0",
|
||||||
|
|
|
@ -369,7 +369,7 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'mediaInfo
|
||||||
|
|
||||||
if (showMoreButton) {
|
if (showMoreButton) {
|
||||||
html += '<div class="listItemsMoreButtonContainer">';
|
html += '<div class="listItemsMoreButtonContainer">';
|
||||||
html += '<button is="emby-button" class="listItemsMoreButton raised" data-parentid="' + options.parentId + '" data-indextype="Genres" data-indexvalue="' + item.Id + '">' + globalize.translate('core#More') + '</button>';
|
html += '<button is="emby-button" class="listItemsMoreButton raised" data-parentid="' + options.parentId + '" data-indextype="Genres" data-indexvalue="' + item.Id + '">' + globalize.translate('sharedcomponents#More') + '</button>';
|
||||||
html += '</div>';
|
html += '</div>';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -383,13 +383,13 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'mediaInfo
|
||||||
function getDisplayDateText(date) {
|
function getDisplayDateText(date) {
|
||||||
|
|
||||||
var weekday = [];
|
var weekday = [];
|
||||||
weekday[0] = globalize.translate('core#OptionSunday');
|
weekday[0] = globalize.translate('sharedcomponents#Sunday');
|
||||||
weekday[1] = globalize.translate('core#OptionMonday');
|
weekday[1] = globalize.translate('sharedcomponents#Monday');
|
||||||
weekday[2] = globalize.translate('core#OptionTuesday');
|
weekday[2] = globalize.translate('sharedcomponents#Tuesday');
|
||||||
weekday[3] = globalize.translate('core#OptionWednesday');
|
weekday[3] = globalize.translate('sharedcomponents#Wednesday');
|
||||||
weekday[4] = globalize.translate('core#OptionThursday');
|
weekday[4] = globalize.translate('sharedcomponents#Thursday');
|
||||||
weekday[5] = globalize.translate('core#OptionFriday');
|
weekday[5] = globalize.translate('sharedcomponents#Friday');
|
||||||
weekday[6] = globalize.translate('core#OptionSaturday');
|
weekday[6] = globalize.translate('sharedcomponents#Saturday');
|
||||||
|
|
||||||
var day = weekday[date.getDay()];
|
var day = weekday[date.getDay()];
|
||||||
date = date.toLocaleDateString();
|
date = date.toLocaleDateString();
|
||||||
|
@ -744,8 +744,8 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'mediaInfo
|
||||||
|
|
||||||
if (item.SongCount) {
|
if (item.SongCount) {
|
||||||
songLine = item.SongCount == 1 ?
|
songLine = item.SongCount == 1 ?
|
||||||
globalize.translate('ValueOneSong') :
|
globalize.translate('sharedcomponents#ValueOneSong') :
|
||||||
globalize.translate('ValueSongCount', item.SongCount);
|
globalize.translate('sharedcomponents#ValueSongCount', item.SongCount);
|
||||||
}
|
}
|
||||||
|
|
||||||
lines.push(songLine);
|
lines.push(songLine);
|
||||||
|
@ -815,7 +815,7 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'mediaInfo
|
||||||
|
|
||||||
if (item.Status == "Continuing") {
|
if (item.Status == "Continuing") {
|
||||||
|
|
||||||
lines.push(globalize.translate('ValueSeriesYearToPresent', item.ProductionYear || ''));
|
lines.push(globalize.translate('sharedcomponents#SeriesYearToPresent', item.ProductionYear || ''));
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
lines.push(item.ProductionYear || '');
|
lines.push(item.ProductionYear || '');
|
||||||
|
@ -901,14 +901,6 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'mediaInfo
|
||||||
|
|
||||||
counts.push(childText);
|
counts.push(childText);
|
||||||
}
|
}
|
||||||
if (item.TrailerCount) {
|
|
||||||
|
|
||||||
childText = item.TrailerCount == 1 ?
|
|
||||||
globalize.translate('ValueOneTrailer') :
|
|
||||||
globalize.translate('ValueTrailerCount', item.TrailerCount);
|
|
||||||
|
|
||||||
counts.push(childText);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (item.SeriesCount) {
|
if (item.SeriesCount) {
|
||||||
|
|
||||||
|
@ -940,8 +932,8 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'mediaInfo
|
||||||
if (item.GameCount) {
|
if (item.GameCount) {
|
||||||
|
|
||||||
childText = item.GameCount == 1 ?
|
childText = item.GameCount == 1 ?
|
||||||
globalize.translate('ValueOneGame') :
|
globalize.translate('sharedcomponents#ValueOneGame') :
|
||||||
globalize.translate('ValueGameCount', item.GameCount);
|
globalize.translate('sharedcomponents#ValueGameCount', item.GameCount);
|
||||||
|
|
||||||
counts.push(childText);
|
counts.push(childText);
|
||||||
}
|
}
|
||||||
|
@ -950,24 +942,24 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'mediaInfo
|
||||||
if (item.AlbumCount) {
|
if (item.AlbumCount) {
|
||||||
|
|
||||||
childText = item.AlbumCount == 1 ?
|
childText = item.AlbumCount == 1 ?
|
||||||
globalize.translate('ValueOneAlbum') :
|
globalize.translate('sharedcomponents#ValueOneAlbum') :
|
||||||
globalize.translate('ValueAlbumCount', item.AlbumCount);
|
globalize.translate('sharedcomponents#ValueAlbumCount', item.AlbumCount);
|
||||||
|
|
||||||
counts.push(childText);
|
counts.push(childText);
|
||||||
}
|
}
|
||||||
if (item.SongCount) {
|
if (item.SongCount) {
|
||||||
|
|
||||||
childText = item.SongCount == 1 ?
|
childText = item.SongCount == 1 ?
|
||||||
globalize.translate('ValueOneSong') :
|
globalize.translate('sharedcomponents#ValueOneSong') :
|
||||||
globalize.translate('ValueSongCount', item.SongCount);
|
globalize.translate('sharedcomponents#ValueSongCount', item.SongCount);
|
||||||
|
|
||||||
counts.push(childText);
|
counts.push(childText);
|
||||||
}
|
}
|
||||||
if (item.MusicVideoCount) {
|
if (item.MusicVideoCount) {
|
||||||
|
|
||||||
childText = item.MusicVideoCount == 1 ?
|
childText = item.MusicVideoCount == 1 ?
|
||||||
globalize.translate('ValueOneMusicVideo') :
|
globalize.translate('sharedcomponents#ValueOneMusicVideo') :
|
||||||
globalize.translate('ValueMusicVideoCount', item.MusicVideoCount);
|
globalize.translate('sharedcomponents#ValueMusicVideoCount', item.MusicVideoCount);
|
||||||
|
|
||||||
counts.push(childText);
|
counts.push(childText);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
define(['dialogHelper', 'loading', 'cardBuilder', 'connectionManager', 'require', 'globalize', 'emby-input', 'emby-checkbox', 'paper-icon-button-light'], function (dialogHelper, loading, cardBuilder, connectionManager, require, globalize) {
|
define(['dialogHelper', 'loading', 'cardBuilder', 'connectionManager', 'require', 'globalize', 'scrollHelper', 'layoutManager', 'focusManager', 'emby-input', 'emby-checkbox', 'paper-icon-button-light', 'css!./../formdialog', 'material-icons', 'cardStyle'], function (dialogHelper, loading, cardBuilder, connectionManager, require, globalize, scrollHelper, layoutManager, focusManager) {
|
||||||
|
|
||||||
var currentItem;
|
var currentItem;
|
||||||
var currentItemType;
|
var currentItemType;
|
||||||
|
@ -49,7 +49,7 @@
|
||||||
|
|
||||||
if (!hasId && !lookupInfo.Name) {
|
if (!hasId && !lookupInfo.Name) {
|
||||||
require(['toast'], function (toast) {
|
require(['toast'], function (toast) {
|
||||||
toast(globalize.translate('MessagePleaseEnterNameOrId'));
|
toast(globalize.translate('sharedcomponents#PleaseEnterNameOrId'));
|
||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -83,8 +83,10 @@
|
||||||
|
|
||||||
function showIdentificationSearchResults(page, results) {
|
function showIdentificationSearchResults(page, results) {
|
||||||
|
|
||||||
|
var identificationSearchResults = page.querySelector('.identificationSearchResults');
|
||||||
|
|
||||||
page.querySelector('.popupIdentifyForm').classList.add('hide');
|
page.querySelector('.popupIdentifyForm').classList.add('hide');
|
||||||
page.querySelector('.identificationSearchResults').classList.remove('hide');
|
identificationSearchResults.classList.remove('hide');
|
||||||
page.querySelector('.identifyOptionsForm').classList.add('hide');
|
page.querySelector('.identifyOptionsForm').classList.add('hide');
|
||||||
|
|
||||||
var html = '';
|
var html = '';
|
||||||
|
@ -117,6 +119,8 @@
|
||||||
|
|
||||||
searchImages[i].addEventListener('click', onSearchImageClick);
|
searchImages[i].addEventListener('click', onSearchImageClick);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
focusManager.autoFocus(identificationSearchResults);
|
||||||
}
|
}
|
||||||
|
|
||||||
function finishFindNewDialog(dlg, identifyResult) {
|
function finishFindNewDialog(dlg, identifyResult) {
|
||||||
|
@ -129,9 +133,11 @@
|
||||||
|
|
||||||
function showIdentifyOptions(page, identifyResult) {
|
function showIdentifyOptions(page, identifyResult) {
|
||||||
|
|
||||||
|
var identifyOptionsForm = page.querySelector('.identifyOptionsForm');
|
||||||
|
|
||||||
page.querySelector('.popupIdentifyForm').classList.add('hide');
|
page.querySelector('.popupIdentifyForm').classList.add('hide');
|
||||||
page.querySelector('.identificationSearchResults').classList.add('hide');
|
page.querySelector('.identificationSearchResults').classList.add('hide');
|
||||||
page.querySelector('.identifyOptionsForm').classList.remove('hide');
|
identifyOptionsForm.classList.remove('hide');
|
||||||
page.querySelector('#chkIdentifyReplaceImages').checked = true;
|
page.querySelector('#chkIdentifyReplaceImages').checked = true;
|
||||||
|
|
||||||
currentSearchResult = identifyResult;
|
currentSearchResult = identifyResult;
|
||||||
|
@ -152,10 +158,12 @@
|
||||||
if (identifyResult.ImageUrl) {
|
if (identifyResult.ImageUrl) {
|
||||||
var displayUrl = getSearchImageDisplayUrl(identifyResult.ImageUrl, identifyResult.SearchProviderName);
|
var displayUrl = getSearchImageDisplayUrl(identifyResult.ImageUrl, identifyResult.SearchProviderName);
|
||||||
|
|
||||||
resultHtml = '<img src="' + displayUrl + '" style="max-height:160px;" /><br/>' + resultHtml;
|
resultHtml = '<div style="display:flex;align-items:center;"><img src="' + displayUrl + '" style="max-height:240px;" /><div style="margin-left:1em;">' + resultHtml + '</div>';
|
||||||
}
|
}
|
||||||
|
|
||||||
page.querySelector('.selectedSearchResult').innerHTML = resultHtml;
|
page.querySelector('.selectedSearchResult').innerHTML = resultHtml;
|
||||||
|
|
||||||
|
focusManager.focus(identifyOptionsForm.querySelector('.btnSubmit'));
|
||||||
}
|
}
|
||||||
|
|
||||||
function getSearchResultHtml(result, index) {
|
function getSearchResultHtml(result, index) {
|
||||||
|
@ -173,12 +181,12 @@
|
||||||
cssClass += " portraitCard";
|
cssClass += " portraitCard";
|
||||||
}
|
}
|
||||||
|
|
||||||
html += '<div class="' + cssClass + '">';
|
html += '<button type="button" class="' + cssClass + '">';
|
||||||
html += '<div class="cardBox">';
|
html += '<div class="cardBox">';
|
||||||
html += '<div class="cardScalable">';
|
html += '<div class="cardScalable">';
|
||||||
html += '<div class="cardPadder"></div>';
|
html += '<div class="cardPadder"></div>';
|
||||||
|
|
||||||
html += '<a class="cardContent searchImage" href="#" data-index="' + index + '">';
|
html += '<div class="cardContent searchImage" data-index="' + index + '">';
|
||||||
|
|
||||||
if (result.ImageUrl) {
|
if (result.ImageUrl) {
|
||||||
var displayUrl = getSearchImageDisplayUrl(result.ImageUrl, result.SearchProviderName);
|
var displayUrl = getSearchImageDisplayUrl(result.ImageUrl, result.SearchProviderName);
|
||||||
|
@ -188,7 +196,7 @@
|
||||||
|
|
||||||
html += '<div class="cardImageContainer coveredImage ' + cardBuilder.getDefaultColorClass(result.Name) + '"><div class="cardText cardCenteredText">' + result.Name + '</div></div>';
|
html += '<div class="cardImageContainer coveredImage ' + cardBuilder.getDefaultColorClass(result.Name) + '"><div class="cardText cardCenteredText">' + result.Name + '</div></div>';
|
||||||
}
|
}
|
||||||
html += '</a>';
|
html += '</div>';
|
||||||
html += '</div>';
|
html += '</div>';
|
||||||
|
|
||||||
html += '<div class="cardFooter outerCardFooter">';
|
html += '<div class="cardFooter outerCardFooter">';
|
||||||
|
@ -205,7 +213,7 @@
|
||||||
}
|
}
|
||||||
html += '</div>';
|
html += '</div>';
|
||||||
html += '</div>';
|
html += '</div>';
|
||||||
html += '</div>';
|
html += '</button>';
|
||||||
return html;
|
return html;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -248,7 +256,9 @@
|
||||||
|
|
||||||
function showIdentificationForm(page, item) {
|
function showIdentificationForm(page, item) {
|
||||||
|
|
||||||
ApiClient.getJSON(ApiClient.getUrl("Items/" + item.Id + "/ExternalIdInfos")).then(function (idList) {
|
var apiClient = getApiClient();
|
||||||
|
|
||||||
|
apiClient.getJSON(apiClient.getUrl("Items/" + item.Id + "/ExternalIdInfos")).then(function (idList) {
|
||||||
|
|
||||||
var html = '';
|
var html = '';
|
||||||
|
|
||||||
|
@ -262,7 +272,7 @@
|
||||||
|
|
||||||
html += '<div class="inputContainer">';
|
html += '<div class="inputContainer">';
|
||||||
|
|
||||||
var idLabel = globalize.translate('LabelDynamicExternalId').replace('{0}', idInfo.Name);
|
var idLabel = globalize.translate('sharedcomponents#LabelDynamicExternalId').replace('{0}', idInfo.Name);
|
||||||
|
|
||||||
var value = providerIds[idInfo.Key] || '';
|
var value = providerIds[idInfo.Key] || '';
|
||||||
|
|
||||||
|
@ -285,7 +295,7 @@
|
||||||
|
|
||||||
page.querySelector('.identifyProviderIds').innerHTML = html;
|
page.querySelector('.identifyProviderIds').innerHTML = html;
|
||||||
|
|
||||||
page.querySelector('.dialogHeaderTitle').innerHTML = globalize.translate('HeaderIdentify');
|
page.querySelector('.dialogHeaderTitle').innerHTML = globalize.translate('sharedcomponents#Identify');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -302,16 +312,23 @@
|
||||||
currentItem = item;
|
currentItem = item;
|
||||||
currentItemType = currentItem.Type;
|
currentItemType = currentItem.Type;
|
||||||
|
|
||||||
var dlg = dialogHelper.createDialog({
|
var dialogOptions = {
|
||||||
size: 'medium',
|
size: 'medium',
|
||||||
removeOnClose: true
|
removeOnClose: true,
|
||||||
});
|
scrollY: false
|
||||||
|
};
|
||||||
|
|
||||||
dlg.classList.add('ui-body-b');
|
if (layoutManager.tv) {
|
||||||
dlg.classList.add('background-theme-b');
|
dialogOptions.size = 'fullscreen';
|
||||||
|
}
|
||||||
|
|
||||||
|
var dlg = dialogHelper.createDialog(dialogOptions);
|
||||||
|
|
||||||
|
dlg.classList.add('formDialog');
|
||||||
|
dlg.classList.add('recordingDialog');
|
||||||
|
|
||||||
var html = '';
|
var html = '';
|
||||||
html += globalize.translateDocument(template);
|
html += globalize.translateDocument(template, 'sharedcomponents');
|
||||||
|
|
||||||
dlg.innerHTML = html;
|
dlg.innerHTML = html;
|
||||||
document.body.appendChild(dlg);
|
document.body.appendChild(dlg);
|
||||||
|
@ -319,6 +336,10 @@
|
||||||
// Has to be assigned a z-index after the call to .open()
|
// Has to be assigned a z-index after the call to .open()
|
||||||
dlg.addEventListener('close', onDialogClosed);
|
dlg.addEventListener('close', onDialogClosed);
|
||||||
|
|
||||||
|
if (layoutManager.tv) {
|
||||||
|
scrollHelper.centerFocus.on(dlg.querySelector('.dialogContent'), false);
|
||||||
|
}
|
||||||
|
|
||||||
dialogHelper.open(dlg);
|
dialogHelper.open(dlg);
|
||||||
|
|
||||||
dlg.querySelector('.popupIdentifyForm').addEventListener('submit', function (e) {
|
dlg.querySelector('.popupIdentifyForm').addEventListener('submit', function (e) {
|
||||||
|
@ -365,19 +386,31 @@
|
||||||
|
|
||||||
require(['text!./itemidentifier.template.html'], function (template) {
|
require(['text!./itemidentifier.template.html'], function (template) {
|
||||||
|
|
||||||
var dlg = dialogHelper.createDialog({
|
var dialogOptions = {
|
||||||
size: 'medium'
|
size: 'medium',
|
||||||
});
|
removeOnClose: true,
|
||||||
|
scrollY: false
|
||||||
|
};
|
||||||
|
|
||||||
dlg.classList.add('ui-body-a');
|
if (layoutManager.tv) {
|
||||||
dlg.classList.add('background-theme-a');
|
dialogOptions.size = 'fullscreen';
|
||||||
|
}
|
||||||
|
|
||||||
|
var dlg = dialogHelper.createDialog(dialogOptions);
|
||||||
|
|
||||||
|
dlg.classList.add('formDialog');
|
||||||
|
dlg.classList.add('recordingDialog');
|
||||||
|
|
||||||
var html = '';
|
var html = '';
|
||||||
html += globalize.translateDocument(template);
|
html += globalize.translateDocument(template, 'sharedcomponents');
|
||||||
|
|
||||||
dlg.innerHTML = html;
|
dlg.innerHTML = html;
|
||||||
document.body.appendChild(dlg);
|
document.body.appendChild(dlg);
|
||||||
|
|
||||||
|
if (layoutManager.tv) {
|
||||||
|
scrollHelper.centerFocus.on(dlg.querySelector('.dialogContent'), false);
|
||||||
|
}
|
||||||
|
|
||||||
dialogHelper.open(dlg);
|
dialogHelper.open(dlg);
|
||||||
|
|
||||||
dlg.querySelector('.btnCancel').addEventListener('click', function (e) {
|
dlg.querySelector('.btnCancel').addEventListener('click', function (e) {
|
||||||
|
@ -421,7 +454,7 @@
|
||||||
dlg.querySelector('#txtLookupYear').value = itemYear;
|
dlg.querySelector('#txtLookupYear').value = itemYear;
|
||||||
}
|
}
|
||||||
|
|
||||||
dlg.querySelector('.dialogHeaderTitle').innerHTML = globalize.translate('HeaderSearch');
|
dlg.querySelector('.dialogHeaderTitle').innerHTML = globalize.translate('sharedcomponents#Search');
|
||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
|
|
@ -1,11 +1,12 @@
|
||||||
<div class="dialogHeader" style="margin:0 0 2em;">
|
<div class="dialogHeader">
|
||||||
<button is="paper-icon-button-light" class="btnCancel autoSize" tabindex="-1">
|
<button is="paper-icon-button-light" class="btnCancel autoSize" tabindex="-1"><i class="md-icon"></i></button>
|
||||||
<i class="md-icon"></i>
|
|
||||||
</button>
|
|
||||||
<div class="dialogHeaderTitle">
|
<div class="dialogHeaderTitle">
|
||||||
|
${Identify}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="dialogContent smoothScrollY">
|
||||||
|
<div class="dialogContentInner centeredContent">
|
||||||
<form class="popupIdentifyForm" style="margin:auto;">
|
<form class="popupIdentifyForm" style="margin:auto;">
|
||||||
|
|
||||||
<p>${HeaderIdentifyItemHelp}</p>
|
<p>${HeaderIdentifyItemHelp}</p>
|
||||||
|
@ -22,7 +23,7 @@
|
||||||
<p>
|
<p>
|
||||||
<button is="emby-button" type="submit" class="raised submit block">
|
<button is="emby-button" type="submit" class="raised submit block">
|
||||||
<i class="md-icon">search</i>
|
<i class="md-icon">search</i>
|
||||||
<span>${ButtonSearch}</span>
|
<span>${Search}</span>
|
||||||
</button>
|
</button>
|
||||||
</p>
|
</p>
|
||||||
</form>
|
</form>
|
||||||
|
@ -33,14 +34,17 @@
|
||||||
|
|
||||||
<form class="identifyOptionsForm hide" style="margin:auto;">
|
<form class="identifyOptionsForm hide" style="margin:auto;">
|
||||||
|
|
||||||
|
<br />
|
||||||
<div class="selectedSearchResult"></div>
|
<div class="selectedSearchResult"></div>
|
||||||
<br />
|
<br />
|
||||||
<label class="checkboxContainer">
|
<label class="checkboxContainer">
|
||||||
<input type="checkbox" is="emby-checkbox" id="chkIdentifyReplaceImages" />
|
<input type="checkbox" is="emby-checkbox" id="chkIdentifyReplaceImages" />
|
||||||
<span>${OptionReplaceExistingImages}</span>
|
<span>${ReplaceExistingImages}</span>
|
||||||
</label>
|
</label>
|
||||||
<button is="emby-button" type="submit" class="raised submit block">
|
<button is="emby-button" type="submit" class="raised submit block btnSubmit">
|
||||||
<i class="md-icon">check</i>
|
<i class="md-icon">check</i>
|
||||||
<span>${ButtonSubmit}</span>
|
<span>${ButtonOk}</span>
|
||||||
</button>
|
</button>
|
||||||
</form>
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
|
@ -3,6 +3,24 @@
|
||||||
"InstallingPackage": "Installing {0}",
|
"InstallingPackage": "Installing {0}",
|
||||||
"PackageInstallFailed": "{0} installation failed.",
|
"PackageInstallFailed": "{0} installation failed.",
|
||||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "Add",
|
"Add": "Add",
|
||||||
|
|
|
@ -3,6 +3,24 @@
|
||||||
"InstallingPackage": "Installing {0}",
|
"InstallingPackage": "Installing {0}",
|
||||||
"PackageInstallFailed": "{0} installation failed.",
|
"PackageInstallFailed": "{0} installation failed.",
|
||||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "\u0414\u043e\u0431\u0430\u0432\u0438",
|
"Add": "\u0414\u043e\u0431\u0430\u0432\u0438",
|
||||||
|
|
|
@ -3,6 +3,24 @@
|
||||||
"InstallingPackage": "Installing {0}",
|
"InstallingPackage": "Installing {0}",
|
||||||
"PackageInstallFailed": "{0} installation failed.",
|
"PackageInstallFailed": "{0} installation failed.",
|
||||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "Afegeix",
|
"Add": "Afegeix",
|
||||||
|
|
|
@ -3,6 +3,24 @@
|
||||||
"InstallingPackage": "Installing {0}",
|
"InstallingPackage": "Installing {0}",
|
||||||
"PackageInstallFailed": "{0} installation failed.",
|
"PackageInstallFailed": "{0} installation failed.",
|
||||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "P\u0159idat",
|
"Add": "P\u0159idat",
|
||||||
|
|
|
@ -3,6 +3,24 @@
|
||||||
"InstallingPackage": "Installing {0}",
|
"InstallingPackage": "Installing {0}",
|
||||||
"PackageInstallFailed": "{0} installation failed.",
|
"PackageInstallFailed": "{0} installation failed.",
|
||||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Del",
|
"Share": "Del",
|
||||||
"Add": "Tilf\u00f8j",
|
"Add": "Tilf\u00f8j",
|
||||||
|
|
|
@ -3,6 +3,24 @@
|
||||||
"InstallingPackage": "Installing {0}",
|
"InstallingPackage": "Installing {0}",
|
||||||
"PackageInstallFailed": "{0} installation failed.",
|
"PackageInstallFailed": "{0} installation failed.",
|
||||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Teilen",
|
"Share": "Teilen",
|
||||||
"Add": "Hinzuf\u00fcgen",
|
"Add": "Hinzuf\u00fcgen",
|
||||||
|
|
|
@ -3,6 +3,24 @@
|
||||||
"InstallingPackage": "Installing {0}",
|
"InstallingPackage": "Installing {0}",
|
||||||
"PackageInstallFailed": "{0} installation failed.",
|
"PackageInstallFailed": "{0} installation failed.",
|
||||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c3\u03b5",
|
"Add": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c3\u03b5",
|
||||||
|
|
|
@ -3,6 +3,24 @@
|
||||||
"InstallingPackage": "Installing {0}",
|
"InstallingPackage": "Installing {0}",
|
||||||
"PackageInstallFailed": "{0} installation failed.",
|
"PackageInstallFailed": "{0} installation failed.",
|
||||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "Add",
|
"Add": "Add",
|
||||||
|
|
|
@ -227,6 +227,24 @@
|
||||||
"PackageInstallCompleted": "{0} installation completed.",
|
"PackageInstallCompleted": "{0} installation completed.",
|
||||||
"PackageInstallFailed": "{0} installation failed.",
|
"PackageInstallFailed": "{0} installation failed.",
|
||||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageItemSaved": "Item saved."
|
"MessageItemSaved": "Item saved."
|
||||||
|
|
||||||
}
|
}
|
|
@ -3,6 +3,24 @@
|
||||||
"InstallingPackage": "Installing {0}",
|
"InstallingPackage": "Installing {0}",
|
||||||
"PackageInstallFailed": "{0} installation failed.",
|
"PackageInstallFailed": "{0} installation failed.",
|
||||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "Add",
|
"Add": "Add",
|
||||||
|
|
|
@ -1,8 +1,26 @@
|
||||||
{
|
{
|
||||||
"PackageInstallCompleted": "{0} installation completed.",
|
"PackageInstallCompleted": "{0} instalaci\u00f3n completada.",
|
||||||
"InstallingPackage": "Installing {0}",
|
"InstallingPackage": "Instalando {0}",
|
||||||
"PackageInstallFailed": "{0} installation failed.",
|
"PackageInstallFailed": "{0} instalaci\u00f3n fallida.",
|
||||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
"PackageInstallCancelled": "{0} instalaci\u00f3n cancelada.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "Especial - {0}",
|
"ValueSpecialEpisodeName": "Especial - {0}",
|
||||||
"Share": "Compartir",
|
"Share": "Compartir",
|
||||||
"Add": "Agregar",
|
"Add": "Agregar",
|
||||||
|
@ -125,7 +143,7 @@
|
||||||
"Trailer": "Trailer",
|
"Trailer": "Trailer",
|
||||||
"MarkPlayed": "Marcar como Reproducido",
|
"MarkPlayed": "Marcar como Reproducido",
|
||||||
"MarkUnplayed": "Marcar como No Reproducido",
|
"MarkUnplayed": "Marcar como No Reproducido",
|
||||||
"GroupVersions": "Agrupar Versiones",
|
"GroupVersions": "Agrupar versiones",
|
||||||
"PleaseSelectTwoItems": "Por favor selecciona al menos dos \u00edtems.",
|
"PleaseSelectTwoItems": "Por favor selecciona al menos dos \u00edtems.",
|
||||||
"TheSelectedItemsWillBeGrouped": "Los videos seleccionados se agruparan en un solo \u00edtem virtual. Las aplicaciones Emby elegir\u00e1n autom\u00e1ticamente cual versi\u00f3n reproducir dependiendo del dispositivo y el rendimiento de la red. \u00bfEsta seguro de que desea continuar?",
|
"TheSelectedItemsWillBeGrouped": "Los videos seleccionados se agruparan en un solo \u00edtem virtual. Las aplicaciones Emby elegir\u00e1n autom\u00e1ticamente cual versi\u00f3n reproducir dependiendo del dispositivo y el rendimiento de la red. \u00bfEsta seguro de que desea continuar?",
|
||||||
"TryMultiSelect": "Intente Multi-Selecci\u00f3n",
|
"TryMultiSelect": "Intente Multi-Selecci\u00f3n",
|
||||||
|
@ -133,7 +151,7 @@
|
||||||
"HeaderConfirmRecordingCancellation": "Confirmar Cancelaci\u00f3n de la Grabaci\u00f3n",
|
"HeaderConfirmRecordingCancellation": "Confirmar Cancelaci\u00f3n de la Grabaci\u00f3n",
|
||||||
"MessageConfirmRecordingCancellation": "\u00bfEst\u00e1 seguro de querer cancelar esta grabaci\u00f3n?",
|
"MessageConfirmRecordingCancellation": "\u00bfEst\u00e1 seguro de querer cancelar esta grabaci\u00f3n?",
|
||||||
"Error": "Error",
|
"Error": "Error",
|
||||||
"VoiceInput": "Voice Input",
|
"VoiceInput": "Entrada de Voz",
|
||||||
"LabelContentType": "Tipo de Contenido:",
|
"LabelContentType": "Tipo de Contenido:",
|
||||||
"LabelPath": "Ruta:",
|
"LabelPath": "Ruta:",
|
||||||
"LabelTitle": "Titulo:",
|
"LabelTitle": "Titulo:",
|
||||||
|
@ -213,14 +231,14 @@
|
||||||
"Images": "Im\u00e1genes",
|
"Images": "Im\u00e1genes",
|
||||||
"Keywords": "Palabras clave",
|
"Keywords": "Palabras clave",
|
||||||
"Runtime": "Duraci\u00f3n",
|
"Runtime": "Duraci\u00f3n",
|
||||||
"ProductionLocations": "Production locations",
|
"ProductionLocations": "Lugares de produccion",
|
||||||
"BirthLocation": "Birth location",
|
"BirthLocation": "Lugar de nacimiento",
|
||||||
"ParentalRating": "Clasificaci\u00f3n Parental",
|
"ParentalRating": "Clasificaci\u00f3n Parental",
|
||||||
"Name": "Nombre",
|
"Name": "Nombre",
|
||||||
"Overview": "Sinopsis",
|
"Overview": "Sinopsis",
|
||||||
"LabelType": "Tipo:",
|
"LabelType": "Tipo:",
|
||||||
"LabelPersonRole": "Rol:",
|
"LabelPersonRole": "Rol:",
|
||||||
"LabelPersonRoleHelp": "Example: Ice cream truck driver",
|
"LabelPersonRoleHelp": "Ejemplo: Conductor de cami\u00f3n de helados",
|
||||||
"Actor": "Actor",
|
"Actor": "Actor",
|
||||||
"Composer": "Compositor",
|
"Composer": "Compositor",
|
||||||
"Director": "Director",
|
"Director": "Director",
|
||||||
|
|
|
@ -3,6 +3,24 @@
|
||||||
"InstallingPackage": "Installing {0}",
|
"InstallingPackage": "Installing {0}",
|
||||||
"PackageInstallFailed": "{0} installation failed.",
|
"PackageInstallFailed": "{0} installation failed.",
|
||||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Compartir",
|
"Share": "Compartir",
|
||||||
"Add": "A\u00f1adir",
|
"Add": "A\u00f1adir",
|
||||||
|
|
|
@ -3,6 +3,24 @@
|
||||||
"InstallingPackage": "Installing {0}",
|
"InstallingPackage": "Installing {0}",
|
||||||
"PackageInstallFailed": "{0} installation failed.",
|
"PackageInstallFailed": "{0} installation failed.",
|
||||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "Add",
|
"Add": "Add",
|
||||||
|
|
|
@ -3,6 +3,24 @@
|
||||||
"InstallingPackage": "Installing {0}",
|
"InstallingPackage": "Installing {0}",
|
||||||
"PackageInstallFailed": "{0} installation failed.",
|
"PackageInstallFailed": "{0} installation failed.",
|
||||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "Add",
|
"Add": "Add",
|
||||||
|
|
|
@ -3,6 +3,24 @@
|
||||||
"InstallingPackage": "Installing {0}",
|
"InstallingPackage": "Installing {0}",
|
||||||
"PackageInstallFailed": "{0} installation failed.",
|
"PackageInstallFailed": "{0} installation failed.",
|
||||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "Sp\u00e9cial - {0}",
|
"ValueSpecialEpisodeName": "Sp\u00e9cial - {0}",
|
||||||
"Share": "Partager",
|
"Share": "Partager",
|
||||||
"Add": "Ajouter",
|
"Add": "Ajouter",
|
||||||
|
|
|
@ -3,6 +3,24 @@
|
||||||
"InstallingPackage": "Installing {0}",
|
"InstallingPackage": "Installing {0}",
|
||||||
"PackageInstallFailed": "{0} installation failed.",
|
"PackageInstallFailed": "{0} installation failed.",
|
||||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "Add",
|
"Add": "Add",
|
||||||
|
|
|
@ -3,6 +3,24 @@
|
||||||
"InstallingPackage": "Installing {0}",
|
"InstallingPackage": "Installing {0}",
|
||||||
"PackageInstallFailed": "{0} installation failed.",
|
"PackageInstallFailed": "{0} installation failed.",
|
||||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "\u05d4\u05d5\u05e1\u05e3",
|
"Add": "\u05d4\u05d5\u05e1\u05e3",
|
||||||
|
|
|
@ -3,6 +3,24 @@
|
||||||
"InstallingPackage": "Installing {0}",
|
"InstallingPackage": "Installing {0}",
|
||||||
"PackageInstallFailed": "{0} installation failed.",
|
"PackageInstallFailed": "{0} installation failed.",
|
||||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "Dodaj",
|
"Add": "Dodaj",
|
||||||
|
|
|
@ -3,6 +3,24 @@
|
||||||
"InstallingPackage": "Installing {0}",
|
"InstallingPackage": "Installing {0}",
|
||||||
"PackageInstallFailed": "{0} installation failed.",
|
"PackageInstallFailed": "{0} installation failed.",
|
||||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "Hozz\u00e1ad",
|
"Add": "Hozz\u00e1ad",
|
||||||
|
|
|
@ -3,6 +3,24 @@
|
||||||
"InstallingPackage": "Installing {0}",
|
"InstallingPackage": "Installing {0}",
|
||||||
"PackageInstallFailed": "{0} installation failed.",
|
"PackageInstallFailed": "{0} installation failed.",
|
||||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "Add",
|
"Add": "Add",
|
||||||
|
|
|
@ -3,6 +3,24 @@
|
||||||
"InstallingPackage": "Installing {0}",
|
"InstallingPackage": "Installing {0}",
|
||||||
"PackageInstallFailed": "{0} installation failed.",
|
"PackageInstallFailed": "{0} installation failed.",
|
||||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "Aggiungi",
|
"Add": "Aggiungi",
|
||||||
|
|
|
@ -1,8 +1,26 @@
|
||||||
{
|
{
|
||||||
"PackageInstallCompleted": "{0} installation completed.",
|
"PackageInstallCompleted": "{0} \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0443\u044b \u0430\u044f\u049b\u0442\u0430\u043b\u0434\u044b.",
|
||||||
"InstallingPackage": "Installing {0}",
|
"InstallingPackage": "{0} \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0443\u0434\u0430",
|
||||||
"PackageInstallFailed": "{0} installation failed.",
|
"PackageInstallFailed": "{0} \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0443\u044b \u0441\u04d9\u0442\u0441\u0456\u0437.",
|
||||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
"PackageInstallCancelled": "{0} \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0443\u044b \u0431\u043e\u043b\u0434\u044b\u0440\u044b\u043b\u043c\u0430\u0434\u044b.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "\u0410\u0440\u043d\u0430\u0439\u044b - {0}",
|
"ValueSpecialEpisodeName": "\u0410\u0440\u043d\u0430\u0439\u044b - {0}",
|
||||||
"Share": "\u041e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443",
|
"Share": "\u041e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443",
|
||||||
"Add": "\u04ae\u0441\u0442\u0435\u0443",
|
"Add": "\u04ae\u0441\u0442\u0435\u0443",
|
||||||
|
|
|
@ -3,6 +3,24 @@
|
||||||
"InstallingPackage": "Installing {0}",
|
"InstallingPackage": "Installing {0}",
|
||||||
"PackageInstallFailed": "{0} installation failed.",
|
"PackageInstallFailed": "{0} installation failed.",
|
||||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "\ucd94\uac00",
|
"Add": "\ucd94\uac00",
|
||||||
|
|
|
@ -3,6 +3,24 @@
|
||||||
"InstallingPackage": "Installing {0}",
|
"InstallingPackage": "Installing {0}",
|
||||||
"PackageInstallFailed": "{0} installation failed.",
|
"PackageInstallFailed": "{0} installation failed.",
|
||||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "Add",
|
"Add": "Add",
|
||||||
|
|
|
@ -3,6 +3,24 @@
|
||||||
"InstallingPackage": "Installing {0}",
|
"InstallingPackage": "Installing {0}",
|
||||||
"PackageInstallFailed": "{0} installation failed.",
|
"PackageInstallFailed": "{0} installation failed.",
|
||||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "Spesial - {0}",
|
"ValueSpecialEpisodeName": "Spesial - {0}",
|
||||||
"Share": "Del",
|
"Share": "Del",
|
||||||
"Add": "Legg til",
|
"Add": "Legg til",
|
||||||
|
|
|
@ -3,6 +3,24 @@
|
||||||
"InstallingPackage": "Installeren van {0}",
|
"InstallingPackage": "Installeren van {0}",
|
||||||
"PackageInstallFailed": "{0} installatie is mislukt.",
|
"PackageInstallFailed": "{0} installatie is mislukt.",
|
||||||
"PackageInstallCancelled": "{0} installatie geannuleerd.",
|
"PackageInstallCancelled": "{0} installatie geannuleerd.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "Speciaal - {0}",
|
"ValueSpecialEpisodeName": "Speciaal - {0}",
|
||||||
"Share": "Delen",
|
"Share": "Delen",
|
||||||
"Add": "Toevoegen",
|
"Add": "Toevoegen",
|
||||||
|
|
|
@ -3,6 +3,24 @@
|
||||||
"InstallingPackage": "Installing {0}",
|
"InstallingPackage": "Installing {0}",
|
||||||
"PackageInstallFailed": "{0} installation failed.",
|
"PackageInstallFailed": "{0} installation failed.",
|
||||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "Dodaj",
|
"Add": "Dodaj",
|
||||||
|
|
|
@ -3,6 +3,24 @@
|
||||||
"InstallingPackage": "Instalando {0}",
|
"InstallingPackage": "Instalando {0}",
|
||||||
"PackageInstallFailed": "Falha na instala\u00e7\u00e3o de {0}.",
|
"PackageInstallFailed": "Falha na instala\u00e7\u00e3o de {0}.",
|
||||||
"PackageInstallCancelled": "Instala\u00e7\u00e3o cancelada de {0}.",
|
"PackageInstallCancelled": "Instala\u00e7\u00e3o cancelada de {0}.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "Especial - {0}",
|
"ValueSpecialEpisodeName": "Especial - {0}",
|
||||||
"Share": "Compartilhar",
|
"Share": "Compartilhar",
|
||||||
"Add": "Adicionar",
|
"Add": "Adicionar",
|
||||||
|
|
|
@ -3,6 +3,24 @@
|
||||||
"InstallingPackage": "Installing {0}",
|
"InstallingPackage": "Installing {0}",
|
||||||
"PackageInstallFailed": "{0} installation failed.",
|
"PackageInstallFailed": "{0} installation failed.",
|
||||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "Especial - {0}",
|
"ValueSpecialEpisodeName": "Especial - {0}",
|
||||||
"Share": "Partilhar",
|
"Share": "Partilhar",
|
||||||
"Add": "Adicionar",
|
"Add": "Adicionar",
|
||||||
|
|
|
@ -3,6 +3,24 @@
|
||||||
"InstallingPackage": "Installing {0}",
|
"InstallingPackage": "Installing {0}",
|
||||||
"PackageInstallFailed": "{0} installation failed.",
|
"PackageInstallFailed": "{0} installation failed.",
|
||||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "Add",
|
"Add": "Add",
|
||||||
|
|
|
@ -1,8 +1,26 @@
|
||||||
{
|
{
|
||||||
"PackageInstallCompleted": "{0} installation completed.",
|
"PackageInstallCompleted": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 {0} \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0430.",
|
||||||
"InstallingPackage": "Installing {0}",
|
"InstallingPackage": "\u0423\u0441\u0442\u0430\u043d\u0430\u0432\u043b\u0438\u0432\u0430\u0435\u0442\u0441\u044f {0}",
|
||||||
"PackageInstallFailed": "{0} installation failed.",
|
"PackageInstallFailed": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 {0} \u043d\u0435\u0443\u0434\u0430\u0447\u043d\u0430.",
|
||||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
"PackageInstallCancelled": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 {0} \u043e\u0442\u043c\u0435\u043d\u0435\u043d\u0430.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "\u0421\u043f\u0435\u0446\u044d\u043f\u0438\u0437\u043e\u0434 - {0}",
|
"ValueSpecialEpisodeName": "\u0421\u043f\u0435\u0446\u044d\u043f\u0438\u0437\u043e\u0434 - {0}",
|
||||||
"Share": "\u041f\u043e\u0434\u0435\u043b\u0438\u0442\u044c\u0441\u044f",
|
"Share": "\u041f\u043e\u0434\u0435\u043b\u0438\u0442\u044c\u0441\u044f",
|
||||||
"Add": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c",
|
"Add": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c",
|
||||||
|
|
|
@ -3,6 +3,24 @@
|
||||||
"InstallingPackage": "Installing {0}",
|
"InstallingPackage": "Installing {0}",
|
||||||
"PackageInstallFailed": "{0} installation failed.",
|
"PackageInstallFailed": "{0} installation failed.",
|
||||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "Add",
|
"Add": "Add",
|
||||||
|
|
|
@ -3,6 +3,24 @@
|
||||||
"InstallingPackage": "Installing {0}",
|
"InstallingPackage": "Installing {0}",
|
||||||
"PackageInstallFailed": "{0} installation failed.",
|
"PackageInstallFailed": "{0} installation failed.",
|
||||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "Add",
|
"Add": "Add",
|
||||||
|
|
|
@ -1,8 +1,26 @@
|
||||||
{
|
{
|
||||||
"PackageInstallCompleted": "{0} installation completed.",
|
"PackageInstallCompleted": "Installationen av {0} slutf\u00f6rdes.",
|
||||||
"InstallingPackage": "Installing {0}",
|
"InstallingPackage": "Installerar {0}",
|
||||||
"PackageInstallFailed": "{0} installation failed.",
|
"PackageInstallFailed": "Installationen av {0} misslyckades.",
|
||||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
"PackageInstallCancelled": "Installationen av {0} avbr\u00f6ts.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "Specialavsnitt - {0}",
|
"ValueSpecialEpisodeName": "Specialavsnitt - {0}",
|
||||||
"Share": "Dela",
|
"Share": "Dela",
|
||||||
"Add": "L\u00e4gg till",
|
"Add": "L\u00e4gg till",
|
||||||
|
@ -133,7 +151,7 @@
|
||||||
"HeaderConfirmRecordingCancellation": "Bekr\u00e4fta avbrott av inspelning",
|
"HeaderConfirmRecordingCancellation": "Bekr\u00e4fta avbrott av inspelning",
|
||||||
"MessageConfirmRecordingCancellation": "\u00c4r du s\u00e4ker p\u00e5 att du vill avbryta denna inspelning?",
|
"MessageConfirmRecordingCancellation": "\u00c4r du s\u00e4ker p\u00e5 att du vill avbryta denna inspelning?",
|
||||||
"Error": "Fel",
|
"Error": "Fel",
|
||||||
"VoiceInput": "Voice Input",
|
"VoiceInput": "R\u00f6stinspelning",
|
||||||
"LabelContentType": "Inneh\u00e5llstyp:",
|
"LabelContentType": "Inneh\u00e5llstyp:",
|
||||||
"LabelPath": "S\u00f6kv\u00e4g:",
|
"LabelPath": "S\u00f6kv\u00e4g:",
|
||||||
"LabelTitle": "Titel:",
|
"LabelTitle": "Titel:",
|
||||||
|
@ -208,19 +226,19 @@
|
||||||
"Continuing": "P\u00e5g\u00e5ende",
|
"Continuing": "P\u00e5g\u00e5ende",
|
||||||
"Ended": "Avslutad",
|
"Ended": "Avslutad",
|
||||||
"HeaderEnabledFields": "Aktiverade f\u00e4lt",
|
"HeaderEnabledFields": "Aktiverade f\u00e4lt",
|
||||||
"HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.",
|
"HeaderEnabledFieldsHelp": "Avmarkera ett f\u00e4lt f\u00f6r att l\u00e5sa det och f\u00f6r att f\u00f6rhindra datan fr\u00e5n att \u00e4ndras.",
|
||||||
"Backdrops": "Fondbilder",
|
"Backdrops": "Fondbilder",
|
||||||
"Images": "Bilder",
|
"Images": "Bilder",
|
||||||
"Keywords": "Nyckelord",
|
"Keywords": "Nyckelord",
|
||||||
"Runtime": "Speltid",
|
"Runtime": "Speltid",
|
||||||
"ProductionLocations": "Production locations",
|
"ProductionLocations": "Produktionsplatser",
|
||||||
"BirthLocation": "Birth location",
|
"BirthLocation": "F\u00f6delseort",
|
||||||
"ParentalRating": "Parental Rating",
|
"ParentalRating": "Parental Rating",
|
||||||
"Name": "Namn",
|
"Name": "Namn",
|
||||||
"Overview": "\u00d6versikt",
|
"Overview": "\u00d6versikt",
|
||||||
"LabelType": "Typ:",
|
"LabelType": "Typ:",
|
||||||
"LabelPersonRole": "Roll:",
|
"LabelPersonRole": "Roll:",
|
||||||
"LabelPersonRoleHelp": "Example: Ice cream truck driver",
|
"LabelPersonRoleHelp": "Exempel: glassbilsf\u00f6rare",
|
||||||
"Actor": "Sk\u00e5despelare",
|
"Actor": "Sk\u00e5despelare",
|
||||||
"Composer": "Komposit\u00f6r",
|
"Composer": "Komposit\u00f6r",
|
||||||
"Director": "Regiss\u00f6r",
|
"Director": "Regiss\u00f6r",
|
||||||
|
|
|
@ -3,6 +3,24 @@
|
||||||
"InstallingPackage": "Installing {0}",
|
"InstallingPackage": "Installing {0}",
|
||||||
"PackageInstallFailed": "{0} installation failed.",
|
"PackageInstallFailed": "{0} installation failed.",
|
||||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "Ekle",
|
"Add": "Ekle",
|
||||||
|
|
|
@ -3,6 +3,24 @@
|
||||||
"InstallingPackage": "Installing {0}",
|
"InstallingPackage": "Installing {0}",
|
||||||
"PackageInstallFailed": "{0} installation failed.",
|
"PackageInstallFailed": "{0} installation failed.",
|
||||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "Add",
|
"Add": "Add",
|
||||||
|
|
|
@ -3,6 +3,24 @@
|
||||||
"InstallingPackage": "Installing {0}",
|
"InstallingPackage": "Installing {0}",
|
||||||
"PackageInstallFailed": "{0} installation failed.",
|
"PackageInstallFailed": "{0} installation failed.",
|
||||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "Th\u00eam",
|
"Add": "Th\u00eam",
|
||||||
|
|
|
@ -3,6 +3,24 @@
|
||||||
"InstallingPackage": "Installing {0}",
|
"InstallingPackage": "Installing {0}",
|
||||||
"PackageInstallFailed": "{0} installation failed.",
|
"PackageInstallFailed": "{0} installation failed.",
|
||||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "\u6dfb\u52a0",
|
"Add": "\u6dfb\u52a0",
|
||||||
|
|
|
@ -3,6 +3,24 @@
|
||||||
"InstallingPackage": "Installing {0}",
|
"InstallingPackage": "Installing {0}",
|
||||||
"PackageInstallFailed": "{0} installation failed.",
|
"PackageInstallFailed": "{0} installation failed.",
|
||||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "\u65b0\u589e",
|
"Add": "\u65b0\u589e",
|
||||||
|
|
|
@ -3,6 +3,24 @@
|
||||||
"InstallingPackage": "Installing {0}",
|
"InstallingPackage": "Installing {0}",
|
||||||
"PackageInstallFailed": "{0} installation failed.",
|
"PackageInstallFailed": "{0} installation failed.",
|
||||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||||
|
"SeriesYearToPresent": "{0}-Present",
|
||||||
|
"ValueOneSong": "1 song",
|
||||||
|
"ValueSongCount": "{0} songs",
|
||||||
|
"ValueOneMovie": "1 movie",
|
||||||
|
"ValueMovieCount": "{0} movies",
|
||||||
|
"ValueOneSeries": "1 series",
|
||||||
|
"ValueOneEpisode": "1 episode",
|
||||||
|
"ValueSeriesCount": "{0} series",
|
||||||
|
"ValueEpisodeCount": "{0} episodes",
|
||||||
|
"ValueOneGame": "1 game",
|
||||||
|
"ValueOneAlbum": "1 album",
|
||||||
|
"ValueGameCount": "{0} games",
|
||||||
|
"ValueOneMusicVideo": "1 music video",
|
||||||
|
"ValueAlbumCount": "{0} albums",
|
||||||
|
"ValueMusicVideoCount": "{0} music videos",
|
||||||
|
"ValueMinutes": "{0} min",
|
||||||
|
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||||
|
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "\u5206\u4eab",
|
"Share": "\u5206\u4eab",
|
||||||
"Add": "\u6dfb\u52a0",
|
"Add": "\u6dfb\u52a0",
|
||||||
|
|
|
@ -32,14 +32,14 @@
|
||||||
"web-component-tester": "^4.0.0",
|
"web-component-tester": "^4.0.0",
|
||||||
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
|
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/PolymerElements/iron-icon",
|
"homepage": "https://github.com/polymerelements/iron-icon",
|
||||||
"_release": "1.0.9",
|
"_release": "1.0.9",
|
||||||
"_resolution": {
|
"_resolution": {
|
||||||
"type": "version",
|
"type": "version",
|
||||||
"tag": "v1.0.9",
|
"tag": "v1.0.9",
|
||||||
"commit": "f6fb241901377e30e2c9c6cd47e3e8e8beb6574d"
|
"commit": "f6fb241901377e30e2c9c6cd47e3e8e8beb6574d"
|
||||||
},
|
},
|
||||||
"_source": "git://github.com/PolymerElements/iron-icon.git",
|
"_source": "git://github.com/polymerelements/iron-icon.git",
|
||||||
"_target": "^1.0.0",
|
"_target": "^1.0.0",
|
||||||
"_originalSource": "PolymerElements/iron-icon"
|
"_originalSource": "polymerelements/iron-icon"
|
||||||
}
|
}
|
|
@ -26,14 +26,14 @@
|
||||||
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
|
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
|
||||||
},
|
},
|
||||||
"main": "iron-meta.html",
|
"main": "iron-meta.html",
|
||||||
"homepage": "https://github.com/PolymerElements/iron-meta",
|
"homepage": "https://github.com/polymerelements/iron-meta",
|
||||||
"_release": "1.1.1",
|
"_release": "1.1.1",
|
||||||
"_resolution": {
|
"_resolution": {
|
||||||
"type": "version",
|
"type": "version",
|
||||||
"tag": "v1.1.1",
|
"tag": "v1.1.1",
|
||||||
"commit": "e171ee234b482219c9514e6f9551df48ef48bd9f"
|
"commit": "e171ee234b482219c9514e6f9551df48ef48bd9f"
|
||||||
},
|
},
|
||||||
"_source": "git://github.com/PolymerElements/iron-meta.git",
|
"_source": "git://github.com/polymerelements/iron-meta.git",
|
||||||
"_target": "^1.0.0",
|
"_target": "^1.0.0",
|
||||||
"_originalSource": "PolymerElements/iron-meta"
|
"_originalSource": "polymerelements/iron-meta"
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue