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

update text

This commit is contained in:
Luke Pulverenti 2015-10-02 13:55:26 -04:00
parent 94a5cf7549
commit ee8e4e5e0a
87 changed files with 1815 additions and 2444 deletions

View file

@ -12,8 +12,7 @@
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true"> <div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
<a href="support.html" data-role="button">${TabGeneral}</a> <a href="support.html" data-role="button">${TabGeneral}</a>
<a href="log.html" data-role="button">${TabLogs}</a> <a href="log.html" data-role="button">${TabLogs}</a>
<a href="supporter.html" data-role="button" class="tabSupporterMembership">${TabDonate}</a> <a href="supporterkey.html" data-role="button" class="tabSupporterMembership">${TabEmbyPremiere}</a>
<a href="supporterkey.html" data-role="button" class="tabSupporterMembership">${TabSupporterKey}</a>
<a href="about.html" data-role="button" class="ui-btn-active">${TabAbout}</a> <a href="about.html" data-role="button" class="ui-btn-active">${TabAbout}</a>
</div> </div>
<div style="font-size:24px;"> <div style="font-size:24px;">

View file

@ -64,16 +64,16 @@
</p> </p>
<div class="supporterDescription"> <div class="supporterDescription">
<p>${MessageSupporterPluginRequiresMembership}</p> <p>${MessagePluginRequiresSubscription}</p>
<p><a href="http://emby.media/premiere" target="_blank">${LinkSupporterMembership}</a></p> <p><a href="http://emby.media/premiere" target="_blank">${LinkLearnMoreAboutSubscription}</a></p>
</div> </div>
<div class="premiumDescription"> <div class="premiumDescription">
<p>${MessagePremiumPluginRequiresMembership}</p> <p>${MessagePremiumPluginRequiresMembership}</p>
<p><a href="http://emby.media/premiere" target="_blank">${LinkSupporterMembership}</a></p> <p><a href="http://emby.media/premiere" target="_blank">${LinkLearnMoreAboutSubscription}</a></p>
</div> </div>
<div class="premiumHasPrice" style="display: none"> <div class="premiumHasPrice" style="display: none">
<p id="regPrice"> <p id="regPrice">

View file

@ -42,7 +42,7 @@
<label for="chkOtherTrailers">${OptionOtherTrailers}</label> <label for="chkOtherTrailers">${OptionOtherTrailers}</label>
<input type="checkbox" id="chkOtherTrailers" /> <input type="checkbox" id="chkOtherTrailers" />
</fieldset> </fieldset>
<div class="fieldDescription">${LabelTheseFeaturesRequireSupporterHelpAndTrailers}</div> <div class="fieldDescription">${LabelTheseFeaturesRequireSubscriptionHelpAndTrailers}</div>
<div class="fieldDescription"><a class="lnkSupporterLearnMore" href="http://emby.media/premiere" target="_blank" style="display:none;">${ButtonLearnMore}</a></div> <div class="fieldDescription"><a class="lnkSupporterLearnMore" href="http://emby.media/premiere" target="_blank" style="display:none;">${ButtonLearnMore}</a></div>
</li> </li>
<li> <li>

View file

@ -76,7 +76,7 @@
}).map(function (o) { }).map(function (o) {
o.buttonText = Globalize.translate(o.buttonText, o.price); o.buttonText = Globalize.translate(o.buttonText, getProduct(o.feature).price);
return o; return o;
}); });

View file

@ -141,7 +141,7 @@
}).map(function (o) { }).map(function (o) {
o.buttonText = Globalize.translate(o.buttonText, o.price); o.buttonText = Globalize.translate(o.buttonText, getProduct(o.feature).price);
return o; return o;
}); });

View file

@ -29,12 +29,13 @@
return; return;
} }
var productInfo = { var unlockableProductInfo = IapManager.isPurchaseAvailable(feature) ? {
enableAppUnlock: IapManager.isPurchaseAvailable(feature), enableAppUnlock: IapManager.isPurchaseAvailable(feature),
id: id, id: id,
price: info.price, price: info.price,
feature: feature feature: feature
};
} : null;
var prefix = $.browser.android ? 'android' : 'ios'; var prefix = $.browser.android ? 'android' : 'ios';
@ -49,7 +50,11 @@
IapManager.getSubscriptionOptions().done(function (subscriptionOptions) { IapManager.getSubscriptionOptions().done(function (subscriptionOptions) {
showInAppPurchaseInfo(productInfo, subscriptionOptions, registrationInfo, deferred); var dialogOptions = {
title: Globalize.translate('HeaderUnlockApp')
};
showInAppPurchaseInfo(subscriptionOptions, unlockableProductInfo, registrationInfo, dialogOptions, deferred);
}); });
}).fail(function () { }).fail(function () {
@ -84,14 +89,40 @@
}); });
} }
function getInAppPurchaseElement(info, subscriptionOptions) { function cancelInAppPurchase() {
var elem = document.querySelector('.inAppPurchaseOverlay');
if (elem) {
PaperDialogHelper.close(elem);
}
}
var isCancelled = true;
var currentDisplayingProductInfos = [];
var currentDisplayingDeferred = null;
function clearCurrentDisplayingInfo() {
currentDisplayingProductInfos = [];
currentDisplayingDeferred = null;
}
function showInAppPurchaseElement(subscriptionOptions, unlockableProductInfo, dialogOptions, deferred) {
cancelInAppPurchase();
// clone
currentDisplayingProductInfos = subscriptionOptions.slice(0);
if (unlockableProductInfo) {
currentDisplayingProductInfos.push(unlockableProductInfo);
}
var dlg = PaperDialogHelper.createDialog(); var dlg = PaperDialogHelper.createDialog();
var html = ''; var html = '';
html += '<h2 class="dialogHeader">'; html += '<h2 class="dialogHeader">';
html += '<paper-fab icon="arrow-back" class="mini btnCloseDialog"></paper-fab>'; html += '<paper-fab icon="arrow-back" class="mini btnCloseDialog"></paper-fab>';
html += '<div style="display:inline-block;margin-left:.6em;vertical-align:middle;">' + Globalize.translate('HeaderUnlockApp') + '</div>'; html += '<div style="display:inline-block;margin-left:.6em;vertical-align:middle;">' + dialogOptions.title + '</div>';
html += '</h2>'; html += '</h2>';
html += '<div class="editorContent">'; html += '<div class="editorContent">';
@ -99,7 +130,7 @@
html += '<form style="max-width: 800px;margin:auto;">'; html += '<form style="max-width: 800px;margin:auto;">';
html += '<p style="margin:2em 0;">'; html += '<p style="margin:2em 0;">';
if (info.enableAppUnlock) { if (unlockableProductInfo) {
html += Globalize.translate('MessageUnlockAppWithPurchaseOrSupporter'); html += Globalize.translate('MessageUnlockAppWithPurchaseOrSupporter');
} }
else { else {
@ -111,14 +142,14 @@
html += Globalize.translate('MessageToValidateSupporter'); html += Globalize.translate('MessageToValidateSupporter');
html += '</p>'; html += '</p>';
if (info.enableAppUnlock) { if (unlockableProductInfo) {
var unlockText = Globalize.translate('ButtonUnlockWithPurchase'); var unlockText = Globalize.translate('ButtonUnlockWithPurchase');
if (info.price) { if (unlockableProductInfo.price) {
unlockText = Globalize.translate('ButtonUnlockPrice', info.price); unlockText = Globalize.translate('ButtonUnlockPrice', unlockableProductInfo.price);
} }
html += '<p>'; html += '<p>';
html += '<paper-button raised class="secondary block btnPurchase" data-feature="' + info.feature + '"><iron-icon icon="check"></iron-icon><span>' + unlockText + '</span></paper-button>'; html += '<paper-button raised class="secondary block btnPurchase" data-feature="' + unlockableProductInfo.feature + '"><iron-icon icon="check"></iron-icon><span>' + unlockText + '</span></paper-button>';
html += '</p>'; html += '</p>';
} }
@ -143,7 +174,7 @@
dlg.innerHTML = html; dlg.innerHTML = html;
document.body.appendChild(dlg); document.body.appendChild(dlg);
// init dlg content here initInAppPurchaseElementEvents(dlg, deferred);
PaperDialogHelper.openWithHash(dlg, 'iap'); PaperDialogHelper.openWithHash(dlg, 'iap');
@ -153,68 +184,47 @@
}); });
dlg.classList.add('inAppPurchaseOverlay'); dlg.classList.add('inAppPurchaseOverlay');
return dlg;
} }
function cancelInAppPurchase() { function initInAppPurchaseElementEvents(elem, deferred) {
var elem = document.querySelector('.inAppPurchaseOverlay'); isCancelled = true;
if (elem) {
PaperDialogHelper.close(elem); $('.btnPurchase', elem).on('click', function () {
}
isCancelled = false;
if (this.getAttribute('data-email') == 'true') {
promptForEmail(this.getAttribute('data-feature'));
} else {
IapManager.beginPurchase(this.getAttribute('data-feature'));
}
});
$('.btnRestorePurchase', elem).on('click', function () {
isCancelled = false;
IapManager.restorePurchase(info.feature);
});
$(elem).on('iron-overlay-closed', function () {
if (isCancelled) {
clearCurrentDisplayingInfo();
deferred.reject();
}
$(this).remove();
});
} }
var currentDisplayingProductInfos = []; function showInAppPurchaseInfo(subscriptionOptions, unlockableProductInfo, serverRegistrationInfo, dialogOptions, deferred) {
var currentDisplayingDeferred = null;
var isCancelled = true;
function clearCurrentDisplayingInfo() {
currentDisplayingProductInfos = [];
currentDisplayingDeferred = null;
}
function showInAppPurchaseInfo(info, subscriptionOptions, serverRegistrationInfo, deferred) {
require(['components/paperdialoghelper'], function () { require(['components/paperdialoghelper'], function () {
cancelInAppPurchase(); showInAppPurchaseElement(subscriptionOptions, unlockableProductInfo, dialogOptions, deferred);
isCancelled = true;
var elem = getInAppPurchaseElement(info, subscriptionOptions);
// clone
currentDisplayingProductInfos = subscriptionOptions.slice(0);
currentDisplayingProductInfos.push(info);
currentDisplayingDeferred = deferred; currentDisplayingDeferred = deferred;
$('.btnPurchase', elem).on('click', function () {
isCancelled = false;
if (this.getAttribute('data-email') == 'true') {
promptForEmail(this.getAttribute('data-feature'));
} else {
IapManager.beginPurchase(this.getAttribute('data-feature'));
}
});
$('.btnRestorePurchase', elem).on('click', function () {
isCancelled = false;
IapManager.restorePurchase(info.feature);
});
$(elem).on('iron-overlay-closed', function () {
if (isCancelled) {
clearCurrentDisplayingInfo();
cancelInAppPurchase();
deferred.reject();
}
});
}); });
} }
@ -225,10 +235,10 @@
prompt({ prompt({
text: Globalize.translate('TextPleaseEnterYourEmailAddressForSubscription'), text: Globalize.translate('TextPleaseEnterYourEmailAddressForSubscription'),
title: Globalize.translate('HeaderEmailAddress'), title: Globalize.translate('HeaderEmailAddress'),
callback: function(email) { callback: function (email) {
if (email) { if (email) {
IapManager.beginPurchase(this.getAttribute('data-feature'), email); IapManager.beginPurchase(feature, email);
} }
} }
}); });
@ -246,6 +256,9 @@
return product.id == p.id; return product.id == p.id;
}).length) { }).length) {
isCancelled = false;
clearCurrentDisplayingInfo(); clearCurrentDisplayingInfo();
cancelInAppPurchase(); cancelInAppPurchase();
deferred.resolve(); deferred.resolve();
@ -262,31 +275,27 @@
return; return;
} }
Dashboard.showLoadingMsg(); // Get supporter status
getRegistrationInfo('Sync').done(function (registrationInfo) {
ApiClient.getRegistrationInfo('Sync').done(function (registrationInfo) {
Dashboard.hideLoadingMsg();
if (registrationInfo.IsRegistered) { if (registrationInfo.IsRegistered) {
validatedFeatures.push(feature);
deferred.resolve(); deferred.resolve();
return; return;
} }
Dashboard.alert({ IapManager.getSubscriptionOptions().done(function (subscriptionOptions) {
message: Globalize.translate('HeaderSyncRequiresSupporterMembershipAppVersion'),
title: Globalize.translate('HeaderSync') var dialogOptions = {
title: Globalize.translate('HeaderUnlockSync')
};
showInAppPurchaseInfo(subscriptionOptions, null, registrationInfo, dialogOptions, deferred);
}); });
}).fail(function () { }).fail(function () {
deferred.reject();
Dashboard.hideLoadingMsg();
Dashboard.alert({
message: Globalize.translate('ErrorValidatingSupporterInfo')
});
}); });
}); });
} }
@ -297,15 +306,6 @@
}, },
addRecurringFields: function (page, period) {
},
initSupporterForm: function (page) {
$('.recurringSubscriptionCancellationHelp', page).html('');
},
validateFeature: function (name) { validateFeature: function (name) {
var deferred = DeferredBuilder.Deferred(); var deferred = DeferredBuilder.Deferred();

View file

@ -68,7 +68,7 @@
<br /> <br />
<div> <div>
<div class="supporterContainer hide"> <div class="supporterContainer hide">
<p>${MessageActiveSupporterMembershipRequiredSeriesRecordings}</p> <p>${MessageActiveSubscriptionRequiredSeriesRecordings}</p>
<p class="supporterTrial hide">${HeaderEnjoyDayTrial}</p> <p class="supporterTrial hide">${HeaderEnjoyDayTrial}</p>
<a class="clearLink btnSupporter hide" href="http://emby.media/premiere" target="_blank"><paper-button raised class="accent block"><iron-icon icon="check"></iron-icon><span>${HeaderBecomeProjectSupporter}</span></paper-button></a> <a class="clearLink btnSupporter hide" href="http://emby.media/premiere" target="_blank"><paper-button raised class="accent block"><iron-icon icon="check"></iron-icon><span>${HeaderBecomeProjectSupporter}</span></paper-button></a>
<br /> <br />

View file

@ -11,8 +11,7 @@
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true"> <div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
<a href="support.html" data-role="button">${TabGeneral}</a> <a href="support.html" data-role="button">${TabGeneral}</a>
<a href="log.html" data-role="button" class="ui-btn-active">${TabLogs}</a> <a href="log.html" data-role="button" class="ui-btn-active">${TabLogs}</a>
<a href="supporter.html" data-role="button" class="tabSupporterMembership">${TabDonate}</a> <a href="supporterkey.html" data-role="button" class="tabSupporterMembership">${TabEmbyPremiere}</a>
<a href="supporterkey.html" data-role="button" class="tabSupporterMembership">${TabSupporterKey}</a>
<a href="about.html" data-role="button">${TabAbout}</a> <a href="about.html" data-role="button">${TabAbout}</a>
</div> </div>

View file

@ -182,40 +182,6 @@
} }
}, },
addRecurringFields: function (page, period) {
var form = page.querySelector('.supporterForm');
// Add recurring fields to form
$("<input type='hidden' name='a3' class='pprecurring' />")
.attr('value', $('#donateAmt', page).val())
.appendTo(form);
$("<input type='hidden' name='p3' value='1' class='pprecurring' />")
.appendTo(form);
$("<input type='hidden' name='t3' value='" + period + "' class='pprecurring' />")
.appendTo(form);
$("<input type='hidden' name='src' value='1' class='pprecurring' />")
.appendTo(form);
$("<input type='hidden' name='sra' value='1' class='pprecurring' />")
.appendTo(form);
//change command for subscriptions
$('#ppCmd', page).val('_xclick-subscriptions');
Events.trigger(form, 'create');
},
initSupporterForm: function (page) {
$('.supporterForm', page).attr('action', 'https://www.paypal.com/cgi-bin/webscr');
$('.recurringSubscriptionCancellationHelp', page).html(Globalize.translate('LabelRecurringDonationCanBeCancelledHelp'));
},
validateFeature: function (name) { validateFeature: function (name) {
var deferred = DeferredBuilder.Deferred(); var deferred = DeferredBuilder.Deferred();

View file

@ -255,6 +255,18 @@ $(document).on('pageshow', "#supporterKeyPage", SupporterKeyPage.onPageShow);
} }
function loadUserInfo(page) {
ApiClient.getJSON(ApiClient.getUrl('System/SupporterInfo')).done(function (info) {
if (info.IsActiveSupporter) {
$('.supporterContainer', page).addClass('hide');
} else {
$('.supporterContainer', page).removeClass('hide');
}
});
}
$(document).on('pageinit', "#supporterKeyPage", function () { $(document).on('pageinit', "#supporterKeyPage", function () {
var page = this; var page = this;
@ -267,10 +279,13 @@ $(document).on('pageshow', "#supporterKeyPage", SupporterKeyPage.onPageShow);
$('#linkKeysForm').on('submit', SupporterKeyPage.linkSupporterKeys); $('#linkKeysForm').on('submit', SupporterKeyPage.linkSupporterKeys);
$('.popupAddUserForm').on('submit', SupporterKeyPage.onAddConnectUserSubmit).on('submit', SupporterKeyPage.onAddConnectUserSubmit); $('.popupAddUserForm').on('submit', SupporterKeyPage.onAddConnectUserSubmit).on('submit', SupporterKeyPage.onAddConnectUserSubmit);
$('.benefits', page).html(Globalize.translate('HeaderSupporterBenefit', '<a href="http://emby.media/premiere" target="_blank">', '</a>'));
}).on('pageshow', "#supporterKeyPage", function () { }).on('pageshow', "#supporterKeyPage", function () {
var page = this; var page = this;
loadConnectSupporters(page); loadConnectSupporters(page);
loadUserInfo(page);
}); });
window.SupporterKeyPage.onAddConnectUserSubmit = function () { window.SupporterKeyPage.onAddConnectUserSubmit = function () {

View file

@ -1,209 +0,0 @@
(function () {
function addRecurringFields(period, page) {
RegistrationServices.addRecurringFields(page, period);
}
function removeRecurringFields(page) {
$('.pprecurring', page).remove();
//change command back
$('#ppCmd', page).val('_xclick');
}
function setItemNumber(page, itemNumber) {
$('#ppItemNo', page).val(itemNumber);
}
function setItemName(page, itemName) {
$('#ppItemName', page).val(itemName);
}
function getDonationType(page) {
return $(".radioDonationType:checked", page).val();
}
var lifeTimeAmount = 89.99;
var dailyAmount = 1;
var monthlyAmount = 4.99;
var yearlyAmount = 39.99;
function getDonationAmount(page) {
var type = getDonationType(page);
if (type == 'once') {
return $("#selectOneTimeDonationAmount", page).val();
}
if (type == 'yearly') {
return yearlyAmount;
}
if (type == 'monthly') {
return monthlyAmount;
}
if (type == 'daily') {
return dailyAmount;
}
// lifetime
return lifeTimeAmount;
}
function updateSavedDonationAmount(page) {
$("#donateAmt", page).val(getDonationAmount(page));
}
function loadUserInfo(page) {
ApiClient.getJSON(ApiClient.getUrl('System/SupporterInfo')).done(function (info) {
$('.hfPlanType', page).val(info.PlanType || '');
$('.hfIsActive', page).val(info.IsActiveSupporter.toString());
$('.radioDonationType', page).checked(false).checkboxradio('refresh');
if (info.PlanType == 'Lifetime' && info.IsActiveSupporter) {
// If they have an active lifetime plan, select the one-time option
$('#radioOneTimeDonation', page).checked(true).checkboxradio('refresh');
} else {
// For all other statuses, select lifetime, to either acquire or upgrade
$('#radioLifetimeSupporter', page).checked(true).checkboxradio('refresh');
}
$('.radioDonationType:checked', page).trigger('change');
if (info.IsActiveSupporter || info.IsExpiredSupporter) {
$('.currentPlanInfo', page).show();
} else {
$('.currentPlanInfo', page).hide();
}
if (info.IsActiveSupporter) {
$('.supporterContainer', page).addClass('hide');
} else {
$('.supporterContainer', page).removeClass('hide');
}
if (info.IsActiveSupporter && info.PlanType == 'Lifetime') {
$('.planSummary', page)
.html(Globalize.translate('MessageYouHaveALifetimeMembership'))
.css('color', 'green');
}
else if (info.IsActiveSupporter) {
$('.planSummary', page)
.html(Globalize.translate('MessageYouHaveAnActiveRecurringMembership').replace('{0}', info.PlanType))
.css('color', 'green');
}
else if (info.IsExpiredSupporter) {
var expirationDate = info.ExpirationDate ? parseISO8601Date(info.ExpirationDate, { toLocal: true }) : new Date();
expirationDate = expirationDate.toLocaleDateString();
$('.planSummary', page)
.html(Globalize.translate('MessageSupporterMembershipExpiredOn').replace('{0}', expirationDate))
.css('color', 'red');
}
});
}
function onSubmit() {
var form = this;
var page = $(form).parents('.page');
if ($('.hfIsActive', page).val() == 'true') {
var currentPlanType = $('.hfPlanType', page).val();
if (currentPlanType != 'Lifetime') {
// Use a regular alert to block the submission process until they hit ok
alert(Globalize.translate('MessageChangeRecurringPlanConfirm'));
}
}
}
$(document).on('pageinit', "#supporterPage", function () {
var page = this;
$('.radioDonationType', page).on('change', function () {
var donationType = getDonationType(page);
updateSavedDonationAmount(page);
if (donationType == 'once') {
$('.fldOneTimeDonationAmount', page).show();
removeRecurringFields(page);
setItemNumber(page, 'MBDonation');
$('#oneTimeDescription').show();
}
else if (donationType == 'yearly') {
$('.fldOneTimeDonationAmount', page).hide();
addRecurringFields('Y', page);
setItemNumber(page, 'MBSClubYearly');
setItemName(page, 'Emby Supporter Annual');
$('#oneTimeDescription').hide();
}
else if (donationType == 'monthly') {
$('.fldOneTimeDonationAmount', page).hide();
addRecurringFields('M', page);
setItemNumber(page, 'MBSClubMonthly');
setItemName(page, 'Emby Supporter Monthly');
$('#oneTimeDescription').hide();
}
else if (donationType == 'daily') {
$('.fldOneTimeDonationAmount', page).hide();
addRecurringFields('D', page);
setItemNumber(page, 'MBSClubDaily');
$('#oneTimeDescription').hide();
}
else {
// Lifetime
$('.fldOneTimeDonationAmount', page).hide();
removeRecurringFields(page);
setItemNumber(page, 'MBSupporter');
$('#oneTimeDescription').hide();
}
});
$('#selectOneTimeDonationAmount', page).on('change', function () {
updateSavedDonationAmount(page);
});
RegistrationServices.initSupporterForm(page);
$('.supporterForm').off('submit', onSubmit).on('submit', onSubmit);
}).on('pageshow', "#supporterPage", function () {
var page = this;
$('.lifetimeAmount', page).html('$' + lifeTimeAmount);
$('.monthlyAmount', page).html('$' + monthlyAmount);
$('.dailyAmount', page).html('$' + dailyAmount);
$('.yearlyAmount', page).html('$' + yearlyAmount);
$('#returnUrl', page).val(ApiClient.getUrl("supporterkey.html"));
$('.radioDonationType', page).trigger('change');
$('.benefits', page).html(Globalize.translate('HeaderSupporterBenefit', '<a href="http://emby.media/premiere" target="_blank">', '</a>')).trigger('create');
loadUserInfo(page);
});
})();

View file

@ -48,7 +48,7 @@
"ButtonConvertMedia": "Convert media", "ButtonConvertMedia": "Convert media",
"ButtonOrganize": "Organize", "ButtonOrganize": "Organize",
"LinkedToEmbyConnect": "Linked to Emby Connect", "LinkedToEmbyConnect": "Linked to Emby Connect",
"HeaderSupporterBenefits": "Supporter Benefits", "HeaderSupporterBenefits": "Emby Premiere Benefits",
"HeaderAddUser": "Add User", "HeaderAddUser": "Add User",
"LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
"LabelPinCode": "Pin code:", "LabelPinCode": "Pin code:",
@ -82,7 +82,6 @@
"LabelCustomCertificatePath": "Custom certificate path:", "LabelCustomCertificatePath": "Custom certificate path:",
"LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.", "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ButtonDonateWithPayPal": "Donate with PayPal",
"OptionDetectArchiveFilesAsMedia": "Detect archive files as media", "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
"OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.", "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
"LabelEnterConnectUserName": "Username or email:", "LabelEnterConnectUserName": "Username or email:",
@ -289,8 +288,9 @@
"TitleSupport": "Support", "TitleSupport": "Support",
"TabLog": "Log", "TabLog": "Log",
"TabAbout": "About", "TabAbout": "About",
"TabSupporterKey": "Supporter Key", "TabSupporterKey": "Emby Premiere Key",
"TabBecomeSupporter": "Become a Supporter", "TabBecomeSupporter": "Get Emby Premiere",
"TabEmbyPremiere": "Emby Premiere",
"ProjectHasCommunity": "Emby has a thriving community of users and contributors.", "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.", "CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "Search the Knowledge Base", "SearchKnowledgeBase": "Search the Knowledge Base",
@ -591,9 +591,9 @@
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"LabelSupportAmount": "Amount (USD)", "LabelSupportAmount": "Amount (USD)",
"HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by donating. A portion of all donations will be contributed to other free tools we depend on.", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
"ButtonEnterSupporterKey": "Enter supporter key", "ButtonEnterSupporterKey": "Enter Emby Premiere key",
"DonationNextStep": "Once complete, please return and enter your supporter key, which you will receive by email.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
"AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.",
"AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.",
"OptionEnableEpisodeOrganization": "Enable new episode organization", "OptionEnableEpisodeOrganization": "Enable new episode organization",
@ -639,20 +639,20 @@
"LabelDownMixAudioScale": "Audio boost when downmixing:", "LabelDownMixAudioScale": "Audio boost when downmixing:",
"LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.",
"ButtonLinkKeys": "Transfer Key", "ButtonLinkKeys": "Transfer Key",
"LabelOldSupporterKey": "Old supporter key", "LabelOldSupporterKey": "Old Emby Premiere key",
"LabelNewSupporterKey": "New supporter key", "LabelNewSupporterKey": "New Emby Premiere key",
"HeaderMultipleKeyLinking": "Transfer to New Key", "HeaderMultipleKeyLinking": "Transfer to New Key",
"MultipleKeyLinkingHelp": "If you received a new supporter key, use this form to transfer the old key's registrations to your new one.", "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
"LabelCurrentEmailAddress": "Current email address", "LabelCurrentEmailAddress": "Current email address",
"LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.", "LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.",
"HeaderForgotKey": "Forgot Key", "HeaderForgotKey": "Forgot Key",
"LabelEmailAddress": "Email address", "LabelEmailAddress": "Email address",
"LabelSupporterEmailAddress": "The email address that was used to purchase the key.", "LabelSupporterEmailAddress": "The email address that was used to purchase the key.",
"ButtonRetrieveKey": "Retrieve Key", "ButtonRetrieveKey": "Retrieve Key",
"LabelSupporterKey": "Supporter Key (paste from email)", "LabelSupporterKey": "Emby Premiere key (paste from email):",
"LabelSupporterKeyHelp": "Enter your supporter key to start enjoying additional benefits the community has developed for Emby.", "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
"MessageInvalidKey": "Supporter key is missing or invalid.", "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
"ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also be an Emby Supporter. Please donate and support the continued development of the core product. Thank you.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
"HeaderDisplaySettings": "Display Settings", "HeaderDisplaySettings": "Display Settings",
"TabPlayTo": "Play To", "TabPlayTo": "Play To",
"LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServer": "Enable Dlna server",
@ -912,7 +912,7 @@
"OptionCommunityMostWatchedSort": "Most Watched", "OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up", "TabNextUp": "Next Up",
"PlaceholderUsername": "Username", "PlaceholderUsername": "Username",
"HeaderBecomeProjectSupporter": "Become an Emby Supporter", "HeaderBecomeProjectSupporter": "Get Emby Premiere",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
"MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
@ -1002,8 +1002,6 @@
"HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.",
"LabelLoginDisclaimer": "Login disclaimer:", "LabelLoginDisclaimer": "Login disclaimer:",
"LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.",
"LabelAutomaticallyDonate": "Automatically donate this amount every month",
"LabelAutomaticallyDonateHelp": "You can cancel at any time via your PayPal account.",
"OptionList": "List", "OptionList": "List",
"TabDashboard": "Dashboard", "TabDashboard": "Dashboard",
"TitleServer": "Server", "TitleServer": "Server",
@ -1220,18 +1218,12 @@
"HeaderMetadataSettings": "Metadata Settings", "HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes", "LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
"TabDonate": "Donate",
"HeaderDonationType": "Donation type:", "HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation", "OptionMakeOneTimeDonation": "Make a separate donation",
"OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
"OptionYearlySupporterMembership": "Yearly supporter membership",
"OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer", "OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song", "OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video", "OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:", "LabelOneTimeDonationAmount": "Donation amount:",
"ButtonDonate": "Donate",
"ButtonPurchase": "Purchase", "ButtonPurchase": "Purchase",
"OptionActor": "Actor", "OptionActor": "Actor",
"OptionComposer": "Composer", "OptionComposer": "Composer",
@ -1245,9 +1237,9 @@
"HeaderPhotoInfo": "Photo Info", "HeaderPhotoInfo": "Photo Info",
"HeaderInstall": "Install", "HeaderInstall": "Install",
"LabelSelectVersionToInstall": "Select version to install:", "LabelSelectVersionToInstall": "Select version to install:",
"LinkSupporterMembership": "Learn about the Supporter Membership", "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
"MessageSupporterPluginRequiresMembership": "This plugin will require an active supporter membership after the 14 day free trial.", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
"MessagePremiumPluginRequiresMembership": "This plugin will require an active supporter membership in order to purchase after the 14 day free trial.", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
"HeaderReviews": "Reviews", "HeaderReviews": "Reviews",
"HeaderDeveloperInfo": "Developer Info", "HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History", "HeaderRevisionHistory": "Revision History",
@ -1292,7 +1284,7 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content", "LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control", "LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
"LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:", "LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
@ -1513,7 +1505,7 @@
"LabelTunerType": "Tuner type:", "LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.", "HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
"AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.", "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
@ -1528,5 +1520,7 @@
"LabelHardwareVideoDecoderHelp": "Available on supported systems only.", "LabelHardwareVideoDecoderHelp": "Available on supported systems only.",
"ButtonServerDashboard": "Server Dashboard", "ButtonServerDashboard": "Server Dashboard",
"HeaderAdmin": "Admin", "HeaderAdmin": "Admin",
"ButtonSignOut": "Sign out" "ButtonSignOut": "Sign out",
"HeaderCameraUpload": "Camera Upload",
"SelectCameraUploadServers": "Upload camera photos to the following servers:"
} }

View file

@ -48,7 +48,7 @@
"ButtonConvertMedia": "\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u0439 \u043c\u0435\u0434\u0438\u044f\u0442\u0430", "ButtonConvertMedia": "\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u0439 \u043c\u0435\u0434\u0438\u044f\u0442\u0430",
"ButtonOrganize": "\u041e\u0440\u0433\u0430\u043d\u0438\u0437\u0438\u0440\u0430\u0439", "ButtonOrganize": "\u041e\u0440\u0433\u0430\u043d\u0438\u0437\u0438\u0440\u0430\u0439",
"LinkedToEmbyConnect": "\u0421\u0432\u044a\u0440\u0437\u0430\u043d \u043a\u044a\u043c Emby Connect", "LinkedToEmbyConnect": "\u0421\u0432\u044a\u0440\u0437\u0430\u043d \u043a\u044a\u043c Emby Connect",
"HeaderSupporterBenefits": "\u041f\u043e\u0434\u0434\u0440\u044a\u0436\u043d\u0438\u0447\u0435\u0441\u043a\u0438 \u043f\u043e\u043b\u0437\u0438", "HeaderSupporterBenefits": "Emby Premiere Benefits",
"HeaderAddUser": "+ \u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b", "HeaderAddUser": "+ \u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b",
"LabelAddConnectSupporterHelp": "\u0417\u0430 \u0434\u0430 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u0435 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b \u043a\u043e\u0439\u0442\u043e \u043d\u0435 \u0435 \u0432 \u043b\u0438\u0441\u0442\u0438\u0442\u0435, \u0449\u0435 \u0442\u0440\u044f\u0431\u0432\u0430 \u043f\u044a\u0440\u0432\u043e \u0434\u0430 \u0437\u0430\u043a\u0430\u0447\u0438\u0442\u0435 \u0442\u0435\u0445\u043d\u0438\u044f \u043f\u0440\u043e\u0444\u0438\u043b \u043a\u044a\u043c Emby Connect \u043e\u0442 \u0442\u044f\u0445\u043d\u0430\u0442\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430.", "LabelAddConnectSupporterHelp": "\u0417\u0430 \u0434\u0430 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u0435 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b \u043a\u043e\u0439\u0442\u043e \u043d\u0435 \u0435 \u0432 \u043b\u0438\u0441\u0442\u0438\u0442\u0435, \u0449\u0435 \u0442\u0440\u044f\u0431\u0432\u0430 \u043f\u044a\u0440\u0432\u043e \u0434\u0430 \u0437\u0430\u043a\u0430\u0447\u0438\u0442\u0435 \u0442\u0435\u0445\u043d\u0438\u044f \u043f\u0440\u043e\u0444\u0438\u043b \u043a\u044a\u043c Emby Connect \u043e\u0442 \u0442\u044f\u0445\u043d\u0430\u0442\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430.",
"LabelPinCode": "\u041f\u0418\u041d \u043a\u043e\u0434:", "LabelPinCode": "\u041f\u0418\u041d \u043a\u043e\u0434:",
@ -82,7 +82,6 @@
"LabelCustomCertificatePath": "\u041f\u044a\u0442 \u043a\u044a\u043c \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u0430:", "LabelCustomCertificatePath": "\u041f\u044a\u0442 \u043a\u044a\u043c \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u0430:",
"LabelCustomCertificatePathHelp": "\u0418\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439\u0442\u0435 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u0435\u043d .pfx \u0444\u0430\u0439\u043b. \u0410\u043a\u043e \u0435 \u043f\u0440\u043e\u043f\u0443\u0441\u043d\u0430\u0442, \u0441\u044a\u0440\u0432\u044a\u0440\u044a\u0442 \u0449\u0435 \u0441\u044a\u0437\u0434\u0430\u0434\u0435 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d \u0441\u0430\u043c\u043e\u043f\u043e\u0434\u043f\u0438\u0441\u0430\u043d \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442.", "LabelCustomCertificatePathHelp": "\u0418\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439\u0442\u0435 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u0435\u043d .pfx \u0444\u0430\u0439\u043b. \u0410\u043a\u043e \u0435 \u043f\u0440\u043e\u043f\u0443\u0441\u043d\u0430\u0442, \u0441\u044a\u0440\u0432\u044a\u0440\u044a\u0442 \u0449\u0435 \u0441\u044a\u0437\u0434\u0430\u0434\u0435 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d \u0441\u0430\u043c\u043e\u043f\u043e\u0434\u043f\u0438\u0441\u0430\u043d \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442.",
"TitleNotifications": "\u0418\u0437\u0432\u0435\u0441\u0442\u0438\u044f", "TitleNotifications": "\u0418\u0437\u0432\u0435\u0441\u0442\u0438\u044f",
"ButtonDonateWithPayPal": "\u041d\u0430\u043f\u0440\u0430\u0432\u0438 \u0434\u0430\u0440\u0435\u043d\u0438\u0435 \u0441 PayPal",
"OptionDetectArchiveFilesAsMedia": "\u0420\u0430\u0437\u043f\u043e\u0437\u043d\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u0430\u0440\u0445\u0438\u0432\u0438 \u043a\u0430\u0442\u043e \u043c\u0435\u0434\u0438\u0439\u043d\u0438 \u0444\u0430\u0439\u043b\u043e\u0432\u0435", "OptionDetectArchiveFilesAsMedia": "\u0420\u0430\u0437\u043f\u043e\u0437\u043d\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u0430\u0440\u0445\u0438\u0432\u0438 \u043a\u0430\u0442\u043e \u043c\u0435\u0434\u0438\u0439\u043d\u0438 \u0444\u0430\u0439\u043b\u043e\u0432\u0435",
"OptionDetectArchiveFilesAsMediaHelp": "\u0410\u043a\u043e \u0435 \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d\u043e, \u0444\u0430\u0439\u043b\u043e\u0432\u0435 \u0441 \u0440\u0430\u0437\u0448\u0438\u0440\u0435\u043d\u0438\u044f .rar \u0438 .zip \u0449\u0435 \u0431\u044a\u0434\u0430\u0442 \u0440\u0430\u0437\u043f\u043e\u0437\u043d\u0430\u0432\u0430\u043d\u0438 \u043a\u0430\u0442\u043e \u043c\u0435\u0434\u0438\u0439\u043d\u0438 \u0444\u0430\u0439\u043b\u043e\u0432\u0435.", "OptionDetectArchiveFilesAsMediaHelp": "\u0410\u043a\u043e \u0435 \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d\u043e, \u0444\u0430\u0439\u043b\u043e\u0432\u0435 \u0441 \u0440\u0430\u0437\u0448\u0438\u0440\u0435\u043d\u0438\u044f .rar \u0438 .zip \u0449\u0435 \u0431\u044a\u0434\u0430\u0442 \u0440\u0430\u0437\u043f\u043e\u0437\u043d\u0430\u0432\u0430\u043d\u0438 \u043a\u0430\u0442\u043e \u043c\u0435\u0434\u0438\u0439\u043d\u0438 \u0444\u0430\u0439\u043b\u043e\u0432\u0435.",
"LabelEnterConnectUserName": "\u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u043e \u0438\u043c\u0435 \u0438\u043b\u0438 email:", "LabelEnterConnectUserName": "\u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u043e \u0438\u043c\u0435 \u0438\u043b\u0438 email:",
@ -289,8 +288,9 @@
"TitleSupport": "\u041f\u043e\u0434\u0434\u0440\u044a\u0436\u043a\u0430", "TitleSupport": "\u041f\u043e\u0434\u0434\u0440\u044a\u0436\u043a\u0430",
"TabLog": "\u041b\u043e\u0433", "TabLog": "\u041b\u043e\u0433",
"TabAbout": "\u041e\u0442\u043d\u043e\u0441\u043d\u043e", "TabAbout": "\u041e\u0442\u043d\u043e\u0441\u043d\u043e",
"TabSupporterKey": "\u041f\u043e\u0434\u0434\u0440\u044a\u0436\u043d\u0438\u043a\u043e\u0432 \u043a\u043b\u044e\u0447", "TabSupporterKey": "Emby Premiere Key",
"TabBecomeSupporter": "\u0421\u0442\u0430\u043d\u0438 \u043f\u043e\u0434\u0434\u0440\u044a\u0436\u043d\u0438\u043a", "TabBecomeSupporter": "Get Emby Premiere",
"TabEmbyPremiere": "Emby Premiere",
"ProjectHasCommunity": "Emby \u0438\u043c\u0430 \u043f\u0440\u043e\u0446\u044a\u0444\u0442\u044f\u0432\u0430\u0449\u043e \u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e \u043e\u0442 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438 \u0438 \u0441\u044a\u0442\u0440\u0443\u0434\u043d\u0438\u0446\u0438.", "ProjectHasCommunity": "Emby \u0438\u043c\u0430 \u043f\u0440\u043e\u0446\u044a\u0444\u0442\u044f\u0432\u0430\u0449\u043e \u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e \u043e\u0442 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438 \u0438 \u0441\u044a\u0442\u0440\u0443\u0434\u043d\u0438\u0446\u0438.",
"CheckoutKnowledgeBase": "\u0420\u0430\u0437\u0433\u043b\u0435\u0434\u0430\u0439\u0442\u0435 \u0431\u0430\u0437\u0430\u0442\u0430 \u043d\u0438 \u0441\u044a\u0441 \u0437\u043d\u0430\u043d\u0438\u044f, \u043a\u043e\u044f\u0442\u043e \u0449\u0435 \u0432\u0438 \u043f\u043e\u043c\u043e\u0433\u043d\u0435 \u0434\u0430 \u0432\u0437\u0435\u043c\u0435\u0442\u0435 \u043d\u0430\u0439-\u0434\u043e\u0431\u0440\u043e\u0442\u043e \u043e\u0442 Emby.", "CheckoutKnowledgeBase": "\u0420\u0430\u0437\u0433\u043b\u0435\u0434\u0430\u0439\u0442\u0435 \u0431\u0430\u0437\u0430\u0442\u0430 \u043d\u0438 \u0441\u044a\u0441 \u0437\u043d\u0430\u043d\u0438\u044f, \u043a\u043e\u044f\u0442\u043e \u0449\u0435 \u0432\u0438 \u043f\u043e\u043c\u043e\u0433\u043d\u0435 \u0434\u0430 \u0432\u0437\u0435\u043c\u0435\u0442\u0435 \u043d\u0430\u0439-\u0434\u043e\u0431\u0440\u043e\u0442\u043e \u043e\u0442 Emby.",
"SearchKnowledgeBase": "\u0422\u044a\u0440\u0441\u0438 \u0432 \u0411\u0430\u0437\u0430\u0442\u0430 \u043e\u0442 \u0417\u043d\u0430\u043d\u0438\u044f", "SearchKnowledgeBase": "\u0422\u044a\u0440\u0441\u0438 \u0432 \u0411\u0430\u0437\u0430\u0442\u0430 \u043e\u0442 \u0417\u043d\u0430\u043d\u0438\u044f",
@ -591,9 +591,9 @@
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"HeaderSupportTheTeam": "\u041f\u043e\u0434\u043a\u0440\u0435\u043f\u0435\u0442\u0435 Emby \u041e\u0442\u0431\u043e\u0440\u044a\u0442", "HeaderSupportTheTeam": "\u041f\u043e\u0434\u043a\u0440\u0435\u043f\u0435\u0442\u0435 Emby \u041e\u0442\u0431\u043e\u0440\u044a\u0442",
"LabelSupportAmount": "Amount (USD)", "LabelSupportAmount": "Amount (USD)",
"HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by donating. A portion of all donations will be contributed to other free tools we depend on.", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
"ButtonEnterSupporterKey": "Enter supporter key", "ButtonEnterSupporterKey": "Enter Emby Premiere key",
"DonationNextStep": "Once complete, please return and enter your supporter key, which you will receive by email.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
"AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.",
"AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.",
"OptionEnableEpisodeOrganization": "Enable new episode organization", "OptionEnableEpisodeOrganization": "Enable new episode organization",
@ -639,20 +639,20 @@
"LabelDownMixAudioScale": "Audio boost when downmixing:", "LabelDownMixAudioScale": "Audio boost when downmixing:",
"LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.",
"ButtonLinkKeys": "Transfer Key", "ButtonLinkKeys": "Transfer Key",
"LabelOldSupporterKey": "Old supporter key", "LabelOldSupporterKey": "Old Emby Premiere key",
"LabelNewSupporterKey": "New supporter key", "LabelNewSupporterKey": "New Emby Premiere key",
"HeaderMultipleKeyLinking": "Transfer to New Key", "HeaderMultipleKeyLinking": "Transfer to New Key",
"MultipleKeyLinkingHelp": "If you received a new supporter key, use this form to transfer the old key's registrations to your new one.", "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
"LabelCurrentEmailAddress": "Current email address", "LabelCurrentEmailAddress": "Current email address",
"LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.", "LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.",
"HeaderForgotKey": "Forgot Key", "HeaderForgotKey": "Forgot Key",
"LabelEmailAddress": "Email address", "LabelEmailAddress": "Email address",
"LabelSupporterEmailAddress": "The email address that was used to purchase the key.", "LabelSupporterEmailAddress": "The email address that was used to purchase the key.",
"ButtonRetrieveKey": "Retrieve Key", "ButtonRetrieveKey": "Retrieve Key",
"LabelSupporterKey": "Supporter Key (paste from email)", "LabelSupporterKey": "Emby Premiere key (paste from email):",
"LabelSupporterKeyHelp": "\u0412\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u0432\u0430\u0448\u0438\u044f \u043f\u043e\u0434\u0434\u0440\u044a\u0436\u043d\u0438\u0447\u0435\u0441\u043a\u0438 \u043a\u043b\u044e\u0447, \u0437\u0430 \u0434\u0430 \u0441\u0435 \u043d\u0430\u0441\u043b\u0430\u0434\u0438\u0442\u0435 \u043d\u0430 \u0434\u043e\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u043d\u0438\u0442\u0435 \u0435\u043a\u0441\u0442\u0440\u0438 \u043d\u0430\u043f\u0440\u0430\u0432\u0435\u043d\u0438 \u043e\u0442 \u043e\u0431\u0449\u043d\u043e\u0441\u0442\u0442\u0430.", "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
"MessageInvalidKey": "Supporter key is missing or invalid.", "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
"ErrorMessageInvalidKey": "\u0417\u0430 \u0434\u0430 \u043c\u043e\u0436\u0435 \u043a\u0430\u043a\u044a\u0432\u0442\u043e \u0438 \u0434\u0430 \u0435 \u043f\u0440\u0435\u043c\u0438\u0443\u043c \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b \u0434\u0430 \u0431\u044a\u0434\u0435 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u0430\u043d, \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0441\u0442\u0435 \u0438 Emby \u043f\u043e\u0434\u0434\u0440\u044a\u0436\u043d\u0438\u043a. \u041c\u043e\u043b\u044f, \u0434\u0430\u0440\u044f\u0432\u0430\u0439\u0442\u0435 \u0438 \u043f\u043e\u0434\u0434\u044a\u0440\u0436\u0430\u0439\u0442\u0435 \u043f\u0440\u043e\u0434\u044a\u043b\u0436\u0438\u0442\u0435\u043b\u043d\u043e\u0442\u043e \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u0435 \u043d\u0430 \u0433\u043b\u0430\u0432\u043d\u0438\u044f \u043f\u0440\u043e\u0434\u0443\u043a\u0442. \u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u044f.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
"HeaderDisplaySettings": "Display Settings", "HeaderDisplaySettings": "Display Settings",
"TabPlayTo": "Play To", "TabPlayTo": "Play To",
"LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServer": "Enable Dlna server",
@ -912,7 +912,7 @@
"OptionCommunityMostWatchedSort": "Most Watched", "OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up", "TabNextUp": "Next Up",
"PlaceholderUsername": "Username", "PlaceholderUsername": "Username",
"HeaderBecomeProjectSupporter": "Become an Emby Supporter", "HeaderBecomeProjectSupporter": "Get Emby Premiere",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
"MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
@ -1002,8 +1002,6 @@
"HeaderBrandingHelp": "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u0439\u0442\u0435 \u0438\u0437\u0433\u043b\u0435\u0434\u0430 \u043d\u0430 Emby \u0437\u0430 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u043d\u043e\u0442\u043e \u0443\u0434\u043e\u0431\u0441\u0442\u0432\u043e \u043d\u0430 \u0432\u0430\u0448\u0430\u0442\u0430 \u0433\u0440\u0443\u043f\u0430 \u0438\u043b\u0438 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u044f.", "HeaderBrandingHelp": "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u0439\u0442\u0435 \u0438\u0437\u0433\u043b\u0435\u0434\u0430 \u043d\u0430 Emby \u0437\u0430 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u043d\u043e\u0442\u043e \u0443\u0434\u043e\u0431\u0441\u0442\u0432\u043e \u043d\u0430 \u0432\u0430\u0448\u0430\u0442\u0430 \u0433\u0440\u0443\u043f\u0430 \u0438\u043b\u0438 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u044f.",
"LabelLoginDisclaimer": "Login disclaimer:", "LabelLoginDisclaimer": "Login disclaimer:",
"LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.",
"LabelAutomaticallyDonate": "Automatically donate this amount every month",
"LabelAutomaticallyDonateHelp": "You can cancel at any time via your PayPal account.",
"OptionList": "List", "OptionList": "List",
"TabDashboard": "Dashboard", "TabDashboard": "Dashboard",
"TitleServer": "Server", "TitleServer": "Server",
@ -1220,18 +1218,12 @@
"HeaderMetadataSettings": "Metadata Settings", "HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes", "LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
"TabDonate": "Donate",
"HeaderDonationType": "Donation type:", "HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation", "OptionMakeOneTimeDonation": "Make a separate donation",
"OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
"OptionYearlySupporterMembership": "Yearly supporter membership",
"OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer", "OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song", "OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video", "OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:", "LabelOneTimeDonationAmount": "Donation amount:",
"ButtonDonate": "Donate",
"ButtonPurchase": "Purchase", "ButtonPurchase": "Purchase",
"OptionActor": "Actor", "OptionActor": "Actor",
"OptionComposer": "Composer", "OptionComposer": "Composer",
@ -1245,9 +1237,9 @@
"HeaderPhotoInfo": "Photo Info", "HeaderPhotoInfo": "Photo Info",
"HeaderInstall": "Install", "HeaderInstall": "Install",
"LabelSelectVersionToInstall": "Select version to install:", "LabelSelectVersionToInstall": "Select version to install:",
"LinkSupporterMembership": "Learn about the Supporter Membership", "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
"MessageSupporterPluginRequiresMembership": "This plugin will require an active supporter membership after the 14 day free trial.", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
"MessagePremiumPluginRequiresMembership": "This plugin will require an active supporter membership in order to purchase after the 14 day free trial.", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
"HeaderReviews": "Reviews", "HeaderReviews": "Reviews",
"HeaderDeveloperInfo": "Developer Info", "HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History", "HeaderRevisionHistory": "Revision History",
@ -1292,7 +1284,7 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content", "LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control", "LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
"LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:", "LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
@ -1513,7 +1505,7 @@
"LabelTunerType": "Tuner type:", "LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.", "HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
"AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.", "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
@ -1528,5 +1520,7 @@
"LabelHardwareVideoDecoderHelp": "Available on supported systems only.", "LabelHardwareVideoDecoderHelp": "Available on supported systems only.",
"ButtonServerDashboard": "Server Dashboard", "ButtonServerDashboard": "Server Dashboard",
"HeaderAdmin": "Admin", "HeaderAdmin": "Admin",
"ButtonSignOut": "Sign out" "ButtonSignOut": "Sign out",
"HeaderCameraUpload": "Camera Upload",
"SelectCameraUploadServers": "Upload camera photos to the following servers:"
} }

View file

@ -48,7 +48,7 @@
"ButtonConvertMedia": "Convert media", "ButtonConvertMedia": "Convert media",
"ButtonOrganize": "Organize", "ButtonOrganize": "Organize",
"LinkedToEmbyConnect": "Linked to Emby Connect", "LinkedToEmbyConnect": "Linked to Emby Connect",
"HeaderSupporterBenefits": "Supporter Benefits", "HeaderSupporterBenefits": "Emby Premiere Benefits",
"HeaderAddUser": "Add User", "HeaderAddUser": "Add User",
"LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
"LabelPinCode": "Pin code:", "LabelPinCode": "Pin code:",
@ -82,7 +82,6 @@
"LabelCustomCertificatePath": "Custom certificate path:", "LabelCustomCertificatePath": "Custom certificate path:",
"LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.", "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ButtonDonateWithPayPal": "Donate with PayPal",
"OptionDetectArchiveFilesAsMedia": "Detect archive files as media", "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
"OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.", "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
"LabelEnterConnectUserName": "Username or email:", "LabelEnterConnectUserName": "Username or email:",
@ -289,8 +288,9 @@
"TitleSupport": "Support", "TitleSupport": "Support",
"TabLog": "Log", "TabLog": "Log",
"TabAbout": "About", "TabAbout": "About",
"TabSupporterKey": "Supporter Key", "TabSupporterKey": "Emby Premiere Key",
"TabBecomeSupporter": "Become a Supporter", "TabBecomeSupporter": "Get Emby Premiere",
"TabEmbyPremiere": "Emby Premiere",
"ProjectHasCommunity": "Emby has a thriving community of users and contributors.", "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.", "CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "Search the Knowledge Base", "SearchKnowledgeBase": "Search the Knowledge Base",
@ -591,9 +591,9 @@
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"LabelSupportAmount": "Amount (USD)", "LabelSupportAmount": "Amount (USD)",
"HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by donating. A portion of all donations will be contributed to other free tools we depend on.", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
"ButtonEnterSupporterKey": "Enter supporter key", "ButtonEnterSupporterKey": "Enter Emby Premiere key",
"DonationNextStep": "Once complete, please return and enter your supporter key, which you will receive by email.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
"AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.",
"AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.",
"OptionEnableEpisodeOrganization": "Enable new episode organization", "OptionEnableEpisodeOrganization": "Enable new episode organization",
@ -639,20 +639,20 @@
"LabelDownMixAudioScale": "Audio boost when downmixing:", "LabelDownMixAudioScale": "Audio boost when downmixing:",
"LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.",
"ButtonLinkKeys": "Transfer Key", "ButtonLinkKeys": "Transfer Key",
"LabelOldSupporterKey": "Old supporter key", "LabelOldSupporterKey": "Old Emby Premiere key",
"LabelNewSupporterKey": "New supporter key", "LabelNewSupporterKey": "New Emby Premiere key",
"HeaderMultipleKeyLinking": "Transfer to New Key", "HeaderMultipleKeyLinking": "Transfer to New Key",
"MultipleKeyLinkingHelp": "If you received a new supporter key, use this form to transfer the old key's registrations to your new one.", "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
"LabelCurrentEmailAddress": "Current email address", "LabelCurrentEmailAddress": "Current email address",
"LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.", "LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.",
"HeaderForgotKey": "Forgot Key", "HeaderForgotKey": "Forgot Key",
"LabelEmailAddress": "Email address", "LabelEmailAddress": "Email address",
"LabelSupporterEmailAddress": "The email address that was used to purchase the key.", "LabelSupporterEmailAddress": "The email address that was used to purchase the key.",
"ButtonRetrieveKey": "Retrieve Key", "ButtonRetrieveKey": "Retrieve Key",
"LabelSupporterKey": "Supporter Key (paste from email)", "LabelSupporterKey": "Emby Premiere key (paste from email):",
"LabelSupporterKeyHelp": "Enter your supporter key to start enjoying additional benefits the community has developed for Emby.", "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
"MessageInvalidKey": "Supporter key is missing or invalid.", "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
"ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also be an Emby Supporter. Please donate and support the continued development of the core product. Thank you.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
"HeaderDisplaySettings": "Display Settings", "HeaderDisplaySettings": "Display Settings",
"TabPlayTo": "Play To", "TabPlayTo": "Play To",
"LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServer": "Enable Dlna server",
@ -912,7 +912,7 @@
"OptionCommunityMostWatchedSort": "Most Watched", "OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up", "TabNextUp": "Next Up",
"PlaceholderUsername": "Username", "PlaceholderUsername": "Username",
"HeaderBecomeProjectSupporter": "Become an Emby Supporter", "HeaderBecomeProjectSupporter": "Get Emby Premiere",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
"MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
@ -1002,8 +1002,6 @@
"HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.",
"LabelLoginDisclaimer": "Login disclaimer:", "LabelLoginDisclaimer": "Login disclaimer:",
"LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.",
"LabelAutomaticallyDonate": "Automatically donate this amount every month",
"LabelAutomaticallyDonateHelp": "You can cancel at any time via your PayPal account.",
"OptionList": "List", "OptionList": "List",
"TabDashboard": "Dashboard", "TabDashboard": "Dashboard",
"TitleServer": "Server", "TitleServer": "Server",
@ -1220,18 +1218,12 @@
"HeaderMetadataSettings": "Metadata Settings", "HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes", "LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
"TabDonate": "Donate",
"HeaderDonationType": "Donation type:", "HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation", "OptionMakeOneTimeDonation": "Make a separate donation",
"OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
"OptionYearlySupporterMembership": "Yearly supporter membership",
"OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer", "OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song", "OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video", "OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:", "LabelOneTimeDonationAmount": "Donation amount:",
"ButtonDonate": "Donate",
"ButtonPurchase": "Purchase", "ButtonPurchase": "Purchase",
"OptionActor": "Actor", "OptionActor": "Actor",
"OptionComposer": "Composer", "OptionComposer": "Composer",
@ -1245,9 +1237,9 @@
"HeaderPhotoInfo": "Photo Info", "HeaderPhotoInfo": "Photo Info",
"HeaderInstall": "Install", "HeaderInstall": "Install",
"LabelSelectVersionToInstall": "Select version to install:", "LabelSelectVersionToInstall": "Select version to install:",
"LinkSupporterMembership": "Learn about the Supporter Membership", "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
"MessageSupporterPluginRequiresMembership": "This plugin will require an active supporter membership after the 14 day free trial.", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
"MessagePremiumPluginRequiresMembership": "This plugin will require an active supporter membership in order to purchase after the 14 day free trial.", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
"HeaderReviews": "Reviews", "HeaderReviews": "Reviews",
"HeaderDeveloperInfo": "Developer Info", "HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History", "HeaderRevisionHistory": "Revision History",
@ -1292,7 +1284,7 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content", "LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control", "LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
"LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:", "LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
@ -1513,7 +1505,7 @@
"LabelTunerType": "Tuner type:", "LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.", "HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
"AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.", "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
@ -1528,5 +1520,7 @@
"LabelHardwareVideoDecoderHelp": "Available on supported systems only.", "LabelHardwareVideoDecoderHelp": "Available on supported systems only.",
"ButtonServerDashboard": "Server Dashboard", "ButtonServerDashboard": "Server Dashboard",
"HeaderAdmin": "Admin", "HeaderAdmin": "Admin",
"ButtonSignOut": "Sign out" "ButtonSignOut": "Sign out",
"HeaderCameraUpload": "Camera Upload",
"SelectCameraUploadServers": "Upload camera photos to the following servers:"
} }

View file

@ -48,7 +48,7 @@
"ButtonConvertMedia": "Convert media", "ButtonConvertMedia": "Convert media",
"ButtonOrganize": "Organizovat", "ButtonOrganize": "Organizovat",
"LinkedToEmbyConnect": "Linked to Emby Connect", "LinkedToEmbyConnect": "Linked to Emby Connect",
"HeaderSupporterBenefits": "Supporter Benefits", "HeaderSupporterBenefits": "Emby Premiere Benefits",
"HeaderAddUser": "P\u0159idat u\u017eivatele", "HeaderAddUser": "P\u0159idat u\u017eivatele",
"LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
"LabelPinCode": "Pin k\u00f3d:", "LabelPinCode": "Pin k\u00f3d:",
@ -82,7 +82,6 @@
"LabelCustomCertificatePath": "Custom certificate path:", "LabelCustomCertificatePath": "Custom certificate path:",
"LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.", "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ButtonDonateWithPayPal": "Donate with PayPal",
"OptionDetectArchiveFilesAsMedia": "Detect archive files as media", "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
"OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.", "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
"LabelEnterConnectUserName": "Username or email:", "LabelEnterConnectUserName": "Username or email:",
@ -289,8 +288,9 @@
"TitleSupport": "Podpora", "TitleSupport": "Podpora",
"TabLog": "Z\u00e1znam", "TabLog": "Z\u00e1znam",
"TabAbout": "O programu", "TabAbout": "O programu",
"TabSupporterKey": "Kl\u00ed\u010d sponzora", "TabSupporterKey": "Emby Premiere Key",
"TabBecomeSupporter": "Sta\u0148te se sponzorem", "TabBecomeSupporter": "Get Emby Premiere",
"TabEmbyPremiere": "Emby Premiere",
"ProjectHasCommunity": "Emby has a thriving community of users and contributors.", "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.", "CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "Prohledat znalostn\u00ed b\u00e1zi.", "SearchKnowledgeBase": "Prohledat znalostn\u00ed b\u00e1zi.",
@ -591,9 +591,9 @@
"LabelEndingEpisodeNumberHelp": "Vy\u017eadovan\u00e9 jenom pro s\u00fabory s v\u00edce epizodami", "LabelEndingEpisodeNumberHelp": "Vy\u017eadovan\u00e9 jenom pro s\u00fabory s v\u00edce epizodami",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"LabelSupportAmount": "Suma (USD)", "LabelSupportAmount": "Suma (USD)",
"HeaderSupportTheTeamHelp": "Pomozte zajistit pokra\u010dov\u00e1n\u00ed v\u00fdvoje tohoto projektu t\u00edm, \u017ee daruje. \u010c\u00e1st v\u0161ech dar\u016f bude pou\u017eita na dal\u0161\u00ed bezplatn\u00e9 n\u00e1stroje na kter\u00fdch jsme z\u00e1visl\u00ed.", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
"ButtonEnterSupporterKey": "Vlo\u017ete kl\u00ed\u010d sponzora", "ButtonEnterSupporterKey": "Enter Emby Premiere key",
"DonationNextStep": "Once complete, please return and enter your supporter key, which you will receive by email.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
"AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.",
"AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.",
"OptionEnableEpisodeOrganization": "Povolit organizaci nov\u00fdch epizod", "OptionEnableEpisodeOrganization": "Povolit organizaci nov\u00fdch epizod",
@ -639,20 +639,20 @@
"LabelDownMixAudioScale": "Audio boost when downmixing:", "LabelDownMixAudioScale": "Audio boost when downmixing:",
"LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.",
"ButtonLinkKeys": "Transfer Key", "ButtonLinkKeys": "Transfer Key",
"LabelOldSupporterKey": "Star\u00fd kl\u00ed\u010d sponzora", "LabelOldSupporterKey": "Old Emby Premiere key",
"LabelNewSupporterKey": "Nov\u00fd kl\u00ed\u010d sponzora", "LabelNewSupporterKey": "New Emby Premiere key",
"HeaderMultipleKeyLinking": "Transfer to New Key", "HeaderMultipleKeyLinking": "Transfer to New Key",
"MultipleKeyLinkingHelp": "If you received a new supporter key, use this form to transfer the old key's registrations to your new one.", "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
"LabelCurrentEmailAddress": "Aktu\u00e1ln\u00ed e-mailov\u00e1 adresa", "LabelCurrentEmailAddress": "Aktu\u00e1ln\u00ed e-mailov\u00e1 adresa",
"LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.", "LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.",
"HeaderForgotKey": "Forgot Key", "HeaderForgotKey": "Forgot Key",
"LabelEmailAddress": "E-mailov\u00e1 adresa", "LabelEmailAddress": "E-mailov\u00e1 adresa",
"LabelSupporterEmailAddress": "The email address that was used to purchase the key.", "LabelSupporterEmailAddress": "The email address that was used to purchase the key.",
"ButtonRetrieveKey": "Retrieve Key", "ButtonRetrieveKey": "Retrieve Key",
"LabelSupporterKey": "Supporter Key (paste from email)", "LabelSupporterKey": "Emby Premiere key (paste from email):",
"LabelSupporterKeyHelp": "Enter your supporter key to start enjoying additional benefits the community has developed for Emby.", "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
"MessageInvalidKey": "Supporter key is missing or invalid.", "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
"ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also be an Emby Supporter. Please donate and support the continued development of the core product. Thank you.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
"HeaderDisplaySettings": "Display Settings", "HeaderDisplaySettings": "Display Settings",
"TabPlayTo": "P\u0159ehr\u00e1vat do", "TabPlayTo": "P\u0159ehr\u00e1vat do",
"LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServer": "Enable Dlna server",
@ -912,7 +912,7 @@
"OptionCommunityMostWatchedSort": "Nejsledovan\u011bj\u0161\u00ed", "OptionCommunityMostWatchedSort": "Nejsledovan\u011bj\u0161\u00ed",
"TabNextUp": "Next Up", "TabNextUp": "Next Up",
"PlaceholderUsername": "Username", "PlaceholderUsername": "Username",
"HeaderBecomeProjectSupporter": "Become an Emby Supporter", "HeaderBecomeProjectSupporter": "Get Emby Premiere",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
"MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
@ -1002,8 +1002,6 @@
"HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.",
"LabelLoginDisclaimer": "Login disclaimer:", "LabelLoginDisclaimer": "Login disclaimer:",
"LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.",
"LabelAutomaticallyDonate": "Automatically donate this amount every month",
"LabelAutomaticallyDonateHelp": "You can cancel at any time via your PayPal account.",
"OptionList": "Seznam", "OptionList": "Seznam",
"TabDashboard": "Dashboard", "TabDashboard": "Dashboard",
"TitleServer": "Server", "TitleServer": "Server",
@ -1220,18 +1218,12 @@
"HeaderMetadataSettings": "Metadata Settings", "HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes", "LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
"TabDonate": "Donate",
"HeaderDonationType": "Donation type:", "HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation", "OptionMakeOneTimeDonation": "Make a separate donation",
"OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
"OptionYearlySupporterMembership": "Yearly supporter membership",
"OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer", "OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song", "OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video", "OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:", "LabelOneTimeDonationAmount": "Donation amount:",
"ButtonDonate": "Donate",
"ButtonPurchase": "Purchase", "ButtonPurchase": "Purchase",
"OptionActor": "Actor", "OptionActor": "Actor",
"OptionComposer": "Composer", "OptionComposer": "Composer",
@ -1245,9 +1237,9 @@
"HeaderPhotoInfo": "Photo Info", "HeaderPhotoInfo": "Photo Info",
"HeaderInstall": "Install", "HeaderInstall": "Install",
"LabelSelectVersionToInstall": "Select version to install:", "LabelSelectVersionToInstall": "Select version to install:",
"LinkSupporterMembership": "Learn about the Supporter Membership", "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
"MessageSupporterPluginRequiresMembership": "This plugin will require an active supporter membership after the 14 day free trial.", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
"MessagePremiumPluginRequiresMembership": "This plugin will require an active supporter membership in order to purchase after the 14 day free trial.", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
"HeaderReviews": "Reviews", "HeaderReviews": "Reviews",
"HeaderDeveloperInfo": "Developer Info", "HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History", "HeaderRevisionHistory": "Revision History",
@ -1292,7 +1284,7 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content", "LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control", "LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
"LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:", "LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
@ -1513,7 +1505,7 @@
"LabelTunerType": "Tuner type:", "LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.", "HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
"AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.", "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
@ -1528,5 +1520,7 @@
"LabelHardwareVideoDecoderHelp": "Available on supported systems only.", "LabelHardwareVideoDecoderHelp": "Available on supported systems only.",
"ButtonServerDashboard": "Server Dashboard", "ButtonServerDashboard": "Server Dashboard",
"HeaderAdmin": "Admin", "HeaderAdmin": "Admin",
"ButtonSignOut": "Sign out" "ButtonSignOut": "Sign out",
"HeaderCameraUpload": "Camera Upload",
"SelectCameraUploadServers": "Upload camera photos to the following servers:"
} }

View file

@ -48,7 +48,7 @@
"ButtonConvertMedia": "Konverter medie", "ButtonConvertMedia": "Konverter medie",
"ButtonOrganize": "Organiser", "ButtonOrganize": "Organiser",
"LinkedToEmbyConnect": "Koblet til Emby Connect", "LinkedToEmbyConnect": "Koblet til Emby Connect",
"HeaderSupporterBenefits": "Supporter fordele", "HeaderSupporterBenefits": "Emby Premiere Benefits",
"HeaderAddUser": "Tilf\u00f8j bruger", "HeaderAddUser": "Tilf\u00f8j bruger",
"LabelAddConnectSupporterHelp": "For at tilf\u00f8je en bruger som ikke er angivet skal du f\u00f8rst sammenk\u00e6de deres konto til Emby Connect fra deres brugers profilside.", "LabelAddConnectSupporterHelp": "For at tilf\u00f8je en bruger som ikke er angivet skal du f\u00f8rst sammenk\u00e6de deres konto til Emby Connect fra deres brugers profilside.",
"LabelPinCode": "Pinkode:", "LabelPinCode": "Pinkode:",
@ -82,7 +82,6 @@
"LabelCustomCertificatePath": "Sti til eget certifikat:", "LabelCustomCertificatePath": "Sti til eget certifikat:",
"LabelCustomCertificatePathHelp": "Angiv dit eget ssl certifikat som .pfx fil. Hvis du undlader dette, danner serveren et selvsigneret certifikat.", "LabelCustomCertificatePathHelp": "Angiv dit eget ssl certifikat som .pfx fil. Hvis du undlader dette, danner serveren et selvsigneret certifikat.",
"TitleNotifications": "Underretninger", "TitleNotifications": "Underretninger",
"ButtonDonateWithPayPal": "Doner via PayPal",
"OptionDetectArchiveFilesAsMedia": "Opfat arkiver som medier", "OptionDetectArchiveFilesAsMedia": "Opfat arkiver som medier",
"OptionDetectArchiveFilesAsMediaHelp": "Aktiver dette for at f\u00e5 filer med .zip og .rar endelser genkendt dom medier.", "OptionDetectArchiveFilesAsMediaHelp": "Aktiver dette for at f\u00e5 filer med .zip og .rar endelser genkendt dom medier.",
"LabelEnterConnectUserName": "Brugernavn eller email:", "LabelEnterConnectUserName": "Brugernavn eller email:",
@ -289,8 +288,9 @@
"TitleSupport": "Support", "TitleSupport": "Support",
"TabLog": "Log", "TabLog": "Log",
"TabAbout": "Om", "TabAbout": "Om",
"TabSupporterKey": "Supporter n\u00f8gle", "TabSupporterKey": "Emby Premiere Key",
"TabBecomeSupporter": "Bliv Supporter", "TabBecomeSupporter": "Get Emby Premiere",
"TabEmbyPremiere": "Emby Premiere",
"ProjectHasCommunity": "Emby har et blomstrende f\u00e6llesskab af brugere og bidragsydere.", "ProjectHasCommunity": "Emby har et blomstrende f\u00e6llesskab af brugere og bidragsydere.",
"CheckoutKnowledgeBase": "Tjek vores vidensdatabase for at f\u00e5 det meste ud af Emby.", "CheckoutKnowledgeBase": "Tjek vores vidensdatabase for at f\u00e5 det meste ud af Emby.",
"SearchKnowledgeBase": "S\u00f8g i vidensdatabasen", "SearchKnowledgeBase": "S\u00f8g i vidensdatabasen",
@ -350,7 +350,7 @@
"LabelImagesByNamePath": "Billeder efter navn-sti:", "LabelImagesByNamePath": "Billeder efter navn-sti:",
"LabelImagesByNamePathHelp": "Definer en alternativ mappe til nedhentede billeder af skuespillere, genrer og studier.", "LabelImagesByNamePathHelp": "Definer en alternativ mappe til nedhentede billeder af skuespillere, genrer og studier.",
"LabelMetadataPath": "Metadatasti:", "LabelMetadataPath": "Metadatasti:",
"LabelMetadataPathHelp": "Definer en alternativ sti til nedhentede billeder og metadata, hvis de ikke gemmes i mediemapperne.", "LabelMetadataPathHelp": "Specify a custom location for downloaded artwork and metadata.",
"LabelTranscodingTempPath": "Midlertidig sti til transkodning:", "LabelTranscodingTempPath": "Midlertidig sti til transkodning:",
"LabelTranscodingTempPathHelp": "Denne mappe indeholder transkoderens arbejdsfiler. Definer en alternativ sti eller lad den st\u00e5 tom for at bruge standardmappen i serverens datamappe.", "LabelTranscodingTempPathHelp": "Denne mappe indeholder transkoderens arbejdsfiler. Definer en alternativ sti eller lad den st\u00e5 tom for at bruge standardmappen i serverens datamappe.",
"TabBasics": "Basale", "TabBasics": "Basale",
@ -591,9 +591,9 @@
"LabelEndingEpisodeNumberHelp": "Kun n\u00f8dvendig for filer med flere episoder.", "LabelEndingEpisodeNumberHelp": "Kun n\u00f8dvendig for filer med flere episoder.",
"HeaderSupportTheTeam": "St\u00f8t Emby-holdet", "HeaderSupportTheTeam": "St\u00f8t Emby-holdet",
"LabelSupportAmount": "Bel\u00f8b (USD)", "LabelSupportAmount": "Bel\u00f8b (USD)",
"HeaderSupportTheTeamHelp": "Hj\u00e6lp med den fortsatte udvikling af dette projekt ved at donere. Den del af alle donationer vil g\u00e5 til andre gratis v\u00e6rkt\u00f8jer vi er afh\u00e6ngige af.", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
"ButtonEnterSupporterKey": "Indtast supporter n\u00f8gle", "ButtonEnterSupporterKey": "Enter Emby Premiere key",
"DonationNextStep": "Vend tilbage og indtast din supporter n\u00f8gle, n\u00e5r du har modtaget den p\u00e5 e-mail.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
"AutoOrganizeHelp": "Organiser automatisk overv\u00e5ger de mapper, du henter til, og flytter filerne til dine mediemapper.", "AutoOrganizeHelp": "Organiser automatisk overv\u00e5ger de mapper, du henter til, og flytter filerne til dine mediemapper.",
"AutoOrganizeTvHelp": "TV-fil organisering vil kun tilf\u00f8je episoder til eksisterende serier. Der oprettes ikke mapper til nye serier.", "AutoOrganizeTvHelp": "TV-fil organisering vil kun tilf\u00f8je episoder til eksisterende serier. Der oprettes ikke mapper til nye serier.",
"OptionEnableEpisodeOrganization": "Aktiver organisering af nye episoder.", "OptionEnableEpisodeOrganization": "Aktiver organisering af nye episoder.",
@ -639,20 +639,20 @@
"LabelDownMixAudioScale": "For\u00f8g lydstyrke ved nedmiksning:", "LabelDownMixAudioScale": "For\u00f8g lydstyrke ved nedmiksning:",
"LabelDownMixAudioScaleHelp": "For\u00f8g lydstyrken n\u00e5r der nedmikses. S\u00e6t v\u00e6rdien til 1 for at beholde den originale lydstyrke.", "LabelDownMixAudioScaleHelp": "For\u00f8g lydstyrken n\u00e5r der nedmikses. S\u00e6t v\u00e6rdien til 1 for at beholde den originale lydstyrke.",
"ButtonLinkKeys": "Overf\u00f8rselsn\u00f8gle", "ButtonLinkKeys": "Overf\u00f8rselsn\u00f8gle",
"LabelOldSupporterKey": "Dammel supporter n\u00f8gle", "LabelOldSupporterKey": "Old Emby Premiere key",
"LabelNewSupporterKey": "Ny supporter n\u00f8gle", "LabelNewSupporterKey": "New Emby Premiere key",
"HeaderMultipleKeyLinking": "Overf\u00f8r til ny n\u00f8gle", "HeaderMultipleKeyLinking": "Overf\u00f8r til ny n\u00f8gle",
"MultipleKeyLinkingHelp": "Hvis du f\u00e5r en ny supporter n\u00f8gle, brug s\u00e5 denne formular til af overf\u00f8re den gamle n\u00f8gles registreringer til den nye.", "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
"LabelCurrentEmailAddress": "Nuv\u00e6rende e-mail adresse", "LabelCurrentEmailAddress": "Nuv\u00e6rende e-mail adresse",
"LabelCurrentEmailAddressHelp": "Den e-mail adresse, den nye n\u00f8gle er sendt til.", "LabelCurrentEmailAddressHelp": "Den e-mail adresse, den nye n\u00f8gle er sendt til.",
"HeaderForgotKey": "Glemt n\u00f8gle", "HeaderForgotKey": "Glemt n\u00f8gle",
"LabelEmailAddress": "E-mail adresse", "LabelEmailAddress": "E-mail adresse",
"LabelSupporterEmailAddress": "Den e-mailadresse , du brugte da du k\u00f8bte n\u00f8glen.", "LabelSupporterEmailAddress": "Den e-mailadresse , du brugte da du k\u00f8bte n\u00f8glen.",
"ButtonRetrieveKey": "Hent n\u00f8gle", "ButtonRetrieveKey": "Hent n\u00f8gle",
"LabelSupporterKey": "Supporter n\u00f8gle (Kopier fra e-mail og inds\u00e6t)", "LabelSupporterKey": "Emby Premiere key (paste from email):",
"LabelSupporterKeyHelp": "Inds\u00e6t din supporter n\u00f8gle for at f\u00e5 yderligere fordele, f\u00e6llesskabet har udviklet til Emby.", "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
"MessageInvalidKey": "Supporter n\u00f8glen manler eller er ugyldig.", "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
"ErrorMessageInvalidKey": "For at registrere premium indhold skal du v\u00e6re en Emby Supporter. Doner venligst for at st\u00f8tte den l\u00f8bende udvikling af vores kerneprodukt. Mange tak.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
"HeaderDisplaySettings": "Indstillinger for visning", "HeaderDisplaySettings": "Indstillinger for visning",
"TabPlayTo": "Afspil til", "TabPlayTo": "Afspil til",
"LabelEnableDlnaServer": "Aktiver DNLA server", "LabelEnableDlnaServer": "Aktiver DNLA server",
@ -912,7 +912,7 @@
"OptionCommunityMostWatchedSort": "Mest sete", "OptionCommunityMostWatchedSort": "Mest sete",
"TabNextUp": "N\u00e6ste", "TabNextUp": "N\u00e6ste",
"PlaceholderUsername": "Brugernavn", "PlaceholderUsername": "Brugernavn",
"HeaderBecomeProjectSupporter": "Bliv en Emby supporter", "HeaderBecomeProjectSupporter": "Get Emby Premiere",
"MessageNoMovieSuggestionsAvailable": "Ingen filmforslag er tilg\u00e6ngelige. Begynd at se og vurder dine film, og kom tilbage for at se dine anbefalinger.", "MessageNoMovieSuggestionsAvailable": "Ingen filmforslag er tilg\u00e6ngelige. Begynd at se og vurder dine film, og kom tilbage for at se dine anbefalinger.",
"MessageNoCollectionsAvailable": "Samlinger tillader dig at lave personlige grupperinger affi lm, serier, albums, b\u00f8ger og spil. Klik p\u00e5 + knappen for at starte med at lave samlinger.", "MessageNoCollectionsAvailable": "Samlinger tillader dig at lave personlige grupperinger affi lm, serier, albums, b\u00f8ger og spil. Klik p\u00e5 + knappen for at starte med at lave samlinger.",
"MessageNoPlaylistsAvailable": "Afspilningslister lader dig lave lister af indhold der kan afspilles lige efter hinanden. For at tilf\u00f8je indhold til afspilningslisten, skal du h\u00f8jreklikke, eller trykke og holde, og derefter v\u00e6lge Tilf\u00f8j til afspilningsliste.", "MessageNoPlaylistsAvailable": "Afspilningslister lader dig lave lister af indhold der kan afspilles lige efter hinanden. For at tilf\u00f8je indhold til afspilningslisten, skal du h\u00f8jreklikke, eller trykke og holde, og derefter v\u00e6lge Tilf\u00f8j til afspilningsliste.",
@ -1002,8 +1002,6 @@
"HeaderBrandingHelp": "Brugertilpas udseendet af Emby s\u00e5 den passer til dine behov.", "HeaderBrandingHelp": "Brugertilpas udseendet af Emby s\u00e5 den passer til dine behov.",
"LabelLoginDisclaimer": "Login ansvarsfraskrivelse:", "LabelLoginDisclaimer": "Login ansvarsfraskrivelse:",
"LabelLoginDisclaimerHelp": "Dette bliver vist i bunden af loginsiden.", "LabelLoginDisclaimerHelp": "Dette bliver vist i bunden af loginsiden.",
"LabelAutomaticallyDonate": "Doner automatisk dette bel\u00f8b hver m\u00e5ned",
"LabelAutomaticallyDonateHelp": "Du kan opsige n\u00e5r som helst fra din PayPal-konto.",
"OptionList": "Liste", "OptionList": "Liste",
"TabDashboard": "Betjeningspanel", "TabDashboard": "Betjeningspanel",
"TitleServer": "Server", "TitleServer": "Server",
@ -1220,18 +1218,12 @@
"HeaderMetadataSettings": "Indstillinger for metadata", "HeaderMetadataSettings": "Indstillinger for metadata",
"LabelLockItemToPreventChanges": "L\u00e5s for at undg\u00e5 fremtidige \u00e6ndringer", "LabelLockItemToPreventChanges": "L\u00e5s for at undg\u00e5 fremtidige \u00e6ndringer",
"MessageLeaveEmptyToInherit": "Efterlad tom for at arve indstillinger fra en overliggende post eller den globale standardv\u00e6rdi.", "MessageLeaveEmptyToInherit": "Efterlad tom for at arve indstillinger fra en overliggende post eller den globale standardv\u00e6rdi.",
"TabDonate": "Don\u00e9r",
"HeaderDonationType": "Donationstype:", "HeaderDonationType": "Donationstype:",
"OptionMakeOneTimeDonation": "Giv en enkeltst\u00e5ende donation", "OptionMakeOneTimeDonation": "Giv en enkeltst\u00e5ende donation",
"OptionOneTimeDescription": "Dette er en yderligere donation til holdet for at vise din st\u00f8tte. Det giver ikke nogen andre fordele og vil ikke udl\u00f8se en supporter n\u00f8gle.",
"OptionLifeTimeSupporterMembership": "Livstid supporter medlemskab",
"OptionYearlySupporterMembership": "\u00c5rligt supporter medlemskab",
"OptionMonthlySupporterMembership": "M\u00e5nedligt supporter medlemskab",
"OptionNoTrailer": "Ingen trailer", "OptionNoTrailer": "Ingen trailer",
"OptionNoThemeSong": "Ingen temasang", "OptionNoThemeSong": "Ingen temasang",
"OptionNoThemeVideo": "Ingen temavideo", "OptionNoThemeVideo": "Ingen temavideo",
"LabelOneTimeDonationAmount": "Donationsbel\u00f8b:", "LabelOneTimeDonationAmount": "Donationsbel\u00f8b:",
"ButtonDonate": "Don\u00e9r",
"ButtonPurchase": "K\u00f8b", "ButtonPurchase": "K\u00f8b",
"OptionActor": "Skuespiller", "OptionActor": "Skuespiller",
"OptionComposer": "Komponist", "OptionComposer": "Komponist",
@ -1245,9 +1237,9 @@
"HeaderPhotoInfo": "Fotoinformation", "HeaderPhotoInfo": "Fotoinformation",
"HeaderInstall": "Installer", "HeaderInstall": "Installer",
"LabelSelectVersionToInstall": "V\u00e6lg hvilken version der skal installeres:", "LabelSelectVersionToInstall": "V\u00e6lg hvilken version der skal installeres:",
"LinkSupporterMembership": "L\u00e6r om supporter medlemskab", "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
"MessageSupporterPluginRequiresMembership": "Dette plugin kr\u00e6ver et aktivt supporter medlemskab efter den gratis 14-dages pr\u00f8veperiode.", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
"MessagePremiumPluginRequiresMembership": "For at k\u00f8be dette plugin kr\u00e6ves et aktivt supporter medlemskab efter den gratis 14-dages pr\u00f8veperiode.", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
"HeaderReviews": "Anmeldelser", "HeaderReviews": "Anmeldelser",
"HeaderDeveloperInfo": "Information om udvikleren", "HeaderDeveloperInfo": "Information om udvikleren",
"HeaderRevisionHistory": "Revisionshistorik", "HeaderRevisionHistory": "Revisionshistorik",
@ -1261,7 +1253,7 @@
"LabelExtractChaptersDuringLibraryScanHelp": "Aktiver dette for at udtr\u00e6kke kapitelbillleder mens videofiler bliver importeret under biblioteksskanningen. Hvi det ikke er aktiveret, bliver de udtrukket n\u00e5r den planlagte opgave kapitelbilleder k\u00f8rer, og lader den almindelige biblioteksskanning afslutte hurtigere.", "LabelExtractChaptersDuringLibraryScanHelp": "Aktiver dette for at udtr\u00e6kke kapitelbillleder mens videofiler bliver importeret under biblioteksskanningen. Hvi det ikke er aktiveret, bliver de udtrukket n\u00e5r den planlagte opgave kapitelbilleder k\u00f8rer, og lader den almindelige biblioteksskanning afslutte hurtigere.",
"LabelConnectGuestUserName": "Hans\/hendes Emby brugernavn eller e-mailadresse:", "LabelConnectGuestUserName": "Hans\/hendes Emby brugernavn eller e-mailadresse:",
"LabelConnectUserName": "Emby brugernavn\/e-mail:", "LabelConnectUserName": "Emby brugernavn\/e-mail:",
"LabelConnectUserNameHelp": "Forbind denne bruger til en Emby konto for at tillade nem adgang fra enhver Emby app uden at skulle kende serverens IP-adresse.", "LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
"ButtonLearnMoreAboutEmbyConnect": "L\u00e6r mere om Emby Connect", "ButtonLearnMoreAboutEmbyConnect": "L\u00e6r mere om Emby Connect",
"LabelExternalPlayers": "Eksterne afspillere:", "LabelExternalPlayers": "Eksterne afspillere:",
"LabelExternalPlayersHelp": "Vis knapper til afspilning af indhold i eksterne afspillere. Dette er kun tilg\u00e6ngeligt p\u00e5 enheder der underst\u00f8tter URL skemaer, almindeligvis Android og iOS. Med eksterne afspillere er der generelt gen underst\u00f8ttelse for fjernstyring eller forts\u00e6ttelse.", "LabelExternalPlayersHelp": "Vis knapper til afspilning af indhold i eksterne afspillere. Dette er kun tilg\u00e6ngeligt p\u00e5 enheder der underst\u00f8tter URL skemaer, almindeligvis Android og iOS. Med eksterne afspillere er der generelt gen underst\u00f8ttelse for fjernstyring eller forts\u00e6ttelse.",
@ -1292,7 +1284,7 @@
"LabelLimitIntrosToUnwatchedContent": "Brug kun trailere for ikke sete film", "LabelLimitIntrosToUnwatchedContent": "Brug kun trailere for ikke sete film",
"LabelEnableIntroParentalControl": "Aktiver smart for\u00e6ldrekontrol", "LabelEnableIntroParentalControl": "Aktiver smart for\u00e6ldrekontrol",
"LabelEnableIntroParentalControlHelp": "Vis kun trailere med samme eller lavere aldersgr\u00e6nse end hovedfilmen.", "LabelEnableIntroParentalControlHelp": "Vis kun trailere med samme eller lavere aldersgr\u00e6nse end hovedfilmen.",
"LabelTheseFeaturesRequireSupporterHelpAndTrailers": "Disse funktioner kr\u00e6ver et aktivt supporter medlemskab", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Kr\u00e6ver ops\u00e6tning af lokale trailere.", "OptionTrailersFromMyMoviesHelp": "Kr\u00e6ver ops\u00e6tning af lokale trailere.",
"LabelCustomIntrosPath": "Sti til brugerdefinerede introduktioner:", "LabelCustomIntrosPath": "Sti til brugerdefinerede introduktioner:",
"LabelCustomIntrosPathHelp": "En mappe med videofiler. En tilf\u00e6ldig video vil blive vist efter trailerne.", "LabelCustomIntrosPathHelp": "En mappe med videofiler. En tilf\u00e6ldig video vil blive vist efter trailerne.",
@ -1409,8 +1401,8 @@
"OptionAllowVideoPlaybackTranscoding": "Tillad videoafspilning der kr\u00e6ver transkodning", "OptionAllowVideoPlaybackTranscoding": "Tillad videoafspilning der kr\u00e6ver transkodning",
"OptionAllowMediaPlaybackTranscodingHelp": "Brugere vil modtage en venlig besked n\u00e5r indhold ikke kan afspilles grundet ovenst\u00e5ende politikker.", "OptionAllowMediaPlaybackTranscodingHelp": "Brugere vil modtage en venlig besked n\u00e5r indhold ikke kan afspilles grundet ovenst\u00e5ende politikker.",
"TabStreaming": "Streaming", "TabStreaming": "Streaming",
"LabelRemoteClientBitrateLimit": "Fjernklient birate gr\u00e6nse (Mbps):", "LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "En valgfri streaming bitrate gr\u00e6nse for alle fjernklienter. Dette kan bruges til at forhindre fjernklienter i at bede om en h\u00f8jere bitrate end din forbindelse kan klare.", "LabelRemoteClientBitrateLimitHelp": "An optional streaming bitrate limit for all out of network clients. This is useful to prevent clients from requesting a higher bitrate than your internet connection can handle.",
"LabelConversionCpuCoreLimit": "CPU kerne gr\u00e6nse:", "LabelConversionCpuCoreLimit": "CPU kerne gr\u00e6nse:",
"LabelConversionCpuCoreLimitHelp": "Begr\u00e6ns antallet af CPU kerner der bruges under synkroniseringskonvertering.", "LabelConversionCpuCoreLimitHelp": "Begr\u00e6ns antallet af CPU kerner der bruges under synkroniseringskonvertering.",
"OptionEnableFullSpeedConversion": "Aktiver konvertering med fuld hastighed", "OptionEnableFullSpeedConversion": "Aktiver konvertering med fuld hastighed",
@ -1513,7 +1505,7 @@
"LabelTunerType": "Tuner type:", "LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.", "HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
"AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.", "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
@ -1528,5 +1520,7 @@
"LabelHardwareVideoDecoderHelp": "Available on supported systems only.", "LabelHardwareVideoDecoderHelp": "Available on supported systems only.",
"ButtonServerDashboard": "Server Dashboard", "ButtonServerDashboard": "Server Dashboard",
"HeaderAdmin": "Admin", "HeaderAdmin": "Admin",
"ButtonSignOut": "Sign out" "ButtonSignOut": "Sign out",
"HeaderCameraUpload": "Camera Upload",
"SelectCameraUploadServers": "Upload camera photos to the following servers:"
} }

View file

@ -48,7 +48,7 @@
"ButtonConvertMedia": "Konvertiere Medien", "ButtonConvertMedia": "Konvertiere Medien",
"ButtonOrganize": "Organisieren", "ButtonOrganize": "Organisieren",
"LinkedToEmbyConnect": "Verbunden mit Emby Connect", "LinkedToEmbyConnect": "Verbunden mit Emby Connect",
"HeaderSupporterBenefits": "Unterst\u00fctzer Vorteile", "HeaderSupporterBenefits": "Emby Premiere Benefits",
"HeaderAddUser": "Benutzer hinzuf\u00fcgen", "HeaderAddUser": "Benutzer hinzuf\u00fcgen",
"LabelAddConnectSupporterHelp": "Um einen Benutzer hinzuzuf\u00fcgen, der nicht angezeigt wird, m\u00fcssen Sie diesen erst mit Emby Connect von seinem Benutzerprofil verbinden.", "LabelAddConnectSupporterHelp": "Um einen Benutzer hinzuzuf\u00fcgen, der nicht angezeigt wird, m\u00fcssen Sie diesen erst mit Emby Connect von seinem Benutzerprofil verbinden.",
"LabelPinCode": "PIN Code:", "LabelPinCode": "PIN Code:",
@ -82,7 +82,6 @@
"LabelCustomCertificatePath": "Eigener Zertifikats Ordner:", "LabelCustomCertificatePath": "Eigener Zertifikats Ordner:",
"LabelCustomCertificatePathHelp": "F\u00fcgen Sie ihr eigenes SSL Zertifikat als .pfx Datei hinzu. Wenn ausgelassen, wird der Server ein selbst signiertes Zertifikat f\u00fcr Sie erstellen.", "LabelCustomCertificatePathHelp": "F\u00fcgen Sie ihr eigenes SSL Zertifikat als .pfx Datei hinzu. Wenn ausgelassen, wird der Server ein selbst signiertes Zertifikat f\u00fcr Sie erstellen.",
"TitleNotifications": "Benachrichtigungen", "TitleNotifications": "Benachrichtigungen",
"ButtonDonateWithPayPal": "Spende mit PayPal",
"OptionDetectArchiveFilesAsMedia": "Behandle Archive wie Medien", "OptionDetectArchiveFilesAsMedia": "Behandle Archive wie Medien",
"OptionDetectArchiveFilesAsMediaHelp": "Wenn aktiviert werden .rar und .zip Datei-Erweiterungen wie Medien behandelt.", "OptionDetectArchiveFilesAsMediaHelp": "Wenn aktiviert werden .rar und .zip Datei-Erweiterungen wie Medien behandelt.",
"LabelEnterConnectUserName": "Benutzername oder Email:", "LabelEnterConnectUserName": "Benutzername oder Email:",
@ -289,8 +288,9 @@
"TitleSupport": "Support", "TitleSupport": "Support",
"TabLog": "Log", "TabLog": "Log",
"TabAbout": "\u00dcber", "TabAbout": "\u00dcber",
"TabSupporterKey": "Unterst\u00fctzerschl\u00fcssel", "TabSupporterKey": "Emby Premiere Key",
"TabBecomeSupporter": "Werde ein Unterst\u00fctzer", "TabBecomeSupporter": "Get Emby Premiere",
"TabEmbyPremiere": "Emby Premiere",
"ProjectHasCommunity": "Emby hat eine wachsende Community von Benutzern und Unterst\u00fctzern.", "ProjectHasCommunity": "Emby hat eine wachsende Community von Benutzern und Unterst\u00fctzern.",
"CheckoutKnowledgeBase": "Schauen Sie sich in der Emby Wissensdatenbank um, um das beste aus Emby heraus zu holen.", "CheckoutKnowledgeBase": "Schauen Sie sich in der Emby Wissensdatenbank um, um das beste aus Emby heraus zu holen.",
"SearchKnowledgeBase": "Durchsuche die Knowledge Base", "SearchKnowledgeBase": "Durchsuche die Knowledge Base",
@ -350,7 +350,7 @@
"LabelImagesByNamePath": "Images by name Pfad:", "LabelImagesByNamePath": "Images by name Pfad:",
"LabelImagesByNamePathHelp": "Spezifiziere eine individuelles Verzeichnis, f\u00fcr die heruntergeladenen Bilder der Darsteller, Genres und Studios.", "LabelImagesByNamePathHelp": "Spezifiziere eine individuelles Verzeichnis, f\u00fcr die heruntergeladenen Bilder der Darsteller, Genres und Studios.",
"LabelMetadataPath": "Metadata Pfad:", "LabelMetadataPath": "Metadata Pfad:",
"LabelMetadataPathHelp": "W\u00e4hle ein Verzeichnis f\u00fcr heruntergeladenes Bildmaterial und Metadaten, falls diese nicht innerhalb der Medienverzeichnisse gespeichert werden sollen.", "LabelMetadataPathHelp": "Specify a custom location for downloaded artwork and metadata.",
"LabelTranscodingTempPath": "Tempor\u00e4rer Transcoding Pfad:", "LabelTranscodingTempPath": "Tempor\u00e4rer Transcoding Pfad:",
"LabelTranscodingTempPathHelp": "Dieses Verzeichnis beinhaltet Dateien die f\u00fcr den Betrieb des Transcoders benutzt werden. W\u00e4hle einen eigenen Pfad oder lasse das Feld frei, um den Standardspeicherort im Server Datenverzeichnis zu nutzen.", "LabelTranscodingTempPathHelp": "Dieses Verzeichnis beinhaltet Dateien die f\u00fcr den Betrieb des Transcoders benutzt werden. W\u00e4hle einen eigenen Pfad oder lasse das Feld frei, um den Standardspeicherort im Server Datenverzeichnis zu nutzen.",
"TabBasics": "Grundlagen", "TabBasics": "Grundlagen",
@ -591,9 +591,9 @@
"LabelEndingEpisodeNumberHelp": "Nur erforderlich f\u00fcr Mehrfachepisoden", "LabelEndingEpisodeNumberHelp": "Nur erforderlich f\u00fcr Mehrfachepisoden",
"HeaderSupportTheTeam": "Unterst\u00fctzen Sie das Emby Team", "HeaderSupportTheTeam": "Unterst\u00fctzen Sie das Emby Team",
"LabelSupportAmount": "Betrag (USD)", "LabelSupportAmount": "Betrag (USD)",
"HeaderSupportTheTeamHelp": "Hilf bei der Weiterentwicklung dieses Projekts indem du spendest. Ein Teil der Spenden wird an freie Anwendungen auf die wir angewiesen sind weiter gespendet.", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
"ButtonEnterSupporterKey": "Supporter Key eintragen", "ButtonEnterSupporterKey": "Enter Emby Premiere key",
"DonationNextStep": "Sobald abgeschlossen, kehre bitte hierher zur\u00fcck und trage den Unterst\u00fctzerschl\u00fcssel ein, den du per E-Mail erhalten hast.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
"AutoOrganizeHelp": "Die \"Auto-Organisation\" \u00fcberpr\u00fcft die Download-Verzeichnisse auf neue Dateien und verschiebt diese in die Medienverzeichnisse.", "AutoOrganizeHelp": "Die \"Auto-Organisation\" \u00fcberpr\u00fcft die Download-Verzeichnisse auf neue Dateien und verschiebt diese in die Medienverzeichnisse.",
"AutoOrganizeTvHelp": "TV Dateien Organisation wird nur Episoden zu bereits vorhandenen Serien hinzuf\u00fcgen. Es werden keine neuen Serien angelegt.", "AutoOrganizeTvHelp": "TV Dateien Organisation wird nur Episoden zu bereits vorhandenen Serien hinzuf\u00fcgen. Es werden keine neuen Serien angelegt.",
"OptionEnableEpisodeOrganization": "Aktiviere die Sortierung neuer Episoden", "OptionEnableEpisodeOrganization": "Aktiviere die Sortierung neuer Episoden",
@ -639,20 +639,20 @@
"LabelDownMixAudioScale": "Audio Verst\u00e4rkung bei Downmixing:", "LabelDownMixAudioScale": "Audio Verst\u00e4rkung bei Downmixing:",
"LabelDownMixAudioScaleHelp": "Erh\u00f6he die Audiolautst\u00e4rke beim Heruntermischen. Setzte auf 1 um die original Lautst\u00e4rke zu erhalten.", "LabelDownMixAudioScaleHelp": "Erh\u00f6he die Audiolautst\u00e4rke beim Heruntermischen. Setzte auf 1 um die original Lautst\u00e4rke zu erhalten.",
"ButtonLinkKeys": "Schl\u00fcssel transferieren", "ButtonLinkKeys": "Schl\u00fcssel transferieren",
"LabelOldSupporterKey": "Alter Unterst\u00fctzerschl\u00fcssel", "LabelOldSupporterKey": "Old Emby Premiere key",
"LabelNewSupporterKey": "Neuer Unterst\u00fctzerschl\u00fcssel", "LabelNewSupporterKey": "New Emby Premiere key",
"HeaderMultipleKeyLinking": "Transferiere zu einem neuen Schl\u00fcssel", "HeaderMultipleKeyLinking": "Transferiere zu einem neuen Schl\u00fcssel",
"MultipleKeyLinkingHelp": "Benutze diese Funktion falls du einen neuen Unterst\u00fctzer Schl\u00fcssel erhalten hast, um deine alte Schl\u00fcssel Registrierung zu deiner neuen zu transferieren.", "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
"LabelCurrentEmailAddress": "Aktuelle E-Mail Adresse", "LabelCurrentEmailAddress": "Aktuelle E-Mail Adresse",
"LabelCurrentEmailAddressHelp": "Die aktuelle E-Mail Adresse, an die ihr neuer Schl\u00fcssel gesendet wurde.", "LabelCurrentEmailAddressHelp": "Die aktuelle E-Mail Adresse, an die ihr neuer Schl\u00fcssel gesendet wurde.",
"HeaderForgotKey": "Schl\u00fcssel vergessen", "HeaderForgotKey": "Schl\u00fcssel vergessen",
"LabelEmailAddress": "E-Mail Adresse", "LabelEmailAddress": "E-Mail Adresse",
"LabelSupporterEmailAddress": "Die E-Mail Adresse, die zum Kauf des Schl\u00fcssels benutzt wurde.", "LabelSupporterEmailAddress": "Die E-Mail Adresse, die zum Kauf des Schl\u00fcssels benutzt wurde.",
"ButtonRetrieveKey": "Schl\u00fcssel wiederherstellen", "ButtonRetrieveKey": "Schl\u00fcssel wiederherstellen",
"LabelSupporterKey": "Unterst\u00fctzerschl\u00fcssel (einf\u00fcgen aus E-Mail)", "LabelSupporterKey": "Emby Premiere key (paste from email):",
"LabelSupporterKeyHelp": "Geben Sie Ihren Unterst\u00fctzer-Schl\u00fcssel an um weitere Funktionen der Entwickler-Community f\u00fcr Emby freizuschalten.", "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
"MessageInvalidKey": "MB3 Schl\u00fcssel nicht vorhanden oder ung\u00fcltig.", "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
"ErrorMessageInvalidKey": "Wenn Sie sich f\u00fcr Premium Inhalte registrieren m\u00f6chten, ben\u00f6tigen Sie zuvor einen Emby Unterst\u00fctzer Schl\u00fcssel. Bitte Spenden und unterst\u00fctzen Sie die zuk\u00fcnftige Entwicklung des Hauptprodukts. Vielen Dank.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
"HeaderDisplaySettings": "Anzeige Einstellungen", "HeaderDisplaySettings": "Anzeige Einstellungen",
"TabPlayTo": "Spiele an", "TabPlayTo": "Spiele an",
"LabelEnableDlnaServer": "Aktiviere DLNA Server", "LabelEnableDlnaServer": "Aktiviere DLNA Server",
@ -912,7 +912,7 @@
"OptionCommunityMostWatchedSort": "Meistgesehen", "OptionCommunityMostWatchedSort": "Meistgesehen",
"TabNextUp": "Als N\u00e4chstes", "TabNextUp": "Als N\u00e4chstes",
"PlaceholderUsername": "Benutzername", "PlaceholderUsername": "Benutzername",
"HeaderBecomeProjectSupporter": "Werden Sie Emby Unterst\u00fctzer", "HeaderBecomeProjectSupporter": "Get Emby Premiere",
"MessageNoMovieSuggestionsAvailable": "Momentan sind keine Filmvorschl\u00e4ge verf\u00fcgbar. Schaue und bewerte zuerst deine Filme. Komme danach zur\u00fcck, um deine Filmvorschl\u00e4ge anzuschauen.", "MessageNoMovieSuggestionsAvailable": "Momentan sind keine Filmvorschl\u00e4ge verf\u00fcgbar. Schaue und bewerte zuerst deine Filme. Komme danach zur\u00fcck, um deine Filmvorschl\u00e4ge anzuschauen.",
"MessageNoCollectionsAvailable": "Sammlungen erlauben Ihnen eine personalisierte Gruppierung von Filmen, Serien, Alben, B\u00fcchern und Spielen. Klicken Sie die + Schaltfl\u00e4che um Sammlungen zu erstellen.", "MessageNoCollectionsAvailable": "Sammlungen erlauben Ihnen eine personalisierte Gruppierung von Filmen, Serien, Alben, B\u00fcchern und Spielen. Klicken Sie die + Schaltfl\u00e4che um Sammlungen zu erstellen.",
"MessageNoPlaylistsAvailable": "Wiedergabeliste erlauben es dir eine Liste mit Inhalt zu erstellen der fortlaufend abgespielt wird. Um einer Wiedergabeliste Inhalte hinzuzuf\u00fcgen klicke rechts oder mache einen langen Tap und w\u00e4hle daraufhin \"Zur Wiedergabeliste hinzuf\u00fcgen\" aus.", "MessageNoPlaylistsAvailable": "Wiedergabeliste erlauben es dir eine Liste mit Inhalt zu erstellen der fortlaufend abgespielt wird. Um einer Wiedergabeliste Inhalte hinzuzuf\u00fcgen klicke rechts oder mache einen langen Tap und w\u00e4hle daraufhin \"Zur Wiedergabeliste hinzuf\u00fcgen\" aus.",
@ -1002,8 +1002,6 @@
"HeaderBrandingHelp": "Personalisieren Sie das Erscheinen von Empy um es Ihren eigenen Bed\u00fcrfnissen, oder die Ihrer Organisation, anzupassen.", "HeaderBrandingHelp": "Personalisieren Sie das Erscheinen von Empy um es Ihren eigenen Bed\u00fcrfnissen, oder die Ihrer Organisation, anzupassen.",
"LabelLoginDisclaimer": "Anmeldung Haftungsausschluss:", "LabelLoginDisclaimer": "Anmeldung Haftungsausschluss:",
"LabelLoginDisclaimerHelp": "Dies wird am Boden des Anmeldebildschirms angezeigt.", "LabelLoginDisclaimerHelp": "Dies wird am Boden des Anmeldebildschirms angezeigt.",
"LabelAutomaticallyDonate": "Spende diesen Geldbetrag jeden Monat automatisch",
"LabelAutomaticallyDonateHelp": "Du kannst die Zahlungen jederzeit \u00fcber deinen PayPal Account deaktivieren.",
"OptionList": "List", "OptionList": "List",
"TabDashboard": "\u00dcbersicht", "TabDashboard": "\u00dcbersicht",
"TitleServer": "Server:", "TitleServer": "Server:",
@ -1220,18 +1218,12 @@
"HeaderMetadataSettings": "Metadaten Einstellungen", "HeaderMetadataSettings": "Metadaten Einstellungen",
"LabelLockItemToPreventChanges": "Sperre diesen Eintrag um zuk\u00fcnftige \u00c4nderungen zu verhindern", "LabelLockItemToPreventChanges": "Sperre diesen Eintrag um zuk\u00fcnftige \u00c4nderungen zu verhindern",
"MessageLeaveEmptyToInherit": "Freilassen f\u00fcr die Vererbung von Berechtigungen oder dem systemweiten Standardwert.", "MessageLeaveEmptyToInherit": "Freilassen f\u00fcr die Vererbung von Berechtigungen oder dem systemweiten Standardwert.",
"TabDonate": "Spenden",
"HeaderDonationType": "Spendentyp:", "HeaderDonationType": "Spendentyp:",
"OptionMakeOneTimeDonation": "Mache eine separate Spende", "OptionMakeOneTimeDonation": "Mache eine separate Spende",
"OptionOneTimeDescription": "Dies ist eine zus\u00e4tzliche Spende an das Team, um deine Unterst\u00fctzung zu zeigen. Dies bringt dir keine zus\u00e4tzlichen Vorteile.",
"OptionLifeTimeSupporterMembership": "Lebensl\u00e4ngliche Unterst\u00fctzer Mitgliedschaft",
"OptionYearlySupporterMembership": "J\u00e4hrliche Unterst\u00fctzer Mitgliedschaft",
"OptionMonthlySupporterMembership": "Monatliche Unterst\u00fctzer Mitgliedschaft",
"OptionNoTrailer": "Kein Trailer", "OptionNoTrailer": "Kein Trailer",
"OptionNoThemeSong": "Kein Theme Song", "OptionNoThemeSong": "Kein Theme Song",
"OptionNoThemeVideo": "Kein Theme Video", "OptionNoThemeVideo": "Kein Theme Video",
"LabelOneTimeDonationAmount": "Spendenbetrag:", "LabelOneTimeDonationAmount": "Spendenbetrag:",
"ButtonDonate": "Spenden",
"ButtonPurchase": "Kaufen", "ButtonPurchase": "Kaufen",
"OptionActor": "Schauspieler", "OptionActor": "Schauspieler",
"OptionComposer": "Komponist", "OptionComposer": "Komponist",
@ -1245,9 +1237,9 @@
"HeaderPhotoInfo": "Fotoinformation", "HeaderPhotoInfo": "Fotoinformation",
"HeaderInstall": "Installieren", "HeaderInstall": "Installieren",
"LabelSelectVersionToInstall": "W\u00e4hle die Version f\u00fcr die Installation:", "LabelSelectVersionToInstall": "W\u00e4hle die Version f\u00fcr die Installation:",
"LinkSupporterMembership": "Erfahre mehr \u00fcber die Unterst\u00fctzer Mitgliedschaft", "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
"MessageSupporterPluginRequiresMembership": "Dieses Plugin ben\u00f6tigt eine aktive Unterst\u00fctzer Mitgliedschaft nach dem Testzeitraum von 14 Tagen.", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
"MessagePremiumPluginRequiresMembership": "Dieses Plugin ben\u00f6tigt eine aktive Unterst\u00fctzer Mitgliedschaft nach dem Testzeitraum von 14 Tagen.", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
"HeaderReviews": "Bewertungen", "HeaderReviews": "Bewertungen",
"HeaderDeveloperInfo": "Entwicklerinformationen", "HeaderDeveloperInfo": "Entwicklerinformationen",
"HeaderRevisionHistory": "Versionsverlauf", "HeaderRevisionHistory": "Versionsverlauf",
@ -1261,7 +1253,7 @@
"LabelExtractChaptersDuringLibraryScanHelp": "Fall aktiviert, werden Kapitelbilder w\u00e4hrend des Imports von Videos beim Bibliothekenscan erzeugt. Falls deaktiviert, werden die Kapitelbilder w\u00e4hrend einer eigens daf\u00fcr geplanten Aufgabe erstellt, was den Bibliothekenscan beschleunigt.", "LabelExtractChaptersDuringLibraryScanHelp": "Fall aktiviert, werden Kapitelbilder w\u00e4hrend des Imports von Videos beim Bibliothekenscan erzeugt. Falls deaktiviert, werden die Kapitelbilder w\u00e4hrend einer eigens daf\u00fcr geplanten Aufgabe erstellt, was den Bibliothekenscan beschleunigt.",
"LabelConnectGuestUserName": "Ihr Emby Benutzername oder Emailadresse:", "LabelConnectGuestUserName": "Ihr Emby Benutzername oder Emailadresse:",
"LabelConnectUserName": "Emby Benutzername\/ Email-Adresse:", "LabelConnectUserName": "Emby Benutzername\/ Email-Adresse:",
"LabelConnectUserNameHelp": "Verbinden Sie diesen Benutzer mit einem Emby Konto um eine leichte erleichterte Verbindung ohne der Kenntnis einer Server IP Adresse zu erm\u00f6glichen.", "LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
"ButtonLearnMoreAboutEmbyConnect": "Erfahren Sie mehr \u00fcber Emby-Connect", "ButtonLearnMoreAboutEmbyConnect": "Erfahren Sie mehr \u00fcber Emby-Connect",
"LabelExternalPlayers": "Externe Abspielger\u00e4te:", "LabelExternalPlayers": "Externe Abspielger\u00e4te:",
"LabelExternalPlayersHelp": "Zeige Buttons um Inhalt auf externen Ger\u00e4te abzuspielen. Dies ist nur auf Ger\u00e4ten verf\u00fcgbar, die URL Schemes unterst\u00fctzen (Generell Android und iOS). In Verbindung mit externen Abspielern gibt es generell keine Unterst\u00fctzung f\u00fcr die Fernbedienung oder die Fortsetzung von gesehenen Inhalten.", "LabelExternalPlayersHelp": "Zeige Buttons um Inhalt auf externen Ger\u00e4te abzuspielen. Dies ist nur auf Ger\u00e4ten verf\u00fcgbar, die URL Schemes unterst\u00fctzen (Generell Android und iOS). In Verbindung mit externen Abspielern gibt es generell keine Unterst\u00fctzung f\u00fcr die Fernbedienung oder die Fortsetzung von gesehenen Inhalten.",
@ -1292,7 +1284,7 @@
"LabelLimitIntrosToUnwatchedContent": "Benutze nur Trailer von nicht gesehenen Inhalten", "LabelLimitIntrosToUnwatchedContent": "Benutze nur Trailer von nicht gesehenen Inhalten",
"LabelEnableIntroParentalControl": "Aktiviere die smarte Kindersicherung", "LabelEnableIntroParentalControl": "Aktiviere die smarte Kindersicherung",
"LabelEnableIntroParentalControlHelp": "Es werden nur Trailer ausgew\u00e4hlt, die der Altersfreigabe des Inhalts entsprechen der angesehen wird.", "LabelEnableIntroParentalControlHelp": "Es werden nur Trailer ausgew\u00e4hlt, die der Altersfreigabe des Inhalts entsprechen der angesehen wird.",
"LabelTheseFeaturesRequireSupporterHelpAndTrailers": "Diese Funktion ben\u00f6tigt eine aktive Unterst\u00fctzer Mitgliedschaft und die Installation des Trailer Channel Plugins.", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Ben\u00f6tigt die Einrichtung lokaler Trailer.", "OptionTrailersFromMyMoviesHelp": "Ben\u00f6tigt die Einrichtung lokaler Trailer.",
"LabelCustomIntrosPath": "Benutzerdefinierter Pfad f\u00fcr Intros:", "LabelCustomIntrosPath": "Benutzerdefinierter Pfad f\u00fcr Intros:",
"LabelCustomIntrosPathHelp": "Ein Ordner der Videodateien beinhaltet. Ein Video wird zuf\u00e4llig ausgew\u00e4hlt und nach einem Trailer abgespielt.", "LabelCustomIntrosPathHelp": "Ein Ordner der Videodateien beinhaltet. Ein Video wird zuf\u00e4llig ausgew\u00e4hlt und nach einem Trailer abgespielt.",
@ -1409,8 +1401,8 @@
"OptionAllowVideoPlaybackTranscoding": "Erlaube Video-Wiedergabe die Transkodierung ben\u00f6tigt", "OptionAllowVideoPlaybackTranscoding": "Erlaube Video-Wiedergabe die Transkodierung ben\u00f6tigt",
"OptionAllowMediaPlaybackTranscodingHelp": "Benutzer werden, basierend auf deren Einstellungen, eine aussagekr\u00e4ftige Nachricht erhalten, wenn Inhalte nicht abgespielt werden k\u00f6nnen.", "OptionAllowMediaPlaybackTranscodingHelp": "Benutzer werden, basierend auf deren Einstellungen, eine aussagekr\u00e4ftige Nachricht erhalten, wenn Inhalte nicht abgespielt werden k\u00f6nnen.",
"TabStreaming": "Streaming", "TabStreaming": "Streaming",
"LabelRemoteClientBitrateLimit": "Entfernte Client Datenraten-Begrenzung (Mbps):", "LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "Eine optionale Streaming Datengrenze f\u00fcr alle Clients mit Fernzugriff. Dies verhindert, dass Clients eine h\u00f6here Bandbreite als die zur Verf\u00fcgung stehende Verbindung, anfragen.", "LabelRemoteClientBitrateLimitHelp": "An optional streaming bitrate limit for all out of network clients. This is useful to prevent clients from requesting a higher bitrate than your internet connection can handle.",
"LabelConversionCpuCoreLimit": "CPU Kerne Limit:", "LabelConversionCpuCoreLimit": "CPU Kerne Limit:",
"LabelConversionCpuCoreLimitHelp": "Begrenzt die Anzahl der verwendeten CPU Kerne w\u00e4hrend der Konvertierung f\u00fcr die Synchronisation.", "LabelConversionCpuCoreLimitHelp": "Begrenzt die Anzahl der verwendeten CPU Kerne w\u00e4hrend der Konvertierung f\u00fcr die Synchronisation.",
"OptionEnableFullSpeedConversion": "Aktiviere Hochleistung-Konvertierung.", "OptionEnableFullSpeedConversion": "Aktiviere Hochleistung-Konvertierung.",
@ -1502,9 +1494,9 @@
"LabelTranscodingThreadCountHelp": "Legen Sie die maximale Anzahl von Transkodierungs-Threads fest. Das Reduzieren der Thread-Anzahl verringert die CPU Auslastung, wird aber m\u00f6glicherweise die Transkodierung nicht schnell genug f\u00fcr eine st\u00f6rungsfrei Wiedergabe erm\u00f6glichen.", "LabelTranscodingThreadCountHelp": "Legen Sie die maximale Anzahl von Transkodierungs-Threads fest. Das Reduzieren der Thread-Anzahl verringert die CPU Auslastung, wird aber m\u00f6glicherweise die Transkodierung nicht schnell genug f\u00fcr eine st\u00f6rungsfrei Wiedergabe erm\u00f6glichen.",
"OptionMax": "Max", "OptionMax": "Max",
"HeaderEmbyGuide": "Emby Guide", "HeaderEmbyGuide": "Emby Guide",
"LabelSyncPath": "Synchronisationsverzeichnis:", "LabelSyncPath": "Synced content path:",
"OptionSyncOnlyOnWifi": "Synchronisiere nur bei Wifi", "OptionSyncOnlyOnWifi": "Synchronisiere nur bei Wifi",
"OptionSyncLosslessAudioOriginal": "Synchronisiere unkomprimierte Audiospur in original Qualit\u00e4t (Wenn unterst\u00fctzt).", "OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality",
"HeaderMetadata": "Metadaten", "HeaderMetadata": "Metadaten",
"HeaderRecordingOptions": "Aufnahme Einstellungen", "HeaderRecordingOptions": "Aufnahme Einstellungen",
"ButtonShare": "Teilen", "ButtonShare": "Teilen",
@ -1513,7 +1505,7 @@
"LabelTunerType": "Tuner Typ:", "LabelTunerType": "Tuner Typ:",
"HelpMoreTunersCanBeAdded": "Weitere Tuner k\u00f6nnen sp\u00e4ter \u00fcber die Live TV Einstellungen hinzugef\u00fcgt werden.", "HelpMoreTunersCanBeAdded": "Weitere Tuner k\u00f6nnen sp\u00e4ter \u00fcber die Live TV Einstellungen hinzugef\u00fcgt werden.",
"AdditionalLiveTvProvidersCanBeInstalledLater": "Weitere TV Quellen k\u00f6nnen sp\u00e4ter in den Live TV Einstellungen hinzugef\u00fcgt werden.", "AdditionalLiveTvProvidersCanBeInstalledLater": "Weitere TV Quellen k\u00f6nnen sp\u00e4ter in den Live TV Einstellungen hinzugef\u00fcgt werden.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "Eine aktive Emby Unterst\u00fctzer-Mitgliedschaft wird f\u00fcr das automatisierte Erstellen von Aufnahmen ben\u00f6tigt.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "TV Guide einrichten", "HeaderSetupTVGuide": "TV Guide einrichten",
"LabelDataProvider": "Datenquelle:", "LabelDataProvider": "Datenquelle:",
"OptionSendRecordingsToAutoOrganize": "Aktiviere Auto-Organisation f\u00fcr neue Aufnahmen", "OptionSendRecordingsToAutoOrganize": "Aktiviere Auto-Organisation f\u00fcr neue Aufnahmen",
@ -1528,5 +1520,7 @@
"LabelHardwareVideoDecoderHelp": "Nur auf unterst\u00fctzen Systemen verf\u00fcgbar.", "LabelHardwareVideoDecoderHelp": "Nur auf unterst\u00fctzen Systemen verf\u00fcgbar.",
"ButtonServerDashboard": "Server Dashboard", "ButtonServerDashboard": "Server Dashboard",
"HeaderAdmin": "Admin", "HeaderAdmin": "Admin",
"ButtonSignOut": "Sign out" "ButtonSignOut": "Abmelden",
"HeaderCameraUpload": "Kamera Upload",
"SelectCameraUploadServers": "Lade Kamerabilder zu folgenden Servern hoch:"
} }

View file

@ -48,7 +48,7 @@
"ButtonConvertMedia": "Convert media", "ButtonConvertMedia": "Convert media",
"ButtonOrganize": "\u039f\u03c1\u03b3\u03ac\u03bd\u03c9\u03c3\u03b7", "ButtonOrganize": "\u039f\u03c1\u03b3\u03ac\u03bd\u03c9\u03c3\u03b7",
"LinkedToEmbyConnect": "Linked to Emby Connect", "LinkedToEmbyConnect": "Linked to Emby Connect",
"HeaderSupporterBenefits": "Supporter Benefits", "HeaderSupporterBenefits": "Emby Premiere Benefits",
"HeaderAddUser": "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03a7\u03c1\u03ae\u03c3\u03c4\u03b7", "HeaderAddUser": "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03a7\u03c1\u03ae\u03c3\u03c4\u03b7",
"LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
"LabelPinCode": "Pin code:", "LabelPinCode": "Pin code:",
@ -82,7 +82,6 @@
"LabelCustomCertificatePath": "Custom certificate path:", "LabelCustomCertificatePath": "Custom certificate path:",
"LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.", "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
"TitleNotifications": "\u0395\u03b9\u03b4\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03b9\u03c2", "TitleNotifications": "\u0395\u03b9\u03b4\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03b9\u03c2",
"ButtonDonateWithPayPal": "\u0394\u03c9\u03c1\u03b5\u03ac \u03bc\u03ad\u03c3\u03c9 Paypal",
"OptionDetectArchiveFilesAsMedia": "\u0391\u03bd\u03b1\u03b3\u03bd\u03ce\u03c1\u03b9\u03c3\u03b5 \u03a3\u03c5\u03bc\u03c0\u03b9\u03b5\u03c3\u03bc\u03ad\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03c9\u03c2 \u03c0\u03bf\u03bb\u03c5\u03bc\u03ad\u03c3\u03b1.", "OptionDetectArchiveFilesAsMedia": "\u0391\u03bd\u03b1\u03b3\u03bd\u03ce\u03c1\u03b9\u03c3\u03b5 \u03a3\u03c5\u03bc\u03c0\u03b9\u03b5\u03c3\u03bc\u03ad\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03c9\u03c2 \u03c0\u03bf\u03bb\u03c5\u03bc\u03ad\u03c3\u03b1.",
"OptionDetectArchiveFilesAsMediaHelp": "\u0391\u03c1\u03c7\u03b5\u03af\u03b1 \u03bc\u03b5 .rar \u03ba\u03b1\u03b9 .zip \u03ba\u03b1\u03c4\u03b1\u03bb\u03ae\u03be\u03b5\u03b9\u03c2 \u03b8\u03b1 \u03b1\u03bd\u03b1\u03b3\u03bd\u03c9\u03c1\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c9\u03c2 \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03c0\u03bf\u03bb\u03c5\u03bc\u03ad\u03c3\u03c9\u03bd.", "OptionDetectArchiveFilesAsMediaHelp": "\u0391\u03c1\u03c7\u03b5\u03af\u03b1 \u03bc\u03b5 .rar \u03ba\u03b1\u03b9 .zip \u03ba\u03b1\u03c4\u03b1\u03bb\u03ae\u03be\u03b5\u03b9\u03c2 \u03b8\u03b1 \u03b1\u03bd\u03b1\u03b3\u03bd\u03c9\u03c1\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c9\u03c2 \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03c0\u03bf\u03bb\u03c5\u03bc\u03ad\u03c3\u03c9\u03bd.",
"LabelEnterConnectUserName": "Username or email:", "LabelEnterConnectUserName": "Username or email:",
@ -289,8 +288,9 @@
"TitleSupport": "Support", "TitleSupport": "Support",
"TabLog": "\u0391\u03c1\u03c7\u03b5\u03af\u03bf \u039a\u03b1\u03c4\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2", "TabLog": "\u0391\u03c1\u03c7\u03b5\u03af\u03bf \u039a\u03b1\u03c4\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2",
"TabAbout": "\u03a0\u03b5\u03c1\u03af..", "TabAbout": "\u03a0\u03b5\u03c1\u03af..",
"TabSupporterKey": "\u03a3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03cc\u03c2 \u03a5\u03c0\u03bf\u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7\u03c2", "TabSupporterKey": "Emby Premiere Key",
"TabBecomeSupporter": "\u0393\u03af\u03bd\u03b5 \u03a5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03b9\u03ba\u03c4\u03ae\u03c2", "TabBecomeSupporter": "Get Emby Premiere",
"TabEmbyPremiere": "Emby Premiere",
"ProjectHasCommunity": "Emby has a thriving community of users and contributors.", "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.", "CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b5 \u03c3\u03c4\u03b7 \u0392\u03ac\u03c3\u03b7", "SearchKnowledgeBase": "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b5 \u03c3\u03c4\u03b7 \u0392\u03ac\u03c3\u03b7",
@ -591,9 +591,9 @@
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"LabelSupportAmount": "Amount (USD)", "LabelSupportAmount": "Amount (USD)",
"HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by donating. A portion of all donations will be contributed to other free tools we depend on.", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
"ButtonEnterSupporterKey": "Enter supporter key", "ButtonEnterSupporterKey": "Enter Emby Premiere key",
"DonationNextStep": "Once complete, please return and enter your supporter key, which you will receive by email.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
"AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.",
"AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.",
"OptionEnableEpisodeOrganization": "Enable new episode organization", "OptionEnableEpisodeOrganization": "Enable new episode organization",
@ -639,20 +639,20 @@
"LabelDownMixAudioScale": "Audio boost when downmixing:", "LabelDownMixAudioScale": "Audio boost when downmixing:",
"LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.",
"ButtonLinkKeys": "Transfer Key", "ButtonLinkKeys": "Transfer Key",
"LabelOldSupporterKey": "Old supporter key", "LabelOldSupporterKey": "Old Emby Premiere key",
"LabelNewSupporterKey": "New supporter key", "LabelNewSupporterKey": "New Emby Premiere key",
"HeaderMultipleKeyLinking": "Transfer to New Key", "HeaderMultipleKeyLinking": "Transfer to New Key",
"MultipleKeyLinkingHelp": "If you received a new supporter key, use this form to transfer the old key's registrations to your new one.", "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
"LabelCurrentEmailAddress": "Current email address", "LabelCurrentEmailAddress": "Current email address",
"LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.", "LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.",
"HeaderForgotKey": "Forgot Key", "HeaderForgotKey": "Forgot Key",
"LabelEmailAddress": "Email address", "LabelEmailAddress": "Email address",
"LabelSupporterEmailAddress": "The email address that was used to purchase the key.", "LabelSupporterEmailAddress": "The email address that was used to purchase the key.",
"ButtonRetrieveKey": "Retrieve Key", "ButtonRetrieveKey": "Retrieve Key",
"LabelSupporterKey": "Supporter Key (paste from email)", "LabelSupporterKey": "Emby Premiere key (paste from email):",
"LabelSupporterKeyHelp": "Enter your supporter key to start enjoying additional benefits the community has developed for Emby.", "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
"MessageInvalidKey": "Supporter key is missing or invalid.", "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
"ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also be an Emby Supporter. Please donate and support the continued development of the core product. Thank you.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
"HeaderDisplaySettings": "Display Settings", "HeaderDisplaySettings": "Display Settings",
"TabPlayTo": "Play To", "TabPlayTo": "Play To",
"LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServer": "Enable Dlna server",
@ -912,7 +912,7 @@
"OptionCommunityMostWatchedSort": "Most Watched", "OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up", "TabNextUp": "Next Up",
"PlaceholderUsername": "Username", "PlaceholderUsername": "Username",
"HeaderBecomeProjectSupporter": "Become an Emby Supporter", "HeaderBecomeProjectSupporter": "Get Emby Premiere",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
"MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
@ -1002,8 +1002,6 @@
"HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.",
"LabelLoginDisclaimer": "Login disclaimer:", "LabelLoginDisclaimer": "Login disclaimer:",
"LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.",
"LabelAutomaticallyDonate": "Automatically donate this amount every month",
"LabelAutomaticallyDonateHelp": "You can cancel at any time via your PayPal account.",
"OptionList": "List", "OptionList": "List",
"TabDashboard": "Dashboard", "TabDashboard": "Dashboard",
"TitleServer": "Server", "TitleServer": "Server",
@ -1220,18 +1218,12 @@
"HeaderMetadataSettings": "Metadata Settings", "HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes", "LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
"TabDonate": "Donate",
"HeaderDonationType": "Donation type:", "HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation", "OptionMakeOneTimeDonation": "Make a separate donation",
"OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
"OptionYearlySupporterMembership": "Yearly supporter membership",
"OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer", "OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song", "OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video", "OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:", "LabelOneTimeDonationAmount": "Donation amount:",
"ButtonDonate": "Donate",
"ButtonPurchase": "Purchase", "ButtonPurchase": "Purchase",
"OptionActor": "Actor", "OptionActor": "Actor",
"OptionComposer": "Composer", "OptionComposer": "Composer",
@ -1245,9 +1237,9 @@
"HeaderPhotoInfo": "Photo Info", "HeaderPhotoInfo": "Photo Info",
"HeaderInstall": "Install", "HeaderInstall": "Install",
"LabelSelectVersionToInstall": "Select version to install:", "LabelSelectVersionToInstall": "Select version to install:",
"LinkSupporterMembership": "Learn about the Supporter Membership", "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
"MessageSupporterPluginRequiresMembership": "This plugin will require an active supporter membership after the 14 day free trial.", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
"MessagePremiumPluginRequiresMembership": "This plugin will require an active supporter membership in order to purchase after the 14 day free trial.", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
"HeaderReviews": "Reviews", "HeaderReviews": "Reviews",
"HeaderDeveloperInfo": "Developer Info", "HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History", "HeaderRevisionHistory": "Revision History",
@ -1292,7 +1284,7 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content", "LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control", "LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
"LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:", "LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
@ -1513,7 +1505,7 @@
"LabelTunerType": "Tuner type:", "LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.", "HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
"AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.", "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
@ -1528,5 +1520,7 @@
"LabelHardwareVideoDecoderHelp": "Available on supported systems only.", "LabelHardwareVideoDecoderHelp": "Available on supported systems only.",
"ButtonServerDashboard": "Server Dashboard", "ButtonServerDashboard": "Server Dashboard",
"HeaderAdmin": "Admin", "HeaderAdmin": "Admin",
"ButtonSignOut": "Sign out" "ButtonSignOut": "Sign out",
"HeaderCameraUpload": "Camera Upload",
"SelectCameraUploadServers": "Upload camera photos to the following servers:"
} }

View file

@ -48,7 +48,7 @@
"ButtonConvertMedia": "Convert media", "ButtonConvertMedia": "Convert media",
"ButtonOrganize": "Organise", "ButtonOrganize": "Organise",
"LinkedToEmbyConnect": "Linked to Emby Connect", "LinkedToEmbyConnect": "Linked to Emby Connect",
"HeaderSupporterBenefits": "Supporter Benefits", "HeaderSupporterBenefits": "Emby Premiere Benefits",
"HeaderAddUser": "Add User", "HeaderAddUser": "Add User",
"LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
"LabelPinCode": "Pin code:", "LabelPinCode": "Pin code:",
@ -82,7 +82,6 @@
"LabelCustomCertificatePath": "Custom certificate path:", "LabelCustomCertificatePath": "Custom certificate path:",
"LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.", "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ButtonDonateWithPayPal": "Donate with PayPal",
"OptionDetectArchiveFilesAsMedia": "Detect archive files as media", "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
"OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.", "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
"LabelEnterConnectUserName": "Username or email:", "LabelEnterConnectUserName": "Username or email:",
@ -289,8 +288,9 @@
"TitleSupport": "Support", "TitleSupport": "Support",
"TabLog": "Log", "TabLog": "Log",
"TabAbout": "About", "TabAbout": "About",
"TabSupporterKey": "Supporter Key", "TabSupporterKey": "Emby Premiere Key",
"TabBecomeSupporter": "Become a Supporter", "TabBecomeSupporter": "Get Emby Premiere",
"TabEmbyPremiere": "Emby Premiere",
"ProjectHasCommunity": "Emby has a thriving community of users and contributors.", "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.", "CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "Search the Knowledge Base", "SearchKnowledgeBase": "Search the Knowledge Base",
@ -591,9 +591,9 @@
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"LabelSupportAmount": "Amount (USD)", "LabelSupportAmount": "Amount (USD)",
"HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by donating. A portion of all donations will be contributed to other free tools we depend on.", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
"ButtonEnterSupporterKey": "Enter supporter key", "ButtonEnterSupporterKey": "Enter Emby Premiere key",
"DonationNextStep": "Once complete, please return and enter your supporter key, which you will receive by email.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
"AutoOrganizeHelp": "Auto-organise monitors your download folders for new files and moves them to your media directories", "AutoOrganizeHelp": "Auto-organise monitors your download folders for new files and moves them to your media directories",
"AutoOrganizeTvHelp": "TV file organising will only add episodes to existing series. It will not create new series folders.", "AutoOrganizeTvHelp": "TV file organising will only add episodes to existing series. It will not create new series folders.",
"OptionEnableEpisodeOrganization": "Enable new episode organisation", "OptionEnableEpisodeOrganization": "Enable new episode organisation",
@ -639,20 +639,20 @@
"LabelDownMixAudioScale": "Audio boost when downmixing:", "LabelDownMixAudioScale": "Audio boost when downmixing:",
"LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.",
"ButtonLinkKeys": "Transfer Key", "ButtonLinkKeys": "Transfer Key",
"LabelOldSupporterKey": "Old supporter key", "LabelOldSupporterKey": "Old Emby Premiere key",
"LabelNewSupporterKey": "New supporter key", "LabelNewSupporterKey": "New Emby Premiere key",
"HeaderMultipleKeyLinking": "Transfer to New Key", "HeaderMultipleKeyLinking": "Transfer to New Key",
"MultipleKeyLinkingHelp": "If you received a new supporter key, use this form to transfer the old key's registrations to your new one.", "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
"LabelCurrentEmailAddress": "Current email address", "LabelCurrentEmailAddress": "Current email address",
"LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.", "LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.",
"HeaderForgotKey": "Forgot Key", "HeaderForgotKey": "Forgot Key",
"LabelEmailAddress": "Email address", "LabelEmailAddress": "Email address",
"LabelSupporterEmailAddress": "The email address that was used to purchase the key.", "LabelSupporterEmailAddress": "The email address that was used to purchase the key.",
"ButtonRetrieveKey": "Retrieve Key", "ButtonRetrieveKey": "Retrieve Key",
"LabelSupporterKey": "Supporter Key (paste from email)", "LabelSupporterKey": "Emby Premiere key (paste from email):",
"LabelSupporterKeyHelp": "Enter your supporter key to start enjoying additional benefits the community has developed for Emby.", "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
"MessageInvalidKey": "Supporter key is missing or invalid.", "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
"ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also be an Emby Supporter. Please donate and support the continued development of the core product. Thank you.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
"HeaderDisplaySettings": "Display Settings", "HeaderDisplaySettings": "Display Settings",
"TabPlayTo": "Play To", "TabPlayTo": "Play To",
"LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServer": "Enable Dlna server",
@ -912,7 +912,7 @@
"OptionCommunityMostWatchedSort": "Most Watched", "OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up", "TabNextUp": "Next Up",
"PlaceholderUsername": "Username", "PlaceholderUsername": "Username",
"HeaderBecomeProjectSupporter": "Become an Emby Supporter", "HeaderBecomeProjectSupporter": "Get Emby Premiere",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
"MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
@ -1002,8 +1002,6 @@
"HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.",
"LabelLoginDisclaimer": "Login disclaimer:", "LabelLoginDisclaimer": "Login disclaimer:",
"LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.",
"LabelAutomaticallyDonate": "Automatically donate this amount every month",
"LabelAutomaticallyDonateHelp": "You can cancel at any time via your PayPal account.",
"OptionList": "List", "OptionList": "List",
"TabDashboard": "Dashboard", "TabDashboard": "Dashboard",
"TitleServer": "Server", "TitleServer": "Server",
@ -1220,18 +1218,12 @@
"HeaderMetadataSettings": "Metadata Settings", "HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes", "LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
"TabDonate": "Donate",
"HeaderDonationType": "Donation type:", "HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation", "OptionMakeOneTimeDonation": "Make a separate donation",
"OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
"OptionYearlySupporterMembership": "Yearly supporter membership",
"OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer", "OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song", "OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video", "OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:", "LabelOneTimeDonationAmount": "Donation amount:",
"ButtonDonate": "Donate",
"ButtonPurchase": "Purchase", "ButtonPurchase": "Purchase",
"OptionActor": "Actor", "OptionActor": "Actor",
"OptionComposer": "Composer", "OptionComposer": "Composer",
@ -1245,9 +1237,9 @@
"HeaderPhotoInfo": "Photo Info", "HeaderPhotoInfo": "Photo Info",
"HeaderInstall": "Install", "HeaderInstall": "Install",
"LabelSelectVersionToInstall": "Select version to install:", "LabelSelectVersionToInstall": "Select version to install:",
"LinkSupporterMembership": "Learn about the Supporter Membership", "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
"MessageSupporterPluginRequiresMembership": "This plugin will require an active supporter membership after the 14 day free trial.", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
"MessagePremiumPluginRequiresMembership": "This plugin will require an active supporter membership in order to purchase after the 14 day free trial.", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
"HeaderReviews": "Reviews", "HeaderReviews": "Reviews",
"HeaderDeveloperInfo": "Developer Info", "HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History", "HeaderRevisionHistory": "Revision History",
@ -1292,7 +1284,7 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content", "LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control", "LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
"LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:", "LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
@ -1513,7 +1505,7 @@
"LabelTunerType": "Tuner type:", "LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.", "HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
"AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.", "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
@ -1528,5 +1520,7 @@
"LabelHardwareVideoDecoderHelp": "Available on supported systems only.", "LabelHardwareVideoDecoderHelp": "Available on supported systems only.",
"ButtonServerDashboard": "Server Dashboard", "ButtonServerDashboard": "Server Dashboard",
"HeaderAdmin": "Admin", "HeaderAdmin": "Admin",
"ButtonSignOut": "Sign out" "ButtonSignOut": "Sign out",
"HeaderCameraUpload": "Camera Upload",
"SelectCameraUploadServers": "Upload camera photos to the following servers:"
} }

View file

@ -48,7 +48,7 @@
"ButtonConvertMedia": "Convert media", "ButtonConvertMedia": "Convert media",
"ButtonOrganize": "Organize", "ButtonOrganize": "Organize",
"LinkedToEmbyConnect": "Linked to Emby Connect", "LinkedToEmbyConnect": "Linked to Emby Connect",
"HeaderSupporterBenefits": "Supporter Benefits", "HeaderSupporterBenefits": "Emby Premiere Benefits",
"HeaderAddUser": "Add User", "HeaderAddUser": "Add User",
"LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
"LabelPinCode": "Pin code:", "LabelPinCode": "Pin code:",
@ -82,7 +82,6 @@
"LabelCustomCertificatePath": "Custom certificate path:", "LabelCustomCertificatePath": "Custom certificate path:",
"LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.", "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ButtonDonateWithPayPal": "Donate with PayPal",
"OptionDetectArchiveFilesAsMedia": "Detect archive files as media", "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
"OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.", "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
"LabelEnterConnectUserName": "Username or email:", "LabelEnterConnectUserName": "Username or email:",
@ -289,8 +288,9 @@
"TitleSupport": "Support", "TitleSupport": "Support",
"TabLog": "Log", "TabLog": "Log",
"TabAbout": "About", "TabAbout": "About",
"TabSupporterKey": "Supporter Key", "TabSupporterKey": "Emby Premiere Key",
"TabBecomeSupporter": "Become a Supporter", "TabBecomeSupporter": "Get Emby Premiere",
"TabEmbyPremiere": "Emby Premiere",
"ProjectHasCommunity": "Emby has a thriving community of users and contributors.", "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.", "CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "Search the Knowledge Base", "SearchKnowledgeBase": "Search the Knowledge Base",
@ -591,9 +591,9 @@
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"LabelSupportAmount": "Amount (USD)", "LabelSupportAmount": "Amount (USD)",
"HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by donating. A portion of all donations will be contributed to other free tools we depend on.", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
"ButtonEnterSupporterKey": "Enter supporter key", "ButtonEnterSupporterKey": "Enter Emby Premiere key",
"DonationNextStep": "Once complete, please return and enter your supporter key, which you will receive by email.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
"AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.",
"AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.",
"OptionEnableEpisodeOrganization": "Enable new episode organization", "OptionEnableEpisodeOrganization": "Enable new episode organization",
@ -639,20 +639,20 @@
"LabelDownMixAudioScale": "Audio boost when downmixing:", "LabelDownMixAudioScale": "Audio boost when downmixing:",
"LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.",
"ButtonLinkKeys": "Transfer Key", "ButtonLinkKeys": "Transfer Key",
"LabelOldSupporterKey": "Old supporter key", "LabelOldSupporterKey": "Old Emby Premiere key",
"LabelNewSupporterKey": "New supporter key", "LabelNewSupporterKey": "New Emby Premiere key",
"HeaderMultipleKeyLinking": "Transfer to New Key", "HeaderMultipleKeyLinking": "Transfer to New Key",
"MultipleKeyLinkingHelp": "If you received a new supporter key, use this form to transfer the old key's registrations to your new one.", "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
"LabelCurrentEmailAddress": "Current email address", "LabelCurrentEmailAddress": "Current email address",
"LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.", "LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.",
"HeaderForgotKey": "Forgot Key", "HeaderForgotKey": "Forgot Key",
"LabelEmailAddress": "Email address", "LabelEmailAddress": "Email address",
"LabelSupporterEmailAddress": "The email address that was used to purchase the key.", "LabelSupporterEmailAddress": "The email address that was used to purchase the key.",
"ButtonRetrieveKey": "Retrieve Key", "ButtonRetrieveKey": "Retrieve Key",
"LabelSupporterKey": "Supporter Key (paste from email)", "LabelSupporterKey": "Emby Premiere key (paste from email):",
"LabelSupporterKeyHelp": "Enter your supporter key to start enjoying additional benefits the community has developed for Emby.", "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
"MessageInvalidKey": "Supporter key is missing or invalid.", "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
"ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also be an Emby Supporter. Please donate and support the continued development of the core product. Thank you.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
"HeaderDisplaySettings": "Display Settings", "HeaderDisplaySettings": "Display Settings",
"TabPlayTo": "Play To", "TabPlayTo": "Play To",
"LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServer": "Enable Dlna server",
@ -912,7 +912,7 @@
"OptionCommunityMostWatchedSort": "Most Watched", "OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up", "TabNextUp": "Next Up",
"PlaceholderUsername": "Username", "PlaceholderUsername": "Username",
"HeaderBecomeProjectSupporter": "Become an Emby Supporter", "HeaderBecomeProjectSupporter": "Get Emby Premiere",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
"MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
@ -1002,8 +1002,6 @@
"HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.",
"LabelLoginDisclaimer": "Login disclaimer:", "LabelLoginDisclaimer": "Login disclaimer:",
"LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.",
"LabelAutomaticallyDonate": "Automatically donate this amount every month",
"LabelAutomaticallyDonateHelp": "You can cancel at any time via your PayPal account.",
"OptionList": "List", "OptionList": "List",
"TabDashboard": "Dashboard", "TabDashboard": "Dashboard",
"TitleServer": "Server", "TitleServer": "Server",
@ -1220,18 +1218,12 @@
"HeaderMetadataSettings": "Metadata Settings", "HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes", "LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
"TabDonate": "Donate",
"HeaderDonationType": "Donation type:", "HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation", "OptionMakeOneTimeDonation": "Make a separate donation",
"OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
"OptionYearlySupporterMembership": "Yearly supporter membership",
"OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer", "OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song", "OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video", "OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:", "LabelOneTimeDonationAmount": "Donation amount:",
"ButtonDonate": "Donate",
"ButtonPurchase": "Purchase", "ButtonPurchase": "Purchase",
"OptionActor": "Actor", "OptionActor": "Actor",
"OptionComposer": "Composer", "OptionComposer": "Composer",
@ -1245,9 +1237,9 @@
"HeaderPhotoInfo": "Photo Info", "HeaderPhotoInfo": "Photo Info",
"HeaderInstall": "Install", "HeaderInstall": "Install",
"LabelSelectVersionToInstall": "Select version to install:", "LabelSelectVersionToInstall": "Select version to install:",
"LinkSupporterMembership": "Learn about the Supporter Membership", "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
"MessageSupporterPluginRequiresMembership": "This plugin will require an active supporter membership after the 14 day free trial.", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
"MessagePremiumPluginRequiresMembership": "This plugin will require an active supporter membership in order to purchase after the 14 day free trial.", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
"HeaderReviews": "Reviews", "HeaderReviews": "Reviews",
"HeaderDeveloperInfo": "Developer Info", "HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History", "HeaderRevisionHistory": "Revision History",
@ -1292,7 +1284,7 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content", "LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control", "LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
"LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:", "LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
@ -1513,7 +1505,7 @@
"LabelTunerType": "Tuner type:", "LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.", "HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
"AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.", "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
@ -1528,5 +1520,7 @@
"LabelHardwareVideoDecoderHelp": "Available on supported systems only.", "LabelHardwareVideoDecoderHelp": "Available on supported systems only.",
"ButtonServerDashboard": "Server Dashboard", "ButtonServerDashboard": "Server Dashboard",
"HeaderAdmin": "Admin", "HeaderAdmin": "Admin",
"ButtonSignOut": "Sign out" "ButtonSignOut": "Sign out",
"HeaderCameraUpload": "Camera Upload",
"SelectCameraUploadServers": "Upload camera photos to the following servers:"
} }

View file

@ -48,7 +48,7 @@
"ButtonConvertMedia": "Convert media", "ButtonConvertMedia": "Convert media",
"ButtonOrganize": "Organizar", "ButtonOrganize": "Organizar",
"LinkedToEmbyConnect": "Linked to Emby Connect", "LinkedToEmbyConnect": "Linked to Emby Connect",
"HeaderSupporterBenefits": "Supporter Benefits", "HeaderSupporterBenefits": "Emby Premiere Benefits",
"HeaderAddUser": "Agregar Usuario", "HeaderAddUser": "Agregar Usuario",
"LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
"LabelPinCode": "Pin code:", "LabelPinCode": "Pin code:",
@ -82,7 +82,6 @@
"LabelCustomCertificatePath": "Custom certificate path:", "LabelCustomCertificatePath": "Custom certificate path:",
"LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.", "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ButtonDonateWithPayPal": "Donate with PayPal",
"OptionDetectArchiveFilesAsMedia": "Detect archive files as media", "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
"OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.", "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
"LabelEnterConnectUserName": "Username or email:", "LabelEnterConnectUserName": "Username or email:",
@ -289,8 +288,9 @@
"TitleSupport": "Support", "TitleSupport": "Support",
"TabLog": "Log", "TabLog": "Log",
"TabAbout": "About", "TabAbout": "About",
"TabSupporterKey": "Supporter Key", "TabSupporterKey": "Emby Premiere Key",
"TabBecomeSupporter": "Become a Supporter", "TabBecomeSupporter": "Get Emby Premiere",
"TabEmbyPremiere": "Emby Premiere",
"ProjectHasCommunity": "Emby has a thriving community of users and contributors.", "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.", "CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "Search the Knowledge Base", "SearchKnowledgeBase": "Search the Knowledge Base",
@ -591,9 +591,9 @@
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"LabelSupportAmount": "Amount (USD)", "LabelSupportAmount": "Amount (USD)",
"HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by donating. A portion of all donations will be contributed to other free tools we depend on.", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
"ButtonEnterSupporterKey": "Enter supporter key", "ButtonEnterSupporterKey": "Enter Emby Premiere key",
"DonationNextStep": "Once complete, please return and enter your supporter key, which you will receive by email.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
"AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.",
"AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.",
"OptionEnableEpisodeOrganization": "Enable new episode organization", "OptionEnableEpisodeOrganization": "Enable new episode organization",
@ -639,20 +639,20 @@
"LabelDownMixAudioScale": "Audio boost when downmixing:", "LabelDownMixAudioScale": "Audio boost when downmixing:",
"LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.",
"ButtonLinkKeys": "Transfer Key", "ButtonLinkKeys": "Transfer Key",
"LabelOldSupporterKey": "Old supporter key", "LabelOldSupporterKey": "Old Emby Premiere key",
"LabelNewSupporterKey": "New supporter key", "LabelNewSupporterKey": "New Emby Premiere key",
"HeaderMultipleKeyLinking": "Transfer to New Key", "HeaderMultipleKeyLinking": "Transfer to New Key",
"MultipleKeyLinkingHelp": "If you received a new supporter key, use this form to transfer the old key's registrations to your new one.", "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
"LabelCurrentEmailAddress": "Current email address", "LabelCurrentEmailAddress": "Current email address",
"LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.", "LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.",
"HeaderForgotKey": "Forgot Key", "HeaderForgotKey": "Forgot Key",
"LabelEmailAddress": "Email address", "LabelEmailAddress": "Email address",
"LabelSupporterEmailAddress": "The email address that was used to purchase the key.", "LabelSupporterEmailAddress": "The email address that was used to purchase the key.",
"ButtonRetrieveKey": "Retrieve Key", "ButtonRetrieveKey": "Retrieve Key",
"LabelSupporterKey": "Supporter Key (paste from email)", "LabelSupporterKey": "Emby Premiere key (paste from email):",
"LabelSupporterKeyHelp": "Enter your supporter key to start enjoying additional benefits the community has developed for Emby.", "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
"MessageInvalidKey": "Supporter key is missing or invalid.", "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
"ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also be an Emby Supporter. Please donate and support the continued development of the core product. Thank you.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
"HeaderDisplaySettings": "Display Settings", "HeaderDisplaySettings": "Display Settings",
"TabPlayTo": "Play To", "TabPlayTo": "Play To",
"LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServer": "Enable Dlna server",
@ -912,7 +912,7 @@
"OptionCommunityMostWatchedSort": "Most Watched", "OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up", "TabNextUp": "Next Up",
"PlaceholderUsername": "Username", "PlaceholderUsername": "Username",
"HeaderBecomeProjectSupporter": "Become an Emby Supporter", "HeaderBecomeProjectSupporter": "Get Emby Premiere",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
"MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
@ -1002,8 +1002,6 @@
"HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.",
"LabelLoginDisclaimer": "Login disclaimer:", "LabelLoginDisclaimer": "Login disclaimer:",
"LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.",
"LabelAutomaticallyDonate": "Automatically donate this amount every month",
"LabelAutomaticallyDonateHelp": "You can cancel at any time via your PayPal account.",
"OptionList": "List", "OptionList": "List",
"TabDashboard": "Dashboard", "TabDashboard": "Dashboard",
"TitleServer": "Server", "TitleServer": "Server",
@ -1220,18 +1218,12 @@
"HeaderMetadataSettings": "Metadata Settings", "HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes", "LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
"TabDonate": "Donate",
"HeaderDonationType": "Donation type:", "HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation", "OptionMakeOneTimeDonation": "Make a separate donation",
"OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
"OptionYearlySupporterMembership": "Yearly supporter membership",
"OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer", "OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song", "OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video", "OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:", "LabelOneTimeDonationAmount": "Donation amount:",
"ButtonDonate": "Donate",
"ButtonPurchase": "Purchase", "ButtonPurchase": "Purchase",
"OptionActor": "Actor", "OptionActor": "Actor",
"OptionComposer": "Composer", "OptionComposer": "Composer",
@ -1245,9 +1237,9 @@
"HeaderPhotoInfo": "Photo Info", "HeaderPhotoInfo": "Photo Info",
"HeaderInstall": "Install", "HeaderInstall": "Install",
"LabelSelectVersionToInstall": "Select version to install:", "LabelSelectVersionToInstall": "Select version to install:",
"LinkSupporterMembership": "Learn about the Supporter Membership", "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
"MessageSupporterPluginRequiresMembership": "This plugin will require an active supporter membership after the 14 day free trial.", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
"MessagePremiumPluginRequiresMembership": "This plugin will require an active supporter membership in order to purchase after the 14 day free trial.", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
"HeaderReviews": "Reviews", "HeaderReviews": "Reviews",
"HeaderDeveloperInfo": "Developer Info", "HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History", "HeaderRevisionHistory": "Revision History",
@ -1292,7 +1284,7 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content", "LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control", "LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
"LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:", "LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
@ -1513,7 +1505,7 @@
"LabelTunerType": "Tuner type:", "LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.", "HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
"AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.", "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
@ -1528,5 +1520,7 @@
"LabelHardwareVideoDecoderHelp": "Available on supported systems only.", "LabelHardwareVideoDecoderHelp": "Available on supported systems only.",
"ButtonServerDashboard": "Server Dashboard", "ButtonServerDashboard": "Server Dashboard",
"HeaderAdmin": "Admin", "HeaderAdmin": "Admin",
"ButtonSignOut": "Sign out" "ButtonSignOut": "Sign out",
"HeaderCameraUpload": "Camera Upload",
"SelectCameraUploadServers": "Upload camera photos to the following servers:"
} }

View file

@ -48,7 +48,7 @@
"ButtonConvertMedia": "Convertir Medios", "ButtonConvertMedia": "Convertir Medios",
"ButtonOrganize": "Organizar", "ButtonOrganize": "Organizar",
"LinkedToEmbyConnect": "Enlazado a Emby Connect", "LinkedToEmbyConnect": "Enlazado a Emby Connect",
"HeaderSupporterBenefits": "Beneficios del Aficionado", "HeaderSupporterBenefits": "Emby Premiere Benefits",
"HeaderAddUser": "Agregar Usuario", "HeaderAddUser": "Agregar Usuario",
"LabelAddConnectSupporterHelp": "Para agregar un usuario que no esta listado, necesita primero enlazar su cuenta a Emby Connect desde su pagina de perfil de usuario.", "LabelAddConnectSupporterHelp": "Para agregar un usuario que no esta listado, necesita primero enlazar su cuenta a Emby Connect desde su pagina de perfil de usuario.",
"LabelPinCode": "C\u00f3digo pin:", "LabelPinCode": "C\u00f3digo pin:",
@ -82,7 +82,6 @@
"LabelCustomCertificatePath": "Trayectoria del certificado personalizado:", "LabelCustomCertificatePath": "Trayectoria del certificado personalizado:",
"LabelCustomCertificatePathHelp": "Proporcione su archivo de certificado .pfx personalizado. Si se omite, el servidor crear\u00e1 un certificado auto firmado.", "LabelCustomCertificatePathHelp": "Proporcione su archivo de certificado .pfx personalizado. Si se omite, el servidor crear\u00e1 un certificado auto firmado.",
"TitleNotifications": "Notificaciones", "TitleNotifications": "Notificaciones",
"ButtonDonateWithPayPal": "Donar con PayPal",
"OptionDetectArchiveFilesAsMedia": "Detectar archivos comprimidos como medios", "OptionDetectArchiveFilesAsMedia": "Detectar archivos comprimidos como medios",
"OptionDetectArchiveFilesAsMediaHelp": "Al habilitarlo, los archivos con extensiones .rar y .zip ser\u00e1n detectados como archivos de medios.", "OptionDetectArchiveFilesAsMediaHelp": "Al habilitarlo, los archivos con extensiones .rar y .zip ser\u00e1n detectados como archivos de medios.",
"LabelEnterConnectUserName": "Nombre de usuario o correo:", "LabelEnterConnectUserName": "Nombre de usuario o correo:",
@ -289,8 +288,9 @@
"TitleSupport": "Soporte", "TitleSupport": "Soporte",
"TabLog": "Bit\u00e1cora", "TabLog": "Bit\u00e1cora",
"TabAbout": "Acerca de", "TabAbout": "Acerca de",
"TabSupporterKey": "Clave de Aficionado", "TabSupporterKey": "Emby Premiere Key",
"TabBecomeSupporter": "Convertirse en Aficionado", "TabBecomeSupporter": "Get Emby Premiere",
"TabEmbyPremiere": "Emby Premiere",
"ProjectHasCommunity": "Emby cuenta con una pr\u00f3spera comunidad de usuarios y colaboradores.", "ProjectHasCommunity": "Emby cuenta con una pr\u00f3spera comunidad de usuarios y colaboradores.",
"CheckoutKnowledgeBase": "Eche un vistazo a nuestra base de conocimiento para ayudarle a sacar el m\u00e1ximo provecho a Emby", "CheckoutKnowledgeBase": "Eche un vistazo a nuestra base de conocimiento para ayudarle a sacar el m\u00e1ximo provecho a Emby",
"SearchKnowledgeBase": "Buscar en la Base de Conocimiento", "SearchKnowledgeBase": "Buscar en la Base de Conocimiento",
@ -591,9 +591,9 @@
"LabelEndingEpisodeNumberHelp": "S\u00f3lo requerido para archivos multi-episodio", "LabelEndingEpisodeNumberHelp": "S\u00f3lo requerido para archivos multi-episodio",
"HeaderSupportTheTeam": "Apoye al equipo de Emby", "HeaderSupportTheTeam": "Apoye al equipo de Emby",
"LabelSupportAmount": "Importe (USD)", "LabelSupportAmount": "Importe (USD)",
"HeaderSupportTheTeamHelp": "Ayude a garantizar el desarrollo continuo de este proyecto mediante una donaci\u00f3n. Una parte de todas las donaciones se destinar\u00e1 a otras herramientas gratuitas de las que dependemos.", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
"ButtonEnterSupporterKey": "Introduzca la Clave de Aficionado", "ButtonEnterSupporterKey": "Enter Emby Premiere key",
"DonationNextStep": "Cuando haya terminado, regrese e introduzca la clave de seguidor que recibir\u00e1 por correo electr\u00f3nico.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
"AutoOrganizeHelp": "La organizaci\u00f3n autom\u00e1tica monitorea sus carpetas de descarga en busca de nuevos archivos y los mueve a sus carpetas de medios.", "AutoOrganizeHelp": "La organizaci\u00f3n autom\u00e1tica monitorea sus carpetas de descarga en busca de nuevos archivos y los mueve a sus carpetas de medios.",
"AutoOrganizeTvHelp": "La organizaci\u00f3n de archivos de TV s\u00f3lo agregar\u00e1 episodios a series existentes. No crear\u00e1 carpetas para series nuevas.", "AutoOrganizeTvHelp": "La organizaci\u00f3n de archivos de TV s\u00f3lo agregar\u00e1 episodios a series existentes. No crear\u00e1 carpetas para series nuevas.",
"OptionEnableEpisodeOrganization": "Habilitar la organizaci\u00f3n de nuevos episodios", "OptionEnableEpisodeOrganization": "Habilitar la organizaci\u00f3n de nuevos episodios",
@ -639,20 +639,20 @@
"LabelDownMixAudioScale": "Fortalecimiento de audio durante el downmix:", "LabelDownMixAudioScale": "Fortalecimiento de audio durante el downmix:",
"LabelDownMixAudioScaleHelp": "Fortalezca el audio cuando se hace down mix. Coloque 1 para preservar el valor del volumen original.", "LabelDownMixAudioScaleHelp": "Fortalezca el audio cuando se hace down mix. Coloque 1 para preservar el valor del volumen original.",
"ButtonLinkKeys": "Transferir Clave", "ButtonLinkKeys": "Transferir Clave",
"LabelOldSupporterKey": "Clave de aficionado vieja", "LabelOldSupporterKey": "Old Emby Premiere key",
"LabelNewSupporterKey": "Clave de aficionado nueva", "LabelNewSupporterKey": "New Emby Premiere key",
"HeaderMultipleKeyLinking": "Transferir a Nueva Clave", "HeaderMultipleKeyLinking": "Transferir a Nueva Clave",
"MultipleKeyLinkingHelp": "Si usted recibi\u00f3 una nueva clave de aficionado, use este formulario para transferir los registros de su llave antigua a la nueva.", "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
"LabelCurrentEmailAddress": "Direcci\u00f3n de correo electr\u00f3nico actual", "LabelCurrentEmailAddress": "Direcci\u00f3n de correo electr\u00f3nico actual",
"LabelCurrentEmailAddressHelp": "La direcci\u00f3n de correo electr\u00f3nico actual a la que se envi\u00f3 la clave nueva.", "LabelCurrentEmailAddressHelp": "La direcci\u00f3n de correo electr\u00f3nico actual a la que se envi\u00f3 la clave nueva.",
"HeaderForgotKey": "No recuerdo mi clave", "HeaderForgotKey": "No recuerdo mi clave",
"LabelEmailAddress": "Correo Electr\u00f3nico", "LabelEmailAddress": "Correo Electr\u00f3nico",
"LabelSupporterEmailAddress": "La direcci\u00f3n de correo electr\u00f3nico que fue utilizada para comprar la clave.", "LabelSupporterEmailAddress": "La direcci\u00f3n de correo electr\u00f3nico que fue utilizada para comprar la clave.",
"ButtonRetrieveKey": "Recuperar Clave", "ButtonRetrieveKey": "Recuperar Clave",
"LabelSupporterKey": "Clave de Aficionado (pegue desde el correo electr\u00f3nico)", "LabelSupporterKey": "Emby Premiere key (paste from email):",
"LabelSupporterKeyHelp": "Introduzca su clave de aficionado para comenzar a disfrutar de beneficios adicionales que la comunidad ha desarrollado para Emby.", "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
"MessageInvalidKey": "Falta Clave de aficionado o es Inv\u00e1lida", "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
"ErrorMessageInvalidKey": "Para que cualquier contenido premium sea registrado, tambi\u00e9n debe ser un Aficionado Emby. Por favor haga una donaci\u00f3n y apoye el continuo desarrollo del producto principal. Gracias.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
"HeaderDisplaySettings": "Configuraci\u00f3n de Pantalla", "HeaderDisplaySettings": "Configuraci\u00f3n de Pantalla",
"TabPlayTo": "Reproducir En", "TabPlayTo": "Reproducir En",
"LabelEnableDlnaServer": "Habilitar servidor DLNA", "LabelEnableDlnaServer": "Habilitar servidor DLNA",
@ -912,7 +912,7 @@
"OptionCommunityMostWatchedSort": "M\u00e1s Visto", "OptionCommunityMostWatchedSort": "M\u00e1s Visto",
"TabNextUp": "A Continuaci\u00f3n", "TabNextUp": "A Continuaci\u00f3n",
"PlaceholderUsername": "Nombre de Usuario", "PlaceholderUsername": "Nombre de Usuario",
"HeaderBecomeProjectSupporter": "Convi\u00e9rtete en un Fan\u00e1tico Emby", "HeaderBecomeProjectSupporter": "Get Emby Premiere",
"MessageNoMovieSuggestionsAvailable": "No hay sugerencias de pel\u00edculas disponibles en este momento. Comienza a ver y a calificar tus pel\u00edculas, y regresa para ver tus recomendaciones.", "MessageNoMovieSuggestionsAvailable": "No hay sugerencias de pel\u00edculas disponibles en este momento. Comienza a ver y a calificar tus pel\u00edculas, y regresa para ver tus recomendaciones.",
"MessageNoCollectionsAvailable": "Las colecciones le permiten disfrutar de agrupaciones personalizadas de Pel\u00edculas, Series, \u00c1lbumes, Libros y Juegos. Haga clic en el bot\u00f3n + para iniciar la creaci\u00f3n de Colecciones.", "MessageNoCollectionsAvailable": "Las colecciones le permiten disfrutar de agrupaciones personalizadas de Pel\u00edculas, Series, \u00c1lbumes, Libros y Juegos. Haga clic en el bot\u00f3n + para iniciar la creaci\u00f3n de Colecciones.",
"MessageNoPlaylistsAvailable": "Las listas de reproducci\u00f3n le permiten crear listas de contenidos a ser reproducidos de manera consecutiva. Para agregar \u00edtems a una lista de reproducci\u00f3n, haga clic derecho o seleccione y mantenga, despu\u00e9s seleccione Agregar a Lista de Reproducci\u00f3n.", "MessageNoPlaylistsAvailable": "Las listas de reproducci\u00f3n le permiten crear listas de contenidos a ser reproducidos de manera consecutiva. Para agregar \u00edtems a una lista de reproducci\u00f3n, haga clic derecho o seleccione y mantenga, despu\u00e9s seleccione Agregar a Lista de Reproducci\u00f3n.",
@ -1002,8 +1002,6 @@
"HeaderBrandingHelp": "Personaliza la apariencia de Emby para ajustarla a su grupo u organizaci\u00f3n.", "HeaderBrandingHelp": "Personaliza la apariencia de Emby para ajustarla a su grupo u organizaci\u00f3n.",
"LabelLoginDisclaimer": "Aviso legal:", "LabelLoginDisclaimer": "Aviso legal:",
"LabelLoginDisclaimerHelp": "Esto se mostrara al final de la pagina de inicio de sesi\u00f3n.", "LabelLoginDisclaimerHelp": "Esto se mostrara al final de la pagina de inicio de sesi\u00f3n.",
"LabelAutomaticallyDonate": "Donar autom\u00e1ticamente este monto cada mes",
"LabelAutomaticallyDonateHelp": "Puedes cancelarlo en cualquier momento por medio de tu cuenta PayPal.",
"OptionList": "Lista", "OptionList": "Lista",
"TabDashboard": "Panel de Control", "TabDashboard": "Panel de Control",
"TitleServer": "Servidor", "TitleServer": "Servidor",
@ -1220,18 +1218,12 @@
"HeaderMetadataSettings": "Configuraci\u00f3n de metadatos", "HeaderMetadataSettings": "Configuraci\u00f3n de metadatos",
"LabelLockItemToPreventChanges": "Bloquear este \u00edtem para evitar cambios futuros", "LabelLockItemToPreventChanges": "Bloquear este \u00edtem para evitar cambios futuros",
"MessageLeaveEmptyToInherit": "Dejar vac\u00edo para heredar la configuraci\u00f3n del \u00edtem padre, o el valor global por omisi\u00f3n.", "MessageLeaveEmptyToInherit": "Dejar vac\u00edo para heredar la configuraci\u00f3n del \u00edtem padre, o el valor global por omisi\u00f3n.",
"TabDonate": "Donar",
"HeaderDonationType": "Tipo de Donaci\u00f3n:", "HeaderDonationType": "Tipo de Donaci\u00f3n:",
"OptionMakeOneTimeDonation": "Hacer una donaci\u00f3n independiente", "OptionMakeOneTimeDonation": "Hacer una donaci\u00f3n independiente",
"OptionOneTimeDescription": "Esta es una donaci\u00f3n adicional para mostrar tu apoyo al equipo. No tiene ning\u00fan beneficio adicional ni producir\u00e1 una clave de aficionado.",
"OptionLifeTimeSupporterMembership": "Membres\u00eda de aficionado vitalicia",
"OptionYearlySupporterMembership": "Membres\u00eda anual de aficionado",
"OptionMonthlySupporterMembership": "Membres\u00eda mensual de aficionado",
"OptionNoTrailer": "Sin Avance", "OptionNoTrailer": "Sin Avance",
"OptionNoThemeSong": "Sin Canci\u00f3n del Tema", "OptionNoThemeSong": "Sin Canci\u00f3n del Tema",
"OptionNoThemeVideo": "Sin Video del Tema", "OptionNoThemeVideo": "Sin Video del Tema",
"LabelOneTimeDonationAmount": "Cantidad a donar:", "LabelOneTimeDonationAmount": "Cantidad a donar:",
"ButtonDonate": "Donar",
"ButtonPurchase": "Comprar", "ButtonPurchase": "Comprar",
"OptionActor": "Actor", "OptionActor": "Actor",
"OptionComposer": "Compositor", "OptionComposer": "Compositor",
@ -1245,9 +1237,9 @@
"HeaderPhotoInfo": "Info de Fotograf\u00eda:", "HeaderPhotoInfo": "Info de Fotograf\u00eda:",
"HeaderInstall": "Instalar", "HeaderInstall": "Instalar",
"LabelSelectVersionToInstall": "Seleccionar versi\u00f3n a instalar:", "LabelSelectVersionToInstall": "Seleccionar versi\u00f3n a instalar:",
"LinkSupporterMembership": "Conozca m\u00e1s sobre la Membres\u00eda de Aficionado", "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
"MessageSupporterPluginRequiresMembership": "Este complemento requerir\u00e1 de una membres\u00eda de aficionado activa despu\u00e9s del periodo de prueba de 14 d\u00edas.", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
"MessagePremiumPluginRequiresMembership": "Este complemento requerir\u00e1 de una membres\u00eda de aficionado activa para poder comprarlo despu\u00e9s del periodo de prueba de 14 d\u00edas.", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
"HeaderReviews": "Rese\u00f1as", "HeaderReviews": "Rese\u00f1as",
"HeaderDeveloperInfo": "Info del desarrollador", "HeaderDeveloperInfo": "Info del desarrollador",
"HeaderRevisionHistory": "Historial de Versiones", "HeaderRevisionHistory": "Historial de Versiones",
@ -1292,7 +1284,7 @@
"LabelLimitIntrosToUnwatchedContent": "Solo usar tr\u00e1ilers de contenido no reproducido", "LabelLimitIntrosToUnwatchedContent": "Solo usar tr\u00e1ilers de contenido no reproducido",
"LabelEnableIntroParentalControl": "Habilitar control parental inteligente", "LabelEnableIntroParentalControl": "Habilitar control parental inteligente",
"LabelEnableIntroParentalControlHelp": "Los tr\u00e1ilers s\u00f3lo ser\u00e1n seleccionados con una clasificaci\u00f3n parental igual o menor a la del contenido que se est\u00e1 reproduciendo.", "LabelEnableIntroParentalControlHelp": "Los tr\u00e1ilers s\u00f3lo ser\u00e1n seleccionados con una clasificaci\u00f3n parental igual o menor a la del contenido que se est\u00e1 reproduciendo.",
"LabelTheseFeaturesRequireSupporterHelpAndTrailers": "Estas caractwr\u00edsticas requieren de una membres\u00eda de aficionado activa y de la instalaci\u00f3n del complemento del canal de tr\u00e1ilers.", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requiere configurar tr\u00e1ilers locales.", "OptionTrailersFromMyMoviesHelp": "Requiere configurar tr\u00e1ilers locales.",
"LabelCustomIntrosPath": "Trayectoria para intros personalizados:", "LabelCustomIntrosPath": "Trayectoria para intros personalizados:",
"LabelCustomIntrosPathHelp": "Un folder que contiene archivos de video. Un video ser\u00e1 seleccionado aleatoriamente y reproducido despu\u00e9s de los tr\u00e1ilers.", "LabelCustomIntrosPathHelp": "Un folder que contiene archivos de video. Un video ser\u00e1 seleccionado aleatoriamente y reproducido despu\u00e9s de los tr\u00e1ilers.",
@ -1513,7 +1505,7 @@
"LabelTunerType": "Tipo de sintonizador:", "LabelTunerType": "Tipo de sintonizador:",
"HelpMoreTunersCanBeAdded": "Se pueden agregar sintonizadores adicionales posteriormente en la secci\u00f3n de TV en Vivo.", "HelpMoreTunersCanBeAdded": "Se pueden agregar sintonizadores adicionales posteriormente en la secci\u00f3n de TV en Vivo.",
"AdditionalLiveTvProvidersCanBeInstalledLater": "Se pueden agregar proveedores de TV en Vivo posteriormente dentro de la secci\u00f3n de TV en Vivo.", "AdditionalLiveTvProvidersCanBeInstalledLater": "Se pueden agregar proveedores de TV en Vivo posteriormente dentro de la secci\u00f3n de TV en Vivo.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "Se necesita una cuenta Aficionado Emby activa para poder crear grabaciones automatizadas de series.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Configurar Gu\u00eda de TV", "HeaderSetupTVGuide": "Configurar Gu\u00eda de TV",
"LabelDataProvider": "Proveedor de datos:", "LabelDataProvider": "Proveedor de datos:",
"OptionSendRecordingsToAutoOrganize": "Habilitar Auto-Organizaci\u00f3n para nuevas grabaciones", "OptionSendRecordingsToAutoOrganize": "Habilitar Auto-Organizaci\u00f3n para nuevas grabaciones",
@ -1526,7 +1518,9 @@
"LabelVideoFrameAnalysisLimit": "Limitar el an\u00e1lisis cuadro por cuadro a videos menores a:", "LabelVideoFrameAnalysisLimit": "Limitar el an\u00e1lisis cuadro por cuadro a videos menores a:",
"LabelHardwareVideoDecoder": "Decodificador de video de hardware:", "LabelHardwareVideoDecoder": "Decodificador de video de hardware:",
"LabelHardwareVideoDecoderHelp": "Disponible \u00fanicamente en sistemas soportados.", "LabelHardwareVideoDecoderHelp": "Disponible \u00fanicamente en sistemas soportados.",
"ButtonServerDashboard": "Server Dashboard", "ButtonServerDashboard": "Panel de Control del Servidor",
"HeaderAdmin": "Admin", "HeaderAdmin": "Admin",
"ButtonSignOut": "Sign out" "ButtonSignOut": "Cerrar Sesi\u00f3n",
"HeaderCameraUpload": "Subir desde la C\u00e1mara",
"SelectCameraUploadServers": "Subir fotograf\u00edas desde la c\u00e1mara hacia el siguiente servidor:"
} }

View file

@ -48,7 +48,7 @@
"ButtonConvertMedia": "Convertir medios", "ButtonConvertMedia": "Convertir medios",
"ButtonOrganize": "Organizar", "ButtonOrganize": "Organizar",
"LinkedToEmbyConnect": "Vincular a Emby Connect", "LinkedToEmbyConnect": "Vincular a Emby Connect",
"HeaderSupporterBenefits": "Beneficios del partidario", "HeaderSupporterBenefits": "Emby Premiere Benefits",
"HeaderAddUser": "Agregar Usuario", "HeaderAddUser": "Agregar Usuario",
"LabelAddConnectSupporterHelp": "Para agregar a un usuario que no est\u00e1 en el listado, usted tiene primero que conectar su cuenta con Emby Connect desde la p\u00e1gina de perfil del usuario.", "LabelAddConnectSupporterHelp": "Para agregar a un usuario que no est\u00e1 en el listado, usted tiene primero que conectar su cuenta con Emby Connect desde la p\u00e1gina de perfil del usuario.",
"LabelPinCode": "C\u00f3digo PIN:", "LabelPinCode": "C\u00f3digo PIN:",
@ -82,7 +82,6 @@
"LabelCustomCertificatePath": "Lugar del certificado personalizado:", "LabelCustomCertificatePath": "Lugar del certificado personalizado:",
"LabelCustomCertificatePathHelp": "Aplique su propio certificado ssl or archivo .pfx. Si lo omite el servidor crear\u00e1 un certificado auto-registrador.", "LabelCustomCertificatePathHelp": "Aplique su propio certificado ssl or archivo .pfx. Si lo omite el servidor crear\u00e1 un certificado auto-registrador.",
"TitleNotifications": "Notificaciones", "TitleNotifications": "Notificaciones",
"ButtonDonateWithPayPal": "Done utilizando Paypal",
"OptionDetectArchiveFilesAsMedia": "Detectar archivos come medios", "OptionDetectArchiveFilesAsMedia": "Detectar archivos come medios",
"OptionDetectArchiveFilesAsMediaHelp": "Si es habilitado, archivos con extensiones .rar y .zip ser\u00e1n detectados como medios.", "OptionDetectArchiveFilesAsMediaHelp": "Si es habilitado, archivos con extensiones .rar y .zip ser\u00e1n detectados como medios.",
"LabelEnterConnectUserName": "Nombre de usuario o email:", "LabelEnterConnectUserName": "Nombre de usuario o email:",
@ -289,8 +288,9 @@
"TitleSupport": "Soporte", "TitleSupport": "Soporte",
"TabLog": "Log", "TabLog": "Log",
"TabAbout": "Acerca de", "TabAbout": "Acerca de",
"TabSupporterKey": "Clave de Seguidor", "TabSupporterKey": "Emby Premiere Key",
"TabBecomeSupporter": "Hazte Seguidor", "TabBecomeSupporter": "Get Emby Premiere",
"TabEmbyPremiere": "Emby Premiere",
"ProjectHasCommunity": "Emby tiene una pr\u00f3spera comunidad de usuarios y contribuidores.", "ProjectHasCommunity": "Emby tiene una pr\u00f3spera comunidad de usuarios y contribuidores.",
"CheckoutKnowledgeBase": "Vea nuestra base de conocimientos que le ayudar\u00e1 a obtener lo mejor de Emby.", "CheckoutKnowledgeBase": "Vea nuestra base de conocimientos que le ayudar\u00e1 a obtener lo mejor de Emby.",
"SearchKnowledgeBase": "Buscar en la base de conocimiento", "SearchKnowledgeBase": "Buscar en la base de conocimiento",
@ -350,7 +350,7 @@
"LabelImagesByNamePath": "Ruta de im\u00e1genes:", "LabelImagesByNamePath": "Ruta de im\u00e1genes:",
"LabelImagesByNamePathHelp": "Especifique una localizaci\u00f3n personalizada para bajar imagenes de actor, genero y estudio.", "LabelImagesByNamePathHelp": "Especifique una localizaci\u00f3n personalizada para bajar imagenes de actor, genero y estudio.",
"LabelMetadataPath": "Ruta de Metadata:", "LabelMetadataPath": "Ruta de Metadata:",
"LabelMetadataPathHelp": "Especifique una localizaci\u00f3n personalizada para bajar imagenes y metadatos, si no son guardadas dentro de las carpetas de los medios.", "LabelMetadataPathHelp": "Specify a custom location for downloaded artwork and metadata.",
"LabelTranscodingTempPath": "Ruta temporal de transcodificaci\u00f3n:", "LabelTranscodingTempPath": "Ruta temporal de transcodificaci\u00f3n:",
"LabelTranscodingTempPathHelp": "Esta carpeta contiene achivos en uso por el transcodificador. Especificar una ruta personalizada, o dejarla vac\u00eda para usar la ruta predeterminada en la carpeta de datos del servidor.", "LabelTranscodingTempPathHelp": "Esta carpeta contiene achivos en uso por el transcodificador. Especificar una ruta personalizada, o dejarla vac\u00eda para usar la ruta predeterminada en la carpeta de datos del servidor.",
"TabBasics": "Basicos", "TabBasics": "Basicos",
@ -591,9 +591,9 @@
"LabelEndingEpisodeNumberHelp": "S\u00f3lo requerido para archivos multi-episodio", "LabelEndingEpisodeNumberHelp": "S\u00f3lo requerido para archivos multi-episodio",
"HeaderSupportTheTeam": "Apoye al equipo de Emby", "HeaderSupportTheTeam": "Apoye al equipo de Emby",
"LabelSupportAmount": "Importe (USD)", "LabelSupportAmount": "Importe (USD)",
"HeaderSupportTheTeamHelp": "Ayude a garantizar el desarrollo continuo de este proyecto mediante una donaci\u00f3n. Una parte de todas las donaciones ir\u00e1n a parar a otras herramientas gratuitas de las que dependemos.", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
"ButtonEnterSupporterKey": "Entre la Key de Seguidor", "ButtonEnterSupporterKey": "Enter Emby Premiere key",
"DonationNextStep": "Cuando haya terminado, vuelva y entre su key de seguidor que recibir\u00e1 por email.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
"AutoOrganizeHelp": "Organizaci\u00f3n autom\u00e1tica monitoriza sus carpetas de descarga en busca de nuevos archivos y los mueve a sus directorios de medios.", "AutoOrganizeHelp": "Organizaci\u00f3n autom\u00e1tica monitoriza sus carpetas de descarga en busca de nuevos archivos y los mueve a sus directorios de medios.",
"AutoOrganizeTvHelp": "La organizaci\u00f3n de archivos de TV s\u00f3lo a\u00f1adir\u00e1 episodios a series existentes. No crear\u00e1 carpetas para series nuevas.", "AutoOrganizeTvHelp": "La organizaci\u00f3n de archivos de TV s\u00f3lo a\u00f1adir\u00e1 episodios a series existentes. No crear\u00e1 carpetas para series nuevas.",
"OptionEnableEpisodeOrganization": "Activar la organizaci\u00f3n de nuevos episodios", "OptionEnableEpisodeOrganization": "Activar la organizaci\u00f3n de nuevos episodios",
@ -639,20 +639,20 @@
"LabelDownMixAudioScale": "Audio boost when downmixing:", "LabelDownMixAudioScale": "Audio boost when downmixing:",
"LabelDownMixAudioScaleHelp": "Potenciador de audio. Establecer a 1 para preservar el volumen original.", "LabelDownMixAudioScaleHelp": "Potenciador de audio. Establecer a 1 para preservar el volumen original.",
"ButtonLinkKeys": "Transferir Clave", "ButtonLinkKeys": "Transferir Clave",
"LabelOldSupporterKey": "Antigua clave de seguidor", "LabelOldSupporterKey": "Old Emby Premiere key",
"LabelNewSupporterKey": "Nueva clave de seguidor", "LabelNewSupporterKey": "New Emby Premiere key",
"HeaderMultipleKeyLinking": "Trasferir a una Clave Nueva", "HeaderMultipleKeyLinking": "Trasferir a una Clave Nueva",
"MultipleKeyLinkingHelp": "Si usted recivio una nueva clave de partidiario, use este formulario para trasferir la registracion de la clave vieja a la nueva.", "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
"LabelCurrentEmailAddress": "Cuenta de correo actual", "LabelCurrentEmailAddress": "Cuenta de correo actual",
"LabelCurrentEmailAddressHelp": "La direcci\u00f3n de correo electr\u00f3nico actual a la que se envi\u00f3 la nueva clave.", "LabelCurrentEmailAddressHelp": "La direcci\u00f3n de correo electr\u00f3nico actual a la que se envi\u00f3 la nueva clave.",
"HeaderForgotKey": "Perd\u00ed mi clave", "HeaderForgotKey": "Perd\u00ed mi clave",
"LabelEmailAddress": "Direcci\u00f3n de correo", "LabelEmailAddress": "Direcci\u00f3n de correo",
"LabelSupporterEmailAddress": "La direcci\u00f3n de correo que utliz\u00f3 para comprar la clave.", "LabelSupporterEmailAddress": "La direcci\u00f3n de correo que utliz\u00f3 para comprar la clave.",
"ButtonRetrieveKey": "Recuperar clave", "ButtonRetrieveKey": "Recuperar clave",
"LabelSupporterKey": "Clave de seguidor (pegar desde el correo)", "LabelSupporterKey": "Emby Premiere key (paste from email):",
"LabelSupporterKeyHelp": "Agregue su clave de partidiario para empezar a disfrutar beneficios adicionales que la comunidad a creado para Emby.", "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
"MessageInvalidKey": "Clave de partidiario no se encuentra o es invalido.", "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
"ErrorMessageInvalidKey": "Para que cualquier contenido premium sea registrado, usted debe ser un pardidiario de Emby. Porfavor done y ayude a continuar con el desarrollo del producto principal. Gracias.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
"HeaderDisplaySettings": "Opciones de pantalla", "HeaderDisplaySettings": "Opciones de pantalla",
"TabPlayTo": "Reproducir en", "TabPlayTo": "Reproducir en",
"LabelEnableDlnaServer": "Habilitar servidor Dlna", "LabelEnableDlnaServer": "Habilitar servidor Dlna",
@ -912,7 +912,7 @@
"OptionCommunityMostWatchedSort": "M\u00e1s visto", "OptionCommunityMostWatchedSort": "M\u00e1s visto",
"TabNextUp": "Siguiendo", "TabNextUp": "Siguiendo",
"PlaceholderUsername": "Username", "PlaceholderUsername": "Username",
"HeaderBecomeProjectSupporter": "Become an Emby Supporter", "HeaderBecomeProjectSupporter": "Get Emby Premiere",
"MessageNoMovieSuggestionsAvailable": "No hay sugerencias de pel\u00edculas disponibles. Comience ver y calificar sus pel\u00edculas y vuelva para ver las recomendaciones.", "MessageNoMovieSuggestionsAvailable": "No hay sugerencias de pel\u00edculas disponibles. Comience ver y calificar sus pel\u00edculas y vuelva para ver las recomendaciones.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
"MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
@ -1002,8 +1002,6 @@
"HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.",
"LabelLoginDisclaimer": "Login renuncia:", "LabelLoginDisclaimer": "Login renuncia:",
"LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.",
"LabelAutomaticallyDonate": "Automatically donate this amount every month",
"LabelAutomaticallyDonateHelp": "Usted puede cancelar en cualquier momento desde su cuenta de PayPal.",
"OptionList": "Lista", "OptionList": "Lista",
"TabDashboard": "Panel de control", "TabDashboard": "Panel de control",
"TitleServer": "Servidor", "TitleServer": "Servidor",
@ -1220,18 +1218,12 @@
"HeaderMetadataSettings": "Metadata Settings", "HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes", "LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
"TabDonate": "Donate",
"HeaderDonationType": "Donation type:", "HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation", "OptionMakeOneTimeDonation": "Make a separate donation",
"OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
"OptionYearlySupporterMembership": "Yearly supporter membership",
"OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer", "OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song", "OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video", "OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:", "LabelOneTimeDonationAmount": "Donation amount:",
"ButtonDonate": "Donate",
"ButtonPurchase": "Purchase", "ButtonPurchase": "Purchase",
"OptionActor": "Actor", "OptionActor": "Actor",
"OptionComposer": "Composer", "OptionComposer": "Composer",
@ -1245,9 +1237,9 @@
"HeaderPhotoInfo": "Photo Info", "HeaderPhotoInfo": "Photo Info",
"HeaderInstall": "Install", "HeaderInstall": "Install",
"LabelSelectVersionToInstall": "Select version to install:", "LabelSelectVersionToInstall": "Select version to install:",
"LinkSupporterMembership": "Learn about the Supporter Membership", "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
"MessageSupporterPluginRequiresMembership": "This plugin will require an active supporter membership after the 14 day free trial.", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
"MessagePremiumPluginRequiresMembership": "This plugin will require an active supporter membership in order to purchase after the 14 day free trial.", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
"HeaderReviews": "Reviews", "HeaderReviews": "Reviews",
"HeaderDeveloperInfo": "Developer Info", "HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History", "HeaderRevisionHistory": "Revision History",
@ -1292,7 +1284,7 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content", "LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control", "LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
"LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:", "LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
@ -1513,7 +1505,7 @@
"LabelTunerType": "Tuner type:", "LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.", "HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
"AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.", "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
@ -1528,5 +1520,7 @@
"LabelHardwareVideoDecoderHelp": "Available on supported systems only.", "LabelHardwareVideoDecoderHelp": "Available on supported systems only.",
"ButtonServerDashboard": "Server Dashboard", "ButtonServerDashboard": "Server Dashboard",
"HeaderAdmin": "Admin", "HeaderAdmin": "Admin",
"ButtonSignOut": "Sign out" "ButtonSignOut": "Sign out",
"HeaderCameraUpload": "Camera Upload",
"SelectCameraUploadServers": "Upload camera photos to the following servers:"
} }

View file

@ -48,7 +48,7 @@
"ButtonConvertMedia": "Convert media", "ButtonConvertMedia": "Convert media",
"ButtonOrganize": "Organize", "ButtonOrganize": "Organize",
"LinkedToEmbyConnect": "Linked to Emby Connect", "LinkedToEmbyConnect": "Linked to Emby Connect",
"HeaderSupporterBenefits": "Supporter Benefits", "HeaderSupporterBenefits": "Emby Premiere Benefits",
"HeaderAddUser": "Add User", "HeaderAddUser": "Add User",
"LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
"LabelPinCode": "Pin code:", "LabelPinCode": "Pin code:",
@ -82,7 +82,6 @@
"LabelCustomCertificatePath": "Custom certificate path:", "LabelCustomCertificatePath": "Custom certificate path:",
"LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.", "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ButtonDonateWithPayPal": "Donate with PayPal",
"OptionDetectArchiveFilesAsMedia": "Detect archive files as media", "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
"OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.", "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
"LabelEnterConnectUserName": "Username or email:", "LabelEnterConnectUserName": "Username or email:",
@ -289,8 +288,9 @@
"TitleSupport": "Support", "TitleSupport": "Support",
"TabLog": "Log", "TabLog": "Log",
"TabAbout": "About", "TabAbout": "About",
"TabSupporterKey": "Supporter Key", "TabSupporterKey": "Emby Premiere Key",
"TabBecomeSupporter": "Become a Supporter", "TabBecomeSupporter": "Get Emby Premiere",
"TabEmbyPremiere": "Emby Premiere",
"ProjectHasCommunity": "Emby has a thriving community of users and contributors.", "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.", "CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "Search the Knowledge Base", "SearchKnowledgeBase": "Search the Knowledge Base",
@ -591,9 +591,9 @@
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"LabelSupportAmount": "Amount (USD)", "LabelSupportAmount": "Amount (USD)",
"HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by donating. A portion of all donations will be contributed to other free tools we depend on.", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
"ButtonEnterSupporterKey": "Enter supporter key", "ButtonEnterSupporterKey": "Enter Emby Premiere key",
"DonationNextStep": "Once complete, please return and enter your supporter key, which you will receive by email.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
"AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.",
"AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.",
"OptionEnableEpisodeOrganization": "Enable new episode organization", "OptionEnableEpisodeOrganization": "Enable new episode organization",
@ -639,20 +639,20 @@
"LabelDownMixAudioScale": "Audio boost when downmixing:", "LabelDownMixAudioScale": "Audio boost when downmixing:",
"LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.",
"ButtonLinkKeys": "Transfer Key", "ButtonLinkKeys": "Transfer Key",
"LabelOldSupporterKey": "Old supporter key", "LabelOldSupporterKey": "Old Emby Premiere key",
"LabelNewSupporterKey": "New supporter key", "LabelNewSupporterKey": "New Emby Premiere key",
"HeaderMultipleKeyLinking": "Transfer to New Key", "HeaderMultipleKeyLinking": "Transfer to New Key",
"MultipleKeyLinkingHelp": "If you received a new supporter key, use this form to transfer the old key's registrations to your new one.", "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
"LabelCurrentEmailAddress": "Current email address", "LabelCurrentEmailAddress": "Current email address",
"LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.", "LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.",
"HeaderForgotKey": "Forgot Key", "HeaderForgotKey": "Forgot Key",
"LabelEmailAddress": "Email address", "LabelEmailAddress": "Email address",
"LabelSupporterEmailAddress": "The email address that was used to purchase the key.", "LabelSupporterEmailAddress": "The email address that was used to purchase the key.",
"ButtonRetrieveKey": "Retrieve Key", "ButtonRetrieveKey": "Retrieve Key",
"LabelSupporterKey": "Supporter Key (paste from email)", "LabelSupporterKey": "Emby Premiere key (paste from email):",
"LabelSupporterKeyHelp": "Enter your supporter key to start enjoying additional benefits the community has developed for Emby.", "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
"MessageInvalidKey": "Supporter key is missing or invalid.", "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
"ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also be an Emby Supporter. Please donate and support the continued development of the core product. Thank you.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
"HeaderDisplaySettings": "Display Settings", "HeaderDisplaySettings": "Display Settings",
"TabPlayTo": "Play To", "TabPlayTo": "Play To",
"LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServer": "Enable Dlna server",
@ -912,7 +912,7 @@
"OptionCommunityMostWatchedSort": "Most Watched", "OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up", "TabNextUp": "Next Up",
"PlaceholderUsername": "Username", "PlaceholderUsername": "Username",
"HeaderBecomeProjectSupporter": "Become an Emby Supporter", "HeaderBecomeProjectSupporter": "Get Emby Premiere",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
"MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
@ -1002,8 +1002,6 @@
"HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.",
"LabelLoginDisclaimer": "Login disclaimer:", "LabelLoginDisclaimer": "Login disclaimer:",
"LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.",
"LabelAutomaticallyDonate": "Automatically donate this amount every month",
"LabelAutomaticallyDonateHelp": "You can cancel at any time via your PayPal account.",
"OptionList": "List", "OptionList": "List",
"TabDashboard": "Dashboard", "TabDashboard": "Dashboard",
"TitleServer": "Server", "TitleServer": "Server",
@ -1220,18 +1218,12 @@
"HeaderMetadataSettings": "Metadata Settings", "HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes", "LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
"TabDonate": "Donate",
"HeaderDonationType": "Donation type:", "HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation", "OptionMakeOneTimeDonation": "Make a separate donation",
"OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
"OptionYearlySupporterMembership": "Yearly supporter membership",
"OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer", "OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song", "OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video", "OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:", "LabelOneTimeDonationAmount": "Donation amount:",
"ButtonDonate": "Donate",
"ButtonPurchase": "Purchase", "ButtonPurchase": "Purchase",
"OptionActor": "Actor", "OptionActor": "Actor",
"OptionComposer": "Composer", "OptionComposer": "Composer",
@ -1245,9 +1237,9 @@
"HeaderPhotoInfo": "Photo Info", "HeaderPhotoInfo": "Photo Info",
"HeaderInstall": "Install", "HeaderInstall": "Install",
"LabelSelectVersionToInstall": "Select version to install:", "LabelSelectVersionToInstall": "Select version to install:",
"LinkSupporterMembership": "Learn about the Supporter Membership", "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
"MessageSupporterPluginRequiresMembership": "This plugin will require an active supporter membership after the 14 day free trial.", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
"MessagePremiumPluginRequiresMembership": "This plugin will require an active supporter membership in order to purchase after the 14 day free trial.", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
"HeaderReviews": "Reviews", "HeaderReviews": "Reviews",
"HeaderDeveloperInfo": "Developer Info", "HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History", "HeaderRevisionHistory": "Revision History",
@ -1292,7 +1284,7 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content", "LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control", "LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
"LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:", "LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
@ -1513,7 +1505,7 @@
"LabelTunerType": "Tuner type:", "LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.", "HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
"AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.", "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
@ -1528,5 +1520,7 @@
"LabelHardwareVideoDecoderHelp": "Available on supported systems only.", "LabelHardwareVideoDecoderHelp": "Available on supported systems only.",
"ButtonServerDashboard": "Server Dashboard", "ButtonServerDashboard": "Server Dashboard",
"HeaderAdmin": "Admin", "HeaderAdmin": "Admin",
"ButtonSignOut": "Sign out" "ButtonSignOut": "Sign out",
"HeaderCameraUpload": "Camera Upload",
"SelectCameraUploadServers": "Upload camera photos to the following servers:"
} }

View file

@ -48,7 +48,7 @@
"ButtonConvertMedia": "Convertir le m\u00e9dia", "ButtonConvertMedia": "Convertir le m\u00e9dia",
"ButtonOrganize": "Organiser", "ButtonOrganize": "Organiser",
"LinkedToEmbyConnect": "Connect\u00e9 \u00e0 Emby", "LinkedToEmbyConnect": "Connect\u00e9 \u00e0 Emby",
"HeaderSupporterBenefits": "Avantages de supporteur", "HeaderSupporterBenefits": "Emby Premiere Benefits",
"HeaderAddUser": "Ajouter un utilisateur", "HeaderAddUser": "Ajouter un utilisateur",
"LabelAddConnectSupporterHelp": "Pour ajouter un utilisateur non list\u00e9, vous devrez d'abord lier son compte \u00e0 Emby Connect depuis sa page de profil utilisateur.", "LabelAddConnectSupporterHelp": "Pour ajouter un utilisateur non list\u00e9, vous devrez d'abord lier son compte \u00e0 Emby Connect depuis sa page de profil utilisateur.",
"LabelPinCode": "Code PIN:", "LabelPinCode": "Code PIN:",
@ -82,7 +82,6 @@
"LabelCustomCertificatePath": "Chemin vers le certificat personnalis\u00e9 :", "LabelCustomCertificatePath": "Chemin vers le certificat personnalis\u00e9 :",
"LabelCustomCertificatePathHelp": "Fournissez votre propre certificat SSL au format .pfx. Sinon, le serveur cr\u00e9era un certificat auto-sign\u00e9.", "LabelCustomCertificatePathHelp": "Fournissez votre propre certificat SSL au format .pfx. Sinon, le serveur cr\u00e9era un certificat auto-sign\u00e9.",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ButtonDonateWithPayPal": "Faire un don avec Paypal",
"OptionDetectArchiveFilesAsMedia": "Reconna\u00eetre les fichiers archives comme m\u00e9dias", "OptionDetectArchiveFilesAsMedia": "Reconna\u00eetre les fichiers archives comme m\u00e9dias",
"OptionDetectArchiveFilesAsMediaHelp": "Activez cette option pour reconna\u00eetre les fichiers portant l'extension .rar ou .zip comme des fichiers de m\u00e9dias. ", "OptionDetectArchiveFilesAsMediaHelp": "Activez cette option pour reconna\u00eetre les fichiers portant l'extension .rar ou .zip comme des fichiers de m\u00e9dias. ",
"LabelEnterConnectUserName": "Nom d'utilisateur ou adresse mail :", "LabelEnterConnectUserName": "Nom d'utilisateur ou adresse mail :",
@ -289,8 +288,9 @@
"TitleSupport": "Assistance", "TitleSupport": "Assistance",
"TabLog": "Journal d'\u00e9v\u00e9nements", "TabLog": "Journal d'\u00e9v\u00e9nements",
"TabAbout": "\u00c0 propos", "TabAbout": "\u00c0 propos",
"TabSupporterKey": "Cl\u00e9 de membre supporteur", "TabSupporterKey": "Emby Premiere Key",
"TabBecomeSupporter": "Devenir un suporteur", "TabBecomeSupporter": "Get Emby Premiere",
"TabEmbyPremiere": "Emby Premiere",
"ProjectHasCommunity": "Emby b\u00e9n\u00e9ficie d'une communaut\u00e9 florissante d'utilisateurs et de contributeurs.", "ProjectHasCommunity": "Emby b\u00e9n\u00e9ficie d'une communaut\u00e9 florissante d'utilisateurs et de contributeurs.",
"CheckoutKnowledgeBase": "Jetez un oeil \u00e0 notre base de connaissance pour tirer le meilleur parti d'Emby.", "CheckoutKnowledgeBase": "Jetez un oeil \u00e0 notre base de connaissance pour tirer le meilleur parti d'Emby.",
"SearchKnowledgeBase": "Rechercher dans la base de connaissances", "SearchKnowledgeBase": "Rechercher dans la base de connaissances",
@ -591,9 +591,9 @@
"LabelEndingEpisodeNumberHelp": "Uniquement requis pour les fichiers multi-\u00e9pisodes", "LabelEndingEpisodeNumberHelp": "Uniquement requis pour les fichiers multi-\u00e9pisodes",
"HeaderSupportTheTeam": "Aidez l'\u00e9quipe Emby", "HeaderSupportTheTeam": "Aidez l'\u00e9quipe Emby",
"LabelSupportAmount": "Montant (USD)", "LabelSupportAmount": "Montant (USD)",
"HeaderSupportTheTeamHelp": "Aidez la poursuite du d\u00e9veloppement de ce projet en effectuant un don. Une part de ce don contribuera au d\u00e9veloppement d'autres produits gratuits dont nous d\u00e9pendons.", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
"ButtonEnterSupporterKey": "Entrer la cl\u00e9 de supporteur", "ButtonEnterSupporterKey": "Enter Emby Premiere key",
"DonationNextStep": "Une fois termin\u00e9, veuillez revenir saisir la cl\u00e9 de supporteur re\u00e7ue par courriel.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
"AutoOrganizeHelp": "L'auto-organisation d\u00e9tecte les nouveaux fichiers dans vos r\u00e9pertoires de t\u00e9l\u00e9chargement, puis les d\u00e9place dans vos r\u00e9pertoires de m\u00e9dias.", "AutoOrganizeHelp": "L'auto-organisation d\u00e9tecte les nouveaux fichiers dans vos r\u00e9pertoires de t\u00e9l\u00e9chargement, puis les d\u00e9place dans vos r\u00e9pertoires de m\u00e9dias.",
"AutoOrganizeTvHelp": "L'auto-organisation de fichiers TV ne traitera que l'ajout de nouveaux \u00e9pisodes aux s\u00e9ries existantes. Ce processus ne cr\u00e9era pas de nouveaux r\u00e9pertoires de s\u00e9rie.", "AutoOrganizeTvHelp": "L'auto-organisation de fichiers TV ne traitera que l'ajout de nouveaux \u00e9pisodes aux s\u00e9ries existantes. Ce processus ne cr\u00e9era pas de nouveaux r\u00e9pertoires de s\u00e9rie.",
"OptionEnableEpisodeOrganization": "Activer l'auto-organisation des nouveaux \u00e9pisodes", "OptionEnableEpisodeOrganization": "Activer l'auto-organisation des nouveaux \u00e9pisodes",
@ -639,20 +639,20 @@
"LabelDownMixAudioScale": "Boost audio lors de downmix:", "LabelDownMixAudioScale": "Boost audio lors de downmix:",
"LabelDownMixAudioScaleHelp": "Boost audio lors de downmix. Mettre \u00e0 1 pour pr\u00e9server la valeur originale du volume.", "LabelDownMixAudioScaleHelp": "Boost audio lors de downmix. Mettre \u00e0 1 pour pr\u00e9server la valeur originale du volume.",
"ButtonLinkKeys": "Cl\u00e9 de transfert", "ButtonLinkKeys": "Cl\u00e9 de transfert",
"LabelOldSupporterKey": "Ancienne cl\u00e9 de supporteur", "LabelOldSupporterKey": "Old Emby Premiere key",
"LabelNewSupporterKey": "Nouvelle cl\u00e9 de supporteur", "LabelNewSupporterKey": "New Emby Premiere key",
"HeaderMultipleKeyLinking": "Transf\u00e9rer \u00e0 une nouvelle cl\u00e9", "HeaderMultipleKeyLinking": "Transf\u00e9rer \u00e0 une nouvelle cl\u00e9",
"MultipleKeyLinkingHelp": "Si vous avez re\u00e7u une nouvelle cl\u00e9 de supporteur, utilisez ce formulaire pour transf\u00e9rer votre anciennce cl\u00e9 d'enregistrement \u00e0 votre nouvelle cl\u00e9.", "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
"LabelCurrentEmailAddress": "Adresse courriel actuelle", "LabelCurrentEmailAddress": "Adresse courriel actuelle",
"LabelCurrentEmailAddressHelp": "L'adresse courriel actuelle \u00e0 laquelle votre nouvelle cl\u00e9 a \u00e9t\u00e9 envoy\u00e9e.", "LabelCurrentEmailAddressHelp": "L'adresse courriel actuelle \u00e0 laquelle votre nouvelle cl\u00e9 a \u00e9t\u00e9 envoy\u00e9e.",
"HeaderForgotKey": "Cl\u00e9 oubli\u00e9e", "HeaderForgotKey": "Cl\u00e9 oubli\u00e9e",
"LabelEmailAddress": "Adresse courriel", "LabelEmailAddress": "Adresse courriel",
"LabelSupporterEmailAddress": "L'adresse courriel avec laquelle la cl\u00e9 a \u00e9t\u00e9 achet\u00e9e.", "LabelSupporterEmailAddress": "L'adresse courriel avec laquelle la cl\u00e9 a \u00e9t\u00e9 achet\u00e9e.",
"ButtonRetrieveKey": "Obtenir la cl\u00e9", "ButtonRetrieveKey": "Obtenir la cl\u00e9",
"LabelSupporterKey": "Cl\u00e9 de supporteur (coller du courriel)", "LabelSupporterKey": "Emby Premiere key (paste from email):",
"LabelSupporterKeyHelp": "Entrez votre cl\u00e9 de supporteur pour commencer \u00e0 b\u00e9n\u00e9ficier des avantages suppl\u00e9mentaires que la communaut\u00e9 a d\u00e9velopp\u00e9 pour Emby.", "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
"MessageInvalidKey": "Cl\u00e9 de supporteur manquante ou invalide", "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
"ErrorMessageInvalidKey": "Vous devez \u00e9galement \u00eatre supporteur Emby pour enregistrer le contenu Premium. Merci de faire un don et d'aider \u00e0 la poursuite du d\u00e9veloppement du produit.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
"HeaderDisplaySettings": "Param\u00e8tres d'affichage", "HeaderDisplaySettings": "Param\u00e8tres d'affichage",
"TabPlayTo": "Lire sur", "TabPlayTo": "Lire sur",
"LabelEnableDlnaServer": "Activer le serveur DLNA", "LabelEnableDlnaServer": "Activer le serveur DLNA",
@ -912,7 +912,7 @@
"OptionCommunityMostWatchedSort": "Les plus lus", "OptionCommunityMostWatchedSort": "Les plus lus",
"TabNextUp": "Prochains \u00e0 voir", "TabNextUp": "Prochains \u00e0 voir",
"PlaceholderUsername": "Identifiant", "PlaceholderUsername": "Identifiant",
"HeaderBecomeProjectSupporter": "Devenir un fan d'Emby", "HeaderBecomeProjectSupporter": "Get Emby Premiere",
"MessageNoMovieSuggestionsAvailable": "Aucune suggestion de film n'est actuellement disponible. Commencez \u00e0 regarder et notez vos films pour avoir des suggestions.", "MessageNoMovieSuggestionsAvailable": "Aucune suggestion de film n'est actuellement disponible. Commencez \u00e0 regarder et notez vos films pour avoir des suggestions.",
"MessageNoCollectionsAvailable": "Les collections vous permettent de tirer parti de groupements personnalis\u00e9s de films, de s\u00e9ries, d'albums audio, de livres et de jeux. Cliquez sur le bouton + pour commencer \u00e0 cr\u00e9er des Collections.", "MessageNoCollectionsAvailable": "Les collections vous permettent de tirer parti de groupements personnalis\u00e9s de films, de s\u00e9ries, d'albums audio, de livres et de jeux. Cliquez sur le bouton + pour commencer \u00e0 cr\u00e9er des Collections.",
"MessageNoPlaylistsAvailable": "Les listes de lectures vous permettent de cr\u00e9er des listes de contenus \u00e0 lire en continu en une fois. Pour ajouter un \u00e9l\u00e9ment \u00e0 la liste, faire un clic droit ou appuyer et maintenez, puis s\u00e9lectionnez Ajouter \u00e0 la liste de lecture", "MessageNoPlaylistsAvailable": "Les listes de lectures vous permettent de cr\u00e9er des listes de contenus \u00e0 lire en continu en une fois. Pour ajouter un \u00e9l\u00e9ment \u00e0 la liste, faire un clic droit ou appuyer et maintenez, puis s\u00e9lectionnez Ajouter \u00e0 la liste de lecture",
@ -1002,8 +1002,6 @@
"HeaderBrandingHelp": "Personnalisez l'apparence d'Emby pour satisfaire les besoins de votre groupe ou organisation.", "HeaderBrandingHelp": "Personnalisez l'apparence d'Emby pour satisfaire les besoins de votre groupe ou organisation.",
"LabelLoginDisclaimer": "Avertissement sur la page d'accueil :", "LabelLoginDisclaimer": "Avertissement sur la page d'accueil :",
"LabelLoginDisclaimerHelp": "Le slogan sera affich\u00e9 en bas de la page de connexion.", "LabelLoginDisclaimerHelp": "Le slogan sera affich\u00e9 en bas de la page de connexion.",
"LabelAutomaticallyDonate": "Donner automatiquement ce montant chaque mois.",
"LabelAutomaticallyDonateHelp": "Vous pouvez annuler via votre compte Paypal n'importe quand.",
"OptionList": "Liste", "OptionList": "Liste",
"TabDashboard": "Tableau de bord", "TabDashboard": "Tableau de bord",
"TitleServer": "Serveur", "TitleServer": "Serveur",
@ -1220,18 +1218,12 @@
"HeaderMetadataSettings": "R\u00e9glages m\u00e9tadonn\u00e9es", "HeaderMetadataSettings": "R\u00e9glages m\u00e9tadonn\u00e9es",
"LabelLockItemToPreventChanges": "Verrouiller cet \u00e9l\u00e9ment pour \u00e9viter de futures modifications", "LabelLockItemToPreventChanges": "Verrouiller cet \u00e9l\u00e9ment pour \u00e9viter de futures modifications",
"MessageLeaveEmptyToInherit": "Laisser vide pour h\u00e9riter des r\u00e9glages de l'\u00e9l\u00e9ment parent, ou de la valeur globale par d\u00e9faut.", "MessageLeaveEmptyToInherit": "Laisser vide pour h\u00e9riter des r\u00e9glages de l'\u00e9l\u00e9ment parent, ou de la valeur globale par d\u00e9faut.",
"TabDonate": "Faire un don",
"HeaderDonationType": "Type de don :", "HeaderDonationType": "Type de don :",
"OptionMakeOneTimeDonation": "Faire un don s\u00e9par\u00e9", "OptionMakeOneTimeDonation": "Faire un don s\u00e9par\u00e9",
"OptionOneTimeDescription": "Il s'agit d'une donation additionnelle \u00e0 l'\u00e9quipe pour montrer votre support. Elle ne vous apportera pas de b\u00e9n\u00e9fices suppl\u00e9mentaires et ne vous donnera pas de cl\u00e9 de supporteur.",
"OptionLifeTimeSupporterMembership": "Partenariat de supporteur \u00e0 vie",
"OptionYearlySupporterMembership": "Partenariat de supporteur annuel",
"OptionMonthlySupporterMembership": "Partenariat de supporteur mensuel",
"OptionNoTrailer": "Aucune bande-annonce", "OptionNoTrailer": "Aucune bande-annonce",
"OptionNoThemeSong": "Pas de th\u00e8me de musique", "OptionNoThemeSong": "Pas de th\u00e8me de musique",
"OptionNoThemeVideo": "Pas de th\u00e8me vid\u00e9o", "OptionNoThemeVideo": "Pas de th\u00e8me vid\u00e9o",
"LabelOneTimeDonationAmount": "Montant du don :", "LabelOneTimeDonationAmount": "Montant du don :",
"ButtonDonate": "Faire un don",
"ButtonPurchase": "Acheter", "ButtonPurchase": "Acheter",
"OptionActor": "Acteur(trice)", "OptionActor": "Acteur(trice)",
"OptionComposer": "Compositeur:", "OptionComposer": "Compositeur:",
@ -1245,9 +1237,9 @@
"HeaderPhotoInfo": "Information photo", "HeaderPhotoInfo": "Information photo",
"HeaderInstall": "Install\u00e9", "HeaderInstall": "Install\u00e9",
"LabelSelectVersionToInstall": "S\u00e9lectionner la version \u00e0 installer :", "LabelSelectVersionToInstall": "S\u00e9lectionner la version \u00e0 installer :",
"LinkSupporterMembership": "En savoir plus sur le partenariat de supporteur", "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
"MessageSupporterPluginRequiresMembership": "Ce plugin requiert un compte supporteur actif apr\u00e8s la p\u00e9riode d'essai gratuit de 14 jours.", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
"MessagePremiumPluginRequiresMembership": "Ce plugin requiert un compte supporteur actif afin de l'acheter apr\u00e8s les 14 jours d'essais gratuits", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
"HeaderReviews": "Revues", "HeaderReviews": "Revues",
"HeaderDeveloperInfo": "Info d\u00e9velopeur", "HeaderDeveloperInfo": "Info d\u00e9velopeur",
"HeaderRevisionHistory": "Historique des r\u00e9visions", "HeaderRevisionHistory": "Historique des r\u00e9visions",
@ -1261,7 +1253,7 @@
"LabelExtractChaptersDuringLibraryScanHelp": "Si activ\u00e9, les images de chapitres seront extraites lors de l'importation de vid\u00e9os pendant le scan de la librairie. Sinon elles seront extraites pendant la t\u00e2che programm\u00e9e, permettant de terminer plus rapidement les scans r\u00e9guliers de la librairie.", "LabelExtractChaptersDuringLibraryScanHelp": "Si activ\u00e9, les images de chapitres seront extraites lors de l'importation de vid\u00e9os pendant le scan de la librairie. Sinon elles seront extraites pendant la t\u00e2che programm\u00e9e, permettant de terminer plus rapidement les scans r\u00e9guliers de la librairie.",
"LabelConnectGuestUserName": "Nom d'utilisateur Emby ou adresse email de l'invit\u00e9 :", "LabelConnectGuestUserName": "Nom d'utilisateur Emby ou adresse email de l'invit\u00e9 :",
"LabelConnectUserName": "Nom d'utilisateur Emby ou adresse email :", "LabelConnectUserName": "Nom d'utilisateur Emby ou adresse email :",
"LabelConnectUserNameHelp": "Connectez cet utilisateur \u00e0 un compte Emby pour activer l'acc\u00e8s par code Easy Pin depuis n'importe quelle application Emby sans avoir \u00e0 conna\u00eetre l'adresse IP du serveur.", "LabelConnectUserNameHelp": "Connectez cet utilisateur local \u00e0 un compte Emby pour activer l'acc\u00e8s par code Easy Pin depuis n'importe quelle application Emby sans avoir \u00e0 conna\u00eetre l'adresse IP du serveur.",
"ButtonLearnMoreAboutEmbyConnect": "Plus d'infos sur Emby Connect", "ButtonLearnMoreAboutEmbyConnect": "Plus d'infos sur Emby Connect",
"LabelExternalPlayers": "Lecteurs externes:", "LabelExternalPlayers": "Lecteurs externes:",
"LabelExternalPlayersHelp": "Afficher les boutons pour lire du contenu sur le lecteur externe. Ceci est valable uniquement sur des appareils supportant les URLs, g\u00e9n\u00e9ralement Android et iOS. Avec les lecteurs externes il n'y a g\u00e9n\u00e9ralement pas de support pour le contr\u00f4le \u00e0 distance ou la reprise.", "LabelExternalPlayersHelp": "Afficher les boutons pour lire du contenu sur le lecteur externe. Ceci est valable uniquement sur des appareils supportant les URLs, g\u00e9n\u00e9ralement Android et iOS. Avec les lecteurs externes il n'y a g\u00e9n\u00e9ralement pas de support pour le contr\u00f4le \u00e0 distance ou la reprise.",
@ -1292,7 +1284,7 @@
"LabelLimitIntrosToUnwatchedContent": "Utiliser seulement les bandes-annonces du contenu non lu", "LabelLimitIntrosToUnwatchedContent": "Utiliser seulement les bandes-annonces du contenu non lu",
"LabelEnableIntroParentalControl": "Activer le control parental intelligent", "LabelEnableIntroParentalControl": "Activer le control parental intelligent",
"LabelEnableIntroParentalControlHelp": "Les bandes-annonces seront s\u00e9lectionn\u00e9es seulement si niveau de contr\u00f4le parental est \u00e9gal ou inf\u00e9rieur \u00e0 celui du contenu en cours de lecture.", "LabelEnableIntroParentalControlHelp": "Les bandes-annonces seront s\u00e9lectionn\u00e9es seulement si niveau de contr\u00f4le parental est \u00e9gal ou inf\u00e9rieur \u00e0 celui du contenu en cours de lecture.",
"LabelTheseFeaturesRequireSupporterHelpAndTrailers": "Ces fonctionnalit\u00e9s n\u00e9cessitent un abonnement actif comme supporteur et l'installation du plugin \"Trailer channel\".", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "N\u00e9cessite la configuration des bandes-annonces locales.", "OptionTrailersFromMyMoviesHelp": "N\u00e9cessite la configuration des bandes-annonces locales.",
"LabelCustomIntrosPath": "Chemin des intros personnalis\u00e9es :", "LabelCustomIntrosPath": "Chemin des intros personnalis\u00e9es :",
"LabelCustomIntrosPathHelp": "Un r\u00e9pertoire contenant des fichiers vid\u00e9os. Une vid\u00e9o sera s\u00e9lectionn\u00e9e al\u00e9atoirement et lue apr\u00e8s les bandes-annonces.", "LabelCustomIntrosPathHelp": "Un r\u00e9pertoire contenant des fichiers vid\u00e9os. Une vid\u00e9o sera s\u00e9lectionn\u00e9e al\u00e9atoirement et lue apr\u00e8s les bandes-annonces.",
@ -1513,7 +1505,7 @@
"LabelTunerType": "Type de tuner :", "LabelTunerType": "Type de tuner :",
"HelpMoreTunersCanBeAdded": "D'autres tuners peuvent \u00eatre ajout\u00e9s plus tard dans la section TV Live", "HelpMoreTunersCanBeAdded": "D'autres tuners peuvent \u00eatre ajout\u00e9s plus tard dans la section TV Live",
"AdditionalLiveTvProvidersCanBeInstalledLater": "D'autres fournisseurs de TV Live peuvent \u00eatre ajout\u00e9s plus tard dans la section TV Live.", "AdditionalLiveTvProvidersCanBeInstalledLater": "D'autres fournisseurs de TV Live peuvent \u00eatre ajout\u00e9s plus tard dans la section TV Live.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "Une adh\u00e9sion active au programme de soutien Emby est requise pour cr\u00e9er des enregistrements automatiques de s\u00e9ries.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Configuration du Guide TV", "HeaderSetupTVGuide": "Configuration du Guide TV",
"LabelDataProvider": "Fournisseur de donn\u00e9es :", "LabelDataProvider": "Fournisseur de donn\u00e9es :",
"OptionSendRecordingsToAutoOrganize": "Activer l'auto-organisation pour les nouveaux enregistrements", "OptionSendRecordingsToAutoOrganize": "Activer l'auto-organisation pour les nouveaux enregistrements",
@ -1525,8 +1517,10 @@
"OptionEnableVideoFrameAnalysisHelp": "Extraire des informations d\u00e9taill\u00e9es sur les vid\u00e9os pour rendre le transcodage le plus efficace possible. Cette option ralentira le scan de la biblioth\u00e8que.", "OptionEnableVideoFrameAnalysisHelp": "Extraire des informations d\u00e9taill\u00e9es sur les vid\u00e9os pour rendre le transcodage le plus efficace possible. Cette option ralentira le scan de la biblioth\u00e8que.",
"LabelVideoFrameAnalysisLimit": "Limiter l'analyse image par image aux vid\u00e9os inf\u00e9rieures \u00e0 :", "LabelVideoFrameAnalysisLimit": "Limiter l'analyse image par image aux vid\u00e9os inf\u00e9rieures \u00e0 :",
"LabelHardwareVideoDecoder": "D\u00e9codeur vid\u00e9o mat\u00e9riel:", "LabelHardwareVideoDecoder": "D\u00e9codeur vid\u00e9o mat\u00e9riel:",
"LabelHardwareVideoDecoderHelp": "Available on supported systems only.", "LabelHardwareVideoDecoderHelp": "Disponible uniquement sur les syst\u00e8mes compatibles.",
"ButtonServerDashboard": "Server Dashboard", "ButtonServerDashboard": "Tableau de bord du serveur",
"HeaderAdmin": "Admin", "HeaderAdmin": "Admin",
"ButtonSignOut": "Sign out" "ButtonSignOut": "D\u00e9connexion",
"HeaderCameraUpload": "Camera Upload",
"SelectCameraUploadServers": "Upload camera photos to the following servers:"
} }

View file

@ -48,7 +48,7 @@
"ButtonConvertMedia": "Konvertiere Medie", "ButtonConvertMedia": "Konvertiere Medie",
"ButtonOrganize": "Organisiere", "ButtonOrganize": "Organisiere",
"LinkedToEmbyConnect": "Verbunde zu Emby Connect", "LinkedToEmbyConnect": "Verbunde zu Emby Connect",
"HeaderSupporterBenefits": "Supporter Vorteil", "HeaderSupporterBenefits": "Emby Premiere Benefits",
"HeaderAddUser": "Erstell en User", "HeaderAddUser": "Erstell en User",
"LabelAddConnectSupporterHelp": "Um en User wo ned ufglistet esch us z'w\u00e4hle, muesch z'erst no sin Account mit Emby Connect im Userprofil verbinde.", "LabelAddConnectSupporterHelp": "Um en User wo ned ufglistet esch us z'w\u00e4hle, muesch z'erst no sin Account mit Emby Connect im Userprofil verbinde.",
"LabelPinCode": "Pin Code:", "LabelPinCode": "Pin Code:",
@ -82,7 +82,6 @@
"LabelCustomCertificatePath": "Eigene Pfad f\u00f6r Zertifikat:", "LabelCustomCertificatePath": "Eigene Pfad f\u00f6r Zertifikat:",
"LabelCustomCertificatePathHelp": "Gib en eigene Pfad f\u00fcr SSL-Zertifikat (*.pfx) a. Falls ned, wird de Server es selber signierts Zertifikat erstelle.", "LabelCustomCertificatePathHelp": "Gib en eigene Pfad f\u00fcr SSL-Zertifikat (*.pfx) a. Falls ned, wird de Server es selber signierts Zertifikat erstelle.",
"TitleNotifications": "Mitteilige", "TitleNotifications": "Mitteilige",
"ButtonDonateWithPayPal": "Spende mit PayPal",
"OptionDetectArchiveFilesAsMedia": "Erkenn Archiv als Mediedateie", "OptionDetectArchiveFilesAsMedia": "Erkenn Archiv als Mediedateie",
"OptionDetectArchiveFilesAsMediaHelp": "Falls aktiviert, werded *.rar und *.zip Date als Medie erkennt.", "OptionDetectArchiveFilesAsMediaHelp": "Falls aktiviert, werded *.rar und *.zip Date als Medie erkennt.",
"LabelEnterConnectUserName": "Username or email:", "LabelEnterConnectUserName": "Username or email:",
@ -289,8 +288,9 @@
"TitleSupport": "Support", "TitleSupport": "Support",
"TabLog": "Log", "TabLog": "Log",
"TabAbout": "About", "TabAbout": "About",
"TabSupporterKey": "Supporter Key", "TabSupporterKey": "Emby Premiere Key",
"TabBecomeSupporter": "Become a Supporter", "TabBecomeSupporter": "Get Emby Premiere",
"TabEmbyPremiere": "Emby Premiere",
"ProjectHasCommunity": "Emby has a thriving community of users and contributors.", "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.", "CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "Search the Knowledge Base", "SearchKnowledgeBase": "Search the Knowledge Base",
@ -591,9 +591,9 @@
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"LabelSupportAmount": "Amount (USD)", "LabelSupportAmount": "Amount (USD)",
"HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by donating. A portion of all donations will be contributed to other free tools we depend on.", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
"ButtonEnterSupporterKey": "Enter supporter key", "ButtonEnterSupporterKey": "Enter Emby Premiere key",
"DonationNextStep": "Once complete, please return and enter your supporter key, which you will receive by email.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
"AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.",
"AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.",
"OptionEnableEpisodeOrganization": "Enable new episode organization", "OptionEnableEpisodeOrganization": "Enable new episode organization",
@ -639,20 +639,20 @@
"LabelDownMixAudioScale": "Audio boost when downmixing:", "LabelDownMixAudioScale": "Audio boost when downmixing:",
"LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.",
"ButtonLinkKeys": "Transfer Key", "ButtonLinkKeys": "Transfer Key",
"LabelOldSupporterKey": "Old supporter key", "LabelOldSupporterKey": "Old Emby Premiere key",
"LabelNewSupporterKey": "New supporter key", "LabelNewSupporterKey": "New Emby Premiere key",
"HeaderMultipleKeyLinking": "Transfer to New Key", "HeaderMultipleKeyLinking": "Transfer to New Key",
"MultipleKeyLinkingHelp": "If you received a new supporter key, use this form to transfer the old key's registrations to your new one.", "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
"LabelCurrentEmailAddress": "Current email address", "LabelCurrentEmailAddress": "Current email address",
"LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.", "LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.",
"HeaderForgotKey": "Forgot Key", "HeaderForgotKey": "Forgot Key",
"LabelEmailAddress": "Email address", "LabelEmailAddress": "Email address",
"LabelSupporterEmailAddress": "The email address that was used to purchase the key.", "LabelSupporterEmailAddress": "The email address that was used to purchase the key.",
"ButtonRetrieveKey": "Retrieve Key", "ButtonRetrieveKey": "Retrieve Key",
"LabelSupporterKey": "Supporter Key (paste from email)", "LabelSupporterKey": "Emby Premiere key (paste from email):",
"LabelSupporterKeyHelp": "Enter your supporter key to start enjoying additional benefits the community has developed for Emby.", "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
"MessageInvalidKey": "Supporter key is missing or invalid.", "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
"ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also be an Emby Supporter. Please donate and support the continued development of the core product. Thank you.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
"HeaderDisplaySettings": "Display Settings", "HeaderDisplaySettings": "Display Settings",
"TabPlayTo": "Play To", "TabPlayTo": "Play To",
"LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServer": "Enable Dlna server",
@ -912,7 +912,7 @@
"OptionCommunityMostWatchedSort": "Most Watched", "OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up", "TabNextUp": "Next Up",
"PlaceholderUsername": "Username", "PlaceholderUsername": "Username",
"HeaderBecomeProjectSupporter": "Become an Emby Supporter", "HeaderBecomeProjectSupporter": "Get Emby Premiere",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
"MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
@ -1002,8 +1002,6 @@
"HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.",
"LabelLoginDisclaimer": "Login disclaimer:", "LabelLoginDisclaimer": "Login disclaimer:",
"LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.",
"LabelAutomaticallyDonate": "Automatically donate this amount every month",
"LabelAutomaticallyDonateHelp": "You can cancel at any time via your PayPal account.",
"OptionList": "List", "OptionList": "List",
"TabDashboard": "Dashboard", "TabDashboard": "Dashboard",
"TitleServer": "Server", "TitleServer": "Server",
@ -1220,18 +1218,12 @@
"HeaderMetadataSettings": "Metadata Settings", "HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes", "LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
"TabDonate": "Donate",
"HeaderDonationType": "Donation type:", "HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation", "OptionMakeOneTimeDonation": "Make a separate donation",
"OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
"OptionYearlySupporterMembership": "Yearly supporter membership",
"OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer", "OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song", "OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video", "OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:", "LabelOneTimeDonationAmount": "Donation amount:",
"ButtonDonate": "Donate",
"ButtonPurchase": "Purchase", "ButtonPurchase": "Purchase",
"OptionActor": "Actor", "OptionActor": "Actor",
"OptionComposer": "Composer", "OptionComposer": "Composer",
@ -1245,9 +1237,9 @@
"HeaderPhotoInfo": "Photo Info", "HeaderPhotoInfo": "Photo Info",
"HeaderInstall": "Install", "HeaderInstall": "Install",
"LabelSelectVersionToInstall": "Select version to install:", "LabelSelectVersionToInstall": "Select version to install:",
"LinkSupporterMembership": "Learn about the Supporter Membership", "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
"MessageSupporterPluginRequiresMembership": "This plugin will require an active supporter membership after the 14 day free trial.", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
"MessagePremiumPluginRequiresMembership": "This plugin will require an active supporter membership in order to purchase after the 14 day free trial.", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
"HeaderReviews": "Reviews", "HeaderReviews": "Reviews",
"HeaderDeveloperInfo": "Developer Info", "HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History", "HeaderRevisionHistory": "Revision History",
@ -1292,7 +1284,7 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content", "LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control", "LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
"LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:", "LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
@ -1513,7 +1505,7 @@
"LabelTunerType": "Tuner type:", "LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.", "HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
"AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.", "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
@ -1528,5 +1520,7 @@
"LabelHardwareVideoDecoderHelp": "Available on supported systems only.", "LabelHardwareVideoDecoderHelp": "Available on supported systems only.",
"ButtonServerDashboard": "Server Dashboard", "ButtonServerDashboard": "Server Dashboard",
"HeaderAdmin": "Admin", "HeaderAdmin": "Admin",
"ButtonSignOut": "Sign out" "ButtonSignOut": "Sign out",
"HeaderCameraUpload": "Camera Upload",
"SelectCameraUploadServers": "Upload camera photos to the following servers:"
} }

View file

@ -48,7 +48,7 @@
"ButtonConvertMedia": "Convert media", "ButtonConvertMedia": "Convert media",
"ButtonOrganize": "Organize", "ButtonOrganize": "Organize",
"LinkedToEmbyConnect": "Linked to Emby Connect", "LinkedToEmbyConnect": "Linked to Emby Connect",
"HeaderSupporterBenefits": "Supporter Benefits", "HeaderSupporterBenefits": "Emby Premiere Benefits",
"HeaderAddUser": "Add User", "HeaderAddUser": "Add User",
"LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
"LabelPinCode": "Pin code:", "LabelPinCode": "Pin code:",
@ -82,7 +82,6 @@
"LabelCustomCertificatePath": "Custom certificate path:", "LabelCustomCertificatePath": "Custom certificate path:",
"LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.", "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ButtonDonateWithPayPal": "Donate with PayPal",
"OptionDetectArchiveFilesAsMedia": "Detect archive files as media", "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
"OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.", "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
"LabelEnterConnectUserName": "Username or email:", "LabelEnterConnectUserName": "Username or email:",
@ -289,8 +288,9 @@
"TitleSupport": "\u05ea\u05de\u05d9\u05db\u05d4", "TitleSupport": "\u05ea\u05de\u05d9\u05db\u05d4",
"TabLog": "\u05dc\u05d5\u05d2", "TabLog": "\u05dc\u05d5\u05d2",
"TabAbout": "\u05d0\u05d5\u05d3\u05d5\u05ea", "TabAbout": "\u05d0\u05d5\u05d3\u05d5\u05ea",
"TabSupporterKey": "\u05de\u05e4\u05ea\u05d7 \u05ea\u05d5\u05de\u05da", "TabSupporterKey": "Emby Premiere Key",
"TabBecomeSupporter": "\u05d4\u05e4\u05d5\u05da \u05dc\u05ea\u05d5\u05de\u05da", "TabBecomeSupporter": "Get Emby Premiere",
"TabEmbyPremiere": "Emby Premiere",
"ProjectHasCommunity": "Emby has a thriving community of users and contributors.", "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.", "CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "\u05d7\u05e4\u05e9 \u05d1\u05de\u05d0\u05d2\u05e8 \u05d4\u05de\u05d9\u05d3\u05e2", "SearchKnowledgeBase": "\u05d7\u05e4\u05e9 \u05d1\u05de\u05d0\u05d2\u05e8 \u05d4\u05de\u05d9\u05d3\u05e2",
@ -591,9 +591,9 @@
"LabelEndingEpisodeNumberHelp": "\u05d4\u05db\u05e8\u05d7\u05d9 \u05e8\u05e7 \u05e2\u05d1\u05d5\u05e8 \u05e7\u05d1\u05e6\u05d9\u05dd \u05e9\u05dc \u05e4\u05e8\u05e7\u05d9\u05dd \u05de\u05d7\u05d5\u05d1\u05e8\u05d9\u05dd", "LabelEndingEpisodeNumberHelp": "\u05d4\u05db\u05e8\u05d7\u05d9 \u05e8\u05e7 \u05e2\u05d1\u05d5\u05e8 \u05e7\u05d1\u05e6\u05d9\u05dd \u05e9\u05dc \u05e4\u05e8\u05e7\u05d9\u05dd \u05de\u05d7\u05d5\u05d1\u05e8\u05d9\u05dd",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"LabelSupportAmount": "\u05db\u05de\u05d5\u05ea (\u05d3\u05d5\u05dc\u05e8\u05d9\u05dd)", "LabelSupportAmount": "\u05db\u05de\u05d5\u05ea (\u05d3\u05d5\u05dc\u05e8\u05d9\u05dd)",
"HeaderSupportTheTeamHelp": "\u05e2\u05d6\u05d5\u05e8 \u05dc\u05d4\u05d1\u05d8\u05d9\u05d7 \u05d0\u05ea \u05d4\u05de\u05e9\u05da \u05d4]\u05d9\u05ea\u05d5\u05d7 \u05e9\u05dc \u05e4\u05e8\u05d5\u05d9\u05d9\u05e7\u05d8 \u05d6\u05d4 \u05e2\"\u05d9 \u05ea\u05e8\u05d5\u05de\u05d4. \u05d7\u05dc\u05e7 \u05de\u05db\u05dc \u05d4\u05ea\u05e8\u05d5\u05de\u05d5\u05ea \u05de\u05d5\u05e2\u05d1\u05e8 \u05dc\u05e9\u05d9\u05e8\u05d5\u05ea\u05d9\u05dd \u05d7\u05d5\u05e4\u05e9\u05d9\u05d9\u05dd \u05d0\u05d7\u05e8\u05d9\u05dd \u05d1\u05d4\u05dd \u05d0\u05e0\u05d5 \u05de\u05ea\u05e9\u05de\u05e9\u05d9\u05dd.", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
"ButtonEnterSupporterKey": "\u05d4\u05db\u05e0\u05e1 \u05de\u05e4\u05ea\u05d7 \u05ea\u05de\u05d9\u05db\u05d4", "ButtonEnterSupporterKey": "Enter Emby Premiere key",
"DonationNextStep": "\u05d1\u05e8\u05d2\u05e2 \u05e9\u05d4\u05d5\u05e9\u05dc\u05dd, \u05d0\u05e0\u05d0 \u05d7\u05d6\u05d5\u05e8 \u05d5\u05d4\u05db\u05e0\u05e1 \u05d0\u05ea \u05de\u05e4\u05ea\u05d7 \u05d4\u05ea\u05de\u05d9\u05db\u05d4\u05ea \u05d0\u05e9\u05e8 \u05ea\u05e7\u05d1\u05dc \u05d1\u05de\u05d9\u05d9\u05dc.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
"AutoOrganizeHelp": "\u05d0\u05e8\u05d2\u05d5\u05df \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9 \u05de\u05e0\u05d8\u05e8 \u05d0\u05ea \u05ea\u05d9\u05e7\u05d9\u05d9\u05ea \u05d4\u05d4\u05d5\u05e8\u05d3\u05d5\u05ea \u05e9\u05dc\u05da \u05d5\u05de\u05d7\u05e4\u05e9 \u05e7\u05d1\u05e6\u05d9\u05dd \u05d7\u05d3\u05e9\u05d9\u05dd, \u05d5\u05d0\u05d6 \u05de\u05e2\u05d1\u05d9\u05e8 \u05d0\u05d5\u05ea\u05dd \u05dc\u05e1\u05e4\u05e8\u05d9\u05d5\u05ea \u05d4\u05de\u05d3\u05d9\u05d4 \u05e9\u05dc\u05da.", "AutoOrganizeHelp": "\u05d0\u05e8\u05d2\u05d5\u05df \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9 \u05de\u05e0\u05d8\u05e8 \u05d0\u05ea \u05ea\u05d9\u05e7\u05d9\u05d9\u05ea \u05d4\u05d4\u05d5\u05e8\u05d3\u05d5\u05ea \u05e9\u05dc\u05da \u05d5\u05de\u05d7\u05e4\u05e9 \u05e7\u05d1\u05e6\u05d9\u05dd \u05d7\u05d3\u05e9\u05d9\u05dd, \u05d5\u05d0\u05d6 \u05de\u05e2\u05d1\u05d9\u05e8 \u05d0\u05d5\u05ea\u05dd \u05dc\u05e1\u05e4\u05e8\u05d9\u05d5\u05ea \u05d4\u05de\u05d3\u05d9\u05d4 \u05e9\u05dc\u05da.",
"AutoOrganizeTvHelp": "\u05de\u05e0\u05d4\u05dc \u05e7\u05d1\u05e6\u05d9 \u05d4\u05d8\u05dc\u05d5\u05d5\u05d9\u05d6\u05d9\u05d4 \u05d9\u05d5\u05e1\u05d9\u05e3 \u05e4\u05e8\u05e7\u05d9\u05dd \u05e8\u05e7 \u05dc\u05e1\u05d3\u05e8\u05d5\u05ea \u05e7\u05d9\u05d9\u05de\u05d5\u05ea, \u05d4\u05d5\u05d0 \u05dc\u05d0 \u05d9\u05d9\u05e6\u05d5\u05e8 \u05e1\u05e4\u05e8\u05d9\u05d5\u05ea \u05d7\u05d3\u05e9\u05d5\u05ea \u05dc\u05e1\u05d3\u05e8\u05d5\u05ea \u05d7\u05d3\u05e9\u05d5\u05ea.", "AutoOrganizeTvHelp": "\u05de\u05e0\u05d4\u05dc \u05e7\u05d1\u05e6\u05d9 \u05d4\u05d8\u05dc\u05d5\u05d5\u05d9\u05d6\u05d9\u05d4 \u05d9\u05d5\u05e1\u05d9\u05e3 \u05e4\u05e8\u05e7\u05d9\u05dd \u05e8\u05e7 \u05dc\u05e1\u05d3\u05e8\u05d5\u05ea \u05e7\u05d9\u05d9\u05de\u05d5\u05ea, \u05d4\u05d5\u05d0 \u05dc\u05d0 \u05d9\u05d9\u05e6\u05d5\u05e8 \u05e1\u05e4\u05e8\u05d9\u05d5\u05ea \u05d7\u05d3\u05e9\u05d5\u05ea \u05dc\u05e1\u05d3\u05e8\u05d5\u05ea \u05d7\u05d3\u05e9\u05d5\u05ea.",
"OptionEnableEpisodeOrganization": "\u05d0\u05e4\u05e9\u05e8 \u05e1\u05d9\u05d3\u05d5\u05e8 \u05e4\u05e8\u05e7\u05d9\u05dd \u05d7\u05d3\u05e9\u05d9\u05dd", "OptionEnableEpisodeOrganization": "\u05d0\u05e4\u05e9\u05e8 \u05e1\u05d9\u05d3\u05d5\u05e8 \u05e4\u05e8\u05e7\u05d9\u05dd \u05d7\u05d3\u05e9\u05d9\u05dd",
@ -639,20 +639,20 @@
"LabelDownMixAudioScale": "Audio boost when downmixing:", "LabelDownMixAudioScale": "Audio boost when downmixing:",
"LabelDownMixAudioScaleHelp": "\u05d4\u05d2\u05d1\u05e8 \u05d0\u05d5\u05d3\u05d9\u05d5 \u05db\u05d0\u05e9\u05e8 \u05d4\u05d5\u05d0 \u05de\u05de\u05d5\u05d6\u05d2. \u05d4\u05d2\u05d3\u05e8 \u05dc-1 \u05dc\u05e9\u05de\u05d5\u05e8 \u05e2\u05dc \u05e2\u05e8\u05da \u05d4\u05d5\u05d5\u05dc\u05d9\u05d5\u05dd \u05d4\u05de\u05e7\u05d5\u05e8\u05d9", "LabelDownMixAudioScaleHelp": "\u05d4\u05d2\u05d1\u05e8 \u05d0\u05d5\u05d3\u05d9\u05d5 \u05db\u05d0\u05e9\u05e8 \u05d4\u05d5\u05d0 \u05de\u05de\u05d5\u05d6\u05d2. \u05d4\u05d2\u05d3\u05e8 \u05dc-1 \u05dc\u05e9\u05de\u05d5\u05e8 \u05e2\u05dc \u05e2\u05e8\u05da \u05d4\u05d5\u05d5\u05dc\u05d9\u05d5\u05dd \u05d4\u05de\u05e7\u05d5\u05e8\u05d9",
"ButtonLinkKeys": "Transfer Key", "ButtonLinkKeys": "Transfer Key",
"LabelOldSupporterKey": "\u05de\u05e4\u05ea\u05d7 \u05ea\u05de\u05d9\u05db\u05d4 \u05d9\u05e9\u05df", "LabelOldSupporterKey": "Old Emby Premiere key",
"LabelNewSupporterKey": "\u05de\u05e4\u05ea\u05d7 \u05ea\u05de\u05d9\u05db\u05d4 \u05d7\u05d3\u05e9", "LabelNewSupporterKey": "New Emby Premiere key",
"HeaderMultipleKeyLinking": "Transfer to New Key", "HeaderMultipleKeyLinking": "Transfer to New Key",
"MultipleKeyLinkingHelp": "If you received a new supporter key, use this form to transfer the old key's registrations to your new one.", "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
"LabelCurrentEmailAddress": "\u05db\u05ea\u05d5\u05d1\u05ea \u05d0\u05d9\u05de\u05d9\u05d9\u05dc \u05e2\u05d3\u05db\u05e0\u05d9\u05ea", "LabelCurrentEmailAddress": "\u05db\u05ea\u05d5\u05d1\u05ea \u05d0\u05d9\u05de\u05d9\u05d9\u05dc \u05e2\u05d3\u05db\u05e0\u05d9\u05ea",
"LabelCurrentEmailAddressHelp": "\u05db\u05ea\u05d5\u05d1\u05ea \u05d4\u05d0\u05d9\u05de\u05d9\u05d9\u05dc \u05d0\u05dc\u05d9\u05d4 \u05e0\u05e9\u05dc\u05d7 \u05d4\u05de\u05e4\u05ea\u05d7 \u05d4\u05d7\u05d3\u05e9 \u05e9\u05dc\u05da", "LabelCurrentEmailAddressHelp": "\u05db\u05ea\u05d5\u05d1\u05ea \u05d4\u05d0\u05d9\u05de\u05d9\u05d9\u05dc \u05d0\u05dc\u05d9\u05d4 \u05e0\u05e9\u05dc\u05d7 \u05d4\u05de\u05e4\u05ea\u05d7 \u05d4\u05d7\u05d3\u05e9 \u05e9\u05dc\u05da",
"HeaderForgotKey": "\u05e9\u05d7\u05db\u05ea\u05d9 \u05d0\u05ea \u05d4\u05de\u05e4\u05ea\u05d7", "HeaderForgotKey": "\u05e9\u05d7\u05db\u05ea\u05d9 \u05d0\u05ea \u05d4\u05de\u05e4\u05ea\u05d7",
"LabelEmailAddress": "\u05db\u05ea\u05d5\u05d1\u05ea \u05d0\u05d9\u05de\u05d9\u05d9\u05dc", "LabelEmailAddress": "\u05db\u05ea\u05d5\u05d1\u05ea \u05d0\u05d9\u05de\u05d9\u05d9\u05dc",
"LabelSupporterEmailAddress": "\u05db\u05ea\u05d5\u05d1\u05ea \u05d4\u05d0\u05d9\u05de\u05d9\u05d9\u05dc \u05d0\u05dc\u05d9\u05d4 \u05e0\u05e9\u05dc\u05d7 \u05de\u05e4\u05ea\u05d7 \u05d4\u05e8\u05db\u05d9\u05e9\u05d4.", "LabelSupporterEmailAddress": "\u05db\u05ea\u05d5\u05d1\u05ea \u05d4\u05d0\u05d9\u05de\u05d9\u05d9\u05dc \u05d0\u05dc\u05d9\u05d4 \u05e0\u05e9\u05dc\u05d7 \u05de\u05e4\u05ea\u05d7 \u05d4\u05e8\u05db\u05d9\u05e9\u05d4.",
"ButtonRetrieveKey": "\u05e9\u05d7\u05e8 \u05de\u05e4\u05ea\u05d7", "ButtonRetrieveKey": "\u05e9\u05d7\u05e8 \u05de\u05e4\u05ea\u05d7",
"LabelSupporterKey": "\u05de\u05e4\u05ea\u05d7 \u05ea\u05de\u05d9\u05db\u05d4 (\u05d4\u05d3\u05d1\u05e7 \u05de\u05d4\u05d0\u05d9\u05de\u05d9\u05d9\u05dc)", "LabelSupporterKey": "Emby Premiere key (paste from email):",
"LabelSupporterKeyHelp": "Enter your supporter key to start enjoying additional benefits the community has developed for Emby.", "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
"MessageInvalidKey": "Supporter key is missing or invalid.", "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
"ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also be an Emby Supporter. Please donate and support the continued development of the core product. Thank you.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
"HeaderDisplaySettings": "\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05ea\u05e6\u05d5\u05d2\u05d4", "HeaderDisplaySettings": "\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05ea\u05e6\u05d5\u05d2\u05d4",
"TabPlayTo": "\u05e0\u05d2\u05df \u05d1", "TabPlayTo": "\u05e0\u05d2\u05df \u05d1",
"LabelEnableDlnaServer": "\u05d0\u05e4\u05e9\u05e8 \u05e9\u05e8\u05ea Dina", "LabelEnableDlnaServer": "\u05d0\u05e4\u05e9\u05e8 \u05e9\u05e8\u05ea Dina",
@ -912,7 +912,7 @@
"OptionCommunityMostWatchedSort": "Most Watched", "OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up", "TabNextUp": "Next Up",
"PlaceholderUsername": "Username", "PlaceholderUsername": "Username",
"HeaderBecomeProjectSupporter": "Become an Emby Supporter", "HeaderBecomeProjectSupporter": "Get Emby Premiere",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
"MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
@ -1002,8 +1002,6 @@
"HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.",
"LabelLoginDisclaimer": "Login disclaimer:", "LabelLoginDisclaimer": "Login disclaimer:",
"LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.",
"LabelAutomaticallyDonate": "Automatically donate this amount every month",
"LabelAutomaticallyDonateHelp": "You can cancel at any time via your PayPal account.",
"OptionList": "List", "OptionList": "List",
"TabDashboard": "Dashboard", "TabDashboard": "Dashboard",
"TitleServer": "Server", "TitleServer": "Server",
@ -1220,18 +1218,12 @@
"HeaderMetadataSettings": "Metadata Settings", "HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes", "LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
"TabDonate": "Donate",
"HeaderDonationType": "Donation type:", "HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation", "OptionMakeOneTimeDonation": "Make a separate donation",
"OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
"OptionYearlySupporterMembership": "Yearly supporter membership",
"OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer", "OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song", "OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video", "OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:", "LabelOneTimeDonationAmount": "Donation amount:",
"ButtonDonate": "Donate",
"ButtonPurchase": "Purchase", "ButtonPurchase": "Purchase",
"OptionActor": "Actor", "OptionActor": "Actor",
"OptionComposer": "Composer", "OptionComposer": "Composer",
@ -1245,9 +1237,9 @@
"HeaderPhotoInfo": "Photo Info", "HeaderPhotoInfo": "Photo Info",
"HeaderInstall": "Install", "HeaderInstall": "Install",
"LabelSelectVersionToInstall": "Select version to install:", "LabelSelectVersionToInstall": "Select version to install:",
"LinkSupporterMembership": "Learn about the Supporter Membership", "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
"MessageSupporterPluginRequiresMembership": "This plugin will require an active supporter membership after the 14 day free trial.", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
"MessagePremiumPluginRequiresMembership": "This plugin will require an active supporter membership in order to purchase after the 14 day free trial.", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
"HeaderReviews": "Reviews", "HeaderReviews": "Reviews",
"HeaderDeveloperInfo": "Developer Info", "HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History", "HeaderRevisionHistory": "Revision History",
@ -1292,7 +1284,7 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content", "LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control", "LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
"LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:", "LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
@ -1513,7 +1505,7 @@
"LabelTunerType": "Tuner type:", "LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.", "HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
"AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.", "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
@ -1528,5 +1520,7 @@
"LabelHardwareVideoDecoderHelp": "Available on supported systems only.", "LabelHardwareVideoDecoderHelp": "Available on supported systems only.",
"ButtonServerDashboard": "Server Dashboard", "ButtonServerDashboard": "Server Dashboard",
"HeaderAdmin": "Admin", "HeaderAdmin": "Admin",
"ButtonSignOut": "Sign out" "ButtonSignOut": "Sign out",
"HeaderCameraUpload": "Camera Upload",
"SelectCameraUploadServers": "Upload camera photos to the following servers:"
} }

View file

@ -48,7 +48,7 @@
"ButtonConvertMedia": "Convert media", "ButtonConvertMedia": "Convert media",
"ButtonOrganize": "Organize", "ButtonOrganize": "Organize",
"LinkedToEmbyConnect": "Linked to Emby Connect", "LinkedToEmbyConnect": "Linked to Emby Connect",
"HeaderSupporterBenefits": "Supporter Benefits", "HeaderSupporterBenefits": "Emby Premiere Benefits",
"HeaderAddUser": "Add User", "HeaderAddUser": "Add User",
"LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
"LabelPinCode": "Pin code:", "LabelPinCode": "Pin code:",
@ -82,7 +82,6 @@
"LabelCustomCertificatePath": "Custom certificate path:", "LabelCustomCertificatePath": "Custom certificate path:",
"LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.", "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ButtonDonateWithPayPal": "Donate with PayPal",
"OptionDetectArchiveFilesAsMedia": "Detect archive files as media", "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
"OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.", "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
"LabelEnterConnectUserName": "Username or email:", "LabelEnterConnectUserName": "Username or email:",
@ -289,8 +288,9 @@
"TitleSupport": "Podr\u0161ka", "TitleSupport": "Podr\u0161ka",
"TabLog": "Log", "TabLog": "Log",
"TabAbout": "O ovome...", "TabAbout": "O ovome...",
"TabSupporterKey": "Klju\u010d pobornika", "TabSupporterKey": "Emby Premiere Key",
"TabBecomeSupporter": "Postani pobornik", "TabBecomeSupporter": "Get Emby Premiere",
"TabEmbyPremiere": "Emby Premiere",
"ProjectHasCommunity": "Emby has a thriving community of users and contributors.", "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.", "CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "Pretra\u017ei bazu znanja", "SearchKnowledgeBase": "Pretra\u017ei bazu znanja",
@ -591,9 +591,9 @@
"LabelEndingEpisodeNumberHelp": "Potrebno samo za datoteke sa vi\u0161e epizoda", "LabelEndingEpisodeNumberHelp": "Potrebno samo za datoteke sa vi\u0161e epizoda",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"LabelSupportAmount": "Iznos (USD)", "LabelSupportAmount": "Iznos (USD)",
"HeaderSupportTheTeamHelp": "Pomozi donacijom i osiguraj daljnji razvoj ovog projekta. Dio donacija \u0107e biti preusmjereni za ostale besplatne alate o kojima ovisimo.", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
"ButtonEnterSupporterKey": "Unesi klju\u010d podr\u0161ke", "ButtonEnterSupporterKey": "Enter Emby Premiere key",
"DonationNextStep": "Nakon zavr\u0161etka molimo da se vratite i unesete klju\u010d podr\u0161ke koji \u0107e te primiti na email.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
"AutoOrganizeHelp": "Auto-Organizator nadgleda va\u0161u mapu za preuzimanja za nove datoteke i filmove te ih premje\u0161ta u mapu za medije.", "AutoOrganizeHelp": "Auto-Organizator nadgleda va\u0161u mapu za preuzimanja za nove datoteke i filmove te ih premje\u0161ta u mapu za medije.",
"AutoOrganizeTvHelp": "Organizator TV datoteka \u0107e samo dodati epizode za postoje\u0107e serije. Ne\u0107e napraviti mape za nove serije.", "AutoOrganizeTvHelp": "Organizator TV datoteka \u0107e samo dodati epizode za postoje\u0107e serije. Ne\u0107e napraviti mape za nove serije.",
"OptionEnableEpisodeOrganization": "Omogu\u0107i organizaciju novih epizoda", "OptionEnableEpisodeOrganization": "Omogu\u0107i organizaciju novih epizoda",
@ -639,20 +639,20 @@
"LabelDownMixAudioScale": "Poja\u010daj zvuk kada radi\u0161 downmix:", "LabelDownMixAudioScale": "Poja\u010daj zvuk kada radi\u0161 downmix:",
"LabelDownMixAudioScaleHelp": "Poja\u010daj zvuk kada radi\u0161 downmix. Postavi na 1 ako \u017eeli\u0161 zadr\u017eati orginalnu ja\u010dinu zvuka.", "LabelDownMixAudioScaleHelp": "Poja\u010daj zvuk kada radi\u0161 downmix. Postavi na 1 ako \u017eeli\u0161 zadr\u017eati orginalnu ja\u010dinu zvuka.",
"ButtonLinkKeys": "Transfer Key", "ButtonLinkKeys": "Transfer Key",
"LabelOldSupporterKey": "Stari klju\u010devi podr\u0161ke", "LabelOldSupporterKey": "Old Emby Premiere key",
"LabelNewSupporterKey": "Novi klju\u010devi podr\u0161ke", "LabelNewSupporterKey": "New Emby Premiere key",
"HeaderMultipleKeyLinking": "Transfer to New Key", "HeaderMultipleKeyLinking": "Transfer to New Key",
"MultipleKeyLinkingHelp": "If you received a new supporter key, use this form to transfer the old key's registrations to your new one.", "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
"LabelCurrentEmailAddress": "Trenutna e-mail adresa", "LabelCurrentEmailAddress": "Trenutna e-mail adresa",
"LabelCurrentEmailAddressHelp": "Trenutna e-mail adresa na koju je poslan novi klju\u010d.", "LabelCurrentEmailAddressHelp": "Trenutna e-mail adresa na koju je poslan novi klju\u010d.",
"HeaderForgotKey": "Zaboravili ste klju\u010d", "HeaderForgotKey": "Zaboravili ste klju\u010d",
"LabelEmailAddress": "E-mail adresa", "LabelEmailAddress": "E-mail adresa",
"LabelSupporterEmailAddress": "E-mail adresa koja je kori\u0161tena za nabavku klju\u010da", "LabelSupporterEmailAddress": "E-mail adresa koja je kori\u0161tena za nabavku klju\u010da",
"ButtonRetrieveKey": "Dohvati klju\u010d", "ButtonRetrieveKey": "Dohvati klju\u010d",
"LabelSupporterKey": "Klju\u010d podr\u0161ke (zaljepi iz e-maila)", "LabelSupporterKey": "Emby Premiere key (paste from email):",
"LabelSupporterKeyHelp": "Enter your supporter key to start enjoying additional benefits the community has developed for Emby.", "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
"MessageInvalidKey": "Klju\u010d podr\u0161ke nedostaje ili je neispravan.", "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
"ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also be an Emby Supporter. Please donate and support the continued development of the core product. Thank you.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
"HeaderDisplaySettings": "Postavke prikaza", "HeaderDisplaySettings": "Postavke prikaza",
"TabPlayTo": "Izvedi na", "TabPlayTo": "Izvedi na",
"LabelEnableDlnaServer": "Omogu\u0107i Dlna server", "LabelEnableDlnaServer": "Omogu\u0107i Dlna server",
@ -912,7 +912,7 @@
"OptionCommunityMostWatchedSort": "Most Watched", "OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up", "TabNextUp": "Next Up",
"PlaceholderUsername": "Username", "PlaceholderUsername": "Username",
"HeaderBecomeProjectSupporter": "Become an Emby Supporter", "HeaderBecomeProjectSupporter": "Get Emby Premiere",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
"MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
@ -1002,8 +1002,6 @@
"HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.",
"LabelLoginDisclaimer": "Login disclaimer:", "LabelLoginDisclaimer": "Login disclaimer:",
"LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.",
"LabelAutomaticallyDonate": "Automatically donate this amount every month",
"LabelAutomaticallyDonateHelp": "You can cancel at any time via your PayPal account.",
"OptionList": "List", "OptionList": "List",
"TabDashboard": "Dashboard", "TabDashboard": "Dashboard",
"TitleServer": "Server", "TitleServer": "Server",
@ -1220,18 +1218,12 @@
"HeaderMetadataSettings": "Metadata Settings", "HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes", "LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
"TabDonate": "Donate",
"HeaderDonationType": "Donation type:", "HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation", "OptionMakeOneTimeDonation": "Make a separate donation",
"OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
"OptionYearlySupporterMembership": "Yearly supporter membership",
"OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer", "OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song", "OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video", "OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:", "LabelOneTimeDonationAmount": "Donation amount:",
"ButtonDonate": "Donate",
"ButtonPurchase": "Purchase", "ButtonPurchase": "Purchase",
"OptionActor": "Actor", "OptionActor": "Actor",
"OptionComposer": "Composer", "OptionComposer": "Composer",
@ -1245,9 +1237,9 @@
"HeaderPhotoInfo": "Photo Info", "HeaderPhotoInfo": "Photo Info",
"HeaderInstall": "Install", "HeaderInstall": "Install",
"LabelSelectVersionToInstall": "Select version to install:", "LabelSelectVersionToInstall": "Select version to install:",
"LinkSupporterMembership": "Learn about the Supporter Membership", "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
"MessageSupporterPluginRequiresMembership": "This plugin will require an active supporter membership after the 14 day free trial.", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
"MessagePremiumPluginRequiresMembership": "This plugin will require an active supporter membership in order to purchase after the 14 day free trial.", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
"HeaderReviews": "Reviews", "HeaderReviews": "Reviews",
"HeaderDeveloperInfo": "Developer Info", "HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History", "HeaderRevisionHistory": "Revision History",
@ -1292,7 +1284,7 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content", "LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control", "LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
"LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:", "LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
@ -1513,7 +1505,7 @@
"LabelTunerType": "Tuner type:", "LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.", "HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
"AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.", "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
@ -1528,5 +1520,7 @@
"LabelHardwareVideoDecoderHelp": "Available on supported systems only.", "LabelHardwareVideoDecoderHelp": "Available on supported systems only.",
"ButtonServerDashboard": "Server Dashboard", "ButtonServerDashboard": "Server Dashboard",
"HeaderAdmin": "Admin", "HeaderAdmin": "Admin",
"ButtonSignOut": "Sign out" "ButtonSignOut": "Sign out",
"HeaderCameraUpload": "Camera Upload",
"SelectCameraUploadServers": "Upload camera photos to the following servers:"
} }

View file

@ -48,7 +48,7 @@
"ButtonConvertMedia": "Converti media", "ButtonConvertMedia": "Converti media",
"ButtonOrganize": "Organizza", "ButtonOrganize": "Organizza",
"LinkedToEmbyConnect": "Collegato a Emby Connect", "LinkedToEmbyConnect": "Collegato a Emby Connect",
"HeaderSupporterBenefits": "Benefici per il Supporter", "HeaderSupporterBenefits": "Emby Premiere Benefits",
"HeaderAddUser": "Aggiungi utente", "HeaderAddUser": "Aggiungi utente",
"LabelAddConnectSupporterHelp": "Per aggiungere un utente non in lista, dovrai prima collegare il suo account a Emby Connect dalla pagina del suo profilo", "LabelAddConnectSupporterHelp": "Per aggiungere un utente non in lista, dovrai prima collegare il suo account a Emby Connect dalla pagina del suo profilo",
"LabelPinCode": "Codice Pin", "LabelPinCode": "Codice Pin",
@ -82,7 +82,6 @@
"LabelCustomCertificatePath": "Percorso certificati personalizzato:", "LabelCustomCertificatePath": "Percorso certificati personalizzato:",
"LabelCustomCertificatePathHelp": "Fornisci il tuo file .pfx certificato SSL. Se omesso, il server creer\u00e0 un certificato auto-firmato.", "LabelCustomCertificatePathHelp": "Fornisci il tuo file .pfx certificato SSL. Se omesso, il server creer\u00e0 un certificato auto-firmato.",
"TitleNotifications": "Notifiche", "TitleNotifications": "Notifiche",
"ButtonDonateWithPayPal": "Effettua una donazione con PayPal",
"OptionDetectArchiveFilesAsMedia": "Considera gli archivi come file multimediali", "OptionDetectArchiveFilesAsMedia": "Considera gli archivi come file multimediali",
"OptionDetectArchiveFilesAsMediaHelp": "se attivato, i file con estensione .rar e .zip saranno considerati come file multimediali.", "OptionDetectArchiveFilesAsMediaHelp": "se attivato, i file con estensione .rar e .zip saranno considerati come file multimediali.",
"LabelEnterConnectUserName": "Username di Emby o indirizzo email:", "LabelEnterConnectUserName": "Username di Emby o indirizzo email:",
@ -289,8 +288,9 @@
"TitleSupport": "Supporto", "TitleSupport": "Supporto",
"TabLog": "Eventi", "TabLog": "Eventi",
"TabAbout": "Info", "TabAbout": "Info",
"TabSupporterKey": "Chiave del Supporter", "TabSupporterKey": "Emby Premiere Key",
"TabBecomeSupporter": "Diventa un Supporter", "TabBecomeSupporter": "Get Emby Premiere",
"TabEmbyPremiere": "Emby Premiere",
"ProjectHasCommunity": "Emby ha una ricca community di utilizzatori e collaboratori", "ProjectHasCommunity": "Emby ha una ricca community di utilizzatori e collaboratori",
"CheckoutKnowledgeBase": "Scopri la nostra Knoledge Base per ottenere il massimo da Emby", "CheckoutKnowledgeBase": "Scopri la nostra Knoledge Base per ottenere il massimo da Emby",
"SearchKnowledgeBase": "Cerca nella guida online", "SearchKnowledgeBase": "Cerca nella guida online",
@ -591,9 +591,9 @@
"LabelEndingEpisodeNumberHelp": "Richiesto solo se ci sono pi\u00f9 file per espisodio", "LabelEndingEpisodeNumberHelp": "Richiesto solo se ci sono pi\u00f9 file per espisodio",
"HeaderSupportTheTeam": "Supporta il Team di Emby", "HeaderSupportTheTeam": "Supporta il Team di Emby",
"LabelSupportAmount": "Ammontare (Dollari)", "LabelSupportAmount": "Ammontare (Dollari)",
"HeaderSupportTheTeamHelp": "Aiutaci a continuare lo sviluppo di questo progetto tramite una donazione. Una parte delle donazioni verr\u00e0 impiegata per lo sviluppo di Plugins gratuiti.", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
"ButtonEnterSupporterKey": "Inserisci il tuo codice Supporter", "ButtonEnterSupporterKey": "Enter Emby Premiere key",
"DonationNextStep": "Quando hai terminato, per favore rientra ed inserisci il codice Supporter che riceverai per email", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
"AutoOrganizeHelp": "Organizzazione automatica monitorizza le cartelle dei file scaricati e li sposter\u00e0 automaticamente nelle tue cartelle dei media.", "AutoOrganizeHelp": "Organizzazione automatica monitorizza le cartelle dei file scaricati e li sposter\u00e0 automaticamente nelle tue cartelle dei media.",
"AutoOrganizeTvHelp": "L'organizzazione della TV aggiunger\u00e0 solo episodi nuovi alle serie esistenti. Non verranno create nuove cartelle delle serie.", "AutoOrganizeTvHelp": "L'organizzazione della TV aggiunger\u00e0 solo episodi nuovi alle serie esistenti. Non verranno create nuove cartelle delle serie.",
"OptionEnableEpisodeOrganization": "Abilita l'organizzazione dei nuovi episodi", "OptionEnableEpisodeOrganization": "Abilita l'organizzazione dei nuovi episodi",
@ -639,20 +639,20 @@
"LabelDownMixAudioScale": "Boost audio durante il downmix:", "LabelDownMixAudioScale": "Boost audio durante il downmix:",
"LabelDownMixAudioScaleHelp": "Aumenta il volume durante il downmix. Impostalo su 1 per mantenere il volume originale", "LabelDownMixAudioScaleHelp": "Aumenta il volume durante il downmix. Impostalo su 1 per mantenere il volume originale",
"ButtonLinkKeys": "Trasferisci chiavi", "ButtonLinkKeys": "Trasferisci chiavi",
"LabelOldSupporterKey": "Vecchie Chiavi Donatore", "LabelOldSupporterKey": "Old Emby Premiere key",
"LabelNewSupporterKey": "Nuova Chiave Sostenitore:", "LabelNewSupporterKey": "New Emby Premiere key",
"HeaderMultipleKeyLinking": "Trasferimento nuova chiave", "HeaderMultipleKeyLinking": "Trasferimento nuova chiave",
"MultipleKeyLinkingHelp": "Se hai ricevuto una nuova Chiave Sostenitore, utilizza questo modulo per trasferire le registrazioni della vecchia chiave a quella nuova.", "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
"LabelCurrentEmailAddress": "Indirizzo mail attuale", "LabelCurrentEmailAddress": "Indirizzo mail attuale",
"LabelCurrentEmailAddressHelp": "L'indirizzo email attuale a cui la nuova chiave \u00e8 stata inviata.", "LabelCurrentEmailAddressHelp": "L'indirizzo email attuale a cui la nuova chiave \u00e8 stata inviata.",
"HeaderForgotKey": "Chiave dimenticata", "HeaderForgotKey": "Chiave dimenticata",
"LabelEmailAddress": "Indirizzo email", "LabelEmailAddress": "Indirizzo email",
"LabelSupporterEmailAddress": "La mail che \u00e8 stata utilizzata per acquistare la chiave", "LabelSupporterEmailAddress": "La mail che \u00e8 stata utilizzata per acquistare la chiave",
"ButtonRetrieveKey": "Recupera chiave", "ButtonRetrieveKey": "Recupera chiave",
"LabelSupporterKey": "Chiave (incollala dalla mail ricevuta)", "LabelSupporterKey": "Emby Premiere key (paste from email):",
"LabelSupporterKeyHelp": "Inserisci il tuo codice Supporter per iniziare a goderti ulteriori funzioni che la community ha sviluppato per Emby", "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
"MessageInvalidKey": "Chiave Sostenitore mancante o non valida.", "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
"ErrorMessageInvalidKey": "Affinch\u00e8 un contenuto premium venga registrato, tu devi anche essere un Supporter di Emby. Per favore, fai una donazione e supporta il continuo sviluppo del prodotto principale. Grazie", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
"HeaderDisplaySettings": "Configurazione Monitor", "HeaderDisplaySettings": "Configurazione Monitor",
"TabPlayTo": "Riproduci su", "TabPlayTo": "Riproduci su",
"LabelEnableDlnaServer": "Abilita server DLNA", "LabelEnableDlnaServer": "Abilita server DLNA",
@ -912,7 +912,7 @@
"OptionCommunityMostWatchedSort": "Pi\u00f9 visti", "OptionCommunityMostWatchedSort": "Pi\u00f9 visti",
"TabNextUp": "Da vedere", "TabNextUp": "Da vedere",
"PlaceholderUsername": "Username", "PlaceholderUsername": "Username",
"HeaderBecomeProjectSupporter": "Diventa un Supporter di Emby", "HeaderBecomeProjectSupporter": "Get Emby Premiere",
"MessageNoMovieSuggestionsAvailable": "Nessun suggerimento di film attualmente disponibile. Iniziare a guardare e valutare i vostri film, e poi tornare per i suggerimenti.", "MessageNoMovieSuggestionsAvailable": "Nessun suggerimento di film attualmente disponibile. Iniziare a guardare e valutare i vostri film, e poi tornare per i suggerimenti.",
"MessageNoCollectionsAvailable": "Le collezioni ti permettono di goderti raccolte personalizzate di Film, Serie TV, Album, Libri e Giochi. Clicca sul + per iniziare a creare le tue Collezioni", "MessageNoCollectionsAvailable": "Le collezioni ti permettono di goderti raccolte personalizzate di Film, Serie TV, Album, Libri e Giochi. Clicca sul + per iniziare a creare le tue Collezioni",
"MessageNoPlaylistsAvailable": "Playlist ti permettere di mettere in coda gli elementi da riprodurre.Usa il tasto destro o tap e tieni premuto quindi seleziona elemento da aggiungere", "MessageNoPlaylistsAvailable": "Playlist ti permettere di mettere in coda gli elementi da riprodurre.Usa il tasto destro o tap e tieni premuto quindi seleziona elemento da aggiungere",
@ -1002,8 +1002,6 @@
"HeaderBrandingHelp": "Personalizza l'aspetto di Emby per soddisfare le esigenze del tuo gruppo o della tua organizzazione.", "HeaderBrandingHelp": "Personalizza l'aspetto di Emby per soddisfare le esigenze del tuo gruppo o della tua organizzazione.",
"LabelLoginDisclaimer": "Avviso Login:", "LabelLoginDisclaimer": "Avviso Login:",
"LabelLoginDisclaimerHelp": "Questo verr\u00e0 visualizzato nella parte inferiore della pagina di accesso.", "LabelLoginDisclaimerHelp": "Questo verr\u00e0 visualizzato nella parte inferiore della pagina di accesso.",
"LabelAutomaticallyDonate": "Donare automaticamente questo importo ogni mese",
"LabelAutomaticallyDonateHelp": "\u00c8 possibile annullare in qualsiasi momento tramite il vostro conto PayPal.",
"OptionList": "Lista", "OptionList": "Lista",
"TabDashboard": "Pannello Controllo", "TabDashboard": "Pannello Controllo",
"TitleServer": "Server", "TitleServer": "Server",
@ -1220,18 +1218,12 @@
"HeaderMetadataSettings": "Impostazioni metadati", "HeaderMetadataSettings": "Impostazioni metadati",
"LabelLockItemToPreventChanges": "Bloccare questa voce per impedire modifiche future", "LabelLockItemToPreventChanges": "Bloccare questa voce per impedire modifiche future",
"MessageLeaveEmptyToInherit": "Lasciare vuoto per ereditare le impostazioni da un elemento principale, o il valore predefinito globale.", "MessageLeaveEmptyToInherit": "Lasciare vuoto per ereditare le impostazioni da un elemento principale, o il valore predefinito globale.",
"TabDonate": "Dona",
"HeaderDonationType": "Tipo di donazione:", "HeaderDonationType": "Tipo di donazione:",
"OptionMakeOneTimeDonation": "Fai una donazione separata", "OptionMakeOneTimeDonation": "Fai una donazione separata",
"OptionOneTimeDescription": "Si tratta di una donazione aggiuntiva alla squadra per mostrare il vostro sostegno. Non ha alcun beneficio e non produrr\u00e0 una chiave sostenitore.",
"OptionLifeTimeSupporterMembership": "Appartenenza supporter Lifetime",
"OptionYearlySupporterMembership": "Appartenenza supporter annuale",
"OptionMonthlySupporterMembership": "Appartenenza supporter mensile",
"OptionNoTrailer": "Nessun Trailer", "OptionNoTrailer": "Nessun Trailer",
"OptionNoThemeSong": "No Temi canzone", "OptionNoThemeSong": "No Temi canzone",
"OptionNoThemeVideo": "No tema video", "OptionNoThemeVideo": "No tema video",
"LabelOneTimeDonationAmount": "Importo della donazione:", "LabelOneTimeDonationAmount": "Importo della donazione:",
"ButtonDonate": "Donazione",
"ButtonPurchase": "Acquista", "ButtonPurchase": "Acquista",
"OptionActor": "Attore", "OptionActor": "Attore",
"OptionComposer": "Compositore", "OptionComposer": "Compositore",
@ -1245,9 +1237,9 @@
"HeaderPhotoInfo": "Foto info", "HeaderPhotoInfo": "Foto info",
"HeaderInstall": "Installa", "HeaderInstall": "Installa",
"LabelSelectVersionToInstall": "Selezionare la versione da installare:", "LabelSelectVersionToInstall": "Selezionare la versione da installare:",
"LinkSupporterMembership": "Ulteriori informazioni Supporter Membership", "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
"MessageSupporterPluginRequiresMembership": "Questo plugin richiede un abbonamento sostenitore attivo dopo la prova gratuita di 14 giorni.", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
"MessagePremiumPluginRequiresMembership": "Questo plugin richiede un abbonamento sostenitore attivo al fine di acquistare dopo la prova gratuita di 14 giorni.", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
"HeaderReviews": "Recensioni", "HeaderReviews": "Recensioni",
"HeaderDeveloperInfo": "Info sviluppatore", "HeaderDeveloperInfo": "Info sviluppatore",
"HeaderRevisionHistory": "Cronologia delle revisioni", "HeaderRevisionHistory": "Cronologia delle revisioni",
@ -1292,7 +1284,7 @@
"LabelLimitIntrosToUnwatchedContent": "Solo i trailer da contenuti non visti", "LabelLimitIntrosToUnwatchedContent": "Solo i trailer da contenuti non visti",
"LabelEnableIntroParentalControl": "Abilita controllo parentale intelligente", "LabelEnableIntroParentalControl": "Abilita controllo parentale intelligente",
"LabelEnableIntroParentalControlHelp": "Trailer: verr\u00e0 selezionata solo con un rating genitori uguale o inferiore al contenuto di essere osservato.", "LabelEnableIntroParentalControlHelp": "Trailer: verr\u00e0 selezionata solo con un rating genitori uguale o inferiore al contenuto di essere osservato.",
"LabelTheseFeaturesRequireSupporterHelpAndTrailers": "Queste caratteristiche richiedono un abbonamento attivo sostenitore e l'installazione del plugin canale Trailer.", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Richiede l'installazione di trailer locali.", "OptionTrailersFromMyMoviesHelp": "Richiede l'installazione di trailer locali.",
"LabelCustomIntrosPath": "Intro personalizzate percorso:", "LabelCustomIntrosPath": "Intro personalizzate percorso:",
"LabelCustomIntrosPathHelp": "Una cartella contenente i file video. Un video sar\u00e0 scelto a caso e riprodotto dopo i traler.", "LabelCustomIntrosPathHelp": "Una cartella contenente i file video. Un video sar\u00e0 scelto a caso e riprodotto dopo i traler.",
@ -1513,7 +1505,7 @@
"LabelTunerType": "Tipo sintonizzatore:", "LabelTunerType": "Tipo sintonizzatore:",
"HelpMoreTunersCanBeAdded": "Sintonizzatori supplementari possono essere aggiunti in seguito nella sezione Live TV.", "HelpMoreTunersCanBeAdded": "Sintonizzatori supplementari possono essere aggiunti in seguito nella sezione Live TV.",
"AdditionalLiveTvProvidersCanBeInstalledLater": "Ulteriori fornitori di TV Live possono essere aggiunti successivamente all'interno della sezione Live TV.", "AdditionalLiveTvProvidersCanBeInstalledLater": "Ulteriori fornitori di TV Live possono essere aggiunti successivamente all'interno della sezione Live TV.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "Un attivo sostenitore di Emby \u00e8 necessario al fine di creare registrazioni di serie automatizzate.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Guida all'installazione TV", "HeaderSetupTVGuide": "Guida all'installazione TV",
"LabelDataProvider": "Fornitore di dati:", "LabelDataProvider": "Fornitore di dati:",
"OptionSendRecordingsToAutoOrganize": "Attiva Auto-Organizza per nuove registrazioni", "OptionSendRecordingsToAutoOrganize": "Attiva Auto-Organizza per nuove registrazioni",
@ -1528,5 +1520,7 @@
"LabelHardwareVideoDecoderHelp": "Disponibile solo su sistemi supportati.", "LabelHardwareVideoDecoderHelp": "Disponibile solo su sistemi supportati.",
"ButtonServerDashboard": "Server Dashboard", "ButtonServerDashboard": "Server Dashboard",
"HeaderAdmin": "Admin", "HeaderAdmin": "Admin",
"ButtonSignOut": "Sign out" "ButtonSignOut": "Sign out",
"HeaderCameraUpload": "Camera Upload",
"SelectCameraUploadServers": "Upload camera photos to the following servers:"
} }

View file

@ -48,7 +48,7 @@
"ButtonConvertMedia": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443", "ButtonConvertMedia": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443",
"ButtonOrganize": "\u04b0\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0443", "ButtonOrganize": "\u04b0\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0443",
"LinkedToEmbyConnect": "Emby Connect \u04af\u0448\u0456\u043d \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u044b\u0440\u044b\u043b\u0493\u0430\u043d", "LinkedToEmbyConnect": "Emby Connect \u04af\u0448\u0456\u043d \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u044b\u0440\u044b\u043b\u0493\u0430\u043d",
"HeaderSupporterBenefits": "\u0416\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u0430\u0440\u0442\u044b\u049b\u0448\u044b\u043b\u044b\u049b\u0442\u0430\u0440\u044b", "HeaderSupporterBenefits": "Emby Premiere Benefits",
"HeaderAddUser": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043d\u044b \u04af\u0441\u0442\u0435\u0443", "HeaderAddUser": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043d\u044b \u04af\u0441\u0442\u0435\u0443",
"LabelAddConnectSupporterHelp": "\u0422\u0456\u0437\u0456\u043c\u0434\u0435 \u0436\u043e\u049b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043d\u044b \u04af\u0441\u0442\u0435\u0443 \u04af\u0448\u0456\u043d, \u0430\u043b\u0434\u044b\u043c\u0435\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u044b\u049b \u043f\u0440\u043e\u0444\u0430\u0439\u043b\u044b \u0431\u0435\u0442\u0456\u043d\u0435\u043d Emby Connect \u0430\u0440\u0430\u0441\u044b\u043d\u0434\u0430 \u043e\u043d\u044b\u04a3 \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456\u043d \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u0440\u0443\u044b\u04a3\u044b\u0437 \u049b\u0430\u0436\u0435\u0442.", "LabelAddConnectSupporterHelp": "\u0422\u0456\u0437\u0456\u043c\u0434\u0435 \u0436\u043e\u049b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043d\u044b \u04af\u0441\u0442\u0435\u0443 \u04af\u0448\u0456\u043d, \u0430\u043b\u0434\u044b\u043c\u0435\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u044b\u049b \u043f\u0440\u043e\u0444\u0430\u0439\u043b\u044b \u0431\u0435\u0442\u0456\u043d\u0435\u043d Emby Connect \u0430\u0440\u0430\u0441\u044b\u043d\u0434\u0430 \u043e\u043d\u044b\u04a3 \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456\u043d \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u0440\u0443\u044b\u04a3\u044b\u0437 \u049b\u0430\u0436\u0435\u0442.",
"LabelPinCode": "PIN-\u043a\u043e\u0434:", "LabelPinCode": "PIN-\u043a\u043e\u0434:",
@ -82,7 +82,6 @@
"LabelCustomCertificatePath": "\u041a\u0443\u04d9\u043b\u0456\u043a \u0436\u043e\u043b\u044b:", "LabelCustomCertificatePath": "\u041a\u0443\u04d9\u043b\u0456\u043a \u0436\u043e\u043b\u044b:",
"LabelCustomCertificatePathHelp": "\u04e8\u0437 SSL-\u043a\u0443\u04d9\u043b\u0456\u0433\u0456\u04a3\u0456\u0437\u0434\u0456\u04a3 .pfx \u0444\u0430\u0439\u043b\u044b\u043d \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437. \u0415\u0433\u0435\u0440 \u0442\u04af\u0441\u0456\u0440\u0456\u043b\u0441\u0435, \u0441\u0435\u0440\u0432\u0435\u0440 \u043c\u0435\u043d\u0448\u0456\u043a \u049b\u043e\u043b\u0442\u0430\u04a3\u0431\u0430\u0441\u044b \u0431\u0430\u0440 \u043a\u0443\u04d9\u043b\u0456\u043a\u0442\u0456 \u0436\u0430\u0441\u0430\u0439\u0434\u044b.", "LabelCustomCertificatePathHelp": "\u04e8\u0437 SSL-\u043a\u0443\u04d9\u043b\u0456\u0433\u0456\u04a3\u0456\u0437\u0434\u0456\u04a3 .pfx \u0444\u0430\u0439\u043b\u044b\u043d \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437. \u0415\u0433\u0435\u0440 \u0442\u04af\u0441\u0456\u0440\u0456\u043b\u0441\u0435, \u0441\u0435\u0440\u0432\u0435\u0440 \u043c\u0435\u043d\u0448\u0456\u043a \u049b\u043e\u043b\u0442\u0430\u04a3\u0431\u0430\u0441\u044b \u0431\u0430\u0440 \u043a\u0443\u04d9\u043b\u0456\u043a\u0442\u0456 \u0436\u0430\u0441\u0430\u0439\u0434\u044b.",
"TitleNotifications": "\u0425\u0430\u0431\u0430\u0440\u043b\u0430\u043d\u0434\u044b\u0440\u0443\u043b\u0430\u0440", "TitleNotifications": "\u0425\u0430\u0431\u0430\u0440\u043b\u0430\u043d\u0434\u044b\u0440\u0443\u043b\u0430\u0440",
"ButtonDonateWithPayPal": "PayPal \u0430\u0440\u049b\u044b\u043b\u044b \u049b\u0430\u0439\u044b\u0440\u043c\u0430\u043b\u0430\u0443",
"OptionDetectArchiveFilesAsMedia": "\u041c\u04b1\u0440\u0430\u0493\u0430\u0442\u0442\u0430\u043b\u0493\u0430\u043d \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u0434\u044b \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0442\u0430\u0431\u0443", "OptionDetectArchiveFilesAsMedia": "\u041c\u04b1\u0440\u0430\u0493\u0430\u0442\u0442\u0430\u043b\u0493\u0430\u043d \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u0434\u044b \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0442\u0430\u0431\u0443",
"OptionDetectArchiveFilesAsMediaHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, .rar \u0436\u04d9\u043d\u0435 .zip \u043a\u0435\u04a3\u0435\u0439\u0442\u0456\u043c\u0434\u0435\u0440\u0456 \u0431\u0430\u0440 \u0444\u0430\u0439\u043b\u0434\u0430\u0440 \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b.", "OptionDetectArchiveFilesAsMediaHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, .rar \u0436\u04d9\u043d\u0435 .zip \u043a\u0435\u04a3\u0435\u0439\u0442\u0456\u043c\u0434\u0435\u0440\u0456 \u0431\u0430\u0440 \u0444\u0430\u0439\u043b\u0434\u0430\u0440 \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b.",
"LabelEnterConnectUserName": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b \u043d\u0435\u043c\u0435\u0441\u0435 \u042d-\u043f\u043e\u0448\u0442\u0430:", "LabelEnterConnectUserName": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b \u043d\u0435\u043c\u0435\u0441\u0435 \u042d-\u043f\u043e\u0448\u0442\u0430:",
@ -289,8 +288,9 @@
"TitleSupport": "\u0416\u0430\u049b\u0442\u0430\u0443", "TitleSupport": "\u0416\u0430\u049b\u0442\u0430\u0443",
"TabLog": "\u0416\u04b1\u0440\u043d\u0430\u043b", "TabLog": "\u0416\u04b1\u0440\u043d\u0430\u043b",
"TabAbout": "\u0422\u0443\u0440\u0430\u043b\u044b", "TabAbout": "\u0422\u0443\u0440\u0430\u043b\u044b",
"TabSupporterKey": "\u0416\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043a\u0456\u043b\u0442\u0456", "TabSupporterKey": "Emby Premiere Key",
"TabBecomeSupporter": "\u0416\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u0431\u043e\u043b\u0443", "TabBecomeSupporter": "Get Emby Premiere",
"TabEmbyPremiere": "Emby Premiere",
"ProjectHasCommunity": "Emby \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440\u044b \u043c\u0435\u043d \u049b\u043e\u043b\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440\u0434\u044b\u04a3 \u0434\u0430\u043c\u0443\u0434\u0430\u0493\u044b \u049b\u0430\u0443\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0493\u044b \u0431\u0430\u0440.", "ProjectHasCommunity": "Emby \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440\u044b \u043c\u0435\u043d \u049b\u043e\u043b\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440\u0434\u044b\u04a3 \u0434\u0430\u043c\u0443\u0434\u0430\u0493\u044b \u049b\u0430\u0443\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0493\u044b \u0431\u0430\u0440.",
"CheckoutKnowledgeBase": "Emby \u0435\u04a3 \u04af\u043b\u043a\u0435\u043d \u049b\u0430\u0439\u0442\u0430\u0440\u044b\u043c\u0434\u044b\u043b\u044b\u0493\u044b\u043d \u0430\u043b\u0443 \u0436\u04e9\u043d\u0456\u043d\u0434\u0435 \u043a\u04e9\u043c\u0435\u043a\u0442\u0435\u0441\u0443 \u04af\u0448\u0456\u043d \u0411\u0456\u043b\u0456\u043c \u049b\u043e\u0440\u044b\u043d \u049b\u0430\u0440\u0430\u043f \u0448\u044b\u0493\u044b\u04a3\u044b\u0437.", "CheckoutKnowledgeBase": "Emby \u0435\u04a3 \u04af\u043b\u043a\u0435\u043d \u049b\u0430\u0439\u0442\u0430\u0440\u044b\u043c\u0434\u044b\u043b\u044b\u0493\u044b\u043d \u0430\u043b\u0443 \u0436\u04e9\u043d\u0456\u043d\u0434\u0435 \u043a\u04e9\u043c\u0435\u043a\u0442\u0435\u0441\u0443 \u04af\u0448\u0456\u043d \u0411\u0456\u043b\u0456\u043c \u049b\u043e\u0440\u044b\u043d \u049b\u0430\u0440\u0430\u043f \u0448\u044b\u0493\u044b\u04a3\u044b\u0437.",
"SearchKnowledgeBase": "\u0411\u0456\u043b\u0456\u043c \u049b\u043e\u0440\u044b\u043d\u0430\u043d \u0456\u0437\u0434\u0435\u0443", "SearchKnowledgeBase": "\u0411\u0456\u043b\u0456\u043c \u049b\u043e\u0440\u044b\u043d\u0430\u043d \u0456\u0437\u0434\u0435\u0443",
@ -591,9 +591,9 @@
"LabelEndingEpisodeNumberHelp": "\u0411\u04b1\u043b \u0442\u0435\u043a \u049b\u0430\u043d\u0430 \u0431\u0456\u0440\u043d\u0435\u0448\u0435 \u0431\u04e9\u043b\u0456\u043c\u0456 \u0431\u0430\u0440 \u0444\u0430\u0439\u043b\u0434\u0430\u0440 \u04af\u0448\u0456\u043d", "LabelEndingEpisodeNumberHelp": "\u0411\u04b1\u043b \u0442\u0435\u043a \u049b\u0430\u043d\u0430 \u0431\u0456\u0440\u043d\u0435\u0448\u0435 \u0431\u04e9\u043b\u0456\u043c\u0456 \u0431\u0430\u0440 \u0444\u0430\u0439\u043b\u0434\u0430\u0440 \u04af\u0448\u0456\u043d",
"HeaderSupportTheTeam": "Emby \u0442\u043e\u0431\u044b\u043d \u049b\u043e\u043b\u0434\u0430\u04a3\u044b\u0437", "HeaderSupportTheTeam": "Emby \u0442\u043e\u0431\u044b\u043d \u049b\u043e\u043b\u0434\u0430\u04a3\u044b\u0437",
"LabelSupportAmount": "\u0421\u043e\u043c\u0430\u0441\u044b (USD)", "LabelSupportAmount": "\u0421\u043e\u043c\u0430\u0441\u044b (USD)",
"HeaderSupportTheTeamHelp": "\u04ae\u043b\u0435\u0441 \u049b\u043e\u0441\u044b\u043f \u0431\u04b1\u043b \u0436\u043e\u0431\u0430\u043d\u044b\u04a3 \u04d9\u0437\u0456\u0440\u043b\u0435\u0443\u0456 \u0436\u0430\u043b\u0493\u0430\u0441\u0430\u0442\u044b\u043d\u0430 \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0443 \u04af\u0448\u0456\u043d \u043a\u04e9\u043c\u0435\u043a \u0431\u0435\u0440\u0456\u04a3\u0456\u0437. \u0411\u0430\u0440\u043b\u044b\u049b \u049b\u0430\u0439\u044b\u0440\u043c\u0430\u043b\u0434\u044b\u049b\u0442\u044b\u04a3 \u04d9\u043b\u0434\u0435\u049b\u0430\u043d\u0448\u0430 \u0431\u04e9\u043b\u0456\u0433\u0456\u043d \u0431\u0456\u0437 \u0442\u04d9\u0443\u0435\u043b\u0434\u0456 \u0431\u043e\u043b\u0493\u0430\u043d \u0431\u0430\u0441\u049b\u0430 \u0442\u0435\u0433\u0456\u043d \u049b\u04b1\u0440\u0430\u043b\u0434\u0430\u0440\u044b \u04af\u0448\u0456\u043d \u0456\u0441\u043a\u0435\u0440\u043b\u0435\u0441\u0435\u043c\u0456\u0437.", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
"ButtonEnterSupporterKey": "\u0416\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043a\u0456\u043b\u0442\u0456\u043d \u0435\u043d\u0433\u0456\u0437\u0443", "ButtonEnterSupporterKey": "Enter Emby Premiere key",
"DonationNextStep": "\u0410\u044f\u049b\u0442\u0430\u043b\u044b\u0441\u044b\u043c\u0435\u043d, \u043a\u0435\u0440\u0456 \u049b\u0430\u0439\u0442\u044b\u04a3\u044b\u0437 \u0436\u0430\u043d\u0435 \u042d-\u043f\u043e\u0448\u0442\u0430 \u0430\u0440\u049b\u044b\u043b\u044b \u0430\u043b\u044b\u043d\u0493\u0430\u043d \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043a\u0456\u043b\u0442\u0456\u043d \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
"AutoOrganizeHelp": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0443 \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u044b\u043d\u0434\u0430\u0493\u044b \u0436\u0430\u04a3\u0430 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u0434\u044b \u0431\u0430\u049b\u044b\u043b\u0430\u0439\u0434\u044b \u0436\u04d9\u043d\u0435 \u0431\u04b1\u043b\u0430\u0440\u0434\u044b \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u044b\u043d\u0430 \u0436\u044b\u043b\u0436\u044b\u0442\u0430\u0434\u044b.", "AutoOrganizeHelp": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0443 \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u044b\u043d\u0434\u0430\u0493\u044b \u0436\u0430\u04a3\u0430 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u0434\u044b \u0431\u0430\u049b\u044b\u043b\u0430\u0439\u0434\u044b \u0436\u04d9\u043d\u0435 \u0431\u04b1\u043b\u0430\u0440\u0434\u044b \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u044b\u043d\u0430 \u0436\u044b\u043b\u0436\u044b\u0442\u0430\u0434\u044b.",
"AutoOrganizeTvHelp": "\u0422\u0414 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b\u043d \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440 \u0442\u0435\u043a \u049b\u0430\u043d\u0430 \u0431\u0430\u0440 \u0442\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043b\u0430\u0440\u0493\u0430 \u04af\u0441\u0442\u0435\u043b\u0456\u043d\u0435\u0434\u0456.", "AutoOrganizeTvHelp": "\u0422\u0414 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b\u043d \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440 \u0442\u0435\u043a \u049b\u0430\u043d\u0430 \u0431\u0430\u0440 \u0442\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043b\u0430\u0440\u0493\u0430 \u04af\u0441\u0442\u0435\u043b\u0456\u043d\u0435\u0434\u0456.",
"OptionEnableEpisodeOrganization": "\u0416\u0430\u04a3\u0430 \u0431\u04e9\u043b\u0456\u043c \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0443\u044b\u043d \u049b\u043e\u0441\u0443", "OptionEnableEpisodeOrganization": "\u0416\u0430\u04a3\u0430 \u0431\u04e9\u043b\u0456\u043c \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0443\u044b\u043d \u049b\u043e\u0441\u0443",
@ -639,20 +639,20 @@
"LabelDownMixAudioScale": "\u041a\u0435\u043c\u0456\u0442\u0456\u043b\u0456\u043f \u043c\u0438\u043a\u0448\u0435\u0440\u043b\u0435\u043d\u0433\u0435\u043d\u0434\u0435 \u0434\u044b\u0431\u044b\u0441 \u04e9\u0442\u0435\u043c\u0456:", "LabelDownMixAudioScale": "\u041a\u0435\u043c\u0456\u0442\u0456\u043b\u0456\u043f \u043c\u0438\u043a\u0448\u0435\u0440\u043b\u0435\u043d\u0433\u0435\u043d\u0434\u0435 \u0434\u044b\u0431\u044b\u0441 \u04e9\u0442\u0435\u043c\u0456:",
"LabelDownMixAudioScaleHelp": "\u0414\u044b\u0431\u044b\u0441\u0442\u044b \u043a\u0435\u043c\u0456\u0442\u0456\u043b\u0456\u043f \u043c\u0438\u043a\u0448\u0435\u0440\u043b\u0435\u043d\u0433\u0435\u043d\u0434\u0435 \u04e9\u0442\u0435\u043c\u0434\u0435\u0443. \u0411\u0430\u0441\u0442\u0430\u043f\u049b\u044b \u0434\u0435\u04a3\u0433\u0435\u0439 \u043c\u04d9\u043d\u0456\u043d \u04e9\u0437\u0433\u0435\u0440\u0442\u043f\u0435\u0443 \u04af\u0448\u0456\u043d 1 \u0441\u0430\u043d\u044b\u043d \u043e\u0440\u043d\u0430\u0442\u044b\u04a3\u044b\u0437..", "LabelDownMixAudioScaleHelp": "\u0414\u044b\u0431\u044b\u0441\u0442\u044b \u043a\u0435\u043c\u0456\u0442\u0456\u043b\u0456\u043f \u043c\u0438\u043a\u0448\u0435\u0440\u043b\u0435\u043d\u0433\u0435\u043d\u0434\u0435 \u04e9\u0442\u0435\u043c\u0434\u0435\u0443. \u0411\u0430\u0441\u0442\u0430\u043f\u049b\u044b \u0434\u0435\u04a3\u0433\u0435\u0439 \u043c\u04d9\u043d\u0456\u043d \u04e9\u0437\u0433\u0435\u0440\u0442\u043f\u0435\u0443 \u04af\u0448\u0456\u043d 1 \u0441\u0430\u043d\u044b\u043d \u043e\u0440\u043d\u0430\u0442\u044b\u04a3\u044b\u0437..",
"ButtonLinkKeys": "\u041a\u0456\u043b\u0442\u0442\u0456 \u0430\u0443\u044b\u0441\u0442\u044b\u0440\u0443", "ButtonLinkKeys": "\u041a\u0456\u043b\u0442\u0442\u0456 \u0430\u0443\u044b\u0441\u0442\u044b\u0440\u0443",
"LabelOldSupporterKey": "\u0416\u0430\u049b\u0442\u0430\u0443\u0448\u044b\u043d\u044b\u04a3 \u0435\u0441\u043a\u0456 \u043a\u0456\u043b\u0442\u0456", "LabelOldSupporterKey": "Old Emby Premiere key",
"LabelNewSupporterKey": "\u0416\u0430\u049b\u0442\u0430\u0443\u0448\u044b\u043d\u044b\u04a3 \u0436\u0430\u04a3\u0430 \u043a\u0456\u043b\u0442\u0456", "LabelNewSupporterKey": "New Emby Premiere key",
"HeaderMultipleKeyLinking": "\u0416\u0430\u04a3\u0430 \u043a\u0456\u043b\u0442\u043a\u0435 \u0430\u0443\u044b\u0441\u0442\u044b\u0440\u0443", "HeaderMultipleKeyLinking": "\u0416\u0430\u04a3\u0430 \u043a\u0456\u043b\u0442\u043a\u0435 \u0430\u0443\u044b\u0441\u0442\u044b\u0440\u0443",
"MultipleKeyLinkingHelp": "\u0415\u0433\u0435\u0440 \u0436\u0430\u04a3\u0430 \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043a\u0456\u043b\u0442\u0456 \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u043d\u0441\u0430, \u0435\u0441\u043a\u0456 \u043a\u0456\u043b\u0442 \u0442\u0456\u0440\u043a\u0435\u043c\u0435\u043b\u0435\u0440\u0456\u043d \u0436\u0430\u04a3\u0430\u0441\u044b\u043d\u0430 \u0430\u0443\u044b\u0441\u0442\u044b\u0440\u0443 \u04af\u0448\u0456\u043d \u0431\u04b1\u043b \u043f\u0456\u0448\u0456\u043d\u0434\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u04a3\u044b\u0437.", "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
"LabelCurrentEmailAddress": "\u042d-\u043f\u043e\u0448\u0442\u0430\u043d\u044b\u04a3 \u0430\u0493\u044b\u043c\u0434\u044b\u049b \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b", "LabelCurrentEmailAddress": "\u042d-\u043f\u043e\u0448\u0442\u0430\u043d\u044b\u04a3 \u0430\u0493\u044b\u043c\u0434\u044b\u049b \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b",
"LabelCurrentEmailAddressHelp": "\u0416\u0430\u04a3\u0430 \u043a\u0456\u043b\u0442 \u0436\u0456\u0431\u0435\u0440\u0456\u043b\u0433\u0435\u043d \u0430\u0493\u044b\u043c\u0434\u044b\u049b \u044d-\u043f\u043e\u0448\u0442\u0430 \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b.", "LabelCurrentEmailAddressHelp": "\u0416\u0430\u04a3\u0430 \u043a\u0456\u043b\u0442 \u0436\u0456\u0431\u0435\u0440\u0456\u043b\u0433\u0435\u043d \u0430\u0493\u044b\u043c\u0434\u044b\u049b \u044d-\u043f\u043e\u0448\u0442\u0430 \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b.",
"HeaderForgotKey": "\u041a\u0456\u043b\u0442\u0442\u0456 \u04b1\u043c\u044b\u0442\u044b\u04a3\u044b\u0437 \u0431\u0430?", "HeaderForgotKey": "\u041a\u0456\u043b\u0442\u0442\u0456 \u04b1\u043c\u044b\u0442\u044b\u04a3\u044b\u0437 \u0431\u0430?",
"LabelEmailAddress": "\u042d-\u043f\u043e\u0448\u0442\u0430\u043d\u044b\u04a3 \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b", "LabelEmailAddress": "\u042d-\u043f\u043e\u0448\u0442\u0430\u043d\u044b\u04a3 \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b",
"LabelSupporterEmailAddress": "\u041a\u0456\u043b\u0442\u0442\u0456 \u0441\u0430\u0442\u044b\u043f \u0430\u043b\u0443 \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0493\u0430\u043d \u044d-\u043f\u043e\u0448\u0442\u0430 \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b.", "LabelSupporterEmailAddress": "\u041a\u0456\u043b\u0442\u0442\u0456 \u0441\u0430\u0442\u044b\u043f \u0430\u043b\u0443 \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0493\u0430\u043d \u044d-\u043f\u043e\u0448\u0442\u0430 \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b.",
"ButtonRetrieveKey": "\u041a\u0456\u043b\u0442\u0442\u0456 \u049b\u0430\u0439\u0442\u0430 \u0430\u043b\u0443", "ButtonRetrieveKey": "\u041a\u0456\u043b\u0442\u0442\u0456 \u049b\u0430\u0439\u0442\u0430 \u0430\u043b\u0443",
"LabelSupporterKey": "\u0416\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043a\u0456\u043b\u0442\u0456 (\u042d-\u043f\u043e\u0448\u0442\u0430\u0434\u0430\u043d \u043a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0456\u04a3\u0456\u0437)", "LabelSupporterKey": "Emby Premiere key (paste from email):",
"LabelSupporterKeyHelp": "\u049a\u0430\u0443\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u049b Emby \u04af\u0448\u0456\u043d \u0436\u0430\u0441\u0430\u049b\u0442\u0430\u0493\u0430\u043d \u049b\u043e\u0441\u044b\u043c\u0448\u0430 \u0430\u0440\u0442\u044b\u049b\u0448\u044b\u043b\u044b\u049b\u0442\u0430\u0440\u0434\u044b \u0442\u0430\u043c\u0430\u0448\u0430\u043b\u0430\u0443\u044b\u043d \u0431\u0430\u0441\u0442\u0430\u0443 \u04af\u0448\u0456\u043d \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043a\u0456\u043b\u0442\u0456\u043d \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437.", "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
"MessageInvalidKey": "\u0416\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043a\u0456\u043b\u0442\u0456 \u0436\u043e\u049b \u043d\u0435\u043c\u0435\u0441\u0435 \u0434\u04b1\u0440\u044b\u0441 \u0435\u043c\u0435\u0441", "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
"ErrorMessageInvalidKey": "\u049a\u0430\u0439 \u0441\u044b\u0439\u0430\u049b\u044b\u043b\u044b\u049b \u043c\u0430\u0437\u043c\u04b1\u043d \u0431\u043e\u043b\u0441\u0430 \u0436\u0430\u0437\u044b\u043b\u0443 \u04af\u0448\u0456\u043d, \u0441\u0456\u0437 \u0441\u043e\u043d\u0434\u0430\u0439-\u0430\u049b Emby \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b\u0441\u044b \u0431\u043e\u043b\u0443\u044b\u04a3\u044b\u0437 \u049b\u0430\u0436\u0435\u0442. \u04d8\u0437\u0456\u0440\u043b\u0435\u0443\u0456 \u0436\u0430\u043b\u0493\u0430\u0441\u0443\u0434\u0430\u0493\u044b \u043d\u0435\u0433\u0456\u0437\u0433\u0456 \u04e9\u043d\u0456\u043c \u04af\u0448\u0456\u043d \u04af\u043b\u0435\u0441 \u049b\u043e\u0441\u044b\u04a3\u044b\u0437 \u0436\u04d9\u043d\u0435 \u0436\u0430\u049b\u0442\u0430\u04a3\u044b\u0437.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
"HeaderDisplaySettings": "\u0411\u0435\u0439\u043d\u0435\u043b\u0435\u0443 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456", "HeaderDisplaySettings": "\u0411\u0435\u0439\u043d\u0435\u043b\u0435\u0443 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456",
"TabPlayTo": "\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u0434\u0430 \u043e\u0439\u043d\u0430\u0442\u0443", "TabPlayTo": "\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u0434\u0430 \u043e\u0439\u043d\u0430\u0442\u0443",
"LabelEnableDlnaServer": "DLNA \u0441\u0435\u0440\u0432\u0435\u0440\u0456\u043d \u049b\u043e\u0441\u0443", "LabelEnableDlnaServer": "DLNA \u0441\u0435\u0440\u0432\u0435\u0440\u0456\u043d \u049b\u043e\u0441\u0443",
@ -912,7 +912,7 @@
"OptionCommunityMostWatchedSort": "\u0415\u04a3 \u043a\u04e9\u043f \u049b\u0430\u0440\u0430\u043b\u0493\u0430\u043d\u0434\u0430\u0440", "OptionCommunityMostWatchedSort": "\u0415\u04a3 \u043a\u04e9\u043f \u049b\u0430\u0440\u0430\u043b\u0493\u0430\u043d\u0434\u0430\u0440",
"TabNextUp": "\u041a\u0435\u0437\u0435\u043a\u0442\u0456", "TabNextUp": "\u041a\u0435\u0437\u0435\u043a\u0442\u0456",
"PlaceholderUsername": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b", "PlaceholderUsername": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b",
"HeaderBecomeProjectSupporter": "Emby \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b\u0441\u044b \u0431\u043e\u043b\u044b\u04a3\u044b\u0437", "HeaderBecomeProjectSupporter": "Get Emby Premiere",
"MessageNoMovieSuggestionsAvailable": "\u0415\u0448\u049b\u0430\u043d\u0434\u0430\u0439 \u0444\u0438\u043b\u044c\u043c \u04b1\u0441\u044b\u043d\u044b\u0441\u0442\u0430\u0440\u044b \u0430\u0493\u044b\u043c\u0434\u0430 \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0435\u043c\u0435\u0441. \u0424\u0438\u043b\u044c\u043c\u0434\u0435\u0440\u0434\u0456 \u049b\u0430\u0440\u0430\u0443\u0434\u044b \u0436\u04d9\u043d\u0435 \u0431\u0430\u0493\u0430\u043b\u0430\u0443\u0434\u044b \u0431\u0430\u0441\u0442\u0430\u04a3\u044b\u0437, \u0441\u043e\u043d\u0434\u0430 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d \u04b1\u0441\u044b\u043d\u044b\u0442\u0430\u0440\u044b\u04a3\u044b\u0437\u0434\u044b \u043a\u04e9\u0440\u0443 \u04af\u0448\u0456\u043d \u049b\u0430\u0439\u0442\u0430 \u043a\u0435\u043b\u0456\u04a3\u0456\u0437.", "MessageNoMovieSuggestionsAvailable": "\u0415\u0448\u049b\u0430\u043d\u0434\u0430\u0439 \u0444\u0438\u043b\u044c\u043c \u04b1\u0441\u044b\u043d\u044b\u0441\u0442\u0430\u0440\u044b \u0430\u0493\u044b\u043c\u0434\u0430 \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0435\u043c\u0435\u0441. \u0424\u0438\u043b\u044c\u043c\u0434\u0435\u0440\u0434\u0456 \u049b\u0430\u0440\u0430\u0443\u0434\u044b \u0436\u04d9\u043d\u0435 \u0431\u0430\u0493\u0430\u043b\u0430\u0443\u0434\u044b \u0431\u0430\u0441\u0442\u0430\u04a3\u044b\u0437, \u0441\u043e\u043d\u0434\u0430 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d \u04b1\u0441\u044b\u043d\u044b\u0442\u0430\u0440\u044b\u04a3\u044b\u0437\u0434\u044b \u043a\u04e9\u0440\u0443 \u04af\u0448\u0456\u043d \u049b\u0430\u0439\u0442\u0430 \u043a\u0435\u043b\u0456\u04a3\u0456\u0437.",
"MessageNoCollectionsAvailable": "\u0416\u0438\u044b\u043d\u0442\u044b\u049b\u0442\u0430\u0440 \u0441\u0456\u0437\u0433\u0435 \u0424\u0438\u043b\u044c\u043c\u0434\u0435\u0440\u0434\u0456\u04a3, \u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043b\u0430\u0440\u0434\u044b\u04a3, \u0410\u043b\u044c\u0431\u043e\u043c\u0434\u0430\u0440\u0434\u044b\u04a3, \u041a\u0456\u0442\u0430\u043f\u0442\u0430\u0440\u0434\u044b\u04a3, \u0436\u04d9\u043d\u0435 \u041e\u0439\u044b\u043d\u0434\u0430\u0440\u0434\u044b\u04a3 \u0434\u0435\u0440\u0431\u0435\u0441\u0442\u0435\u043d\u0434\u0456\u0440\u0456\u043b\u0433\u0435\u043d \u0442\u043e\u043f\u0442\u0430\u0443\u043b\u0430\u0440\u044b\u043c\u0435\u043d \u0442\u0430\u043c\u0430\u0448\u0430\u043b\u0430\u043d\u0443 \u04af\u0448\u0456\u043d \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0435\u0434\u0456. \u0416\u0438\u044b\u043d\u0442\u044b\u049b\u0442\u0430\u0440 \u0436\u0430\u0441\u0430\u0443\u044b\u043d \u0431\u0430\u0441\u0442\u0430\u0443 \u04af\u0448\u0456\u043d \"+\" \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u0456\u043d \u0431\u0430\u0441\u044b\u04a3\u044b\u0437.", "MessageNoCollectionsAvailable": "\u0416\u0438\u044b\u043d\u0442\u044b\u049b\u0442\u0430\u0440 \u0441\u0456\u0437\u0433\u0435 \u0424\u0438\u043b\u044c\u043c\u0434\u0435\u0440\u0434\u0456\u04a3, \u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043b\u0430\u0440\u0434\u044b\u04a3, \u0410\u043b\u044c\u0431\u043e\u043c\u0434\u0430\u0440\u0434\u044b\u04a3, \u041a\u0456\u0442\u0430\u043f\u0442\u0430\u0440\u0434\u044b\u04a3, \u0436\u04d9\u043d\u0435 \u041e\u0439\u044b\u043d\u0434\u0430\u0440\u0434\u044b\u04a3 \u0434\u0435\u0440\u0431\u0435\u0441\u0442\u0435\u043d\u0434\u0456\u0440\u0456\u043b\u0433\u0435\u043d \u0442\u043e\u043f\u0442\u0430\u0443\u043b\u0430\u0440\u044b\u043c\u0435\u043d \u0442\u0430\u043c\u0430\u0448\u0430\u043b\u0430\u043d\u0443 \u04af\u0448\u0456\u043d \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0435\u0434\u0456. \u0416\u0438\u044b\u043d\u0442\u044b\u049b\u0442\u0430\u0440 \u0436\u0430\u0441\u0430\u0443\u044b\u043d \u0431\u0430\u0441\u0442\u0430\u0443 \u04af\u0448\u0456\u043d \"+\" \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u0456\u043d \u0431\u0430\u0441\u044b\u04a3\u044b\u0437.",
"MessageNoPlaylistsAvailable": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0434\u0435\u0440\u0456 \u0431\u0456\u0440 \u043a\u0435\u0437\u0434\u0435 \u043e\u0439\u043d\u0430\u0442\u0443 \u04af\u0448\u0456\u043d \u043c\u0430\u0437\u043c\u04b1\u043d \u0442\u0456\u0437\u0456\u043c\u0456\u043d \u0436\u0430\u0441\u0430\u0443\u0493\u0430 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0435\u0434\u0456. \u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0434\u0435\u0440\u0433\u0435 \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440\u0434\u044b \u04af\u0441\u0442\u0435\u0443 \u04af\u0448\u0456\u043d, \u0442\u0456\u043d\u0442\u0443\u0456\u0440\u0434\u0456\u04a3 \u043e\u04a3 \u0436\u0430\u049b \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u0456\u043d \u0431\u0430\u0441\u044b\u04a3\u044b\u0437 \u043d\u0435\u043c\u0435\u0441\u0435 \u0442\u04af\u0440\u0442\u0456\u043f \u0436\u04d9\u043d\u0435 \u04b1\u0441\u0442\u0430\u043f \u0442\u04b1\u0440\u044b\u04a3\u044b\u0437, \u0441\u043e\u043d\u0434\u0430 \u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0456\u043d\u0435 \u04af\u0441\u0442\u0435\u0443 \u0434\u0435\u0433\u0435\u043d\u0434\u0456 \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437.", "MessageNoPlaylistsAvailable": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0434\u0435\u0440\u0456 \u0431\u0456\u0440 \u043a\u0435\u0437\u0434\u0435 \u043e\u0439\u043d\u0430\u0442\u0443 \u04af\u0448\u0456\u043d \u043c\u0430\u0437\u043c\u04b1\u043d \u0442\u0456\u0437\u0456\u043c\u0456\u043d \u0436\u0430\u0441\u0430\u0443\u0493\u0430 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0435\u0434\u0456. \u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0434\u0435\u0440\u0433\u0435 \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440\u0434\u044b \u04af\u0441\u0442\u0435\u0443 \u04af\u0448\u0456\u043d, \u0442\u0456\u043d\u0442\u0443\u0456\u0440\u0434\u0456\u04a3 \u043e\u04a3 \u0436\u0430\u049b \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u0456\u043d \u0431\u0430\u0441\u044b\u04a3\u044b\u0437 \u043d\u0435\u043c\u0435\u0441\u0435 \u0442\u04af\u0440\u0442\u0456\u043f \u0436\u04d9\u043d\u0435 \u04b1\u0441\u0442\u0430\u043f \u0442\u04b1\u0440\u044b\u04a3\u044b\u0437, \u0441\u043e\u043d\u0434\u0430 \u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0456\u043d\u0435 \u04af\u0441\u0442\u0435\u0443 \u0434\u0435\u0433\u0435\u043d\u0434\u0456 \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437.",
@ -1002,8 +1002,6 @@
"HeaderBrandingHelp": "\u0422\u043e\u0431\u044b\u04a3\u044b\u0437\u0434\u044b\u04a3 \u043d\u0435 \u04b1\u0439\u044b\u043c\u044b\u04a3\u044b\u0437\u0434\u044b\u04a3 \u043c\u04b1\u049b\u0442\u0430\u0436\u0434\u044b\u049b\u0442\u0430\u0440\u044b\u043d\u0430 \u04af\u0439\u043b\u0435\u0441\u0456\u043c\u0434\u0456 Emby \u0431\u0435\u0437\u0435\u043d\u0434\u0456\u0440\u0443\u0456\u043d \u0442\u0435\u04a3\u0448\u0435\u0443.", "HeaderBrandingHelp": "\u0422\u043e\u0431\u044b\u04a3\u044b\u0437\u0434\u044b\u04a3 \u043d\u0435 \u04b1\u0439\u044b\u043c\u044b\u04a3\u044b\u0437\u0434\u044b\u04a3 \u043c\u04b1\u049b\u0442\u0430\u0436\u0434\u044b\u049b\u0442\u0430\u0440\u044b\u043d\u0430 \u04af\u0439\u043b\u0435\u0441\u0456\u043c\u0434\u0456 Emby \u0431\u0435\u0437\u0435\u043d\u0434\u0456\u0440\u0443\u0456\u043d \u0442\u0435\u04a3\u0448\u0435\u0443.",
"LabelLoginDisclaimer": "\u041a\u0456\u0440\u0433\u0435\u043d\u0434\u0435\u0433\u0456 \u0435\u0441\u043a\u0435\u0440\u0442\u0443:", "LabelLoginDisclaimer": "\u041a\u0456\u0440\u0433\u0435\u043d\u0434\u0435\u0433\u0456 \u0435\u0441\u043a\u0435\u0440\u0442\u0443:",
"LabelLoginDisclaimerHelp": "\u0411\u04b1\u043b \u043a\u0456\u0440\u0443 \u0431\u0435\u0442\u0456\u043d\u0456\u04a3 \u0442\u04e9\u043c\u0435\u043d\u0456\u043d\u0434\u0435 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u043d\u0435\u0434\u0456.", "LabelLoginDisclaimerHelp": "\u0411\u04b1\u043b \u043a\u0456\u0440\u0443 \u0431\u0435\u0442\u0456\u043d\u0456\u04a3 \u0442\u04e9\u043c\u0435\u043d\u0456\u043d\u0434\u0435 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u043d\u0435\u0434\u0456.",
"LabelAutomaticallyDonate": "\u041e\u0441\u044b \u0441\u043e\u043c\u0430\u043d\u044b \u04d9\u0440 \u0430\u0439 \u0441\u0430\u0439\u044b\u043d \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u0441\u044b\u0439\u043b\u0430\u0443",
"LabelAutomaticallyDonateHelp": "PayPal \u0435\u0441\u0435\u043f \u0448\u043e\u0442\u044b\u04a3\u044b\u0437 \u0430\u0440\u049b\u044b\u043b\u044b \u043a\u0435\u0437 \u043a\u0435\u043b\u0433\u0435\u043d \u0443\u0430\u049b\u044b\u0442\u0442\u0430 \u0434\u043e\u0493\u0430\u0440\u0443 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u0433\u0456\u04a3\u0456\u0437 \u0431\u0430\u0440.",
"OptionList": "\u0422\u0456\u0437\u0456\u043c", "OptionList": "\u0422\u0456\u0437\u0456\u043c",
"TabDashboard": "\u0411\u0430\u049b\u044b\u043b\u0430\u0443 \u0442\u0430\u049b\u0442\u0430\u0441\u044b", "TabDashboard": "\u0411\u0430\u049b\u044b\u043b\u0430\u0443 \u0442\u0430\u049b\u0442\u0430\u0441\u044b",
"TitleServer": "\u0421\u0435\u0440\u0432\u0435\u0440", "TitleServer": "\u0421\u0435\u0440\u0432\u0435\u0440",
@ -1220,18 +1218,12 @@
"HeaderMetadataSettings": "\u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456", "HeaderMetadataSettings": "\u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456",
"LabelLockItemToPreventChanges": "\u041e\u0441\u044b \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u044b \u043a\u0435\u043b\u0435\u0448\u0435\u043a \u04e9\u0437\u0433\u0435\u0440\u0442\u0443\u043b\u0435\u0440\u0434\u0435\u043d \u049b\u04b1\u0440\u0441\u0430\u0443\u043b\u0430\u0443", "LabelLockItemToPreventChanges": "\u041e\u0441\u044b \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u044b \u043a\u0435\u043b\u0435\u0448\u0435\u043a \u04e9\u0437\u0433\u0435\u0440\u0442\u0443\u043b\u0435\u0440\u0434\u0435\u043d \u049b\u04b1\u0440\u0441\u0430\u0443\u043b\u0430\u0443",
"MessageLeaveEmptyToInherit": "\u0422\u0435\u043a\u0442\u0456\u043a \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u043d, \u043d\u0435\u043c\u0435\u0441\u0435 \u0493\u0430\u043b\u0430\u043c\u0434\u044b\u049b \u04d9\u0434\u0435\u043f\u043a\u0456 \u043c\u04d9\u043d\u0456\u043d\u0435\u043d\u0456. \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440 \u043c\u04b1\u0440\u0430\u0441\u044b\u043d\u0430 \u0438\u0435\u043b\u0435\u043d\u0443 \u04af\u0448\u0456\u043d \u0431\u043e\u0441 \u049b\u0430\u043b\u0434\u044b\u0440\u044b\u04a3\u044b\u0437.", "MessageLeaveEmptyToInherit": "\u0422\u0435\u043a\u0442\u0456\u043a \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u043d, \u043d\u0435\u043c\u0435\u0441\u0435 \u0493\u0430\u043b\u0430\u043c\u0434\u044b\u049b \u04d9\u0434\u0435\u043f\u043a\u0456 \u043c\u04d9\u043d\u0456\u043d\u0435\u043d\u0456. \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440 \u043c\u04b1\u0440\u0430\u0441\u044b\u043d\u0430 \u0438\u0435\u043b\u0435\u043d\u0443 \u04af\u0448\u0456\u043d \u0431\u043e\u0441 \u049b\u0430\u043b\u0434\u044b\u0440\u044b\u04a3\u044b\u0437.",
"TabDonate": "\u049a\u0430\u0439\u044b\u0440\u043c\u0430\u043b\u0434\u044b\u049b",
"HeaderDonationType": "\u049a\u0430\u0439\u044b\u0440\u043c\u0430\u043b\u0434\u044b\u049b \u0442\u04af\u0440\u0456:", "HeaderDonationType": "\u049a\u0430\u0439\u044b\u0440\u043c\u0430\u043b\u0434\u044b\u049b \u0442\u04af\u0440\u0456:",
"OptionMakeOneTimeDonation": "\u0411\u04e9\u043b\u0435\u043a \u049b\u0430\u0439\u044b\u0440\u043c\u0430\u043b\u0434\u044b\u049b \u0436\u0430\u0441\u0430\u0443", "OptionMakeOneTimeDonation": "\u0411\u04e9\u043b\u0435\u043a \u049b\u0430\u0439\u044b\u0440\u043c\u0430\u043b\u0434\u044b\u049b \u0436\u0430\u0441\u0430\u0443",
"OptionOneTimeDescription": "\u0411\u04b1\u043b \u049b\u043e\u043b\u0434\u0430\u0443\u044b\u04a3\u044b\u0437\u0434\u044b \u043a\u04e9\u0440\u0441\u0435\u0442\u0443 \u04af\u0448\u0456\u043d \u0442\u043e\u043f\u049b\u0430 \u049b\u043e\u0441\u044b\u043c\u0448\u0430 \u049b\u0430\u0439\u044b\u0440\u043c\u0430\u043b\u0434\u044b\u049b. \u0415\u0448\u049b\u0430\u043d\u0434\u0430\u0439 \u049b\u043e\u0441\u044b\u043c\u0448\u0430 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u0440 \u0431\u043e\u043b\u043c\u0430\u0439\u0434\u044b \u0436\u04d9\u043d\u0435 \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043a\u0456\u043b\u0442\u0456 \u0436\u0430\u0441\u0430\u043b\u043c\u0430\u0439\u0434\u044b.",
"OptionLifeTimeSupporterMembership": "\u0492\u04b1\u043c\u044b\u0440\u043b\u044b\u049b \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043c\u04af\u0448\u0435\u043b\u0456\u0433\u0456",
"OptionYearlySupporterMembership": "\u0416\u044b\u043b\u0434\u044b\u049b \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043c\u04af\u0448\u0435\u043b\u0456\u0433\u0456",
"OptionMonthlySupporterMembership": "\u0410\u0439\u043b\u044b\u049b \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043c\u04af\u0448\u0435\u043b\u0456\u0433\u0456",
"OptionNoTrailer": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u0441\u0456\u0437", "OptionNoTrailer": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u0441\u0456\u0437",
"OptionNoThemeSong": "\u0422\u0430\u049b\u044b\u0440\u044b\u043f\u0442\u044b\u049b \u04d9\u0443\u0435\u043d\u0441\u0456\u0437", "OptionNoThemeSong": "\u0422\u0430\u049b\u044b\u0440\u044b\u043f\u0442\u044b\u049b \u04d9\u0443\u0435\u043d\u0441\u0456\u0437",
"OptionNoThemeVideo": "\u0422\u0430\u049b\u044b\u0440\u044b\u043f\u0442\u044b\u049b \u0431\u0435\u0439\u043d\u0435\u0441\u0456\u0437", "OptionNoThemeVideo": "\u0422\u0430\u049b\u044b\u0440\u044b\u043f\u0442\u044b\u049b \u0431\u0435\u0439\u043d\u0435\u0441\u0456\u0437",
"LabelOneTimeDonationAmount": "\u049a\u0430\u0439\u044b\u0440\u043c\u0430\u043b\u0434\u044b\u049b \u049b\u043e\u0440\u044b\u0442\u044b\u043d\u0434\u044b\u0441\u044b:", "LabelOneTimeDonationAmount": "\u049a\u0430\u0439\u044b\u0440\u043c\u0430\u043b\u0434\u044b\u049b \u049b\u043e\u0440\u044b\u0442\u044b\u043d\u0434\u044b\u0441\u044b:",
"ButtonDonate": "\u049a\u0430\u0439\u044b\u0440\u043c\u0430\u043b\u0430\u0443",
"ButtonPurchase": "\u0421\u0430\u0442\u044b\u043f \u0430\u043b\u0443", "ButtonPurchase": "\u0421\u0430\u0442\u044b\u043f \u0430\u043b\u0443",
"OptionActor": "\u0410\u043a\u0442\u0435\u0440", "OptionActor": "\u0410\u043a\u0442\u0435\u0440",
"OptionComposer": "\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0442\u043e\u0440", "OptionComposer": "\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0442\u043e\u0440",
@ -1245,9 +1237,9 @@
"HeaderPhotoInfo": "\u0424\u043e\u0442\u043e\u0441\u0443\u0440\u0435\u0442 \u0442\u0443\u0440\u0430\u043b\u044b", "HeaderPhotoInfo": "\u0424\u043e\u0442\u043e\u0441\u0443\u0440\u0435\u0442 \u0442\u0443\u0440\u0430\u043b\u044b",
"HeaderInstall": "\u041e\u0440\u043d\u0430\u0442\u0443", "HeaderInstall": "\u041e\u0440\u043d\u0430\u0442\u0443",
"LabelSelectVersionToInstall": "\u041e\u0440\u043d\u0430\u0442\u044b\u043c \u043d\u04b1\u0441\u049b\u0430\u0441\u044b\u043d \u0442\u0430\u04a3\u0434\u0430\u0443:", "LabelSelectVersionToInstall": "\u041e\u0440\u043d\u0430\u0442\u044b\u043c \u043d\u04b1\u0441\u049b\u0430\u0441\u044b\u043d \u0442\u0430\u04a3\u0434\u0430\u0443:",
"LinkSupporterMembership": "\u0416\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043c\u04af\u0448\u0435\u043b\u0456\u0433\u0456 \u0442\u0443\u0440\u0430\u043b\u044b \u0442\u0430\u043d\u044b\u0441\u044b\u04a3\u044b\u0437", "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
"MessageSupporterPluginRequiresMembership": "\u0411\u04b1\u043b \u043f\u043b\u0430\u0433\u0438\u043d 14 \u043a\u04af\u043d \u0442\u0435\u0433\u0456\u043d \u0441\u044b\u043d\u0430\u043f \u043a\u04e9\u0440\u0443 \u043c\u0435\u0440\u0437\u0456\u043c\u0456\u043d\u0435\u043d \u043a\u0435\u0439\u0456\u043d \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043c\u04af\u0448\u0435\u043b\u0456\u0433\u0456\u043d \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0434\u0456.", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
"MessagePremiumPluginRequiresMembership": "\u0411\u04b1\u043b \u043f\u043b\u0430\u0433\u0438\u043d 14 \u043a\u04af\u043d \u0442\u0435\u0433\u0456\u043d \u0441\u044b\u043d\u0430\u043f \u043a\u04e9\u0440\u0443 \u043c\u0435\u0440\u0437\u0456\u043c\u0456\u043d\u0435\u043d \u043a\u0435\u0439\u0456\u043d \u0441\u0430\u0442\u044b\u043f \u0430\u043b\u0443 \u04af\u0448\u0456\u043d \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043c\u04af\u0448\u0435\u043b\u0456\u0433\u0456\u043d \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0434\u0456.", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
"HeaderReviews": "\u041f\u0456\u043a\u0456\u0440\u043b\u0435\u0440", "HeaderReviews": "\u041f\u0456\u043a\u0456\u0440\u043b\u0435\u0440",
"HeaderDeveloperInfo": "\u0416\u0430\u0441\u0430\u049b\u0442\u0430\u0443\u0448\u044b\u043b\u0430\u0440 \u0442\u0443\u0440\u0430\u043b\u044b", "HeaderDeveloperInfo": "\u0416\u0430\u0441\u0430\u049b\u0442\u0430\u0443\u0448\u044b\u043b\u0430\u0440 \u0442\u0443\u0440\u0430\u043b\u044b",
"HeaderRevisionHistory": "\u04e8\u0437\u0433\u0435\u0440\u0456\u0441\u0442\u0435\u0440 \u0442\u0430\u0440\u0438\u0445\u044b", "HeaderRevisionHistory": "\u04e8\u0437\u0433\u0435\u0440\u0456\u0441\u0442\u0435\u0440 \u0442\u0430\u0440\u0438\u0445\u044b",
@ -1292,7 +1284,7 @@
"LabelLimitIntrosToUnwatchedContent": "\u0422\u0435\u043a \u049b\u0430\u043d\u0430 \u049b\u0430\u0440\u0430\u043b\u043c\u0430\u0493\u0430\u043d \u043c\u0430\u0437\u043c\u04b1\u043d\u0493\u0430 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443", "LabelLimitIntrosToUnwatchedContent": "\u0422\u0435\u043a \u049b\u0430\u043d\u0430 \u049b\u0430\u0440\u0430\u043b\u043c\u0430\u0493\u0430\u043d \u043c\u0430\u0437\u043c\u04b1\u043d\u0493\u0430 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443",
"LabelEnableIntroParentalControl": "\u0417\u0438\u044f\u0442\u0442\u044b \u0430\u0442\u0430-\u0430\u043d\u0430\u043b\u044b\u049b \u0431\u0430\u049b\u044b\u043b\u0430\u0443\u0434\u044b \u049b\u043e\u0441\u0443", "LabelEnableIntroParentalControl": "\u0417\u0438\u044f\u0442\u0442\u044b \u0430\u0442\u0430-\u0430\u043d\u0430\u043b\u044b\u049b \u0431\u0430\u049b\u044b\u043b\u0430\u0443\u0434\u044b \u049b\u043e\u0441\u0443",
"LabelEnableIntroParentalControlHelp": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440 \u0436\u0430\u0441\u0442\u0430\u0441 \u0441\u0430\u043d\u0430\u0442\u044b \u0442\u0435\u043a \u049b\u0430\u043d\u0430 \u049b\u0430\u0440\u0430\u0443\u0493\u0430 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d \u043c\u0430\u0437\u043c\u04b1\u043d\u0493\u0430 \u0442\u0435\u04a3 \u043d\u0435\u043c\u0435\u0441\u0435 \u043a\u0435\u043c \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u04a3\u0434\u0430\u043b\u0430\u0434\u044b.", "LabelEnableIntroParentalControlHelp": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440 \u0436\u0430\u0441\u0442\u0430\u0441 \u0441\u0430\u043d\u0430\u0442\u044b \u0442\u0435\u043a \u049b\u0430\u043d\u0430 \u049b\u0430\u0440\u0430\u0443\u0493\u0430 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d \u043c\u0430\u0437\u043c\u04b1\u043d\u0493\u0430 \u0442\u0435\u04a3 \u043d\u0435\u043c\u0435\u0441\u0435 \u043a\u0435\u043c \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u04a3\u0434\u0430\u043b\u0430\u0434\u044b.",
"LabelTheseFeaturesRequireSupporterHelpAndTrailers": "\u041e\u0441\u044b \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u0442\u0430\u0440\u0493\u0430 \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043c\u04af\u0448\u0435\u043b\u0456\u0433\u0456\u043d \u0436\u04d9\u043d\u0435 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440 \u0430\u0440\u043d\u0430\u0441\u044b \u043f\u043b\u0430\u0433\u0438\u043d\u0456\u043d \u043e\u0440\u043d\u0430\u0442\u0443 \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0434\u0456.", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "\u0416\u0435\u0440\u0433\u0456\u043b\u0456\u043a\u0442\u0456 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440 \u043e\u0440\u043d\u0430\u0442\u0443\u044b\u043d \u0436\u04d9\u043d\u0435 \u0442\u0435\u04a3\u0448\u0435\u0443\u0456\u043d \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0434\u0456.", "OptionTrailersFromMyMoviesHelp": "\u0416\u0435\u0440\u0433\u0456\u043b\u0456\u043a\u0442\u0456 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440 \u043e\u0440\u043d\u0430\u0442\u0443\u044b\u043d \u0436\u04d9\u043d\u0435 \u0442\u0435\u04a3\u0448\u0435\u0443\u0456\u043d \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0434\u0456.",
"LabelCustomIntrosPath": "\u0422\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u043a\u04e9\u0440\u043d\u0435\u0443\u043b\u0435\u0440 \u0436\u043e\u043b\u044b:", "LabelCustomIntrosPath": "\u0422\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u043a\u04e9\u0440\u043d\u0435\u0443\u043b\u0435\u0440 \u0436\u043e\u043b\u044b:",
"LabelCustomIntrosPathHelp": "\u0411\u0435\u0439\u043d\u0435 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b \u0431\u0430\u0440 \u049b\u0430\u043b\u0442\u0430. \u0411\u0435\u0439\u043d\u0435 \u043a\u0435\u0437\u0434\u0435\u0439\u0441\u043e\u049b \u0442\u0430\u04a3\u0434\u0430\u043b\u0430\u0434\u044b \u0434\u0430 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0435\u043d \u043a\u0435\u0439\u0456\u043d \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0430\u0434\u044b.", "LabelCustomIntrosPathHelp": "\u0411\u0435\u0439\u043d\u0435 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b \u0431\u0430\u0440 \u049b\u0430\u043b\u0442\u0430. \u0411\u0435\u0439\u043d\u0435 \u043a\u0435\u0437\u0434\u0435\u0439\u0441\u043e\u049b \u0442\u0430\u04a3\u0434\u0430\u043b\u0430\u0434\u044b \u0434\u0430 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0435\u043d \u043a\u0435\u0439\u0456\u043d \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0430\u0434\u044b.",
@ -1513,7 +1505,7 @@
"LabelTunerType": "\u0422\u044e\u043d\u0435\u0440 \u0442\u04af\u0440\u0456:", "LabelTunerType": "\u0422\u044e\u043d\u0435\u0440 \u0442\u04af\u0440\u0456:",
"HelpMoreTunersCanBeAdded": "\u049a\u043e\u0441\u044b\u043c\u0448\u0430 \u0442\u044e\u043d\u0435\u0440\u043b\u0435\u0440\u0434\u0456 \u044d\u0444\u0438\u0440\u043b\u0456\u043a \u0422\u0414 \u0431\u04e9\u043b\u0456\u043c\u0456\u043d\u0434\u0435 \u043a\u0435\u0439\u0456\u043d \u04af\u0441\u0442\u0435\u0443\u0456\u04a3\u0456\u0437 \u043c\u04af\u043c\u043a\u0456\u043d.", "HelpMoreTunersCanBeAdded": "\u049a\u043e\u0441\u044b\u043c\u0448\u0430 \u0442\u044e\u043d\u0435\u0440\u043b\u0435\u0440\u0434\u0456 \u044d\u0444\u0438\u0440\u043b\u0456\u043a \u0422\u0414 \u0431\u04e9\u043b\u0456\u043c\u0456\u043d\u0434\u0435 \u043a\u0435\u0439\u0456\u043d \u04af\u0441\u0442\u0435\u0443\u0456\u04a3\u0456\u0437 \u043c\u04af\u043c\u043a\u0456\u043d.",
"AdditionalLiveTvProvidersCanBeInstalledLater": "\u049a\u043e\u0441\u044b\u043c\u0448\u0430 \u044d\u0444\u0438\u0440\u043b\u0456\u043a \u0422\u0414 \u0436\u0435\u0442\u043a\u0456\u0437\u0443\u0448\u0456\u043b\u0435\u0440 \u042d\u0444\u0438\u0440 \u0431\u04e9\u043b\u0456\u043c\u0456\u043d\u0434\u0435 \u043a\u0435\u0439\u0456\u043d \u04af\u0441\u0442\u0435\u0443\u0456\u04a3\u0456\u0437 \u043c\u04af\u043c\u043a\u0456\u043d.", "AdditionalLiveTvProvidersCanBeInstalledLater": "\u049a\u043e\u0441\u044b\u043c\u0448\u0430 \u044d\u0444\u0438\u0440\u043b\u0456\u043a \u0422\u0414 \u0436\u0435\u0442\u043a\u0456\u0437\u0443\u0448\u0456\u043b\u0435\u0440 \u042d\u0444\u0438\u0440 \u0431\u04e9\u043b\u0456\u043c\u0456\u043d\u0434\u0435 \u043a\u0435\u0439\u0456\u043d \u04af\u0441\u0442\u0435\u0443\u0456\u04a3\u0456\u0437 \u043c\u04af\u043c\u043a\u0456\u043d.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043b\u0430\u0440\u0434\u044b\u04a3 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0436\u0430\u0437\u0431\u0430\u0441\u044b\u043d \u0436\u0430\u0441\u0430\u0443 \u04af\u0448\u0456\u043d Emby \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b\u0441\u044b\u043d\u044b\u04a3 \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 \u043c\u04af\u0448\u0435\u043b\u0456\u0433\u0456 \u049b\u0430\u0436\u0435\u0442.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "\u0422\u0435\u043b\u0435\u0433\u0438\u0434\u0442\u0456 \u043e\u0440\u043d\u0430\u0442\u0443 \u0436\u04d9\u043d\u0435 \u0442\u0435\u04a3\u0448\u0435\u0443", "HeaderSetupTVGuide": "\u0422\u0435\u043b\u0435\u0433\u0438\u0434\u0442\u0456 \u043e\u0440\u043d\u0430\u0442\u0443 \u0436\u04d9\u043d\u0435 \u0442\u0435\u04a3\u0448\u0435\u0443",
"LabelDataProvider": "\u0414\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u0436\u0435\u0442\u043a\u0456\u0437\u0443\u0448\u0456\u0441\u0456:", "LabelDataProvider": "\u0414\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u0436\u0435\u0442\u043a\u0456\u0437\u0443\u0448\u0456\u0441\u0456:",
"OptionSendRecordingsToAutoOrganize": "\u0416\u0430\u04a3\u0430 \u0436\u0430\u0437\u0431\u0430\u043b\u0430\u0440 \u04af\u0448\u0456\u043d \u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0443\u0434\u044b \u049b\u043e\u0441\u0443", "OptionSendRecordingsToAutoOrganize": "\u0416\u0430\u04a3\u0430 \u0436\u0430\u0437\u0431\u0430\u043b\u0430\u0440 \u04af\u0448\u0456\u043d \u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0443\u0434\u044b \u049b\u043e\u0441\u0443",
@ -1526,7 +1518,9 @@
"LabelVideoFrameAnalysisLimit": "\u0414\u0430\u0440\u0430\u043b\u0430\u0439 \u0442\u0430\u043b\u0434\u0430\u0443\u0434\u044b \u043c\u044b\u043d\u0430\u0434\u0430\u043d \u043a\u0435\u043c \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440 \u04af\u0448\u0456\u043d \u0448\u0435\u043a\u0442\u0435\u0443:", "LabelVideoFrameAnalysisLimit": "\u0414\u0430\u0440\u0430\u043b\u0430\u0439 \u0442\u0430\u043b\u0434\u0430\u0443\u0434\u044b \u043c\u044b\u043d\u0430\u0434\u0430\u043d \u043a\u0435\u043c \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440 \u04af\u0448\u0456\u043d \u0448\u0435\u043a\u0442\u0435\u0443:",
"LabelHardwareVideoDecoder": "\u0416\u0430\u0431\u0434\u044b\u049b\u0442\u044b\u049b \u0431\u0435\u0439\u043d\u0435 \u0434\u0435\u043a\u043e\u0434\u0435\u0440:", "LabelHardwareVideoDecoder": "\u0416\u0430\u0431\u0434\u044b\u049b\u0442\u044b\u049b \u0431\u0435\u0439\u043d\u0435 \u0434\u0435\u043a\u043e\u0434\u0435\u0440:",
"LabelHardwareVideoDecoderHelp": "\u0422\u0435\u043a \u049b\u0430\u043d\u0430 \u049b\u043e\u043b\u0434\u0430\u0443\u0434\u0430\u0493\u044b \u0436\u04af\u0439\u0435\u043b\u0435\u0440\u0434\u0435 \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456.", "LabelHardwareVideoDecoderHelp": "\u0422\u0435\u043a \u049b\u0430\u043d\u0430 \u049b\u043e\u043b\u0434\u0430\u0443\u0434\u0430\u0493\u044b \u0436\u04af\u0439\u0435\u043b\u0435\u0440\u0434\u0435 \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456.",
"ButtonServerDashboard": "Server Dashboard", "ButtonServerDashboard": "\u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0456\u04a3 \u0431\u0430\u049b\u044b\u043b\u0430\u0443 \u0442\u0430\u049b\u0442\u0430\u0441\u044b",
"HeaderAdmin": "\u0411\u0430\u0441\u049b\u0430\u0440\u0443", "HeaderAdmin": "\u0411\u0430\u0441\u049b\u0430\u0440\u0443",
"ButtonSignOut": "Sign out" "ButtonSignOut": "\u0428\u044b\u0493\u0443",
"HeaderCameraUpload": "\u041a\u0430\u043c\u0435\u0440\u0430\u0434\u0430\u043d \u043a\u0435\u0440\u0456 \u049b\u043e\u0442\u0430\u0440\u0443",
"SelectCameraUploadServers": "\u041a\u0430\u043c\u0435\u0440\u0430\u0434\u0430\u043d \u0444\u043e\u0442\u043e\u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u043a\u0435\u043b\u0435\u0441\u0456 \u0441\u0435\u0440\u0432\u0435\u0440\u043b\u0435\u0440\u0433\u0435 \u043a\u0435\u0440\u0456 \u049b\u043e\u0442\u0430\u0440\u0443:"
} }

View file

@ -48,7 +48,7 @@
"ButtonConvertMedia": "Convert media", "ButtonConvertMedia": "Convert media",
"ButtonOrganize": "Organize", "ButtonOrganize": "Organize",
"LinkedToEmbyConnect": "Linked to Emby Connect", "LinkedToEmbyConnect": "Linked to Emby Connect",
"HeaderSupporterBenefits": "Supporter Benefits", "HeaderSupporterBenefits": "Emby Premiere Benefits",
"HeaderAddUser": "Add User", "HeaderAddUser": "Add User",
"LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
"LabelPinCode": "Pin code:", "LabelPinCode": "Pin code:",
@ -82,7 +82,6 @@
"LabelCustomCertificatePath": "Custom certificate path:", "LabelCustomCertificatePath": "Custom certificate path:",
"LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.", "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ButtonDonateWithPayPal": "Donate with PayPal",
"OptionDetectArchiveFilesAsMedia": "Detect archive files as media", "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
"OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.", "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
"LabelEnterConnectUserName": "Username or email:", "LabelEnterConnectUserName": "Username or email:",
@ -289,8 +288,9 @@
"TitleSupport": "Support", "TitleSupport": "Support",
"TabLog": "Log", "TabLog": "Log",
"TabAbout": "About", "TabAbout": "About",
"TabSupporterKey": "Supporter Key", "TabSupporterKey": "Emby Premiere Key",
"TabBecomeSupporter": "Become a Supporter", "TabBecomeSupporter": "Get Emby Premiere",
"TabEmbyPremiere": "Emby Premiere",
"ProjectHasCommunity": "Emby has a thriving community of users and contributors.", "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.", "CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "Search the Knowledge Base", "SearchKnowledgeBase": "Search the Knowledge Base",
@ -591,9 +591,9 @@
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"LabelSupportAmount": "Amount (USD)", "LabelSupportAmount": "Amount (USD)",
"HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by donating. A portion of all donations will be contributed to other free tools we depend on.", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
"ButtonEnterSupporterKey": "Enter supporter key", "ButtonEnterSupporterKey": "Enter Emby Premiere key",
"DonationNextStep": "Once complete, please return and enter your supporter key, which you will receive by email.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
"AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.",
"AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.",
"OptionEnableEpisodeOrganization": "Enable new episode organization", "OptionEnableEpisodeOrganization": "Enable new episode organization",
@ -639,20 +639,20 @@
"LabelDownMixAudioScale": "Audio boost when downmixing:", "LabelDownMixAudioScale": "Audio boost when downmixing:",
"LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.",
"ButtonLinkKeys": "Transfer Key", "ButtonLinkKeys": "Transfer Key",
"LabelOldSupporterKey": "Old supporter key", "LabelOldSupporterKey": "Old Emby Premiere key",
"LabelNewSupporterKey": "New supporter key", "LabelNewSupporterKey": "New Emby Premiere key",
"HeaderMultipleKeyLinking": "Transfer to New Key", "HeaderMultipleKeyLinking": "Transfer to New Key",
"MultipleKeyLinkingHelp": "If you received a new supporter key, use this form to transfer the old key's registrations to your new one.", "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
"LabelCurrentEmailAddress": "Current email address", "LabelCurrentEmailAddress": "Current email address",
"LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.", "LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.",
"HeaderForgotKey": "Forgot Key", "HeaderForgotKey": "Forgot Key",
"LabelEmailAddress": "Email address", "LabelEmailAddress": "Email address",
"LabelSupporterEmailAddress": "The email address that was used to purchase the key.", "LabelSupporterEmailAddress": "The email address that was used to purchase the key.",
"ButtonRetrieveKey": "Retrieve Key", "ButtonRetrieveKey": "Retrieve Key",
"LabelSupporterKey": "Supporter Key (paste from email)", "LabelSupporterKey": "Emby Premiere key (paste from email):",
"LabelSupporterKeyHelp": "Enter your supporter key to start enjoying additional benefits the community has developed for Emby.", "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
"MessageInvalidKey": "Supporter key is missing or invalid.", "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
"ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also be an Emby Supporter. Please donate and support the continued development of the core product. Thank you.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
"HeaderDisplaySettings": "Display Settings", "HeaderDisplaySettings": "Display Settings",
"TabPlayTo": "Play To", "TabPlayTo": "Play To",
"LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServer": "Enable Dlna server",
@ -912,7 +912,7 @@
"OptionCommunityMostWatchedSort": "Most Watched", "OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up", "TabNextUp": "Next Up",
"PlaceholderUsername": "Username", "PlaceholderUsername": "Username",
"HeaderBecomeProjectSupporter": "Become an Emby Supporter", "HeaderBecomeProjectSupporter": "Get Emby Premiere",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
"MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
@ -1002,8 +1002,6 @@
"HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.",
"LabelLoginDisclaimer": "Login disclaimer:", "LabelLoginDisclaimer": "Login disclaimer:",
"LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.",
"LabelAutomaticallyDonate": "Automatically donate this amount every month",
"LabelAutomaticallyDonateHelp": "You can cancel at any time via your PayPal account.",
"OptionList": "List", "OptionList": "List",
"TabDashboard": "Dashboard", "TabDashboard": "Dashboard",
"TitleServer": "Server", "TitleServer": "Server",
@ -1220,18 +1218,12 @@
"HeaderMetadataSettings": "Metadata Settings", "HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes", "LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
"TabDonate": "Donate",
"HeaderDonationType": "Donation type:", "HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation", "OptionMakeOneTimeDonation": "Make a separate donation",
"OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
"OptionYearlySupporterMembership": "Yearly supporter membership",
"OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer", "OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song", "OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video", "OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:", "LabelOneTimeDonationAmount": "Donation amount:",
"ButtonDonate": "Donate",
"ButtonPurchase": "Purchase", "ButtonPurchase": "Purchase",
"OptionActor": "Actor", "OptionActor": "Actor",
"OptionComposer": "Composer", "OptionComposer": "Composer",
@ -1245,9 +1237,9 @@
"HeaderPhotoInfo": "Photo Info", "HeaderPhotoInfo": "Photo Info",
"HeaderInstall": "Install", "HeaderInstall": "Install",
"LabelSelectVersionToInstall": "Select version to install:", "LabelSelectVersionToInstall": "Select version to install:",
"LinkSupporterMembership": "Learn about the Supporter Membership", "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
"MessageSupporterPluginRequiresMembership": "This plugin will require an active supporter membership after the 14 day free trial.", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
"MessagePremiumPluginRequiresMembership": "This plugin will require an active supporter membership in order to purchase after the 14 day free trial.", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
"HeaderReviews": "Reviews", "HeaderReviews": "Reviews",
"HeaderDeveloperInfo": "Developer Info", "HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History", "HeaderRevisionHistory": "Revision History",
@ -1292,7 +1284,7 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content", "LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control", "LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
"LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:", "LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
@ -1513,7 +1505,7 @@
"LabelTunerType": "Tuner type:", "LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.", "HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
"AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.", "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
@ -1528,5 +1520,7 @@
"LabelHardwareVideoDecoderHelp": "Available on supported systems only.", "LabelHardwareVideoDecoderHelp": "Available on supported systems only.",
"ButtonServerDashboard": "Server Dashboard", "ButtonServerDashboard": "Server Dashboard",
"HeaderAdmin": "Admin", "HeaderAdmin": "Admin",
"ButtonSignOut": "Sign out" "ButtonSignOut": "Sign out",
"HeaderCameraUpload": "Camera Upload",
"SelectCameraUploadServers": "Upload camera photos to the following servers:"
} }

View file

@ -48,7 +48,7 @@
"ButtonConvertMedia": "Convert media", "ButtonConvertMedia": "Convert media",
"ButtonOrganize": "Organize", "ButtonOrganize": "Organize",
"LinkedToEmbyConnect": "Linked to Emby Connect", "LinkedToEmbyConnect": "Linked to Emby Connect",
"HeaderSupporterBenefits": "Supporter Benefits", "HeaderSupporterBenefits": "Emby Premiere Benefits",
"HeaderAddUser": "Add User", "HeaderAddUser": "Add User",
"LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
"LabelPinCode": "Pin code:", "LabelPinCode": "Pin code:",
@ -82,7 +82,6 @@
"LabelCustomCertificatePath": "Custom certificate path:", "LabelCustomCertificatePath": "Custom certificate path:",
"LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.", "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ButtonDonateWithPayPal": "Donate with PayPal",
"OptionDetectArchiveFilesAsMedia": "Detect archive files as media", "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
"OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.", "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
"LabelEnterConnectUserName": "Username or email:", "LabelEnterConnectUserName": "Username or email:",
@ -289,8 +288,9 @@
"TitleSupport": "Support", "TitleSupport": "Support",
"TabLog": "Log", "TabLog": "Log",
"TabAbout": "About", "TabAbout": "About",
"TabSupporterKey": "Supporter Key", "TabSupporterKey": "Emby Premiere Key",
"TabBecomeSupporter": "Become a Supporter", "TabBecomeSupporter": "Get Emby Premiere",
"TabEmbyPremiere": "Emby Premiere",
"ProjectHasCommunity": "Emby has a thriving community of users and contributors.", "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.", "CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "Search the Knowledge Base", "SearchKnowledgeBase": "Search the Knowledge Base",
@ -591,9 +591,9 @@
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"LabelSupportAmount": "Amount (USD)", "LabelSupportAmount": "Amount (USD)",
"HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by donating. A portion of all donations will be contributed to other free tools we depend on.", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
"ButtonEnterSupporterKey": "Enter supporter key", "ButtonEnterSupporterKey": "Enter Emby Premiere key",
"DonationNextStep": "Once complete, please return and enter your supporter key, which you will receive by email.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
"AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.",
"AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.",
"OptionEnableEpisodeOrganization": "Enable new episode organization", "OptionEnableEpisodeOrganization": "Enable new episode organization",
@ -639,20 +639,20 @@
"LabelDownMixAudioScale": "Audio boost when downmixing:", "LabelDownMixAudioScale": "Audio boost when downmixing:",
"LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.",
"ButtonLinkKeys": "Transfer Key", "ButtonLinkKeys": "Transfer Key",
"LabelOldSupporterKey": "Old supporter key", "LabelOldSupporterKey": "Old Emby Premiere key",
"LabelNewSupporterKey": "New supporter key", "LabelNewSupporterKey": "New Emby Premiere key",
"HeaderMultipleKeyLinking": "Transfer to New Key", "HeaderMultipleKeyLinking": "Transfer to New Key",
"MultipleKeyLinkingHelp": "If you received a new supporter key, use this form to transfer the old key's registrations to your new one.", "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
"LabelCurrentEmailAddress": "Current email address", "LabelCurrentEmailAddress": "Current email address",
"LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.", "LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.",
"HeaderForgotKey": "Forgot Key", "HeaderForgotKey": "Forgot Key",
"LabelEmailAddress": "Email address", "LabelEmailAddress": "Email address",
"LabelSupporterEmailAddress": "The email address that was used to purchase the key.", "LabelSupporterEmailAddress": "The email address that was used to purchase the key.",
"ButtonRetrieveKey": "Retrieve Key", "ButtonRetrieveKey": "Retrieve Key",
"LabelSupporterKey": "Supporter Key (paste from email)", "LabelSupporterKey": "Emby Premiere key (paste from email):",
"LabelSupporterKeyHelp": "Enter your supporter key to start enjoying additional benefits the community has developed for Emby.", "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
"MessageInvalidKey": "Supporter key is missing or invalid.", "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
"ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also be an Emby Supporter. Please donate and support the continued development of the core product. Thank you.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
"HeaderDisplaySettings": "Display Settings", "HeaderDisplaySettings": "Display Settings",
"TabPlayTo": "Play To", "TabPlayTo": "Play To",
"LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServer": "Enable Dlna server",
@ -912,7 +912,7 @@
"OptionCommunityMostWatchedSort": "Most Watched", "OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up", "TabNextUp": "Next Up",
"PlaceholderUsername": "Username", "PlaceholderUsername": "Username",
"HeaderBecomeProjectSupporter": "Become an Emby Supporter", "HeaderBecomeProjectSupporter": "Get Emby Premiere",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
"MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
@ -1002,8 +1002,6 @@
"HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.",
"LabelLoginDisclaimer": "Login disclaimer:", "LabelLoginDisclaimer": "Login disclaimer:",
"LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.",
"LabelAutomaticallyDonate": "Automatically donate this amount every month",
"LabelAutomaticallyDonateHelp": "You can cancel at any time via your PayPal account.",
"OptionList": "List", "OptionList": "List",
"TabDashboard": "Dashboard", "TabDashboard": "Dashboard",
"TitleServer": "Server", "TitleServer": "Server",
@ -1220,18 +1218,12 @@
"HeaderMetadataSettings": "Metadata Settings", "HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes", "LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
"TabDonate": "Donate",
"HeaderDonationType": "Donation type:", "HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation", "OptionMakeOneTimeDonation": "Make a separate donation",
"OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
"OptionYearlySupporterMembership": "Yearly supporter membership",
"OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer", "OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song", "OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video", "OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:", "LabelOneTimeDonationAmount": "Donation amount:",
"ButtonDonate": "Donate",
"ButtonPurchase": "Purchase", "ButtonPurchase": "Purchase",
"OptionActor": "Actor", "OptionActor": "Actor",
"OptionComposer": "Composer", "OptionComposer": "Composer",
@ -1245,9 +1237,9 @@
"HeaderPhotoInfo": "Photo Info", "HeaderPhotoInfo": "Photo Info",
"HeaderInstall": "Install", "HeaderInstall": "Install",
"LabelSelectVersionToInstall": "Select version to install:", "LabelSelectVersionToInstall": "Select version to install:",
"LinkSupporterMembership": "Learn about the Supporter Membership", "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
"MessageSupporterPluginRequiresMembership": "This plugin will require an active supporter membership after the 14 day free trial.", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
"MessagePremiumPluginRequiresMembership": "This plugin will require an active supporter membership in order to purchase after the 14 day free trial.", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
"HeaderReviews": "Reviews", "HeaderReviews": "Reviews",
"HeaderDeveloperInfo": "Developer Info", "HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History", "HeaderRevisionHistory": "Revision History",
@ -1292,7 +1284,7 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content", "LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control", "LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
"LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:", "LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
@ -1513,7 +1505,7 @@
"LabelTunerType": "Tuner type:", "LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.", "HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
"AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.", "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
@ -1528,5 +1520,7 @@
"LabelHardwareVideoDecoderHelp": "Available on supported systems only.", "LabelHardwareVideoDecoderHelp": "Available on supported systems only.",
"ButtonServerDashboard": "Server Dashboard", "ButtonServerDashboard": "Server Dashboard",
"HeaderAdmin": "Admin", "HeaderAdmin": "Admin",
"ButtonSignOut": "Sign out" "ButtonSignOut": "Sign out",
"HeaderCameraUpload": "Camera Upload",
"SelectCameraUploadServers": "Upload camera photos to the following servers:"
} }

View file

@ -48,7 +48,7 @@
"ButtonConvertMedia": "Konverter media", "ButtonConvertMedia": "Konverter media",
"ButtonOrganize": "Organiser", "ButtonOrganize": "Organiser",
"LinkedToEmbyConnect": "Knyttet til Emby Connect.", "LinkedToEmbyConnect": "Knyttet til Emby Connect.",
"HeaderSupporterBenefits": "Supporter fordeler", "HeaderSupporterBenefits": "Emby Premiere Benefits",
"HeaderAddUser": "Ny bruker", "HeaderAddUser": "Ny bruker",
"LabelAddConnectSupporterHelp": "For \u00e5 legge til en bruker som ikke er oppf\u00f8rt, m\u00e5 du f\u00f8rst koble sin konto til Emby Connect fra deres brukerprofilside.", "LabelAddConnectSupporterHelp": "For \u00e5 legge til en bruker som ikke er oppf\u00f8rt, m\u00e5 du f\u00f8rst koble sin konto til Emby Connect fra deres brukerprofilside.",
"LabelPinCode": "Pin kode:", "LabelPinCode": "Pin kode:",
@ -82,7 +82,6 @@
"LabelCustomCertificatePath": "Sti for eget sertifikat:", "LabelCustomCertificatePath": "Sti for eget sertifikat:",
"LabelCustomCertificatePathHelp": "Angi ditt eget SSL-sertifikats .ptx-fil. Hvis feltet er blankt vil serveren opprette et eget selv-signert sertifikat.", "LabelCustomCertificatePathHelp": "Angi ditt eget SSL-sertifikats .ptx-fil. Hvis feltet er blankt vil serveren opprette et eget selv-signert sertifikat.",
"TitleNotifications": "Beskjeder", "TitleNotifications": "Beskjeder",
"ButtonDonateWithPayPal": "Don\u00e9r med PayPal",
"OptionDetectArchiveFilesAsMedia": "Behandle arkivfiler som media", "OptionDetectArchiveFilesAsMedia": "Behandle arkivfiler som media",
"OptionDetectArchiveFilesAsMediaHelp": "Hvis aktivert blir .rar- og .zipfiler behandlet som mediafiler.", "OptionDetectArchiveFilesAsMediaHelp": "Hvis aktivert blir .rar- og .zipfiler behandlet som mediafiler.",
"LabelEnterConnectUserName": "Brukernavn eller epostadresse:", "LabelEnterConnectUserName": "Brukernavn eller epostadresse:",
@ -289,8 +288,9 @@
"TitleSupport": "Support", "TitleSupport": "Support",
"TabLog": "Logg", "TabLog": "Logg",
"TabAbout": "Om", "TabAbout": "Om",
"TabSupporterKey": "Supporter-n\u00f8kkel", "TabSupporterKey": "Emby Premiere Key",
"TabBecomeSupporter": "Bli en supporter", "TabBecomeSupporter": "Get Emby Premiere",
"TabEmbyPremiere": "Emby Premiere",
"ProjectHasCommunity": "Emby har et voksende fellesskap av brukere og bidragsytere.", "ProjectHasCommunity": "Emby har et voksende fellesskap av brukere og bidragsytere.",
"CheckoutKnowledgeBase": "Sjekk ut v\u00e5r kunnskapsbase for \u00e5 hjelpe deg til \u00e5 f\u00e5 mest mulig ut av Emby.", "CheckoutKnowledgeBase": "Sjekk ut v\u00e5r kunnskapsbase for \u00e5 hjelpe deg til \u00e5 f\u00e5 mest mulig ut av Emby.",
"SearchKnowledgeBase": "S\u00f8k kunnskapsbasen", "SearchKnowledgeBase": "S\u00f8k kunnskapsbasen",
@ -350,7 +350,7 @@
"LabelImagesByNamePath": "Bilder etter navn sti:", "LabelImagesByNamePath": "Bilder etter navn sti:",
"LabelImagesByNamePathHelp": "Angi en egen katalog for nedlastede bilder for skuespiller, sjanger og studio.", "LabelImagesByNamePathHelp": "Angi en egen katalog for nedlastede bilder for skuespiller, sjanger og studio.",
"LabelMetadataPath": "Metadata sti:", "LabelMetadataPath": "Metadata sti:",
"LabelMetadataPathHelp": "Definer en tilpasset lokalisering for nedlastede artwork og metadata, hvis ikke skjer lagring innen media mappene.", "LabelMetadataPathHelp": "Specify a custom location for downloaded artwork and metadata.",
"LabelTranscodingTempPath": "Sti for midlertidig transcoding:", "LabelTranscodingTempPath": "Sti for midlertidig transcoding:",
"LabelTranscodingTempPathHelp": "Denne mappen inneholder fungerende filer som blir brukt av transcoderen. Spesifiser en tilpasset sti eller la det st\u00e5 tomt for \u00e5 benytte serverens standard sti.", "LabelTranscodingTempPathHelp": "Denne mappen inneholder fungerende filer som blir brukt av transcoderen. Spesifiser en tilpasset sti eller la det st\u00e5 tomt for \u00e5 benytte serverens standard sti.",
"TabBasics": "Basics", "TabBasics": "Basics",
@ -591,9 +591,9 @@
"LabelEndingEpisodeNumberHelp": "Kun n\u00f8dvendig for multi-episode filer", "LabelEndingEpisodeNumberHelp": "Kun n\u00f8dvendig for multi-episode filer",
"HeaderSupportTheTeam": "St\u00f8tt Emby teamet!", "HeaderSupportTheTeam": "St\u00f8tt Emby teamet!",
"LabelSupportAmount": "Sum (USD)", "LabelSupportAmount": "Sum (USD)",
"HeaderSupportTheTeamHelp": "Bidra til \u00e5 sikre fortsatt utvikling av dette prosjektet ved \u00e5 donere. En del av alle donasjoner vil v\u00e6re bidratt til andre gratis verkt\u00f8y vi er avhengige av.", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
"ButtonEnterSupporterKey": "Skriv supportn\u00f8kkel", "ButtonEnterSupporterKey": "Enter Emby Premiere key",
"DonationNextStep": "N\u00e5r du er ferdig, kan du g\u00e5 tilbake og skriv inn din supportn\u00f8kkel, som du vil motta p\u00e5 e-post.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
"AutoOrganizeHelp": "Auto-organisere monitorerer dine nedlastingsmapper for nye filer og flytter dem til riktig mediakatalog.", "AutoOrganizeHelp": "Auto-organisere monitorerer dine nedlastingsmapper for nye filer og flytter dem til riktig mediakatalog.",
"AutoOrganizeTvHelp": "TV organisering vil kun legge til episoder til eksisterende serier. Den vil ikke lage nye serie-mapper.", "AutoOrganizeTvHelp": "TV organisering vil kun legge til episoder til eksisterende serier. Den vil ikke lage nye serie-mapper.",
"OptionEnableEpisodeOrganization": "Aktiver organisering av ny episode", "OptionEnableEpisodeOrganization": "Aktiver organisering av ny episode",
@ -639,20 +639,20 @@
"LabelDownMixAudioScale": "Lyd boost ved downmixing:", "LabelDownMixAudioScale": "Lyd boost ved downmixing:",
"LabelDownMixAudioScaleHelp": "Boost lyd n\u00e5r downmixing. Set til 1 for \u00e5 bevare orginal volum verdi.", "LabelDownMixAudioScaleHelp": "Boost lyd n\u00e5r downmixing. Set til 1 for \u00e5 bevare orginal volum verdi.",
"ButtonLinkKeys": "Overf\u00f8r n\u00f8kkel", "ButtonLinkKeys": "Overf\u00f8r n\u00f8kkel",
"LabelOldSupporterKey": "Gammel supportern\u00f8kkel", "LabelOldSupporterKey": "Old Emby Premiere key",
"LabelNewSupporterKey": "Ny supportern\u00f8kkel", "LabelNewSupporterKey": "New Emby Premiere key",
"HeaderMultipleKeyLinking": "Overf\u00f8r til ny n\u00f8kkel", "HeaderMultipleKeyLinking": "Overf\u00f8r til ny n\u00f8kkel",
"MultipleKeyLinkingHelp": "Bruk dette skjemaet hvis du har mottatt en ny supportn\u00f8kkel for \u00e5 overf\u00f8re gamle n\u00f8kkelregistreringer til din nye.", "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
"LabelCurrentEmailAddress": "Gjeldende epostadresse", "LabelCurrentEmailAddress": "Gjeldende epostadresse",
"LabelCurrentEmailAddressHelp": "Den aktuelle e-postadressen som den nye n\u00f8kkelen ble sendt.", "LabelCurrentEmailAddressHelp": "Den aktuelle e-postadressen som den nye n\u00f8kkelen ble sendt.",
"HeaderForgotKey": "Glemt N\u00f8kkel", "HeaderForgotKey": "Glemt N\u00f8kkel",
"LabelEmailAddress": "Epostadresse", "LabelEmailAddress": "Epostadresse",
"LabelSupporterEmailAddress": "Epostadressen som ble brukt for \u00e5 kj\u00f8pe n\u00f8kkelen.", "LabelSupporterEmailAddress": "Epostadressen som ble brukt for \u00e5 kj\u00f8pe n\u00f8kkelen.",
"ButtonRetrieveKey": "Motta N\u00f8kkel", "ButtonRetrieveKey": "Motta N\u00f8kkel",
"LabelSupporterKey": "Supporter N\u00f8kkel (Lim inn fra mottatt epost)", "LabelSupporterKey": "Emby Premiere key (paste from email):",
"LabelSupporterKeyHelp": "Skriv inn din st\u00f8ttespiller-n\u00f8kkelen, slik av du f\u00e5r tilgang til flere fordeler utviklet for Emby.", "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
"MessageInvalidKey": "Supportern\u00f8kkel mangler eller er feil.", "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
"ErrorMessageInvalidKey": "For \u00e5 benytte premium-innhold, m\u00e5 du ogs\u00e5 v\u00e6re en Emby Supporter. Vennligst donere og st\u00f8tte den videre utviklingen av kjerneproduktet. Takk.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
"HeaderDisplaySettings": "Visnings innstillinger", "HeaderDisplaySettings": "Visnings innstillinger",
"TabPlayTo": "Spill Til", "TabPlayTo": "Spill Til",
"LabelEnableDlnaServer": "Sl\u00e5 p\u00e5 Dlna server", "LabelEnableDlnaServer": "Sl\u00e5 p\u00e5 Dlna server",
@ -912,7 +912,7 @@
"OptionCommunityMostWatchedSort": "Mest Sett", "OptionCommunityMostWatchedSort": "Mest Sett",
"TabNextUp": "Neste", "TabNextUp": "Neste",
"PlaceholderUsername": "Brukernavn", "PlaceholderUsername": "Brukernavn",
"HeaderBecomeProjectSupporter": "Bli en Emby Supporter", "HeaderBecomeProjectSupporter": "Get Emby Premiere",
"MessageNoMovieSuggestionsAvailable": "Ingen film forslag er forel\u00f8pig tilgjengelig. Start med \u00e5 se og ranger filmer. Kom deretter tilbake for \u00e5 f\u00e5 forslag p\u00e5 anbefalinger.", "MessageNoMovieSuggestionsAvailable": "Ingen film forslag er forel\u00f8pig tilgjengelig. Start med \u00e5 se og ranger filmer. Kom deretter tilbake for \u00e5 f\u00e5 forslag p\u00e5 anbefalinger.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
"MessageNoPlaylistsAvailable": "Spillelister tillater deg \u00e5 lage lister over innhold til \u00e5 spille etter hverandre p\u00e5 en gang. For \u00e5 legge til elementer i spillelister, h\u00f8yreklikk eller trykk og hold, og velg Legg til i spilleliste.", "MessageNoPlaylistsAvailable": "Spillelister tillater deg \u00e5 lage lister over innhold til \u00e5 spille etter hverandre p\u00e5 en gang. For \u00e5 legge til elementer i spillelister, h\u00f8yreklikk eller trykk og hold, og velg Legg til i spilleliste.",
@ -1002,8 +1002,6 @@
"HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.",
"LabelLoginDisclaimer": "Login ansvarsfraskrivelse:", "LabelLoginDisclaimer": "Login ansvarsfraskrivelse:",
"LabelLoginDisclaimerHelp": "Dette vil bli vist p\u00e5 bunnen av login siden.", "LabelLoginDisclaimerHelp": "Dette vil bli vist p\u00e5 bunnen av login siden.",
"LabelAutomaticallyDonate": "Doner denne summen automatisk hver m\u00e5ned",
"LabelAutomaticallyDonateHelp": "Du kan kansellere n\u00e5r som helst via din PayPal konto.",
"OptionList": "Liste", "OptionList": "Liste",
"TabDashboard": "Dashbord", "TabDashboard": "Dashbord",
"TitleServer": "Server", "TitleServer": "Server",
@ -1220,18 +1218,12 @@
"HeaderMetadataSettings": "Metadata innstilinger", "HeaderMetadataSettings": "Metadata innstilinger",
"LabelLockItemToPreventChanges": "L\u00e5s dette elementet for \u00e5 hindre fremtidige endringer", "LabelLockItemToPreventChanges": "L\u00e5s dette elementet for \u00e5 hindre fremtidige endringer",
"MessageLeaveEmptyToInherit": "La v\u00e6re blank for \u00e5 arve innstillinger fra et foreldre element, eller den globale standard verdien.", "MessageLeaveEmptyToInherit": "La v\u00e6re blank for \u00e5 arve innstillinger fra et foreldre element, eller den globale standard verdien.",
"TabDonate": "Don\u00e9r",
"HeaderDonationType": "Donasjon type:", "HeaderDonationType": "Donasjon type:",
"OptionMakeOneTimeDonation": "Gi en egen donasjon", "OptionMakeOneTimeDonation": "Gi en egen donasjon",
"OptionOneTimeDescription": "Dette er en ekstra donasjon til teamet for \u00e5 vise din st\u00f8tte. Det har ikke noen ekstra fordeler, og vil ikke produsere en supporter tasten.",
"OptionLifeTimeSupporterMembership": "Livstids supporter medlemskap",
"OptionYearlySupporterMembership": "\u00c5rlig supporter medlemskap",
"OptionMonthlySupporterMembership": "M\u00e5nedlig supporter medlemskap",
"OptionNoTrailer": "Ingen trailer", "OptionNoTrailer": "Ingen trailer",
"OptionNoThemeSong": "Ingen temasang", "OptionNoThemeSong": "Ingen temasang",
"OptionNoThemeVideo": "Ingen tema video", "OptionNoThemeVideo": "Ingen tema video",
"LabelOneTimeDonationAmount": "Donasjons bel\u00f8p:", "LabelOneTimeDonationAmount": "Donasjons bel\u00f8p:",
"ButtonDonate": "Don\u00e9r",
"ButtonPurchase": "Purchase", "ButtonPurchase": "Purchase",
"OptionActor": "Skuespiller", "OptionActor": "Skuespiller",
"OptionComposer": "Komponist", "OptionComposer": "Komponist",
@ -1245,9 +1237,9 @@
"HeaderPhotoInfo": "Bildeinformasjon", "HeaderPhotoInfo": "Bildeinformasjon",
"HeaderInstall": "Installer", "HeaderInstall": "Installer",
"LabelSelectVersionToInstall": "Velg versjon for \u00e5 installere:", "LabelSelectVersionToInstall": "Velg versjon for \u00e5 installere:",
"LinkSupporterMembership": "L\u00e6r mer om supporter medlemskap", "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
"MessageSupporterPluginRequiresMembership": "Dette programtillegget vil kreve et aktiv supporter medlemskap etter 14 dagers gratis pr\u00f8veperiode.", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
"MessagePremiumPluginRequiresMembership": "Dette programtillegget vil kreve et aktiv supporter medlemskap for \u00e5 kunne kj\u00f8pe etter 14 dagers gratis pr\u00f8veperiode.", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
"HeaderReviews": "Anmeldelser", "HeaderReviews": "Anmeldelser",
"HeaderDeveloperInfo": "Utvikler informasjon", "HeaderDeveloperInfo": "Utvikler informasjon",
"HeaderRevisionHistory": "Revisjonshistorikk", "HeaderRevisionHistory": "Revisjonshistorikk",
@ -1261,7 +1253,7 @@
"LabelExtractChaptersDuringLibraryScanHelp": "Hvis aktivert, vil kapittel bilder bli hentet ut mens videoer importeres under bibliotek skanning.\nHvis deaktivert, vil de bli hentet ut under planlagte oppgaver for kapittel bilder, som medf\u00f8rer at vanlig bibliotek skanning blir fortere ferdig.", "LabelExtractChaptersDuringLibraryScanHelp": "Hvis aktivert, vil kapittel bilder bli hentet ut mens videoer importeres under bibliotek skanning.\nHvis deaktivert, vil de bli hentet ut under planlagte oppgaver for kapittel bilder, som medf\u00f8rer at vanlig bibliotek skanning blir fortere ferdig.",
"LabelConnectGuestUserName": "Emby brukernavn eller epostadresse:", "LabelConnectGuestUserName": "Emby brukernavn eller epostadresse:",
"LabelConnectUserName": "Emby brukernavn\/epost", "LabelConnectUserName": "Emby brukernavn\/epost",
"LabelConnectUserNameHelp": "Koble denne brukeren til en Emby konto for \u00e5 aktivere enkel p\u00e5loggingstilgang fra alle Emby app uten \u00e5 vite serveren ip-adresse.", "LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
"ButtonLearnMoreAboutEmbyConnect": "L\u00e6r mer om Emby Connect", "ButtonLearnMoreAboutEmbyConnect": "L\u00e6r mer om Emby Connect",
"LabelExternalPlayers": "Eksterne avspillere:", "LabelExternalPlayers": "Eksterne avspillere:",
"LabelExternalPlayersHelp": "Vis knapper for \u00e5 spille av innhold i eksterne avspillere. Dette er bare tilgjengelig p\u00e5 enheter som st\u00f8tter url oppsett, i hovedsak Android og iOS. Med eksterne spillere er det vanligvis ingen st\u00f8tte for fjernkontroll eller gjenopptaking.", "LabelExternalPlayersHelp": "Vis knapper for \u00e5 spille av innhold i eksterne avspillere. Dette er bare tilgjengelig p\u00e5 enheter som st\u00f8tter url oppsett, i hovedsak Android og iOS. Med eksterne spillere er det vanligvis ingen st\u00f8tte for fjernkontroll eller gjenopptaking.",
@ -1292,7 +1284,7 @@
"LabelLimitIntrosToUnwatchedContent": "Bruk kun trailere fra usett innhold", "LabelLimitIntrosToUnwatchedContent": "Bruk kun trailere fra usett innhold",
"LabelEnableIntroParentalControl": "Aktiver smart foreldre kontroll", "LabelEnableIntroParentalControl": "Aktiver smart foreldre kontroll",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
"LabelTheseFeaturesRequireSupporterHelpAndTrailers": "Disse funksjonene krever ett aktivt supporter medlemskap og installasjon av programtillegget the Trailer channel.", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Krever oppsett av lokale trailere.", "OptionTrailersFromMyMoviesHelp": "Krever oppsett av lokale trailere.",
"LabelCustomIntrosPath": "Tilpasset intro sti:", "LabelCustomIntrosPath": "Tilpasset intro sti:",
"LabelCustomIntrosPathHelp": "En mappe med video filer. En video vil bli tilfeldig valgt og avspilt etter trailere.", "LabelCustomIntrosPathHelp": "En mappe med video filer. En video vil bli tilfeldig valgt og avspilt etter trailere.",
@ -1409,8 +1401,8 @@
"OptionAllowVideoPlaybackTranscoding": "Tillat filmavspilling som krever transkoding", "OptionAllowVideoPlaybackTranscoding": "Tillat filmavspilling som krever transkoding",
"OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.", "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"TabStreaming": "Streaming", "TabStreaming": "Streaming",
"LabelRemoteClientBitrateLimit": "Ekstern klient bitrate grense (Mbps):", "LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "En valgfri streaming bitrate grense for alle eksterne klienter. Dette er nyttig for \u00e5 hindre klienter fra \u00e5 be om en h\u00f8yere bitrate enn tilkoblingen kan h\u00e5ndtere.", "LabelRemoteClientBitrateLimitHelp": "An optional streaming bitrate limit for all out of network clients. This is useful to prevent clients from requesting a higher bitrate than your internet connection can handle.",
"LabelConversionCpuCoreLimit": "CPU kjerne grense:", "LabelConversionCpuCoreLimit": "CPU kjerne grense:",
"LabelConversionCpuCoreLimitHelp": "Begrenser antall CPU-kjerner som skal brukes under synk-konvertering.", "LabelConversionCpuCoreLimitHelp": "Begrenser antall CPU-kjerner som skal brukes under synk-konvertering.",
"OptionEnableFullSpeedConversion": "Aktiver full hastighetskonvertering", "OptionEnableFullSpeedConversion": "Aktiver full hastighetskonvertering",
@ -1513,7 +1505,7 @@
"LabelTunerType": "Tuner type:", "LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.", "HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
"AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.", "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
@ -1528,5 +1520,7 @@
"LabelHardwareVideoDecoderHelp": "Available on supported systems only.", "LabelHardwareVideoDecoderHelp": "Available on supported systems only.",
"ButtonServerDashboard": "Server Dashboard", "ButtonServerDashboard": "Server Dashboard",
"HeaderAdmin": "Admin", "HeaderAdmin": "Admin",
"ButtonSignOut": "Sign out" "ButtonSignOut": "Sign out",
"HeaderCameraUpload": "Camera Upload",
"SelectCameraUploadServers": "Upload camera photos to the following servers:"
} }

View file

@ -40,15 +40,15 @@
"ButtonPrivacyPolicy": "Privacybeleid", "ButtonPrivacyPolicy": "Privacybeleid",
"ButtonTermsOfService": "Service voorwaarden", "ButtonTermsOfService": "Service voorwaarden",
"HeaderDeveloperOptions": "Ontwikkelaar Opties", "HeaderDeveloperOptions": "Ontwikkelaar Opties",
"OptionEnableWebClientResponseCache": "Web client reactie caching inschakelen", "OptionEnableWebClientResponseCache": "Webclient reactie caching inschakelen",
"OptionDisableForDevelopmentHelp": "Configureer deze zonodig voor web client ontwikkelingsdoeleinden.", "OptionDisableForDevelopmentHelp": "Configureer deze zo nodig voor webclient ontwikkeling doeleinden.",
"OptionEnableWebClientResourceMinification": "Web client bron verkleining inschakelen", "OptionEnableWebClientResourceMinification": "Webclient bron minimalisering inschakelen",
"LabelDashboardSourcePath": "Web client bron pad:", "LabelDashboardSourcePath": "Webclient bron pad:",
"LabelDashboardSourcePathHelp": "Wanneer u de server draait vanaf de bron, geeft u het pad naar de map dashboard-ui op. Alle web client bestanden worden geladen vanaf deze locatie.", "LabelDashboardSourcePathHelp": "Wanneer u de server draait vanaf de bron, geeft u het pad naar de map dashboard-ui op. Alle webclient bestanden worden geladen vanaf deze locatie.",
"ButtonConvertMedia": "Converteer media", "ButtonConvertMedia": "Converteer media",
"ButtonOrganize": "Organiseren", "ButtonOrganize": "Organiseren",
"LinkedToEmbyConnect": "Gekoppeld aan Emby Connect", "LinkedToEmbyConnect": "Gekoppeld aan Emby Connect",
"HeaderSupporterBenefits": "Voordelen voor Supporters", "HeaderSupporterBenefits": "Emby Premiere Benefits",
"HeaderAddUser": "Gebruiker Toevoegen", "HeaderAddUser": "Gebruiker Toevoegen",
"LabelAddConnectSupporterHelp": "Om een \u200b\u200bgebruiker toe te voegen die niet in de lijst voorkomt, moet u eerst hun account koppelen aan Emby Connect vanuit hun gebruikersprofiel pagina.", "LabelAddConnectSupporterHelp": "Om een \u200b\u200bgebruiker toe te voegen die niet in de lijst voorkomt, moet u eerst hun account koppelen aan Emby Connect vanuit hun gebruikersprofiel pagina.",
"LabelPinCode": "Pincode:", "LabelPinCode": "Pincode:",
@ -82,7 +82,6 @@
"LabelCustomCertificatePath": "Aangepast certificaat pad:", "LabelCustomCertificatePath": "Aangepast certificaat pad:",
"LabelCustomCertificatePathHelp": "Gebruik uw eigen ssl certificaat .pfx bestand. Indien weggelaten zal de server een zelf-gesigneerd certificaat aanmaken.", "LabelCustomCertificatePathHelp": "Gebruik uw eigen ssl certificaat .pfx bestand. Indien weggelaten zal de server een zelf-gesigneerd certificaat aanmaken.",
"TitleNotifications": "Meldingen", "TitleNotifications": "Meldingen",
"ButtonDonateWithPayPal": "Doneer met PayPal",
"OptionDetectArchiveFilesAsMedia": "Herken archief bestanden als media", "OptionDetectArchiveFilesAsMedia": "Herken archief bestanden als media",
"OptionDetectArchiveFilesAsMediaHelp": "Indien ingeschakeld zullen bestanden met .rar en .zip extensies herkend worden als media bestanden.", "OptionDetectArchiveFilesAsMediaHelp": "Indien ingeschakeld zullen bestanden met .rar en .zip extensies herkend worden als media bestanden.",
"LabelEnterConnectUserName": "Gebruikersnaam of email:", "LabelEnterConnectUserName": "Gebruikersnaam of email:",
@ -289,8 +288,9 @@
"TitleSupport": "Ondersteuning", "TitleSupport": "Ondersteuning",
"TabLog": "Logboek", "TabLog": "Logboek",
"TabAbout": "Over", "TabAbout": "Over",
"TabSupporterKey": "Supporter Sleutel", "TabSupporterKey": "Emby Premiere Key",
"TabBecomeSupporter": "Word Supporter", "TabBecomeSupporter": "Get Emby Premiere",
"TabEmbyPremiere": "Emby Premiere",
"ProjectHasCommunity": "Emby heeft een bloeiende gemeenschap van gebruikers en medewerkers.", "ProjectHasCommunity": "Emby heeft een bloeiende gemeenschap van gebruikers en medewerkers.",
"CheckoutKnowledgeBase": "Bekijk onze knowledge base om u te helpen het meeste uit Emby halen.", "CheckoutKnowledgeBase": "Bekijk onze knowledge base om u te helpen het meeste uit Emby halen.",
"SearchKnowledgeBase": "Zoek in de Kennisbank", "SearchKnowledgeBase": "Zoek in de Kennisbank",
@ -350,7 +350,7 @@
"LabelImagesByNamePath": "Afbeeldingen op naam pad:", "LabelImagesByNamePath": "Afbeeldingen op naam pad:",
"LabelImagesByNamePathHelp": "Geef een locatie op voor gedownloade afbeeldingen van acteurs, genre en studio.", "LabelImagesByNamePathHelp": "Geef een locatie op voor gedownloade afbeeldingen van acteurs, genre en studio.",
"LabelMetadataPath": "Metadata pad:", "LabelMetadataPath": "Metadata pad:",
"LabelMetadataPathHelp": "Geef een aangepaste locatie op voor gedownloade afbeeldingen en metadata, indien niet opgeslagen in mediamappen.", "LabelMetadataPathHelp": "Geef een aangepaste locatie op voor gedownloade afbeeldingen en metadata.",
"LabelTranscodingTempPath": "Tijdelijk transcodeer pad:", "LabelTranscodingTempPath": "Tijdelijk transcodeer pad:",
"LabelTranscodingTempPathHelp": "Deze map bevat werkbestanden die worden gebruikt door de transcoder. Geef een eigen locatie op of laat het leeg om de standaardlocatie te gebruiken.", "LabelTranscodingTempPathHelp": "Deze map bevat werkbestanden die worden gebruikt door de transcoder. Geef een eigen locatie op of laat het leeg om de standaardlocatie te gebruiken.",
"TabBasics": "Basis", "TabBasics": "Basis",
@ -371,7 +371,7 @@
"LabelAutomaticUpdatesTvdbHelp": "Bij inschakelen zullen nieuwe afbeeldingen die toegevoegd worden op TheTVDB.com automatisch gedownload worden. Bestaande afbeeldingen worden niet overschreven. Hierdoor zal het scannen van de bibliotheek langer duren en zal er meer diskactiviteit zijn.", "LabelAutomaticUpdatesTvdbHelp": "Bij inschakelen zullen nieuwe afbeeldingen die toegevoegd worden op TheTVDB.com automatisch gedownload worden. Bestaande afbeeldingen worden niet overschreven. Hierdoor zal het scannen van de bibliotheek langer duren en zal er meer diskactiviteit zijn.",
"LabelFanartApiKey": "Persoonlijke api sleutel:", "LabelFanartApiKey": "Persoonlijke api sleutel:",
"LabelFanartApiKeyHelp": "Verzoeken om fanart zonder een persoonlijke API sleutel geven resultaten terug die meer dan 7 dagen geleden goedgekeurd zijn. Een persoonlijke API sleutel brengt dat terug tot 48 uur en als u ook een fanart VIP lid bent wordt dit tot 10 minuten teruggebracht.", "LabelFanartApiKeyHelp": "Verzoeken om fanart zonder een persoonlijke API sleutel geven resultaten terug die meer dan 7 dagen geleden goedgekeurd zijn. Een persoonlijke API sleutel brengt dat terug tot 48 uur en als u ook een fanart VIP lid bent wordt dit tot 10 minuten teruggebracht.",
"ExtractChapterImagesHelp": "Uitpakken van hoofdstuk afbeeldingen biedt clients grafische scene selectie menu's. Het proces kan langzaam en processor intensief zijn en kan enkele gigabytes aan vrije ruimte vereisen. Het draait wanneer video's worden gevonden en als een voor 's nachts geplande taak. Het schema kan bij de geplande taken worden aangepast. Het wordt niet aanbevolen om deze taak tijdens piekuren te draaien.", "ExtractChapterImagesHelp": "Uitpakken van hoofdstuk afbeeldingen biedt clients grafische scene selectie menu's. Het proces kan langzaam en processor intensief zijn en kan enkele gigabytes aan vrije ruimte vereisen. Het draait wanneer video's worden gevonden en als een nachtelijke geplande taak. Het schema kan bij de geplande taken worden aangepast. Het wordt niet aanbevolen om deze taak tijdens piekuren te draaien.",
"LabelMetadataDownloadLanguage": "Voorkeurs taal:", "LabelMetadataDownloadLanguage": "Voorkeurs taal:",
"ButtonAutoScroll": "Auto-scroll", "ButtonAutoScroll": "Auto-scroll",
"LabelImageSavingConvention": "Afbeelding opslag conventie:", "LabelImageSavingConvention": "Afbeelding opslag conventie:",
@ -493,13 +493,13 @@
"ButtonPlayTrailer": "Trailer", "ButtonPlayTrailer": "Trailer",
"LabelMissing": "Ontbreekt", "LabelMissing": "Ontbreekt",
"LabelOffline": "Offline", "LabelOffline": "Offline",
"PathSubstitutionHelp": "Pad vervangen worden gebruikt voor het in kaart brengen van een pad op de server naar een pad dat de client in staat stelt om toegang te krijgen. Doordat de client directe toegang tot de media op de server heeft is deze in staat om ze direct af te spelen via het netwerk. Daardoor wordt het gebruik van server resources om te streamen en te transcoderen vermeden.", "PathSubstitutionHelp": "Pad vervangingen worden gebruikt om een pad op de server te vertalen naar een pad dat de client in staat stelt om toegang te krijgen. Doordat de client directe toegang tot de media op de server heeft is deze in staat om ze direct af te spelen via het netwerk. Daardoor wordt het gebruik van server resources om te streamen en te transcoderen vermeden.",
"HeaderFrom": "Van", "HeaderFrom": "Van",
"HeaderTo": "Naar", "HeaderTo": "Naar",
"LabelFrom": "Van:", "LabelFrom": "Van:",
"LabelFromHelp": "Bijvoorbeeld: D:\\Movies (op de server)", "LabelFromHelp": "Bijvoorbeeld: D:\\Movies (op de server)",
"LabelTo": "Naar:", "LabelTo": "Naar:",
"LabelToHelp": "Voorbeeld: \\\\MijnServer\\Movies (een pad waar de client toegang toe heeft)", "LabelToHelp": "Voorbeeld: \\\\MijnServer\\Movies (pad waar de client toegang toe heeft)",
"ButtonAddPathSubstitution": "Vervanging toevoegen", "ButtonAddPathSubstitution": "Vervanging toevoegen",
"OptionSpecialEpisode": "Specials", "OptionSpecialEpisode": "Specials",
"OptionMissingEpisode": "Ontbrekende Afleveringen", "OptionMissingEpisode": "Ontbrekende Afleveringen",
@ -591,9 +591,9 @@
"LabelEndingEpisodeNumberHelp": "Alleen vereist voor bestanden met meerdere afleveringen", "LabelEndingEpisodeNumberHelp": "Alleen vereist voor bestanden met meerdere afleveringen",
"HeaderSupportTheTeam": "Ondersteun het Emby Team", "HeaderSupportTheTeam": "Ondersteun het Emby Team",
"LabelSupportAmount": "Bedrag (USD)", "LabelSupportAmount": "Bedrag (USD)",
"HeaderSupportTheTeamHelp": "Door te doneren draagt u bij aan de verdere ontwikkeling van dit project. Een deel van alle donaties zal worden bijgedragen aan de andere gratis tools waarvan we afhankelijk zijn.", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
"ButtonEnterSupporterKey": "Voer supporter sleutel in", "ButtonEnterSupporterKey": "Enter Emby Premiere key",
"DonationNextStep": "Eenmaal voltooid gaat u terug en voert u de supporter sleutel in die u per e-mail zult ontvangen.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
"AutoOrganizeHelp": "Automatisch organiseren monitort de download mappen op nieuwe bestanden en verplaatst ze naar uw mediamappen.", "AutoOrganizeHelp": "Automatisch organiseren monitort de download mappen op nieuwe bestanden en verplaatst ze naar uw mediamappen.",
"AutoOrganizeTvHelp": "TV bestanden Organiseren voegt alleen afleveringen toe aan de bestaande series. Het zal geen nieuwe serie mappen aanmaken.", "AutoOrganizeTvHelp": "TV bestanden Organiseren voegt alleen afleveringen toe aan de bestaande series. Het zal geen nieuwe serie mappen aanmaken.",
"OptionEnableEpisodeOrganization": "Nieuwe aflevering organisatie inschakelen", "OptionEnableEpisodeOrganization": "Nieuwe aflevering organisatie inschakelen",
@ -639,20 +639,20 @@
"LabelDownMixAudioScale": "Geluidsversterking verbeteren als er gemixt wordt:", "LabelDownMixAudioScale": "Geluidsversterking verbeteren als er gemixt wordt:",
"LabelDownMixAudioScaleHelp": "Geluid versterken als er gemixt wordt. Zet op 1 om oorspronkelijke volume te behouden.", "LabelDownMixAudioScaleHelp": "Geluid versterken als er gemixt wordt. Zet op 1 om oorspronkelijke volume te behouden.",
"ButtonLinkKeys": "Verplaats sleutel", "ButtonLinkKeys": "Verplaats sleutel",
"LabelOldSupporterKey": "Oude supporter sleutel", "LabelOldSupporterKey": "Old Emby Premiere key",
"LabelNewSupporterKey": "Nieuwe supporter sleutel", "LabelNewSupporterKey": "New Emby Premiere key",
"HeaderMultipleKeyLinking": "Verplaats naar nieuwe sleutel", "HeaderMultipleKeyLinking": "Verplaats naar nieuwe sleutel",
"MultipleKeyLinkingHelp": "Als u een nieuwe supportersleutel ontvangen heeft, gebruik dan dit formulier om de registratie van de oude sleutel over te zetten naar de nieuwe sleutel.", "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
"LabelCurrentEmailAddress": "Huidige e-mailadres", "LabelCurrentEmailAddress": "Huidige e-mailadres",
"LabelCurrentEmailAddressHelp": "De huidige e-mailadres waar uw nieuwe sleutel naar is verzonden.", "LabelCurrentEmailAddressHelp": "De huidige e-mailadres waar uw nieuwe sleutel naar is verzonden.",
"HeaderForgotKey": "Sleutel vergeten", "HeaderForgotKey": "Sleutel vergeten",
"LabelEmailAddress": "E-mailadres", "LabelEmailAddress": "E-mailadres",
"LabelSupporterEmailAddress": "Het e-mailadres dat is gebruikt om de sleutel te kopen.", "LabelSupporterEmailAddress": "Het e-mailadres dat is gebruikt om de sleutel te kopen.",
"ButtonRetrieveKey": "Ophalen Sleutel", "ButtonRetrieveKey": "Ophalen Sleutel",
"LabelSupporterKey": "Supporter Sleutel (plakken uit e-mail)", "LabelSupporterKey": "Emby Premiere key (paste from email):",
"LabelSupporterKeyHelp": "Voer uw supporter sleutel in om te genieten van de voordelen die de gemeenschap voor Emby heeft ontwikkeld.", "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
"MessageInvalidKey": "Supporters sleutel ontbreekt of is ongeldig.", "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
"ErrorMessageInvalidKey": "Om premium inhoud te registreren moet u ook Emby Supporter zijn. Doneer alstublieft en ondersteun daarmee de voortdurende ontwikkeling van het kernproduct. Bedankt.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
"HeaderDisplaySettings": "Weergave instellingen", "HeaderDisplaySettings": "Weergave instellingen",
"TabPlayTo": "Afspelen met", "TabPlayTo": "Afspelen met",
"LabelEnableDlnaServer": "DLNA server inschakelen", "LabelEnableDlnaServer": "DLNA server inschakelen",
@ -912,7 +912,7 @@
"OptionCommunityMostWatchedSort": "Meest bekeken", "OptionCommunityMostWatchedSort": "Meest bekeken",
"TabNextUp": "Volgend", "TabNextUp": "Volgend",
"PlaceholderUsername": "Gebruikersnaam", "PlaceholderUsername": "Gebruikersnaam",
"HeaderBecomeProjectSupporter": "Word Emby Supporter", "HeaderBecomeProjectSupporter": "Get Emby Premiere",
"MessageNoMovieSuggestionsAvailable": "Er zijn momenteel geen film suggesties beschikbaar. Begin met het bekijken en waardeer uw films, kom daarna terug om uw aanbevelingen te bekijken.", "MessageNoMovieSuggestionsAvailable": "Er zijn momenteel geen film suggesties beschikbaar. Begin met het bekijken en waardeer uw films, kom daarna terug om uw aanbevelingen te bekijken.",
"MessageNoCollectionsAvailable": "Collecties maken het u mogelijk om Films, Series, Albums, Boeken en Games te groeperen. Klik op de + knop om Collecties aan te maken.", "MessageNoCollectionsAvailable": "Collecties maken het u mogelijk om Films, Series, Albums, Boeken en Games te groeperen. Klik op de + knop om Collecties aan te maken.",
"MessageNoPlaylistsAvailable": "Met afspeellijsten kunt u een lijst maken waarvan de items achter elkaar afgespeeld worden. Om een item toe te voegen klikt u met rechts of tik en houd het vast om het te selecteren, klik vervolgens op Toevoegen aan afspeellijst.", "MessageNoPlaylistsAvailable": "Met afspeellijsten kunt u een lijst maken waarvan de items achter elkaar afgespeeld worden. Om een item toe te voegen klikt u met rechts of tik en houd het vast om het te selecteren, klik vervolgens op Toevoegen aan afspeellijst.",
@ -995,15 +995,13 @@
"LabelDisplayCollectionsViewHelp": "Hiermee wordt een aparte weergave gemaakt waarin collecties worden weergegeven die u hebt aangemaakt of toegang toe hebt. Klik rechts op een film of druk en houd vast en kies 'Toevoegen aan Collectie'. ", "LabelDisplayCollectionsViewHelp": "Hiermee wordt een aparte weergave gemaakt waarin collecties worden weergegeven die u hebt aangemaakt of toegang toe hebt. Klik rechts op een film of druk en houd vast en kies 'Toevoegen aan Collectie'. ",
"LabelKodiMetadataEnableExtraThumbs": "Kopieer extrafanart naar extrathumbs", "LabelKodiMetadataEnableExtraThumbs": "Kopieer extrafanart naar extrathumbs",
"LabelKodiMetadataEnableExtraThumbsHelp": "Gedownloade afbeeldingen kunnen direct in extrafanart en extrathumbs opgeslagen worden voor maximale Kodi skin compatibiliteit.", "LabelKodiMetadataEnableExtraThumbsHelp": "Gedownloade afbeeldingen kunnen direct in extrafanart en extrathumbs opgeslagen worden voor maximale Kodi skin compatibiliteit.",
"TabServices": "Meta Diensten", "TabServices": "Diensten",
"TabLogs": "Logboeken", "TabLogs": "Logboeken",
"HeaderServerLogFiles": "Server logboek bestanden:", "HeaderServerLogFiles": "Server logboek bestanden:",
"TabBranding": "Huisstijl", "TabBranding": "Huisstijl",
"HeaderBrandingHelp": "Pas het uiterlijk van Emby aan, aan de behoeften van uw groep of organisatie.", "HeaderBrandingHelp": "Pas het uiterlijk van Emby aan, aan de behoeften van uw groep of organisatie.",
"LabelLoginDisclaimer": "Aanmeld vrijwaring:", "LabelLoginDisclaimer": "Aanmeld vrijwaring:",
"LabelLoginDisclaimerHelp": "Dit wordt onderaan de login pagina weergegeven.", "LabelLoginDisclaimerHelp": "Dit wordt onderaan de login pagina weergegeven.",
"LabelAutomaticallyDonate": "Doneer dit bedrag automatisch elke maand",
"LabelAutomaticallyDonateHelp": "U kunt dit via uw PayPal account op elk moment annuleren.",
"OptionList": "Lijst", "OptionList": "Lijst",
"TabDashboard": "Dashboard", "TabDashboard": "Dashboard",
"TitleServer": "Server", "TitleServer": "Server",
@ -1220,18 +1218,12 @@
"HeaderMetadataSettings": "Metagegevens instellingen", "HeaderMetadataSettings": "Metagegevens instellingen",
"LabelLockItemToPreventChanges": "Blokkeer dit item tegen wijzigingen", "LabelLockItemToPreventChanges": "Blokkeer dit item tegen wijzigingen",
"MessageLeaveEmptyToInherit": "Leeg laten om instellingen van bovenliggend item of de algemene waarde over te nemen.", "MessageLeaveEmptyToInherit": "Leeg laten om instellingen van bovenliggend item of de algemene waarde over te nemen.",
"TabDonate": "Doneer",
"HeaderDonationType": "Donatie soort:", "HeaderDonationType": "Donatie soort:",
"OptionMakeOneTimeDonation": "Doe een aparte donatie", "OptionMakeOneTimeDonation": "Doe een aparte donatie",
"OptionOneTimeDescription": "Dit is een extra donatie voor het team om te laten zien dat u hen steunt. Het geeft geen extra voordelen en geeft u geen supporter sleutel.",
"OptionLifeTimeSupporterMembership": "Levenslang supporter lidmaatschap",
"OptionYearlySupporterMembership": "Jaarlijks supporter lidmaatschap",
"OptionMonthlySupporterMembership": "Maandelijks supporter lidmaatschap",
"OptionNoTrailer": "Geen trailer", "OptionNoTrailer": "Geen trailer",
"OptionNoThemeSong": "Geen thema muziek", "OptionNoThemeSong": "Geen thema muziek",
"OptionNoThemeVideo": "Geen thema film", "OptionNoThemeVideo": "Geen thema film",
"LabelOneTimeDonationAmount": "Donatie bedrag:", "LabelOneTimeDonationAmount": "Donatie bedrag:",
"ButtonDonate": "Doneren",
"ButtonPurchase": "Aankoop", "ButtonPurchase": "Aankoop",
"OptionActor": "Acteur", "OptionActor": "Acteur",
"OptionComposer": "Componist", "OptionComposer": "Componist",
@ -1245,9 +1237,9 @@
"HeaderPhotoInfo": "Foto informatie", "HeaderPhotoInfo": "Foto informatie",
"HeaderInstall": "Installeer", "HeaderInstall": "Installeer",
"LabelSelectVersionToInstall": "Selecteer de versie om te installeren:", "LabelSelectVersionToInstall": "Selecteer de versie om te installeren:",
"LinkSupporterMembership": "Meer informatie over het supporter lidmaatschap", "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
"MessageSupporterPluginRequiresMembership": "Deze plugin vereist een actief supporter lidmaatschap na de gratis proefperiode van 14 dagen.", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
"MessagePremiumPluginRequiresMembership": "Deze plugin vereist een actief supporter lidmaatschap om deze aan te kunnen schaffen na de gratis proefperiode van 14 dagen.", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
"HeaderReviews": "Reviews", "HeaderReviews": "Reviews",
"HeaderDeveloperInfo": "Informatie ontwikkelaar", "HeaderDeveloperInfo": "Informatie ontwikkelaar",
"HeaderRevisionHistory": "Versie geschiedenis", "HeaderRevisionHistory": "Versie geschiedenis",
@ -1261,7 +1253,7 @@
"LabelExtractChaptersDuringLibraryScanHelp": "Wanneer ingeschakeld worden hoofdstuk afbeeldingen uitgepakt wanneer video's worden ge\u00efmporteerd tijdens het scannen van de bibliotheek. Wanneer uitgeschakeld worden de hoofdstuk afbeeldingen uitgepakt tijdens de geplande taak \"Hoofdstukken uitpakken\", waardoor de standaard bibliotheek scan sneller voltooid is.", "LabelExtractChaptersDuringLibraryScanHelp": "Wanneer ingeschakeld worden hoofdstuk afbeeldingen uitgepakt wanneer video's worden ge\u00efmporteerd tijdens het scannen van de bibliotheek. Wanneer uitgeschakeld worden de hoofdstuk afbeeldingen uitgepakt tijdens de geplande taak \"Hoofdstukken uitpakken\", waardoor de standaard bibliotheek scan sneller voltooid is.",
"LabelConnectGuestUserName": "Hun Emby gebruikersnaam of email adres:", "LabelConnectGuestUserName": "Hun Emby gebruikersnaam of email adres:",
"LabelConnectUserName": "Emby gebruikersnaam\/email:", "LabelConnectUserName": "Emby gebruikersnaam\/email:",
"LabelConnectUserNameHelp": "Verbind deze gebruiker aan een Emby account om eenvoudig aanmelden vanaf elke Emby app toe te staan zonder dat u het IP-adres hoeft te weten.", "LabelConnectUserNameHelp": "Verbind deze locale gebruiker aan een online Emby account om eenvoudig aanmelden vanaf elke Emby app toe te staan zonder dat u het IP-adres hoeft te weten.",
"ButtonLearnMoreAboutEmbyConnect": "Leer meer over Emby Connect", "ButtonLearnMoreAboutEmbyConnect": "Leer meer over Emby Connect",
"LabelExternalPlayers": "Externe spelers:", "LabelExternalPlayers": "Externe spelers:",
"LabelExternalPlayersHelp": "Toon knoppen om inhoud in externe spelers of te spelen. Dit is alleen mogelijk op apparaten die 'url schemes' ondersteunen, meest Android en iOS. Met externe spelers is er over het algemeen geen ondersteuning voor afstandsbediening of hervatten.", "LabelExternalPlayersHelp": "Toon knoppen om inhoud in externe spelers of te spelen. Dit is alleen mogelijk op apparaten die 'url schemes' ondersteunen, meest Android en iOS. Met externe spelers is er over het algemeen geen ondersteuning voor afstandsbediening of hervatten.",
@ -1292,7 +1284,7 @@
"LabelLimitIntrosToUnwatchedContent": "Gebruik alleen trailers van films die nog niet gekeken zijn", "LabelLimitIntrosToUnwatchedContent": "Gebruik alleen trailers van films die nog niet gekeken zijn",
"LabelEnableIntroParentalControl": "Schakel slimme ouderlijke toezicht in", "LabelEnableIntroParentalControl": "Schakel slimme ouderlijke toezicht in",
"LabelEnableIntroParentalControlHelp": "Trailers worden alleen geselecteerd als de ouderlijke toezicht lager of gelijk is aan de film die gekeken wordt.", "LabelEnableIntroParentalControlHelp": "Trailers worden alleen geselecteerd als de ouderlijke toezicht lager of gelijk is aan de film die gekeken wordt.",
"LabelTheseFeaturesRequireSupporterHelpAndTrailers": "Deze functies vereisen een actieve ondersteuners lidmaatschap en installatie van de Trailer-kanaal plugin.", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Vereist instellingen voor lokale trailers.", "OptionTrailersFromMyMoviesHelp": "Vereist instellingen voor lokale trailers.",
"LabelCustomIntrosPath": "Eigen intro's pad:", "LabelCustomIntrosPath": "Eigen intro's pad:",
"LabelCustomIntrosPathHelp": "Een map met video bestanden. na de trailers wordt er een willekeurige video afgespeeld.", "LabelCustomIntrosPathHelp": "Een map met video bestanden. na de trailers wordt er een willekeurige video afgespeeld.",
@ -1409,8 +1401,8 @@
"OptionAllowVideoPlaybackTranscoding": "Afspelen van video via transcoding toestaan", "OptionAllowVideoPlaybackTranscoding": "Afspelen van video via transcoding toestaan",
"OptionAllowMediaPlaybackTranscodingHelp": "Gebruikers zullen een bericht ontvangen als afspelen niet is toegestaan op basis van het beleid", "OptionAllowMediaPlaybackTranscodingHelp": "Gebruikers zullen een bericht ontvangen als afspelen niet is toegestaan op basis van het beleid",
"TabStreaming": "Streaming", "TabStreaming": "Streaming",
"LabelRemoteClientBitrateLimit": "Client bitrate limiet (Mbps):", "LabelRemoteClientBitrateLimit": "Internet streaming bitrate limiet (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "Een optionele streaming bitrate limiet voor alle clients. Dit wordt gebruikt om te voorkomen dat clients een hogere bitrate aanvragen dan de internet connectie kan leveren.", "LabelRemoteClientBitrateLimitHelp": "Een optionele streaming bitrate limiet voor alle netwerk-clients. Dit wordt gebruikt om te voorkomen dat clients een hogere bitrate aanvragen dan uw internet verbinding aankan.",
"LabelConversionCpuCoreLimit": "CPU core limiet:", "LabelConversionCpuCoreLimit": "CPU core limiet:",
"LabelConversionCpuCoreLimitHelp": "Limiteer het aantal CPU cores dat gebruikt mag worden bij een omzetting om te synchroniseren.", "LabelConversionCpuCoreLimitHelp": "Limiteer het aantal CPU cores dat gebruikt mag worden bij een omzetting om te synchroniseren.",
"OptionEnableFullSpeedConversion": "Inschakelen conversie op hoge snelheid", "OptionEnableFullSpeedConversion": "Inschakelen conversie op hoge snelheid",
@ -1513,7 +1505,7 @@
"LabelTunerType": "Soort Tuner:", "LabelTunerType": "Soort Tuner:",
"HelpMoreTunersCanBeAdded": "Extra tuners kunnen later in de Live TV sectie worden toegevoegd.", "HelpMoreTunersCanBeAdded": "Extra tuners kunnen later in de Live TV sectie worden toegevoegd.",
"AdditionalLiveTvProvidersCanBeInstalledLater": "Andere Live TV aanbieders kunnen later in de LIVE TV sectie toegevoegd worden.", "AdditionalLiveTvProvidersCanBeInstalledLater": "Andere Live TV aanbieders kunnen later in de LIVE TV sectie toegevoegd worden.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "Er is een actief Emby Supporter lidmaatschap benodigd om een automatische serie opname aan te maken.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "TV Gids configureren", "HeaderSetupTVGuide": "TV Gids configureren",
"LabelDataProvider": "Gegevensleverancier:", "LabelDataProvider": "Gegevensleverancier:",
"OptionSendRecordingsToAutoOrganize": "Schakel Automatisch Organiseren in voor nieuwe opnamen", "OptionSendRecordingsToAutoOrganize": "Schakel Automatisch Organiseren in voor nieuwe opnamen",
@ -1525,8 +1517,10 @@
"OptionEnableVideoFrameAnalysisHelp": "Extraheer informatie over video die gebruikt kan worden om transcodering zo effici\u00ebnt mogelijk te maken. Dit zal leiden tot langer durende bibliotheek scans .", "OptionEnableVideoFrameAnalysisHelp": "Extraheer informatie over video die gebruikt kan worden om transcodering zo effici\u00ebnt mogelijk te maken. Dit zal leiden tot langer durende bibliotheek scans .",
"LabelVideoFrameAnalysisLimit": "Beperk frame voor frame analyse voor video's kleiner dan:", "LabelVideoFrameAnalysisLimit": "Beperk frame voor frame analyse voor video's kleiner dan:",
"LabelHardwareVideoDecoder": "Hardware video decoder:", "LabelHardwareVideoDecoder": "Hardware video decoder:",
"LabelHardwareVideoDecoderHelp": "Available on supported systems only.", "LabelHardwareVideoDecoderHelp": "Alleen beschikbaar op ondersteunde systemen.",
"ButtonServerDashboard": "Server Dashboard", "ButtonServerDashboard": "Server Dashboard",
"HeaderAdmin": "Beheerder", "HeaderAdmin": "Beheerder",
"ButtonSignOut": "Sign out" "ButtonSignOut": "Afmelden",
"HeaderCameraUpload": "Camera Upload",
"SelectCameraUploadServers": "Upload camera foto's naar de volgende servers:"
} }

View file

@ -48,7 +48,7 @@
"ButtonConvertMedia": "Convert media", "ButtonConvertMedia": "Convert media",
"ButtonOrganize": "Organize", "ButtonOrganize": "Organize",
"LinkedToEmbyConnect": "Linked to Emby Connect", "LinkedToEmbyConnect": "Linked to Emby Connect",
"HeaderSupporterBenefits": "Supporter Benefits", "HeaderSupporterBenefits": "Emby Premiere Benefits",
"HeaderAddUser": "Add User", "HeaderAddUser": "Add User",
"LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
"LabelPinCode": "Pin code:", "LabelPinCode": "Pin code:",
@ -82,7 +82,6 @@
"LabelCustomCertificatePath": "Custom certificate path:", "LabelCustomCertificatePath": "Custom certificate path:",
"LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.", "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ButtonDonateWithPayPal": "Donate with PayPal",
"OptionDetectArchiveFilesAsMedia": "Detect archive files as media", "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
"OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.", "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
"LabelEnterConnectUserName": "Username or email:", "LabelEnterConnectUserName": "Username or email:",
@ -289,8 +288,9 @@
"TitleSupport": "Wesprzyj", "TitleSupport": "Wesprzyj",
"TabLog": "Log", "TabLog": "Log",
"TabAbout": "A propos", "TabAbout": "A propos",
"TabSupporterKey": "Supporter Key", "TabSupporterKey": "Emby Premiere Key",
"TabBecomeSupporter": "Become a Supporter", "TabBecomeSupporter": "Get Emby Premiere",
"TabEmbyPremiere": "Emby Premiere",
"ProjectHasCommunity": "Emby has a thriving community of users and contributors.", "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.", "CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "Szukaj w Bazy Wiedzy", "SearchKnowledgeBase": "Szukaj w Bazy Wiedzy",
@ -591,9 +591,9 @@
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"LabelSupportAmount": "Amount (USD)", "LabelSupportAmount": "Amount (USD)",
"HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by donating. A portion of all donations will be contributed to other free tools we depend on.", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
"ButtonEnterSupporterKey": "Enter supporter key", "ButtonEnterSupporterKey": "Enter Emby Premiere key",
"DonationNextStep": "Once complete, please return and enter your supporter key, which you will receive by email.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
"AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.",
"AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.",
"OptionEnableEpisodeOrganization": "Enable new episode organization", "OptionEnableEpisodeOrganization": "Enable new episode organization",
@ -639,20 +639,20 @@
"LabelDownMixAudioScale": "Audio boost when downmixing:", "LabelDownMixAudioScale": "Audio boost when downmixing:",
"LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.",
"ButtonLinkKeys": "Transfer Key", "ButtonLinkKeys": "Transfer Key",
"LabelOldSupporterKey": "Old supporter key", "LabelOldSupporterKey": "Old Emby Premiere key",
"LabelNewSupporterKey": "New supporter key", "LabelNewSupporterKey": "New Emby Premiere key",
"HeaderMultipleKeyLinking": "Transfer to New Key", "HeaderMultipleKeyLinking": "Transfer to New Key",
"MultipleKeyLinkingHelp": "If you received a new supporter key, use this form to transfer the old key's registrations to your new one.", "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
"LabelCurrentEmailAddress": "Current email address", "LabelCurrentEmailAddress": "Current email address",
"LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.", "LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.",
"HeaderForgotKey": "Forgot Key", "HeaderForgotKey": "Forgot Key",
"LabelEmailAddress": "Email address", "LabelEmailAddress": "Email address",
"LabelSupporterEmailAddress": "The email address that was used to purchase the key.", "LabelSupporterEmailAddress": "The email address that was used to purchase the key.",
"ButtonRetrieveKey": "Retrieve Key", "ButtonRetrieveKey": "Retrieve Key",
"LabelSupporterKey": "Supporter Key (paste from email)", "LabelSupporterKey": "Emby Premiere key (paste from email):",
"LabelSupporterKeyHelp": "Enter your supporter key to start enjoying additional benefits the community has developed for Emby.", "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
"MessageInvalidKey": "Supporter key is missing or invalid.", "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
"ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also be an Emby Supporter. Please donate and support the continued development of the core product. Thank you.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
"HeaderDisplaySettings": "Display Settings", "HeaderDisplaySettings": "Display Settings",
"TabPlayTo": "Play To", "TabPlayTo": "Play To",
"LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServer": "Enable Dlna server",
@ -912,7 +912,7 @@
"OptionCommunityMostWatchedSort": "Most Watched", "OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up", "TabNextUp": "Next Up",
"PlaceholderUsername": "Username", "PlaceholderUsername": "Username",
"HeaderBecomeProjectSupporter": "Become an Emby Supporter", "HeaderBecomeProjectSupporter": "Get Emby Premiere",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
"MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
@ -1002,8 +1002,6 @@
"HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.",
"LabelLoginDisclaimer": "Login disclaimer:", "LabelLoginDisclaimer": "Login disclaimer:",
"LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.",
"LabelAutomaticallyDonate": "Automatically donate this amount every month",
"LabelAutomaticallyDonateHelp": "You can cancel at any time via your PayPal account.",
"OptionList": "List", "OptionList": "List",
"TabDashboard": "Dashboard", "TabDashboard": "Dashboard",
"TitleServer": "Server", "TitleServer": "Server",
@ -1220,18 +1218,12 @@
"HeaderMetadataSettings": "Metadata Settings", "HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes", "LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
"TabDonate": "Donate",
"HeaderDonationType": "Donation type:", "HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation", "OptionMakeOneTimeDonation": "Make a separate donation",
"OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
"OptionYearlySupporterMembership": "Yearly supporter membership",
"OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer", "OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song", "OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video", "OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:", "LabelOneTimeDonationAmount": "Donation amount:",
"ButtonDonate": "Donate",
"ButtonPurchase": "Purchase", "ButtonPurchase": "Purchase",
"OptionActor": "Actor", "OptionActor": "Actor",
"OptionComposer": "Composer", "OptionComposer": "Composer",
@ -1245,9 +1237,9 @@
"HeaderPhotoInfo": "Photo Info", "HeaderPhotoInfo": "Photo Info",
"HeaderInstall": "Install", "HeaderInstall": "Install",
"LabelSelectVersionToInstall": "Select version to install:", "LabelSelectVersionToInstall": "Select version to install:",
"LinkSupporterMembership": "Learn about the Supporter Membership", "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
"MessageSupporterPluginRequiresMembership": "This plugin will require an active supporter membership after the 14 day free trial.", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
"MessagePremiumPluginRequiresMembership": "This plugin will require an active supporter membership in order to purchase after the 14 day free trial.", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
"HeaderReviews": "Reviews", "HeaderReviews": "Reviews",
"HeaderDeveloperInfo": "Developer Info", "HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History", "HeaderRevisionHistory": "Revision History",
@ -1292,7 +1284,7 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content", "LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control", "LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
"LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:", "LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
@ -1513,7 +1505,7 @@
"LabelTunerType": "Tuner type:", "LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.", "HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
"AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.", "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
@ -1528,5 +1520,7 @@
"LabelHardwareVideoDecoderHelp": "Available on supported systems only.", "LabelHardwareVideoDecoderHelp": "Available on supported systems only.",
"ButtonServerDashboard": "Server Dashboard", "ButtonServerDashboard": "Server Dashboard",
"HeaderAdmin": "Admin", "HeaderAdmin": "Admin",
"ButtonSignOut": "Sign out" "ButtonSignOut": "Sign out",
"HeaderCameraUpload": "Camera Upload",
"SelectCameraUploadServers": "Upload camera photos to the following servers:"
} }

View file

@ -48,7 +48,7 @@
"ButtonConvertMedia": "Converter m\u00eddia", "ButtonConvertMedia": "Converter m\u00eddia",
"ButtonOrganize": "Organizar", "ButtonOrganize": "Organizar",
"LinkedToEmbyConnect": "Associado ao Emby Connect", "LinkedToEmbyConnect": "Associado ao Emby Connect",
"HeaderSupporterBenefits": "Benef\u00edcios do Colaborador", "HeaderSupporterBenefits": "Emby Premiere Benefits",
"HeaderAddUser": "Adicionar Usu\u00e1rio", "HeaderAddUser": "Adicionar Usu\u00e1rio",
"LabelAddConnectSupporterHelp": "Para adicionar um usu\u00e1rio que n\u00e3o esteja listado, voc\u00ea precisar\u00e1 associar sua conta ao Emby Connect na sua p\u00e1gina de perfil.", "LabelAddConnectSupporterHelp": "Para adicionar um usu\u00e1rio que n\u00e3o esteja listado, voc\u00ea precisar\u00e1 associar sua conta ao Emby Connect na sua p\u00e1gina de perfil.",
"LabelPinCode": "C\u00f3digo Pin:", "LabelPinCode": "C\u00f3digo Pin:",
@ -82,7 +82,6 @@
"LabelCustomCertificatePath": "Caminho do certificado personalizado:", "LabelCustomCertificatePath": "Caminho do certificado personalizado:",
"LabelCustomCertificatePathHelp": "Forne\u00e7a seu pr\u00f3prio arquivo .pfx do certificado ssl. Se omitido, o servidor criar\u00e1 um certificado auto-assinado.", "LabelCustomCertificatePathHelp": "Forne\u00e7a seu pr\u00f3prio arquivo .pfx do certificado ssl. Se omitido, o servidor criar\u00e1 um certificado auto-assinado.",
"TitleNotifications": "Notifica\u00e7\u00f5es", "TitleNotifications": "Notifica\u00e7\u00f5es",
"ButtonDonateWithPayPal": "Doe atrav\u00e9s do PayPal",
"OptionDetectArchiveFilesAsMedia": "Detectar arquivos compactados como m\u00eddia", "OptionDetectArchiveFilesAsMedia": "Detectar arquivos compactados como m\u00eddia",
"OptionDetectArchiveFilesAsMediaHelp": "Se ativado, arquivos com extens\u00f5es .rar e .zip ser\u00e3o detectados como arquivos de m\u00eddia.", "OptionDetectArchiveFilesAsMediaHelp": "Se ativado, arquivos com extens\u00f5es .rar e .zip ser\u00e3o detectados como arquivos de m\u00eddia.",
"LabelEnterConnectUserName": "Nome de usu\u00e1rio ou e-mail:", "LabelEnterConnectUserName": "Nome de usu\u00e1rio ou e-mail:",
@ -162,8 +161,8 @@
"ChannelAccessHelp": "Selecione os canais a compartilhar com este usu\u00e1rio. Administradores poder\u00e3o editar todos os canais usando o gerenciador de metadados.", "ChannelAccessHelp": "Selecione os canais a compartilhar com este usu\u00e1rio. Administradores poder\u00e3o editar todos os canais usando o gerenciador de metadados.",
"ButtonDeleteImage": "Excluir Imagem", "ButtonDeleteImage": "Excluir Imagem",
"LabelSelectUsers": "Selecionar usu\u00e1rios:", "LabelSelectUsers": "Selecionar usu\u00e1rios:",
"ButtonUpload": "Carregar", "ButtonUpload": "Upload",
"HeaderUploadNewImage": "Carregar Nova Imagem", "HeaderUploadNewImage": "Fazer Upload da Nova Imagem",
"LabelDropImageHere": "Soltar imagem aqui", "LabelDropImageHere": "Soltar imagem aqui",
"ImageUploadAspectRatioHelp": "Propor\u00e7\u00e3o de Imagem 1:1 Recomendada. Apenas JPG\/PNG", "ImageUploadAspectRatioHelp": "Propor\u00e7\u00e3o de Imagem 1:1 Recomendada. Apenas JPG\/PNG",
"MessageNothingHere": "Nada aqui.", "MessageNothingHere": "Nada aqui.",
@ -289,8 +288,9 @@
"TitleSupport": "Suporte", "TitleSupport": "Suporte",
"TabLog": "Log", "TabLog": "Log",
"TabAbout": "Sobre", "TabAbout": "Sobre",
"TabSupporterKey": "Chave de Colaborador", "TabSupporterKey": "Emby Premiere Key",
"TabBecomeSupporter": "Torne-se um Colaborador", "TabBecomeSupporter": "Get Emby Premiere",
"TabEmbyPremiere": "Emby Premiere",
"ProjectHasCommunity": "Emby tem uma comunidade crescente de usu\u00e1rios e contribuidores.", "ProjectHasCommunity": "Emby tem uma comunidade crescente de usu\u00e1rios e contribuidores.",
"CheckoutKnowledgeBase": "Visite nossa base de conhecimento para obter ajuda para extrair o m\u00e1ximo do Emby.", "CheckoutKnowledgeBase": "Visite nossa base de conhecimento para obter ajuda para extrair o m\u00e1ximo do Emby.",
"SearchKnowledgeBase": "Pesquisar na Base de Conhecimento", "SearchKnowledgeBase": "Pesquisar na Base de Conhecimento",
@ -565,7 +565,7 @@
"LabelExternalDDNSHelp": "Se possuir um DNS din\u00e2mico digite aqui. As apps do Emby o usar\u00e3o para conectar-se remotamente. Deixe em branco para detec\u00e7\u00e3o autom\u00e1tica.", "LabelExternalDDNSHelp": "Se possuir um DNS din\u00e2mico digite aqui. As apps do Emby o usar\u00e3o para conectar-se remotamente. Deixe em branco para detec\u00e7\u00e3o autom\u00e1tica.",
"TabResume": "Retomar", "TabResume": "Retomar",
"TabWeather": "Tempo", "TabWeather": "Tempo",
"TitleAppSettings": "Configura\u00e7\u00f5es da App", "TitleAppSettings": "Configura\u00e7\u00f5es do App",
"LabelMinResumePercentage": "Porcentagem m\u00ednima para retomar:", "LabelMinResumePercentage": "Porcentagem m\u00ednima para retomar:",
"LabelMaxResumePercentage": "Porcentagem m\u00e1xima para retomar:", "LabelMaxResumePercentage": "Porcentagem m\u00e1xima para retomar:",
"LabelMinResumeDuration": "Dura\u00e7\u00e3o m\u00ednima para retomar (segundos):", "LabelMinResumeDuration": "Dura\u00e7\u00e3o m\u00ednima para retomar (segundos):",
@ -591,9 +591,9 @@
"LabelEndingEpisodeNumberHelp": "Necess\u00e1rio s\u00f3 para arquivos multi-epis\u00f3dios", "LabelEndingEpisodeNumberHelp": "Necess\u00e1rio s\u00f3 para arquivos multi-epis\u00f3dios",
"HeaderSupportTheTeam": "Colabore com o Time do Emby", "HeaderSupportTheTeam": "Colabore com o Time do Emby",
"LabelSupportAmount": "Valor (USD)", "LabelSupportAmount": "Valor (USD)",
"HeaderSupportTheTeamHelp": "Ajude a assegurar a continuidade do desenvolvimento deste projeto atrav\u00e9s de doa\u00e7\u00e3o. Uma parte de todas as doa\u00e7\u00f5es ser\u00e1 dividida por outras ferramentas gr\u00e1tis de quais dependemos.", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
"ButtonEnterSupporterKey": "Digite a chave de colaborador", "ButtonEnterSupporterKey": "Enter Emby Premiere key",
"DonationNextStep": "Depois de terminar, por favor volte e digite a chave de colaborador que recebeu por email.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
"AutoOrganizeHelp": "Auto-organizar monitora suas pastas de download em busca de novos arquivos e os move para seus diret\u00f3rios de m\u00eddia.", "AutoOrganizeHelp": "Auto-organizar monitora suas pastas de download em busca de novos arquivos e os move para seus diret\u00f3rios de m\u00eddia.",
"AutoOrganizeTvHelp": "A organiza\u00e7\u00e3o de arquivos de TV s\u00f3 adicionar\u00e1 arquivos \u00e0s s\u00e9ries existentes. Ela n\u00e3o criar\u00e1 novas pastas de s\u00e9ries.", "AutoOrganizeTvHelp": "A organiza\u00e7\u00e3o de arquivos de TV s\u00f3 adicionar\u00e1 arquivos \u00e0s s\u00e9ries existentes. Ela n\u00e3o criar\u00e1 novas pastas de s\u00e9ries.",
"OptionEnableEpisodeOrganization": "Ativar a organiza\u00e7\u00e3o de novos epis\u00f3dios", "OptionEnableEpisodeOrganization": "Ativar a organiza\u00e7\u00e3o de novos epis\u00f3dios",
@ -639,20 +639,20 @@
"LabelDownMixAudioScale": "Aumento do \u00e1udio ao executar downmix:", "LabelDownMixAudioScale": "Aumento do \u00e1udio ao executar downmix:",
"LabelDownMixAudioScaleHelp": "Aumentar o \u00e1udio quando executar downmix. Defina como 1 para preservar o volume original.", "LabelDownMixAudioScaleHelp": "Aumentar o \u00e1udio quando executar downmix. Defina como 1 para preservar o volume original.",
"ButtonLinkKeys": "Transferir Chave", "ButtonLinkKeys": "Transferir Chave",
"LabelOldSupporterKey": "Chave antiga de colaborador", "LabelOldSupporterKey": "Old Emby Premiere key",
"LabelNewSupporterKey": "Chave nova de colaborador", "LabelNewSupporterKey": "New Emby Premiere key",
"HeaderMultipleKeyLinking": "Transferir para Nova Chave", "HeaderMultipleKeyLinking": "Transferir para Nova Chave",
"MultipleKeyLinkingHelp": "Se voc\u00ea possui uma nova chave de colaborador, use este formul\u00e1rio para transferir os registros das chaves antigas para as novas.", "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
"LabelCurrentEmailAddress": "Endere\u00e7o de email atual", "LabelCurrentEmailAddress": "Endere\u00e7o de email atual",
"LabelCurrentEmailAddressHelp": "O endere\u00e7o de email atual para o qual suas novas chaves ser\u00e3o enviadas.", "LabelCurrentEmailAddressHelp": "O endere\u00e7o de email atual para o qual suas novas chaves ser\u00e3o enviadas.",
"HeaderForgotKey": "Esqueci a Chave", "HeaderForgotKey": "Esqueci a Chave",
"LabelEmailAddress": "Endere\u00e7o de email", "LabelEmailAddress": "Endere\u00e7o de email",
"LabelSupporterEmailAddress": "O endere\u00e7o de email que foi usado para comprar a chave.", "LabelSupporterEmailAddress": "O endere\u00e7o de email que foi usado para comprar a chave.",
"ButtonRetrieveKey": "Recuperar Chave", "ButtonRetrieveKey": "Recuperar Chave",
"LabelSupporterKey": "Chave de Colaborador (cole do email)", "LabelSupporterKey": "Emby Premiere key (paste from email):",
"LabelSupporterKeyHelp": "Digite sua chave de colaborador para come\u00e7ar a desfrutar dos benef\u00edcios adicionais desenvolvidos pela comunidade do Emby.", "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
"MessageInvalidKey": "Chave do colaborador ausente ou inv\u00e1lida.", "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
"ErrorMessageInvalidKey": "Para que conte\u00fado premium seja registrado, voc\u00ea precisa ser um colaborador do Emby. Por favor, doe e colabore com o desenvolvimento cont\u00ednuo do produto. Obrigado.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
"HeaderDisplaySettings": "Ajustes de Exibi\u00e7\u00e3o", "HeaderDisplaySettings": "Ajustes de Exibi\u00e7\u00e3o",
"TabPlayTo": "Reproduzir Em", "TabPlayTo": "Reproduzir Em",
"LabelEnableDlnaServer": "Ativar servidor Dlna", "LabelEnableDlnaServer": "Ativar servidor Dlna",
@ -673,7 +673,7 @@
"OptionFahrenheit": "Fahrenheit", "OptionFahrenheit": "Fahrenheit",
"HeaderRequireManualLogin": "Necessita a digita\u00e7\u00e3o manual de um nome para:", "HeaderRequireManualLogin": "Necessita a digita\u00e7\u00e3o manual de um nome para:",
"HeaderRequireManualLoginHelp": "Quando desativados, os clientes podem mostrar a tela de login com uma sele\u00e7\u00e3o visual de usu\u00e1rios.", "HeaderRequireManualLoginHelp": "Quando desativados, os clientes podem mostrar a tela de login com uma sele\u00e7\u00e3o visual de usu\u00e1rios.",
"OptionOtherApps": "Outras apps", "OptionOtherApps": "Outros apps",
"OptionMobileApps": "Apps m\u00f3veis", "OptionMobileApps": "Apps m\u00f3veis",
"HeaderNotificationList": "Clique em uma notifica\u00e7\u00e3o para configurar suas op\u00e7\u00f5es de envio.", "HeaderNotificationList": "Clique em uma notifica\u00e7\u00e3o para configurar suas op\u00e7\u00f5es de envio.",
"NotificationOptionApplicationUpdateAvailable": "Atualiza\u00e7\u00e3o da aplica\u00e7\u00e3o disponivel", "NotificationOptionApplicationUpdateAvailable": "Atualiza\u00e7\u00e3o da aplica\u00e7\u00e3o disponivel",
@ -877,7 +877,7 @@
"MessageNoSubtitleSearchResultsFound": "N\u00e3o foi encontrado nenhum resultado.", "MessageNoSubtitleSearchResultsFound": "N\u00e3o foi encontrado nenhum resultado.",
"TabDisplay": "Exibi\u00e7\u00e3o", "TabDisplay": "Exibi\u00e7\u00e3o",
"TabLanguages": "Idiomas", "TabLanguages": "Idiomas",
"TabAppSettings": "Configura\u00e7\u00f5es da App", "TabAppSettings": "Configura\u00e7\u00f5es do App",
"LabelEnableThemeSongs": "Ativar m\u00fasicas-tema", "LabelEnableThemeSongs": "Ativar m\u00fasicas-tema",
"LabelEnableBackdrops": "Ativar imagens de fundo", "LabelEnableBackdrops": "Ativar imagens de fundo",
"LabelEnableThemeSongsHelp": "Se ativadas, m\u00fasicas-tema ser\u00e3o reproduzidas em segundo plano ao navegar pela biblioteca.", "LabelEnableThemeSongsHelp": "Se ativadas, m\u00fasicas-tema ser\u00e3o reproduzidas em segundo plano ao navegar pela biblioteca.",
@ -912,7 +912,7 @@
"OptionCommunityMostWatchedSort": "Mais Assistidos", "OptionCommunityMostWatchedSort": "Mais Assistidos",
"TabNextUp": "Pr\u00f3ximos", "TabNextUp": "Pr\u00f3ximos",
"PlaceholderUsername": "Nome do usu\u00e1rio", "PlaceholderUsername": "Nome do usu\u00e1rio",
"HeaderBecomeProjectSupporter": "Torne-se um Colaborador do Emby", "HeaderBecomeProjectSupporter": "Get Emby Premiere",
"MessageNoMovieSuggestionsAvailable": "N\u00e3o existem sugest\u00f5es de filmes dispon\u00edveis atualmente. Comece por assistir e avaliar seus filmes e, ent\u00e3o, volte para verificar suas recomenda\u00e7\u00f5es.", "MessageNoMovieSuggestionsAvailable": "N\u00e3o existem sugest\u00f5es de filmes dispon\u00edveis atualmente. Comece por assistir e avaliar seus filmes e, ent\u00e3o, volte para verificar suas recomenda\u00e7\u00f5es.",
"MessageNoCollectionsAvailable": "Cole\u00e7\u00f5es permitem que voc\u00ea aproveite grupos personalizados de Filmes, S\u00e9ries, \u00c1lbuns, Livros e Jogos. Clique no bot\u00e3o + para come\u00e7ar a criar Cole\u00e7\u00f5es.", "MessageNoCollectionsAvailable": "Cole\u00e7\u00f5es permitem que voc\u00ea aproveite grupos personalizados de Filmes, S\u00e9ries, \u00c1lbuns, Livros e Jogos. Clique no bot\u00e3o + para come\u00e7ar a criar Cole\u00e7\u00f5es.",
"MessageNoPlaylistsAvailable": "Listas de reprodu\u00e7\u00e3o permitem criar listas com conte\u00fado para reproduzir consecutivamente, de uma s\u00f3 vez. Para adicionar itens \u00e0s listas de reprodu\u00e7\u00e3o, clique com o bot\u00e3o direito ou toque a tela por alguns segundos, depois selecione Adicionar \u00e0 Lista de Reprodu\u00e7\u00e3o.", "MessageNoPlaylistsAvailable": "Listas de reprodu\u00e7\u00e3o permitem criar listas com conte\u00fado para reproduzir consecutivamente, de uma s\u00f3 vez. Para adicionar itens \u00e0s listas de reprodu\u00e7\u00e3o, clique com o bot\u00e3o direito ou toque a tela por alguns segundos, depois selecione Adicionar \u00e0 Lista de Reprodu\u00e7\u00e3o.",
@ -1002,8 +1002,6 @@
"HeaderBrandingHelp": "Personalize a apar\u00eancia do Emby para satisfazer as necessidades de seu grupo ou organiza\u00e7\u00e3o.", "HeaderBrandingHelp": "Personalize a apar\u00eancia do Emby para satisfazer as necessidades de seu grupo ou organiza\u00e7\u00e3o.",
"LabelLoginDisclaimer": "Aviso legal no login:", "LabelLoginDisclaimer": "Aviso legal no login:",
"LabelLoginDisclaimerHelp": "Este aviso ser\u00e1 exibido na parte inferior da p\u00e1gina de login.", "LabelLoginDisclaimerHelp": "Este aviso ser\u00e1 exibido na parte inferior da p\u00e1gina de login.",
"LabelAutomaticallyDonate": "Doar automaticamente este valor a cada m\u00eas",
"LabelAutomaticallyDonateHelp": "Voc\u00ea pode cancelar a qualquer momento atrav\u00e9s de sua conta do PayPal.",
"OptionList": "Lista", "OptionList": "Lista",
"TabDashboard": "Painel", "TabDashboard": "Painel",
"TitleServer": "Servidor", "TitleServer": "Servidor",
@ -1023,7 +1021,7 @@
"HeaderDateIssued": "Data da Emiss\u00e3o", "HeaderDateIssued": "Data da Emiss\u00e3o",
"LabelChapterName": "Cap\u00edtulo {0}", "LabelChapterName": "Cap\u00edtulo {0}",
"HeaderNewApiKey": "Nova Chave da Api", "HeaderNewApiKey": "Nova Chave da Api",
"LabelAppName": "Nome da app", "LabelAppName": "Nome do app",
"LabelAppNameExample": "Exemplo: Sickbeard, NzbDrone", "LabelAppNameExample": "Exemplo: Sickbeard, NzbDrone",
"HeaderNewApiKeyHelp": "Conceda permiss\u00e3o \u00e0 aplica\u00e7\u00e3o de se comunicar com o Servidor Emby.", "HeaderNewApiKeyHelp": "Conceda permiss\u00e3o \u00e0 aplica\u00e7\u00e3o de se comunicar com o Servidor Emby.",
"HeaderHttpHeaders": "Cabe\u00e7alhos de Http", "HeaderHttpHeaders": "Cabe\u00e7alhos de Http",
@ -1150,14 +1148,14 @@
"ViewTypeLiveTvRecordingGroups": "Grava\u00e7\u00f5es", "ViewTypeLiveTvRecordingGroups": "Grava\u00e7\u00f5es",
"ViewTypeLiveTvChannels": "Canais", "ViewTypeLiveTvChannels": "Canais",
"LabelEasyPinCode": "C\u00f3digo de pin f\u00e1cil:", "LabelEasyPinCode": "C\u00f3digo de pin f\u00e1cil:",
"EasyPasswordHelp": "Seu c\u00f3digo pin f\u00e1cil \u00e9 usado para acesso off-line com apps suportadas pelo Emby e pode ser usado para acesso f\u00e1cil dentro da rede.", "EasyPasswordHelp": "Seu c\u00f3digo pin f\u00e1cil \u00e9 usado para acesso off-line com apps suportados pelo Emby e pode ser usado para acesso f\u00e1cil dentro da rede.",
"LabelInNetworkSignInWithEasyPassword": "Ativar acesso dentro da rede com meu c\u00f3digo de pin f\u00e1cil", "LabelInNetworkSignInWithEasyPassword": "Ativar acesso dentro da rede com meu c\u00f3digo de pin f\u00e1cil",
"LabelInNetworkSignInWithEasyPasswordHelp": "Se ativado, voc\u00ea poder\u00e1 usar um c\u00f3digo pin f\u00e1cil para entrar nas apps do Emby dentro de sua rede. Sua senha normal s\u00f3 ser\u00e1 necess\u00e1ria fora de sua casa. Se o c\u00f3digo pin for deixado em branco, n\u00e3o ser\u00e1 necess\u00e1ria uma senha dentro de sua rede dom\u00e9stica.", "LabelInNetworkSignInWithEasyPasswordHelp": "Se ativado, voc\u00ea poder\u00e1 usar um c\u00f3digo pin f\u00e1cil para entrar nos apps do Emby dentro de sua rede. Sua senha normal s\u00f3 ser\u00e1 necess\u00e1ria fora de sua casa. Se o c\u00f3digo pin for deixado em branco, n\u00e3o ser\u00e1 necess\u00e1ria uma senha dentro de sua rede dom\u00e9stica.",
"HeaderPassword": "Senha", "HeaderPassword": "Senha",
"HeaderLocalAccess": "Acesso Local", "HeaderLocalAccess": "Acesso Local",
"HeaderViewOrder": "Ordem da Visualiza\u00e7\u00e3o", "HeaderViewOrder": "Ordem da Visualiza\u00e7\u00e3o",
"ButtonResetEasyPassword": "Redefinir c\u00f3digo de pin f\u00e1cil", "ButtonResetEasyPassword": "Redefinir c\u00f3digo de pin f\u00e1cil",
"LabelSelectUserViewOrder": "Escolha a ordem que suas visualiza\u00e7\u00f5es ser\u00e3o exibidas dentro das apps do Emby", "LabelSelectUserViewOrder": "Escolha a ordem que suas visualiza\u00e7\u00f5es ser\u00e3o exibidas dentro dos apps do Emby",
"LabelMetadataRefreshMode": "Modo de atualiza\u00e7\u00e3o dos metadados:", "LabelMetadataRefreshMode": "Modo de atualiza\u00e7\u00e3o dos metadados:",
"LabelImageRefreshMode": "Modo de atualiza\u00e7\u00e3o das imagens:", "LabelImageRefreshMode": "Modo de atualiza\u00e7\u00e3o das imagens:",
"OptionDownloadMissingImages": "Fazer download das imagens faltantes", "OptionDownloadMissingImages": "Fazer download das imagens faltantes",
@ -1220,18 +1218,12 @@
"HeaderMetadataSettings": "Ajustes dos Metadados", "HeaderMetadataSettings": "Ajustes dos Metadados",
"LabelLockItemToPreventChanges": "Bloquear este item para evitar altera\u00e7\u00f5es futuras", "LabelLockItemToPreventChanges": "Bloquear este item para evitar altera\u00e7\u00f5es futuras",
"MessageLeaveEmptyToInherit": "Deixar em branco para herdar os ajustes de um item superior, ou o valor padr\u00e3o global", "MessageLeaveEmptyToInherit": "Deixar em branco para herdar os ajustes de um item superior, ou o valor padr\u00e3o global",
"TabDonate": "Doar",
"HeaderDonationType": "Tipo de doa\u00e7\u00e3o:", "HeaderDonationType": "Tipo de doa\u00e7\u00e3o:",
"OptionMakeOneTimeDonation": "Fazer uma doa\u00e7\u00e3o \u00fanica", "OptionMakeOneTimeDonation": "Fazer uma doa\u00e7\u00e3o \u00fanica",
"OptionOneTimeDescription": "Esta \u00e9 uma doa\u00e7\u00e3o adicional \u00e0 equipe para demonstrar seu apoio. N\u00e3o garante nenhum benef\u00edcio adicional e n\u00e3o produzir\u00e1 uma chave de colaborador.",
"OptionLifeTimeSupporterMembership": "Ades\u00e3o de colaborador vital\u00edcia",
"OptionYearlySupporterMembership": "Ades\u00e3o de colaborador anual",
"OptionMonthlySupporterMembership": "Ades\u00e3o de colaborador mensal",
"OptionNoTrailer": "Nenhum Trailer", "OptionNoTrailer": "Nenhum Trailer",
"OptionNoThemeSong": "Nenhuma M\u00fasica-tema", "OptionNoThemeSong": "Nenhuma M\u00fasica-tema",
"OptionNoThemeVideo": "Nenhum V\u00eddeo-tema", "OptionNoThemeVideo": "Nenhum V\u00eddeo-tema",
"LabelOneTimeDonationAmount": "Valor da doa\u00e7\u00e3o:", "LabelOneTimeDonationAmount": "Valor da doa\u00e7\u00e3o:",
"ButtonDonate": "Doar",
"ButtonPurchase": "Comprar", "ButtonPurchase": "Comprar",
"OptionActor": "Ator", "OptionActor": "Ator",
"OptionComposer": "Compositor", "OptionComposer": "Compositor",
@ -1245,9 +1237,9 @@
"HeaderPhotoInfo": "Informa\u00e7\u00f5es da Foto", "HeaderPhotoInfo": "Informa\u00e7\u00f5es da Foto",
"HeaderInstall": "Instalar", "HeaderInstall": "Instalar",
"LabelSelectVersionToInstall": "Selecione a vers\u00e3o para instalar:", "LabelSelectVersionToInstall": "Selecione a vers\u00e3o para instalar:",
"LinkSupporterMembership": "Aprenda sobre a Ades\u00e3o de Colaboradores", "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
"MessageSupporterPluginRequiresMembership": "Este plugin requer que seja um colaborador ativo depois de um per\u00edodo gr\u00e1tis de 14 dias.", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
"MessagePremiumPluginRequiresMembership": "Este plugin requer que seja um colaborador para compr\u00e1-lo depois do per\u00edodo gr\u00e1tis de 14 dias.", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
"HeaderReviews": "Avalia\u00e7\u00f5es", "HeaderReviews": "Avalia\u00e7\u00f5es",
"HeaderDeveloperInfo": "Info do desenvolvedor", "HeaderDeveloperInfo": "Info do desenvolvedor",
"HeaderRevisionHistory": "Hist\u00f3rico de Vers\u00f5es", "HeaderRevisionHistory": "Hist\u00f3rico de Vers\u00f5es",
@ -1292,7 +1284,7 @@
"LabelLimitIntrosToUnwatchedContent": "Usar trailers apenas para conte\u00fado n\u00e3o assistido", "LabelLimitIntrosToUnwatchedContent": "Usar trailers apenas para conte\u00fado n\u00e3o assistido",
"LabelEnableIntroParentalControl": "Ativar controle parental inteligente", "LabelEnableIntroParentalControl": "Ativar controle parental inteligente",
"LabelEnableIntroParentalControlHelp": "Os trailers s\u00f3 ser\u00e3o selecionados se sua classifica\u00e7\u00e3o parental for igual ou menor que o conte\u00fado que est\u00e1 sendo assistido.", "LabelEnableIntroParentalControlHelp": "Os trailers s\u00f3 ser\u00e3o selecionados se sua classifica\u00e7\u00e3o parental for igual ou menor que o conte\u00fado que est\u00e1 sendo assistido.",
"LabelTheseFeaturesRequireSupporterHelpAndTrailers": "Estes recursos requerem uma ades\u00e3o ativa de colaborador e a instala\u00e7\u00e3o do plugin de canal de Trailers", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "\u00c9 necess\u00e1rio o ajuste dos trailers locais.", "OptionTrailersFromMyMoviesHelp": "\u00c9 necess\u00e1rio o ajuste dos trailers locais.",
"LabelCustomIntrosPath": "Caminho das intros personalizadas:", "LabelCustomIntrosPath": "Caminho das intros personalizadas:",
"LabelCustomIntrosPathHelp": "Uma pasta contendo arquivos de v\u00eddeo. Um v\u00eddeo ser\u00e1 selecionado aleatoriamente e reproduzido depois dos trailers.", "LabelCustomIntrosPathHelp": "Uma pasta contendo arquivos de v\u00eddeo. Um v\u00eddeo ser\u00e1 selecionado aleatoriamente e reproduzido depois dos trailers.",
@ -1513,7 +1505,7 @@
"LabelTunerType": "Tipo do sintonizador:", "LabelTunerType": "Tipo do sintonizador:",
"HelpMoreTunersCanBeAdded": "Mais sintonizadores podem ser adicionados posteriormente dentro da se\u00e7\u00e3o da TV ao Vivo.", "HelpMoreTunersCanBeAdded": "Mais sintonizadores podem ser adicionados posteriormente dentro da se\u00e7\u00e3o da TV ao Vivo.",
"AdditionalLiveTvProvidersCanBeInstalledLater": "Provedores de TV ao Vivo adicionais pode ser adicionados posteriormente dentro da se\u00e7\u00e3o TV ao Vivo.", "AdditionalLiveTvProvidersCanBeInstalledLater": "Provedores de TV ao Vivo adicionais pode ser adicionados posteriormente dentro da se\u00e7\u00e3o TV ao Vivo.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "\u00c9 necess\u00e1ria uma ades\u00e3o ativa de Colaborador do Emby para criar uma grava\u00e7\u00e3o automatizada de s\u00e9ries.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Configura\u00e7\u00e3o do Guia da TV", "HeaderSetupTVGuide": "Configura\u00e7\u00e3o do Guia da TV",
"LabelDataProvider": "Provedor de dados:", "LabelDataProvider": "Provedor de dados:",
"OptionSendRecordingsToAutoOrganize": "Ativar Auto-Organizar para novas grava\u00e7\u00f5es", "OptionSendRecordingsToAutoOrganize": "Ativar Auto-Organizar para novas grava\u00e7\u00f5es",
@ -1526,7 +1518,9 @@
"LabelVideoFrameAnalysisLimit": "Habilitar an\u00e1lise quadro a quadro apenas para v\u00eddeos menores que:", "LabelVideoFrameAnalysisLimit": "Habilitar an\u00e1lise quadro a quadro apenas para v\u00eddeos menores que:",
"LabelHardwareVideoDecoder": "Decodificador de v\u00eddeo de hardware:", "LabelHardwareVideoDecoder": "Decodificador de v\u00eddeo de hardware:",
"LabelHardwareVideoDecoderHelp": "Dispon\u00edvel apenas em sistemas suportados.", "LabelHardwareVideoDecoderHelp": "Dispon\u00edvel apenas em sistemas suportados.",
"ButtonServerDashboard": "Server Dashboard", "ButtonServerDashboard": "Painel do Servidor",
"HeaderAdmin": "Admin", "HeaderAdmin": "Admin",
"ButtonSignOut": "Sign out" "ButtonSignOut": "Sair",
"HeaderCameraUpload": "Upload da C\u00e2mera",
"SelectCameraUploadServers": "Fazer upload das fotos da c\u00e2mera para os seguintes servidores:"
} }

View file

@ -48,7 +48,7 @@
"ButtonConvertMedia": "Converter ficheiro multim\u00e9dia", "ButtonConvertMedia": "Converter ficheiro multim\u00e9dia",
"ButtonOrganize": "Organizar", "ButtonOrganize": "Organizar",
"LinkedToEmbyConnect": "Associado ao Emby Connect", "LinkedToEmbyConnect": "Associado ao Emby Connect",
"HeaderSupporterBenefits": "Benef\u00edcios do Apoiante", "HeaderSupporterBenefits": "Emby Premiere Benefits",
"HeaderAddUser": "Adicionar Utilizador", "HeaderAddUser": "Adicionar Utilizador",
"LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
"LabelPinCode": "C\u00f3digo PIN:", "LabelPinCode": "C\u00f3digo PIN:",
@ -82,7 +82,6 @@
"LabelCustomCertificatePath": "Localiza\u00e7\u00e3o do certificado personalizado:", "LabelCustomCertificatePath": "Localiza\u00e7\u00e3o do certificado personalizado:",
"LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.", "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ButtonDonateWithPayPal": "Doe com o PayPal",
"OptionDetectArchiveFilesAsMedia": "Detetar ficheiros como multim\u00e9dia", "OptionDetectArchiveFilesAsMedia": "Detetar ficheiros como multim\u00e9dia",
"OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.", "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
"LabelEnterConnectUserName": "Nome de utilizador ou email:", "LabelEnterConnectUserName": "Nome de utilizador ou email:",
@ -289,8 +288,9 @@
"TitleSupport": "Suporte", "TitleSupport": "Suporte",
"TabLog": "Log", "TabLog": "Log",
"TabAbout": "Acerca", "TabAbout": "Acerca",
"TabSupporterKey": "Chave de Apoiante", "TabSupporterKey": "Emby Premiere Key",
"TabBecomeSupporter": "Torne-se um Apoiante", "TabBecomeSupporter": "Get Emby Premiere",
"TabEmbyPremiere": "Emby Premiere",
"ProjectHasCommunity": "Emby has a thriving community of users and contributors.", "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.", "CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "Procurar na Base de Conhecimento", "SearchKnowledgeBase": "Procurar na Base de Conhecimento",
@ -350,7 +350,7 @@
"LabelImagesByNamePath": "Localiza\u00e7\u00e3o das imagens por nome:", "LabelImagesByNamePath": "Localiza\u00e7\u00e3o das imagens por nome:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.", "LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Localiza\u00e7\u00e3o dos metadados:", "LabelMetadataPath": "Localiza\u00e7\u00e3o dos metadados:",
"LabelMetadataPathHelp": "Defina uma localiza\u00e7\u00e3o para imagens e metadados transferidos que n\u00e3o foram configurados para serem armazenados nas pastas multim\u00e9dia.", "LabelMetadataPathHelp": "Specify a custom location for downloaded artwork and metadata.",
"LabelTranscodingTempPath": "Localiza\u00e7\u00e3o tempor\u00e1ria das transcodifica\u00e7\u00f5es:", "LabelTranscodingTempPath": "Localiza\u00e7\u00e3o tempor\u00e1ria das transcodifica\u00e7\u00f5es:",
"LabelTranscodingTempPathHelp": "This folder contains working files used by the transcoder. Specify a custom path, or leave empty to use the default within the server's data folder.", "LabelTranscodingTempPathHelp": "This folder contains working files used by the transcoder. Specify a custom path, or leave empty to use the default within the server's data folder.",
"TabBasics": "B\u00e1sico", "TabBasics": "B\u00e1sico",
@ -591,9 +591,9 @@
"LabelEndingEpisodeNumberHelp": "Necess\u00e1rio s\u00f3 para arquivos multi-epis\u00f3dios", "LabelEndingEpisodeNumberHelp": "Necess\u00e1rio s\u00f3 para arquivos multi-epis\u00f3dios",
"HeaderSupportTheTeam": "Suporte a Equipa do Emby", "HeaderSupportTheTeam": "Suporte a Equipa do Emby",
"LabelSupportAmount": "Quantia (USD)", "LabelSupportAmount": "Quantia (USD)",
"HeaderSupportTheTeamHelp": "Ajude a garantir o desenvolvimento continuado deste projeto, doando. Uma parte de todas as doa\u00e7\u00f5es ser\u00e1 para contribuir para outras ferramentas gratuitas em que dependemos.", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
"ButtonEnterSupporterKey": "Insira a chave de apoiante", "ButtonEnterSupporterKey": "Enter Emby Premiere key",
"DonationNextStep": "Assim que termine, por favor volte e insira a sua chave de apoiante, a qual ir\u00e1 receber por email.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
"AutoOrganizeHelp": "A organiza\u00e7\u00e3o autom\u00e1tica monitoriza as suas pastas de transfer\u00eancias em busca de novos ficheiros e move-os para as suas pastas multim\u00e9dia.", "AutoOrganizeHelp": "A organiza\u00e7\u00e3o autom\u00e1tica monitoriza as suas pastas de transfer\u00eancias em busca de novos ficheiros e move-os para as suas pastas multim\u00e9dia.",
"AutoOrganizeTvHelp": "A organiza\u00e7\u00e3o de ficheiros de TV s\u00f3 ir\u00e1 adicionar ficheiros \u00e0s s\u00e9ries existentes. Ela n\u00e3o ir\u00e1 criar novas pastas de s\u00e9ries.", "AutoOrganizeTvHelp": "A organiza\u00e7\u00e3o de ficheiros de TV s\u00f3 ir\u00e1 adicionar ficheiros \u00e0s s\u00e9ries existentes. Ela n\u00e3o ir\u00e1 criar novas pastas de s\u00e9ries.",
"OptionEnableEpisodeOrganization": "Ativar a organiza\u00e7\u00e3o de novos epis\u00f3dios", "OptionEnableEpisodeOrganization": "Ativar a organiza\u00e7\u00e3o de novos epis\u00f3dios",
@ -639,20 +639,20 @@
"LabelDownMixAudioScale": "Escala do aumento de \u00e1udio ao fazer downmix:", "LabelDownMixAudioScale": "Escala do aumento de \u00e1udio ao fazer downmix:",
"LabelDownMixAudioScaleHelp": "Aumentar o \u00e1udio ao fazer downmix. Defina como 1 para preservar o volume original.", "LabelDownMixAudioScaleHelp": "Aumentar o \u00e1udio ao fazer downmix. Defina como 1 para preservar o volume original.",
"ButtonLinkKeys": "Transferir Chave", "ButtonLinkKeys": "Transferir Chave",
"LabelOldSupporterKey": "Chave de apoiante antiga", "LabelOldSupporterKey": "Old Emby Premiere key",
"LabelNewSupporterKey": "Nova chave de apoiante", "LabelNewSupporterKey": "New Emby Premiere key",
"HeaderMultipleKeyLinking": "Transferir para Nova Chave", "HeaderMultipleKeyLinking": "Transferir para Nova Chave",
"MultipleKeyLinkingHelp": "If you received a new supporter key, use this form to transfer the old key's registrations to your new one.", "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
"LabelCurrentEmailAddress": "Endere\u00e7o de email atual", "LabelCurrentEmailAddress": "Endere\u00e7o de email atual",
"LabelCurrentEmailAddressHelp": "O endere\u00e7o de email atual para o qual a sua nova chave foi enviada.", "LabelCurrentEmailAddressHelp": "O endere\u00e7o de email atual para o qual a sua nova chave foi enviada.",
"HeaderForgotKey": "Esqueci a Chave", "HeaderForgotKey": "Esqueci a Chave",
"LabelEmailAddress": "Endere\u00e7o de email", "LabelEmailAddress": "Endere\u00e7o de email",
"LabelSupporterEmailAddress": "O endere\u00e7o de email que foi usado para comprar a chave.", "LabelSupporterEmailAddress": "O endere\u00e7o de email que foi usado para comprar a chave.",
"ButtonRetrieveKey": "Recuperar Chave", "ButtonRetrieveKey": "Recuperar Chave",
"LabelSupporterKey": "Chave de Apoiante (colar do email)", "LabelSupporterKey": "Emby Premiere key (paste from email):",
"LabelSupporterKeyHelp": "Enter your supporter key to start enjoying additional benefits the community has developed for Emby.", "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
"MessageInvalidKey": "Chave de apoiante ausente ou inv\u00e1lida", "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
"ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also be an Emby Supporter. Please donate and support the continued development of the core product. Thank you.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
"HeaderDisplaySettings": "Apresentar Configura\u00e7\u00f5es", "HeaderDisplaySettings": "Apresentar Configura\u00e7\u00f5es",
"TabPlayTo": "Play To", "TabPlayTo": "Play To",
"LabelEnableDlnaServer": "Ativar servidor DLNA", "LabelEnableDlnaServer": "Ativar servidor DLNA",
@ -912,7 +912,7 @@
"OptionCommunityMostWatchedSort": "Most Watched", "OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up", "TabNextUp": "Next Up",
"PlaceholderUsername": "Username", "PlaceholderUsername": "Username",
"HeaderBecomeProjectSupporter": "Torne-se um Apoiante do Emby", "HeaderBecomeProjectSupporter": "Get Emby Premiere",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
"MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
@ -1002,8 +1002,6 @@
"HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.",
"LabelLoginDisclaimer": "Login disclaimer:", "LabelLoginDisclaimer": "Login disclaimer:",
"LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.",
"LabelAutomaticallyDonate": "Automatically donate this amount every month",
"LabelAutomaticallyDonateHelp": "You can cancel at any time via your PayPal account.",
"OptionList": "List", "OptionList": "List",
"TabDashboard": "Painel Principal", "TabDashboard": "Painel Principal",
"TitleServer": "Server", "TitleServer": "Server",
@ -1220,18 +1218,12 @@
"HeaderMetadataSettings": "Metadata Settings", "HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes", "LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
"TabDonate": "Donate",
"HeaderDonationType": "Donation type:", "HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation", "OptionMakeOneTimeDonation": "Make a separate donation",
"OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"OptionLifeTimeSupporterMembership": "Conta de Apoiante vital\u00edcia",
"OptionYearlySupporterMembership": "Conta de Apoiante anual",
"OptionMonthlySupporterMembership": "Conta de Apoiante mensal",
"OptionNoTrailer": "No Trailer", "OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song", "OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video", "OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:", "LabelOneTimeDonationAmount": "Donation amount:",
"ButtonDonate": "Donate",
"ButtonPurchase": "Purchase", "ButtonPurchase": "Purchase",
"OptionActor": "Actor", "OptionActor": "Actor",
"OptionComposer": "Composer", "OptionComposer": "Composer",
@ -1245,9 +1237,9 @@
"HeaderPhotoInfo": "Photo Info", "HeaderPhotoInfo": "Photo Info",
"HeaderInstall": "Install", "HeaderInstall": "Install",
"LabelSelectVersionToInstall": "Select version to install:", "LabelSelectVersionToInstall": "Select version to install:",
"LinkSupporterMembership": "Saiba mais sobre a conta de Apoiante", "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
"MessageSupporterPluginRequiresMembership": "This plugin will require an active supporter membership after the 14 day free trial.", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
"MessagePremiumPluginRequiresMembership": "This plugin will require an active supporter membership in order to purchase after the 14 day free trial.", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
"HeaderReviews": "Reviews", "HeaderReviews": "Reviews",
"HeaderDeveloperInfo": "Informa\u00e7\u00e3o do Programador", "HeaderDeveloperInfo": "Informa\u00e7\u00e3o do Programador",
"HeaderRevisionHistory": "Revision History", "HeaderRevisionHistory": "Revision History",
@ -1292,7 +1284,7 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content", "LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control", "LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
"LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:", "LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
@ -1513,7 +1505,7 @@
"LabelTunerType": "Tuner type:", "LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.", "HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
"AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.", "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
@ -1528,5 +1520,7 @@
"LabelHardwareVideoDecoderHelp": "Available on supported systems only.", "LabelHardwareVideoDecoderHelp": "Available on supported systems only.",
"ButtonServerDashboard": "Server Dashboard", "ButtonServerDashboard": "Server Dashboard",
"HeaderAdmin": "Admin", "HeaderAdmin": "Admin",
"ButtonSignOut": "Sign out" "ButtonSignOut": "Sign out",
"HeaderCameraUpload": "Camera Upload",
"SelectCameraUploadServers": "Upload camera photos to the following servers:"
} }

View file

@ -48,7 +48,7 @@
"ButtonConvertMedia": "Converteste media", "ButtonConvertMedia": "Converteste media",
"ButtonOrganize": "Organizeaza", "ButtonOrganize": "Organizeaza",
"LinkedToEmbyConnect": "Legat la Emby Connect", "LinkedToEmbyConnect": "Legat la Emby Connect",
"HeaderSupporterBenefits": "Beneficii Suporter", "HeaderSupporterBenefits": "Emby Premiere Benefits",
"HeaderAddUser": "Adauga User", "HeaderAddUser": "Adauga User",
"LabelAddConnectSupporterHelp": "Pentru a ad\u0103uga un utilizator care nu este listat, va trebui s\u0103 legati \u00eent\u00e2i contul lor la Emby Connect de la pagina lor de profil de utilizator.", "LabelAddConnectSupporterHelp": "Pentru a ad\u0103uga un utilizator care nu este listat, va trebui s\u0103 legati \u00eent\u00e2i contul lor la Emby Connect de la pagina lor de profil de utilizator.",
"LabelPinCode": "Codul Pin:", "LabelPinCode": "Codul Pin:",
@ -82,7 +82,6 @@
"LabelCustomCertificatePath": "Calea catre certificatul personalizat:", "LabelCustomCertificatePath": "Calea catre certificatul personalizat:",
"LabelCustomCertificatePathHelp": "Furnizati propriul certificat ssl in format .pfx. Daca este omis, serverul ca creea un certificat semnat propriu.", "LabelCustomCertificatePathHelp": "Furnizati propriul certificat ssl in format .pfx. Daca este omis, serverul ca creea un certificat semnat propriu.",
"TitleNotifications": "Notificari", "TitleNotifications": "Notificari",
"ButtonDonateWithPayPal": "Doneaza cu PayPal",
"OptionDetectArchiveFilesAsMedia": "Detecteza fisierele arhiva ca media", "OptionDetectArchiveFilesAsMedia": "Detecteza fisierele arhiva ca media",
"OptionDetectArchiveFilesAsMediaHelp": "Dac\u0103 este activat\u0103, fi\u0219ierele cu extensiile .rar \u0219i .zip vor fi detectate ca fi\u0219iere media.", "OptionDetectArchiveFilesAsMediaHelp": "Dac\u0103 este activat\u0103, fi\u0219ierele cu extensiile .rar \u0219i .zip vor fi detectate ca fi\u0219iere media.",
"LabelEnterConnectUserName": "Username or email:", "LabelEnterConnectUserName": "Username or email:",
@ -289,8 +288,9 @@
"TitleSupport": "Suport", "TitleSupport": "Suport",
"TabLog": "Log", "TabLog": "Log",
"TabAbout": "Despre", "TabAbout": "Despre",
"TabSupporterKey": "Cheie Suporter", "TabSupporterKey": "Emby Premiere Key",
"TabBecomeSupporter": "Devino Suporter", "TabBecomeSupporter": "Get Emby Premiere",
"TabEmbyPremiere": "Emby Premiere",
"ProjectHasCommunity": "Emby has a thriving community of users and contributors.", "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Emby are o comunitate \u00eenfloritoare de utilizatori \u0219i colaboratori.", "CheckoutKnowledgeBase": "Emby are o comunitate \u00eenfloritoare de utilizatori \u0219i colaboratori.",
"SearchKnowledgeBase": "C\u0103uta\u021bi \u00een Baza de cuno\u0219tin\u021be", "SearchKnowledgeBase": "C\u0103uta\u021bi \u00een Baza de cuno\u0219tin\u021be",
@ -591,9 +591,9 @@
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"LabelSupportAmount": "Amount (USD)", "LabelSupportAmount": "Amount (USD)",
"HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by donating. A portion of all donations will be contributed to other free tools we depend on.", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
"ButtonEnterSupporterKey": "Enter supporter key", "ButtonEnterSupporterKey": "Enter Emby Premiere key",
"DonationNextStep": "Once complete, please return and enter your supporter key, which you will receive by email.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
"AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.",
"AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.",
"OptionEnableEpisodeOrganization": "Enable new episode organization", "OptionEnableEpisodeOrganization": "Enable new episode organization",
@ -639,20 +639,20 @@
"LabelDownMixAudioScale": "Audio boost when downmixing:", "LabelDownMixAudioScale": "Audio boost when downmixing:",
"LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.",
"ButtonLinkKeys": "Transfer Key", "ButtonLinkKeys": "Transfer Key",
"LabelOldSupporterKey": "Old supporter key", "LabelOldSupporterKey": "Old Emby Premiere key",
"LabelNewSupporterKey": "New supporter key", "LabelNewSupporterKey": "New Emby Premiere key",
"HeaderMultipleKeyLinking": "Transfer to New Key", "HeaderMultipleKeyLinking": "Transfer to New Key",
"MultipleKeyLinkingHelp": "If you received a new supporter key, use this form to transfer the old key's registrations to your new one.", "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
"LabelCurrentEmailAddress": "Current email address", "LabelCurrentEmailAddress": "Current email address",
"LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.", "LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.",
"HeaderForgotKey": "Forgot Key", "HeaderForgotKey": "Forgot Key",
"LabelEmailAddress": "Email address", "LabelEmailAddress": "Email address",
"LabelSupporterEmailAddress": "The email address that was used to purchase the key.", "LabelSupporterEmailAddress": "The email address that was used to purchase the key.",
"ButtonRetrieveKey": "Retrieve Key", "ButtonRetrieveKey": "Retrieve Key",
"LabelSupporterKey": "Supporter Key (paste from email)", "LabelSupporterKey": "Emby Premiere key (paste from email):",
"LabelSupporterKeyHelp": "Enter your supporter key to start enjoying additional benefits the community has developed for Emby.", "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
"MessageInvalidKey": "Supporter key is missing or invalid.", "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
"ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also be an Emby Supporter. Please donate and support the continued development of the core product. Thank you.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
"HeaderDisplaySettings": "Display Settings", "HeaderDisplaySettings": "Display Settings",
"TabPlayTo": "Play To", "TabPlayTo": "Play To",
"LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServer": "Enable Dlna server",
@ -912,7 +912,7 @@
"OptionCommunityMostWatchedSort": "Most Watched", "OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up", "TabNextUp": "Next Up",
"PlaceholderUsername": "Username", "PlaceholderUsername": "Username",
"HeaderBecomeProjectSupporter": "Become an Emby Supporter", "HeaderBecomeProjectSupporter": "Get Emby Premiere",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
"MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
@ -1002,8 +1002,6 @@
"HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.",
"LabelLoginDisclaimer": "Login disclaimer:", "LabelLoginDisclaimer": "Login disclaimer:",
"LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.",
"LabelAutomaticallyDonate": "Automatically donate this amount every month",
"LabelAutomaticallyDonateHelp": "You can cancel at any time via your PayPal account.",
"OptionList": "List", "OptionList": "List",
"TabDashboard": "Dashboard", "TabDashboard": "Dashboard",
"TitleServer": "Server", "TitleServer": "Server",
@ -1220,18 +1218,12 @@
"HeaderMetadataSettings": "Metadata Settings", "HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes", "LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
"TabDonate": "Donate",
"HeaderDonationType": "Donation type:", "HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation", "OptionMakeOneTimeDonation": "Make a separate donation",
"OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
"OptionYearlySupporterMembership": "Yearly supporter membership",
"OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer", "OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song", "OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video", "OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:", "LabelOneTimeDonationAmount": "Donation amount:",
"ButtonDonate": "Donate",
"ButtonPurchase": "Purchase", "ButtonPurchase": "Purchase",
"OptionActor": "Actor", "OptionActor": "Actor",
"OptionComposer": "Composer", "OptionComposer": "Composer",
@ -1245,9 +1237,9 @@
"HeaderPhotoInfo": "Photo Info", "HeaderPhotoInfo": "Photo Info",
"HeaderInstall": "Install", "HeaderInstall": "Install",
"LabelSelectVersionToInstall": "Select version to install:", "LabelSelectVersionToInstall": "Select version to install:",
"LinkSupporterMembership": "Learn about the Supporter Membership", "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
"MessageSupporterPluginRequiresMembership": "This plugin will require an active supporter membership after the 14 day free trial.", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
"MessagePremiumPluginRequiresMembership": "This plugin will require an active supporter membership in order to purchase after the 14 day free trial.", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
"HeaderReviews": "Reviews", "HeaderReviews": "Reviews",
"HeaderDeveloperInfo": "Developer Info", "HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History", "HeaderRevisionHistory": "Revision History",
@ -1292,7 +1284,7 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content", "LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control", "LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
"LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:", "LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
@ -1513,7 +1505,7 @@
"LabelTunerType": "Tuner type:", "LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.", "HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
"AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.", "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
@ -1528,5 +1520,7 @@
"LabelHardwareVideoDecoderHelp": "Available on supported systems only.", "LabelHardwareVideoDecoderHelp": "Available on supported systems only.",
"ButtonServerDashboard": "Server Dashboard", "ButtonServerDashboard": "Server Dashboard",
"HeaderAdmin": "Admin", "HeaderAdmin": "Admin",
"ButtonSignOut": "Sign out" "ButtonSignOut": "Sign out",
"HeaderCameraUpload": "Camera Upload",
"SelectCameraUploadServers": "Upload camera photos to the following servers:"
} }

View file

@ -48,7 +48,7 @@
"ButtonConvertMedia": "\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435", "ButtonConvertMedia": "\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435",
"ButtonOrganize": "\u0420\u0435\u043e\u0440\u0433\u0430\u043d\u0438\u0437\u043e\u0432\u0430\u0442\u044c", "ButtonOrganize": "\u0420\u0435\u043e\u0440\u0433\u0430\u043d\u0438\u0437\u043e\u0432\u0430\u0442\u044c",
"LinkedToEmbyConnect": "\u0418\u043c\u0435\u0435\u0442\u0441\u044f \u0441\u0432\u044f\u0437\u044c \u0441 Emby Connect", "LinkedToEmbyConnect": "\u0418\u043c\u0435\u0435\u0442\u0441\u044f \u0441\u0432\u044f\u0437\u044c \u0441 Emby Connect",
"HeaderSupporterBenefits": "\u041f\u0440\u0435\u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0430 \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430", "HeaderSupporterBenefits": "Emby Premiere Benefits",
"HeaderAddUser": "\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f", "HeaderAddUser": "\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f",
"LabelAddConnectSupporterHelp": "\u0427\u0442\u043e\u0431\u044b \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f, \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043d\u0435\u0442 \u0432 \u0441\u043f\u0438\u0441\u043a\u0435, \u0441\u043d\u0430\u0447\u0430\u043b\u0430 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0441\u0432\u044f\u0437\u0430\u0442\u044c \u0435\u0433\u043e \u0443\u0447\u0451\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c \u0441 Emby Connect \u0441 \u0435\u0433\u043e \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f.", "LabelAddConnectSupporterHelp": "\u0427\u0442\u043e\u0431\u044b \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f, \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043d\u0435\u0442 \u0432 \u0441\u043f\u0438\u0441\u043a\u0435, \u0441\u043d\u0430\u0447\u0430\u043b\u0430 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0441\u0432\u044f\u0437\u0430\u0442\u044c \u0435\u0433\u043e \u0443\u0447\u0451\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c \u0441 Emby Connect \u0441 \u0435\u0433\u043e \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f.",
"LabelPinCode": "PIN-\u043a\u043e\u0434:", "LabelPinCode": "PIN-\u043a\u043e\u0434:",
@ -82,7 +82,6 @@
"LabelCustomCertificatePath": "\u041f\u0443\u0442\u044c \u043a \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u0443:", "LabelCustomCertificatePath": "\u041f\u0443\u0442\u044c \u043a \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u0443:",
"LabelCustomCertificatePathHelp": "\u041f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u0441\u0432\u043e\u0439 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u0444\u0430\u0439\u043b .pfx SSL-\u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u0430. \u041f\u0440\u0438 \u0435\u0433\u043e \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u0438 \u0441\u0435\u0440\u0432\u0435\u0440 \u0441\u043e\u0437\u0434\u0430\u0441\u0442 \u0441\u0430\u043c\u043e\u043f\u043e\u0434\u043f\u0438\u0441\u0430\u043d\u043d\u044b\u0439 \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442.", "LabelCustomCertificatePathHelp": "\u041f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u0441\u0432\u043e\u0439 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u0444\u0430\u0439\u043b .pfx SSL-\u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u0430. \u041f\u0440\u0438 \u0435\u0433\u043e \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u0438 \u0441\u0435\u0440\u0432\u0435\u0440 \u0441\u043e\u0437\u0434\u0430\u0441\u0442 \u0441\u0430\u043c\u043e\u043f\u043e\u0434\u043f\u0438\u0441\u0430\u043d\u043d\u044b\u0439 \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442.",
"TitleNotifications": "\u0423\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f", "TitleNotifications": "\u0423\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f",
"ButtonDonateWithPayPal": "\u041f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u0442\u044c \u0447\u0435\u0440\u0435\u0437 PayPal",
"OptionDetectArchiveFilesAsMedia": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0442\u044c \u0430\u0440\u0445\u0438\u0432\u043d\u044b\u0435 \u0444\u0430\u0439\u043b\u044b \u043a\u0430\u043a \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0449\u0438\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435", "OptionDetectArchiveFilesAsMedia": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0442\u044c \u0430\u0440\u0445\u0438\u0432\u043d\u044b\u0435 \u0444\u0430\u0439\u043b\u044b \u043a\u0430\u043a \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0449\u0438\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435",
"OptionDetectArchiveFilesAsMediaHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0444\u0430\u0439\u043b\u044b \u0441 \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u044f\u043c\u0438 .RAR \u0438 .ZIP \u0431\u0443\u0434\u0443\u0442 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u044b \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u043c\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043b\u043e\u0432.", "OptionDetectArchiveFilesAsMediaHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0444\u0430\u0439\u043b\u044b \u0441 \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u044f\u043c\u0438 .RAR \u0438 .ZIP \u0431\u0443\u0434\u0443\u0442 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u044b \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u043c\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043b\u043e\u0432.",
"LabelEnterConnectUserName": "\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0438\u043b\u0438 \u042d-\u043f\u043e\u0447\u0442\u0430:", "LabelEnterConnectUserName": "\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0438\u043b\u0438 \u042d-\u043f\u043e\u0447\u0442\u0430:",
@ -95,8 +94,8 @@
"FolderTypeMusic": "\u041c\u0443\u0437\u044b\u043a\u0430", "FolderTypeMusic": "\u041c\u0443\u0437\u044b\u043a\u0430",
"FolderTypeAdultVideos": "\u0412\u0437\u0440\u043e\u0441\u043b\u044b\u0435 \u0432\u0438\u0434\u0435\u043e", "FolderTypeAdultVideos": "\u0412\u0437\u0440\u043e\u0441\u043b\u044b\u0435 \u0432\u0438\u0434\u0435\u043e",
"FolderTypePhotos": "\u0424\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438", "FolderTypePhotos": "\u0424\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438",
"FolderTypeMusicVideos": "\u041c\u0443\u0437\u044b\u043a\u0430\u043b\u044c\u043d\u044b\u0435 \u0432\u0438\u0434\u0435\u043e", "FolderTypeMusicVideos": "\u041c\u0443\u0437-\u044b\u0435 \u0432\u0438\u0434\u0435\u043e",
"FolderTypeHomeVideos": "\u0414\u043e\u043c\u0430\u0448\u043d\u0438\u0435 \u0432\u0438\u0434\u0435\u043e", "FolderTypeHomeVideos": "\u0414\u043e\u043c-\u0438\u0435 \u0432\u0438\u0434\u0435\u043e",
"FolderTypeGames": "\u0418\u0433\u0440\u044b", "FolderTypeGames": "\u0418\u0433\u0440\u044b",
"FolderTypeBooks": "\u041a\u043d\u0438\u0433\u0438", "FolderTypeBooks": "\u041a\u043d\u0438\u0433\u0438",
"FolderTypeTvShows": "\u0422\u0412", "FolderTypeTvShows": "\u0422\u0412",
@ -196,8 +195,8 @@
"TabSongs": "\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438", "TabSongs": "\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438",
"TabAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u044b", "TabAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u044b",
"TabArtists": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438", "TabArtists": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438",
"TabAlbumArtists": "\u0418\u0441\u043f. \u0430\u043b\u044c\u0431\u043e\u043c\u0430", "TabAlbumArtists": "\u0418\u0441\u043f-\u043b\u0438 \u0430\u043b\u044c\u0431\u043e\u043c\u0430",
"TabMusicVideos": "\u041c\u0443\u0437. \u0432\u0438\u0434\u0435\u043e", "TabMusicVideos": "\u041c\u0443\u0437-\u044b\u0435 \u0432\u0438\u0434\u0435\u043e",
"ButtonSort": "\u0421\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c", "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:", "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:", "HeaderSortOrder": "\u041f\u043e\u0440\u044f\u0434\u043e\u043a \u0441\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0438:",
@ -210,7 +209,7 @@
"OptionPlayCount": "\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0435\u0434\u0435\u043d\u0438\u0439", "OptionPlayCount": "\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0435\u0434\u0435\u043d\u0438\u0439",
"OptionDatePlayed": "\u0414\u0430\u0442\u0430 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f", "OptionDatePlayed": "\u0414\u0430\u0442\u0430 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f",
"OptionDateAdded": "\u0414\u0430\u0442\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f", "OptionDateAdded": "\u0414\u0430\u0442\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f",
"OptionAlbumArtist": "\u0418\u0441\u043f-\u043b\u044c \u0430\u043b\u044c\u0431\u043e\u043c\u0430", "OptionAlbumArtist": "\u0418\u0441\u043f. \u0430\u043b\u044c\u0431\u043e\u043c\u0430",
"OptionArtist": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c", "OptionArtist": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c",
"OptionAlbum": "\u0410\u043b\u044c\u0431\u043e\u043c", "OptionAlbum": "\u0410\u043b\u044c\u0431\u043e\u043c",
"OptionTrackName": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0434\u043e\u0440\u043e\u0436\u043a\u0438", "OptionTrackName": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0434\u043e\u0440\u043e\u0436\u043a\u0438",
@ -289,8 +288,9 @@
"TitleSupport": "\u041f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430", "TitleSupport": "\u041f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430",
"TabLog": "\u0416\u0443\u0440\u043d\u0430\u043b", "TabLog": "\u0416\u0443\u0440\u043d\u0430\u043b",
"TabAbout": "\u041e \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0435", "TabAbout": "\u041e \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0435",
"TabSupporterKey": "\u041a\u043b\u044e\u0447 \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430", "TabSupporterKey": "Emby Premiere Key",
"TabBecomeSupporter": "\u0421\u0442\u0430\u0442\u044c \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u043e\u043c", "TabBecomeSupporter": "Get Emby Premiere",
"TabEmbyPremiere": "Emby Premiere",
"ProjectHasCommunity": "\u0423 Emby \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u0440\u0430\u0441\u0442\u0443\u0449\u0435\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u0438 \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u043e\u0432.", "ProjectHasCommunity": "\u0423 Emby \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u0440\u0430\u0441\u0442\u0443\u0449\u0435\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u0438 \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u043e\u0432.",
"CheckoutKnowledgeBase": "\u041e\u0437\u043d\u0430\u043a\u043e\u043c\u044c\u0442\u0435\u0441\u044c \u0441 \u0411\u0430\u0437\u043e\u0439 \u0437\u043d\u0430\u043d\u0438\u0439, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u043f\u043e\u043c\u043e\u0449\u044c \u043a\u0430\u043a \u0434\u043e\u0441\u0442\u0438\u0447\u044c \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e\u0439 \u043e\u0442\u0434\u0430\u0447\u0438 \u043e\u0442 Emby.", "CheckoutKnowledgeBase": "\u041e\u0437\u043d\u0430\u043a\u043e\u043c\u044c\u0442\u0435\u0441\u044c \u0441 \u0411\u0430\u0437\u043e\u0439 \u0437\u043d\u0430\u043d\u0438\u0439, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u043f\u043e\u043c\u043e\u0449\u044c \u043a\u0430\u043a \u0434\u043e\u0441\u0442\u0438\u0447\u044c \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e\u0439 \u043e\u0442\u0434\u0430\u0447\u0438 \u043e\u0442 Emby.",
"SearchKnowledgeBase": "\u0418\u0441\u043a\u0430\u0442\u044c \u0432 \u0411\u0430\u0437\u0435 \u0437\u043d\u0430\u043d\u0438\u0439", "SearchKnowledgeBase": "\u0418\u0441\u043a\u0430\u0442\u044c \u0432 \u0411\u0430\u0437\u0435 \u0437\u043d\u0430\u043d\u0438\u0439",
@ -485,7 +485,7 @@
"HeaderScenes": "\u0421\u0446\u0435\u043d\u044b", "HeaderScenes": "\u0421\u0446\u0435\u043d\u044b",
"HeaderAwardsAndReviews": "\u041d\u0430\u0433\u0440\u0430\u0434\u044b \u0438 \u0440\u0435\u0446\u0435\u043d\u0437\u0438\u0438", "HeaderAwardsAndReviews": "\u041d\u0430\u0433\u0440\u0430\u0434\u044b \u0438 \u0440\u0435\u0446\u0435\u043d\u0437\u0438\u0438",
"HeaderSoundtracks": "\u0421\u0430\u0443\u043d\u0434\u0442\u0440\u0435\u043a\u0438", "HeaderSoundtracks": "\u0421\u0430\u0443\u043d\u0434\u0442\u0440\u0435\u043a\u0438",
"HeaderMusicVideos": "\u041c\u0443\u0437\u044b\u043a\u0430\u043b\u044c\u043d\u044b\u0435 \u0432\u0438\u0434\u0435\u043e", "HeaderMusicVideos": "\u041c\u0443\u0437-\u044b\u0435 \u0432\u0438\u0434\u0435\u043e",
"HeaderSpecialFeatures": "\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u044b", "HeaderSpecialFeatures": "\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u044b",
"HeaderCastCrew": "\u0423\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0438 \u0441\u044a\u0451\u043c\u043e\u043a", "HeaderCastCrew": "\u0423\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0438 \u0441\u044a\u0451\u043c\u043e\u043a",
"HeaderAdditionalParts": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0435 \u0447\u0430\u0441\u0442\u0438", "HeaderAdditionalParts": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0435 \u0447\u0430\u0441\u0442\u0438",
@ -591,9 +591,9 @@
"LabelEndingEpisodeNumberHelp": "\u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u0444\u0430\u0439\u043b\u043e\u0432, \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0449\u0438\u0445 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u044d\u043f\u0438\u0437\u043e\u0434\u043e\u0432", "LabelEndingEpisodeNumberHelp": "\u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u0444\u0430\u0439\u043b\u043e\u0432, \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0449\u0438\u0445 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u044d\u043f\u0438\u0437\u043e\u0434\u043e\u0432",
"HeaderSupportTheTeam": "\u041f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0442\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u0443 Emby", "HeaderSupportTheTeam": "\u041f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0442\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u0443 Emby",
"LabelSupportAmount": "\u0421\u0443\u043c\u043c\u0430, USD", "LabelSupportAmount": "\u0421\u0443\u043c\u043c\u0430, USD",
"HeaderSupportTheTeamHelp": "\u041f\u043e\u043c\u043e\u0433\u0438\u0442\u0435 \u043f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f\u043c\u0438 \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0438\u0442\u044c \u0434\u0430\u043b\u044c\u043d\u0435\u0439\u0448\u0435\u0435 \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u0435 \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0430. \u0427\u0430\u0441\u0442\u044c \u0432\u0441\u0435\u0445 \u043f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u0439 \u0431\u0443\u0434\u0435\u0442 \u0432\u043b\u043e\u0436\u0435\u043d\u0430 \u0432 \u0434\u0440\u0443\u0433\u0438\u0435 \u0431\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u044b\u0435 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b, \u043d\u0430 \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043c\u044b \u043f\u043e\u043b\u0430\u0433\u0430\u0435\u043c\u0441\u044f.", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
"ButtonEnterSupporterKey": "\u0412\u0432\u0435\u0441\u0442\u0438 \u043a\u043b\u044e\u0447 \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430", "ButtonEnterSupporterKey": "Enter Emby Premiere key",
"DonationNextStep": "\u041f\u043e\u0441\u043b\u0435 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f \u0432\u0435\u0440\u043d\u0438\u0442\u0435\u0441\u044c, \u0438 \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u043a\u043b\u044e\u0447 \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u0435 \u043f\u043e \u042d-\u043f\u043e\u0447\u0442\u0435.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
"AutoOrganizeHelp": "\u041a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442 \u0430\u0432\u0442\u043e\u0440\u0435\u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u043e\u0442\u0441\u043b\u0435\u0436\u0438\u0432\u0430\u0435\u0442 \u043f\u0430\u043f\u043a\u0443 \u0434\u043b\u044f \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438 \u043d\u043e\u0432\u044b\u0445 \u0444\u0430\u0439\u043b\u043e\u0432, \u0438 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0438\u0442 \u0438\u0445 \u0432 \u043a\u0430\u0442\u0430\u043b\u043e\u0433\u0438 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445.", "AutoOrganizeHelp": "\u041a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442 \u0430\u0432\u0442\u043e\u0440\u0435\u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u043e\u0442\u0441\u043b\u0435\u0436\u0438\u0432\u0430\u0435\u0442 \u043f\u0430\u043f\u043a\u0443 \u0434\u043b\u044f \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438 \u043d\u043e\u0432\u044b\u0445 \u0444\u0430\u0439\u043b\u043e\u0432, \u0438 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0438\u0442 \u0438\u0445 \u0432 \u043a\u0430\u0442\u0430\u043b\u043e\u0433\u0438 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445.",
"AutoOrganizeTvHelp": "\u041f\u0440\u0438 \u0440\u0435\u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0422\u0412-\u0444\u0430\u0439\u043b\u043e\u0432, \u044d\u043f\u0438\u0437\u043e\u0434\u044b \u0431\u0443\u0434\u0443\u0442 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u044b \u0442\u043e\u043b\u044c\u043a\u043e \u0432 \u0438\u043c\u0435\u044e\u0449\u0438\u0435\u0441\u044f \u0441\u0435\u0440\u0438\u0430\u043b\u044b. \u041f\u0430\u043f\u043a\u0438 \u0434\u043b\u044f \u043d\u043e\u0432\u044b\u0445 \u0441\u0435\u0440\u0438\u0430\u043b\u043e\u0432 \u043d\u0435 \u0431\u0443\u0434\u0443\u0442 \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c\u0441\u044f.", "AutoOrganizeTvHelp": "\u041f\u0440\u0438 \u0440\u0435\u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0422\u0412-\u0444\u0430\u0439\u043b\u043e\u0432, \u044d\u043f\u0438\u0437\u043e\u0434\u044b \u0431\u0443\u0434\u0443\u0442 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u044b \u0442\u043e\u043b\u044c\u043a\u043e \u0432 \u0438\u043c\u0435\u044e\u0449\u0438\u0435\u0441\u044f \u0441\u0435\u0440\u0438\u0430\u043b\u044b. \u041f\u0430\u043f\u043a\u0438 \u0434\u043b\u044f \u043d\u043e\u0432\u044b\u0445 \u0441\u0435\u0440\u0438\u0430\u043b\u043e\u0432 \u043d\u0435 \u0431\u0443\u0434\u0443\u0442 \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c\u0441\u044f.",
"OptionEnableEpisodeOrganization": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0440\u0435\u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u044e \u043d\u043e\u0432\u044b\u0445 \u044d\u043f\u0438\u0437\u043e\u0434\u043e\u0432", "OptionEnableEpisodeOrganization": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0440\u0435\u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u044e \u043d\u043e\u0432\u044b\u0445 \u044d\u043f\u0438\u0437\u043e\u0434\u043e\u0432",
@ -639,20 +639,20 @@
"LabelDownMixAudioScale": "\u041a\u043e\u043c\u043f\u0435\u043d\u0441\u0430\u0446\u0438\u044f \u043f\u0440\u0438 \u043f\u043e\u043d\u0438\u0436\u0430\u044e\u0449\u0435\u043c \u043c\u0438\u043a\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0438:", "LabelDownMixAudioScale": "\u041a\u043e\u043c\u043f\u0435\u043d\u0441\u0430\u0446\u0438\u044f \u043f\u0440\u0438 \u043f\u043e\u043d\u0438\u0436\u0430\u044e\u0449\u0435\u043c \u043c\u0438\u043a\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0438:",
"LabelDownMixAudioScaleHelp": "\u041a\u043e\u043c\u043f\u0435\u043d\u0441\u0438\u0440\u0443\u0435\u0442\u0441\u044f \u0443\u0440\u043e\u0432\u0435\u043d\u044c \u0437\u0432\u0443\u043a\u0430 \u043f\u0440\u0438 \u043f\u043e\u043d\u0438\u0436\u0430\u044e\u0449\u0435\u043c \u043c\u0438\u043a\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0438. \u0417\u0430\u0434\u0430\u0439\u0442\u0435 1, \u0447\u0442\u043e\u0431\u044b \u043d\u0435 \u043c\u0435\u043d\u044f\u0442\u044c \u0438\u0441\u0445\u043e\u0434\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0443\u0440\u043e\u0432\u043d\u044f.", "LabelDownMixAudioScaleHelp": "\u041a\u043e\u043c\u043f\u0435\u043d\u0441\u0438\u0440\u0443\u0435\u0442\u0441\u044f \u0443\u0440\u043e\u0432\u0435\u043d\u044c \u0437\u0432\u0443\u043a\u0430 \u043f\u0440\u0438 \u043f\u043e\u043d\u0438\u0436\u0430\u044e\u0449\u0435\u043c \u043c\u0438\u043a\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0438. \u0417\u0430\u0434\u0430\u0439\u0442\u0435 1, \u0447\u0442\u043e\u0431\u044b \u043d\u0435 \u043c\u0435\u043d\u044f\u0442\u044c \u0438\u0441\u0445\u043e\u0434\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0443\u0440\u043e\u0432\u043d\u044f.",
"ButtonLinkKeys": "\u041f\u0435\u0440\u0435\u0432\u043e\u0434 \u043a\u043b\u044e\u0447\u0430", "ButtonLinkKeys": "\u041f\u0435\u0440\u0435\u0432\u043e\u0434 \u043a\u043b\u044e\u0447\u0430",
"LabelOldSupporterKey": "\u0421\u0442\u0430\u0440\u044b\u0439 \u043a\u043b\u044e\u0447 \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430", "LabelOldSupporterKey": "Old Emby Premiere key",
"LabelNewSupporterKey": "\u041d\u043e\u0432\u044b\u0439 \u043a\u043b\u044e\u0447 \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430", "LabelNewSupporterKey": "New Emby Premiere key",
"HeaderMultipleKeyLinking": "\u041f\u0435\u0440\u0435\u0445\u043e\u0434 \u043a \u043d\u043e\u0432\u043e\u043c\u0443 \u043a\u043b\u044e\u0447\u0443", "HeaderMultipleKeyLinking": "\u041f\u0435\u0440\u0435\u0445\u043e\u0434 \u043a \u043d\u043e\u0432\u043e\u043c\u0443 \u043a\u043b\u044e\u0447\u0443",
"MultipleKeyLinkingHelp": "\u0415\u0441\u043b\u0438 \u0432\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u043b\u0438 \u043d\u043e\u0432\u044b\u0439 \u043a\u043b\u044e\u0447 \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430, \u0432\u043e\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435\u0441\u044c \u0434\u0430\u043d\u043d\u043e\u0439 \u0444\u043e\u0440\u043c\u043e\u0439, \u0447\u0442\u043e\u0431\u044b \u043f\u0435\u0440\u0435\u0432\u0435\u0441\u0442\u0438 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u043d\u0430 \u0441\u0442\u0430\u0440\u043e\u043c \u043a\u043b\u044e\u0447\u0435 \u043a \u043d\u043e\u0432\u043e\u043c\u0443.", "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
"LabelCurrentEmailAddress": "\u0422\u0435\u043a\u0443\u0449\u0438\u0439 \u0430\u0434\u0440\u0435\u0441 \u042d-\u043f\u043e\u0447\u0442\u044b", "LabelCurrentEmailAddress": "\u0422\u0435\u043a\u0443\u0449\u0438\u0439 \u0430\u0434\u0440\u0435\u0441 \u042d-\u043f\u043e\u0447\u0442\u044b",
"LabelCurrentEmailAddressHelp": "\u0422\u0435\u043a\u0443\u0449\u0438\u0439 \u0430\u0434\u0440\u0435\u0441 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b, \u043d\u0430 \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0431\u044b\u043b \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d \u043d\u043e\u0432\u044b\u0439 \u043a\u043b\u044e\u0447.", "LabelCurrentEmailAddressHelp": "\u0422\u0435\u043a\u0443\u0449\u0438\u0439 \u0430\u0434\u0440\u0435\u0441 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0447\u0442\u044b, \u043d\u0430 \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0431\u044b\u043b \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d \u043d\u043e\u0432\u044b\u0439 \u043a\u043b\u044e\u0447.",
"HeaderForgotKey": "\u0417\u0430\u0431\u044b\u043b\u0438 \u043a\u043b\u044e\u0447?", "HeaderForgotKey": "\u0417\u0430\u0431\u044b\u043b\u0438 \u043a\u043b\u044e\u0447?",
"LabelEmailAddress": "\u0410\u0434\u0440\u0435\u0441 \u042d-\u043f\u043e\u0447\u0442\u044b", "LabelEmailAddress": "\u0410\u0434\u0440\u0435\u0441 \u042d-\u043f\u043e\u0447\u0442\u044b",
"LabelSupporterEmailAddress": "\u0410\u0434\u0440\u0435\u0441 \u042d-\u043f\u043e\u0447\u0442\u044b, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0431\u044b\u043b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d \u0434\u043b\u044f \u043f\u0440\u0438\u043e\u0431\u0440\u0435\u0442\u0435\u043d\u0438\u044f \u043a\u043b\u044e\u0447\u0430.", "LabelSupporterEmailAddress": "\u0410\u0434\u0440\u0435\u0441 \u042d-\u043f\u043e\u0447\u0442\u044b, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0431\u044b\u043b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d \u0434\u043b\u044f \u043f\u0440\u0438\u043e\u0431\u0440\u0435\u0442\u0435\u043d\u0438\u044f \u043a\u043b\u044e\u0447\u0430.",
"ButtonRetrieveKey": "\u0412\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u043a\u043b\u044e\u0447", "ButtonRetrieveKey": "\u0412\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u043a\u043b\u044e\u0447",
"LabelSupporterKey": "\u041a\u043b\u044e\u0447 \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430 (\u0432\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0438\u0437 \u043f\u0438\u0441\u044c\u043c\u0430 \u043f\u043e \u042d-\u043f\u043e\u0447\u0442\u0435)", "LabelSupporterKey": "Emby Premiere key (paste from email):",
"LabelSupporterKeyHelp": "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043a\u043b\u044e\u0447 \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430, \u0447\u0442\u043e\u0431\u044b \u043d\u0430\u0447\u0430\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c\u0438 \u0444\u0443\u043d\u043a\u0446\u0438\u044f\u043c\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0430\u043b\u043e \u0434\u043b\u044f Emby.", "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
"MessageInvalidKey": "\u041a\u043b\u044e\u0447 \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430 \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u0438\u043b\u0438 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043d\u0435\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c.", "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
"ErrorMessageInvalidKey": "\u0414\u043b\u044f \u0442\u043e\u0433\u043e, \u0447\u0442\u043e\u0431\u044b \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043b\u044e\u0431\u043e\u0435 \u043f\u0440\u0435\u043c\u0438\u0443\u043c \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435, \u0432\u044b \u0434\u043e\u043b\u0436\u043d\u044b \u0431\u044b\u0442\u044c \u0442\u0430\u043a\u0436\u0435 \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u043e\u043c Emby. \u0421\u0434\u0435\u043b\u0430\u0439\u0442\u0435 \u043f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u0435 \u0438 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0442\u0435 \u0434\u0430\u043b\u044c\u043d\u0435\u0439\u0448\u0435\u0435 \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u0435 \u043e\u0441\u043d\u043e\u0432\u043e\u043f\u043e\u043b\u0430\u0433\u0430\u044e\u0449\u0435\u0433\u043e \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0430.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
"HeaderDisplaySettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f", "HeaderDisplaySettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f",
"TabPlayTo": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0441\u0442\u0438 \u041d\u0430", "TabPlayTo": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0441\u0442\u0438 \u041d\u0430",
"LabelEnableDlnaServer": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c DLNA-\u0441\u0435\u0440\u0432\u0435\u0440", "LabelEnableDlnaServer": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c DLNA-\u0441\u0435\u0440\u0432\u0435\u0440",
@ -912,7 +912,7 @@
"OptionCommunityMostWatchedSort": "\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435 \u0431\u043e\u043b\u044c\u0448\u0435", "OptionCommunityMostWatchedSort": "\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435 \u0431\u043e\u043b\u044c\u0448\u0435",
"TabNextUp": "\u041e\u0447\u0435\u0440\u0435\u0434\u043d\u043e\u0435", "TabNextUp": "\u041e\u0447\u0435\u0440\u0435\u0434\u043d\u043e\u0435",
"PlaceholderUsername": "\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f", "PlaceholderUsername": "\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f",
"HeaderBecomeProjectSupporter": "\u0421\u0442\u0430\u043d\u044c\u0442\u0435 \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u043e\u043c Emby", "HeaderBecomeProjectSupporter": "Get Emby Premiere",
"MessageNoMovieSuggestionsAvailable": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u043d\u0435 \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u043c\u044b\u0445 \u0444\u0438\u043b\u044c\u043c\u043e\u0432. \u041d\u0430\u0447\u043d\u0438\u0442\u0435 \u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0438 \u043e\u0446\u0435\u043d\u0438\u0432\u0430\u0442\u044c \u0441\u0432\u043e\u0438 \u0444\u0438\u043b\u044c\u043c\u044b, \u0438 \u0442\u043e\u0433\u0434\u0430 \u0432\u0435\u0440\u043d\u0438\u0442\u0435\u0441\u044c \u043d\u0430\u0437\u0430\u0434, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0430\u0446\u0438\u0438.", "MessageNoMovieSuggestionsAvailable": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u043d\u0435 \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u043c\u044b\u0445 \u0444\u0438\u043b\u044c\u043c\u043e\u0432. \u041d\u0430\u0447\u043d\u0438\u0442\u0435 \u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0438 \u043e\u0446\u0435\u043d\u0438\u0432\u0430\u0442\u044c \u0441\u0432\u043e\u0438 \u0444\u0438\u043b\u044c\u043c\u044b, \u0438 \u0442\u043e\u0433\u0434\u0430 \u0432\u0435\u0440\u043d\u0438\u0442\u0435\u0441\u044c \u043d\u0430\u0437\u0430\u0434, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0430\u0446\u0438\u0438.",
"MessageNoCollectionsAvailable": "\u041a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438 \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u044e\u0442 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u043e\u0431\u043e\u0441\u043e\u0431\u043b\u0435\u043d\u043d\u044b\u0435 \u0441\u043e\u0431\u0440\u0430\u043d\u0438\u044f \u0444\u0438\u043b\u044c\u043c\u043e\u0432, \u0441\u0435\u0440\u0438\u0430\u043b\u043e\u0432, \u0430\u043b\u044c\u0431\u043e\u043c\u043e\u0432, \u043a\u043d\u0438\u0433 \u0438 \u0438\u0433\u0440. \u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u043a\u043d\u043e\u043f\u043a\u0443 \"+\", \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u0438\u0441\u0442\u0443\u043f\u0438\u0442\u044c \u043a \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044e \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0439.", "MessageNoCollectionsAvailable": "\u041a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438 \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u044e\u0442 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u043e\u0431\u043e\u0441\u043e\u0431\u043b\u0435\u043d\u043d\u044b\u0435 \u0441\u043e\u0431\u0440\u0430\u043d\u0438\u044f \u0444\u0438\u043b\u044c\u043c\u043e\u0432, \u0441\u0435\u0440\u0438\u0430\u043b\u043e\u0432, \u0430\u043b\u044c\u0431\u043e\u043c\u043e\u0432, \u043a\u043d\u0438\u0433 \u0438 \u0438\u0433\u0440. \u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u043a\u043d\u043e\u043f\u043a\u0443 \"+\", \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u0438\u0441\u0442\u0443\u043f\u0438\u0442\u044c \u043a \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044e \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0439.",
"MessageNoPlaylistsAvailable": "\u041f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442\u044b (\u0441\u043f\u0438\u0441\u043a\u0438 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f) \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u044e\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0441\u043f\u0438\u0441\u043a\u043e\u0432 \u0438\u0437 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0441\u0442\u0438 \u0435\u0434\u0438\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e. \u0427\u0442\u043e\u0431\u044b \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u0432\u043e \u0441\u043f\u0438\u0441\u043a\u0438, \u0449\u0435\u043b\u043a\u043d\u0438\u0442\u0435 \u043f\u0440\u0430\u0432\u043e\u0439 \u043a\u043d\u043e\u043f\u043a\u043e\u0439 \u043c\u044b\u0448\u0438 \u0438\u043b\u0438 \u043a\u043e\u0441\u043d\u0438\u0442\u0435\u0441\u044c \u0438 \u0443\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0439\u0442\u0435, \u0437\u0430\u0442\u0435\u043c \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u00ab\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u043f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442\u00bb.", "MessageNoPlaylistsAvailable": "\u041f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442\u044b (\u0441\u043f\u0438\u0441\u043a\u0438 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f) \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u044e\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0441\u043f\u0438\u0441\u043a\u043e\u0432 \u0438\u0437 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0441\u0442\u0438 \u0435\u0434\u0438\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e. \u0427\u0442\u043e\u0431\u044b \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u0432\u043e \u0441\u043f\u0438\u0441\u043a\u0438, \u0449\u0435\u043b\u043a\u043d\u0438\u0442\u0435 \u043f\u0440\u0430\u0432\u043e\u0439 \u043a\u043d\u043e\u043f\u043a\u043e\u0439 \u043c\u044b\u0448\u0438 \u0438\u043b\u0438 \u043a\u043e\u0441\u043d\u0438\u0442\u0435\u0441\u044c \u0438 \u0443\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0439\u0442\u0435, \u0437\u0430\u0442\u0435\u043c \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u00ab\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u043f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442\u00bb.",
@ -962,7 +962,7 @@
"ViewTypeMusicLatest": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435", "ViewTypeMusicLatest": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435",
"ViewTypeMusicPlaylists": "\u041f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442\u044b", "ViewTypeMusicPlaylists": "\u041f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442\u044b",
"ViewTypeMusicAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u044b", "ViewTypeMusicAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u044b",
"ViewTypeMusicAlbumArtists": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438 \u0430\u043b\u044c\u0431\u043e\u043c\u0430", "ViewTypeMusicAlbumArtists": "\u0418\u0441\u043f-\u043b\u0438 \u0430\u043b\u044c\u0431\u043e\u043c\u0430",
"HeaderOtherDisplaySettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f", "HeaderOtherDisplaySettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f",
"ViewTypeMusicSongs": "\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438", "ViewTypeMusicSongs": "\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438",
"ViewTypeMusicFavorites": "\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u043e\u0435", "ViewTypeMusicFavorites": "\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u043e\u0435",
@ -1002,8 +1002,6 @@
"HeaderBrandingHelp": "\u041f\u043e\u0434\u0441\u0442\u0440\u043e\u0439\u0442\u0435 \u043e\u0444\u043e\u0440\u043c\u043b\u0435\u043d\u0438\u0435 Emby \u0432 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u0438 \u0441 \u043f\u043e\u0442\u0440\u0435\u0431\u043d\u043e\u0441\u0442\u044f\u043c\u0438 \u0432\u0430\u0448\u0435\u0439 \u0433\u0440\u0443\u043f\u043f\u044b \u0438\u043b\u0438 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u0438.", "HeaderBrandingHelp": "\u041f\u043e\u0434\u0441\u0442\u0440\u043e\u0439\u0442\u0435 \u043e\u0444\u043e\u0440\u043c\u043b\u0435\u043d\u0438\u0435 Emby \u0432 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u0438 \u0441 \u043f\u043e\u0442\u0440\u0435\u0431\u043d\u043e\u0441\u0442\u044f\u043c\u0438 \u0432\u0430\u0448\u0435\u0439 \u0433\u0440\u0443\u043f\u043f\u044b \u0438\u043b\u0438 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u0438.",
"LabelLoginDisclaimer": "\u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0435 \u043f\u0440\u0438 \u0432\u0445\u043e\u0434\u0435:", "LabelLoginDisclaimer": "\u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0435 \u043f\u0440\u0438 \u0432\u0445\u043e\u0434\u0435:",
"LabelLoginDisclaimerHelp": "\u042d\u0442\u043e \u0431\u0443\u0434\u0435\u0442 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u0432 \u043d\u0438\u0436\u043d\u0435\u0439 \u0447\u0430\u0441\u0442\u0438 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b \u0432\u0445\u043e\u0434\u0430 \u0432 \u0441\u0438\u0441\u0442\u0435\u043c\u0443.", "LabelLoginDisclaimerHelp": "\u042d\u0442\u043e \u0431\u0443\u0434\u0435\u0442 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u0432 \u043d\u0438\u0436\u043d\u0435\u0439 \u0447\u0430\u0441\u0442\u0438 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b \u0432\u0445\u043e\u0434\u0430 \u0432 \u0441\u0438\u0441\u0442\u0435\u043c\u0443.",
"LabelAutomaticallyDonate": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u0442\u044c \u0434\u0430\u043d\u043d\u0443\u044e \u0441\u0443\u043c\u043c\u0443 \u043a\u0430\u0436\u0434\u044b\u0439 \u043c\u0435\u0441\u044f\u0446",
"LabelAutomaticallyDonateHelp": "\u041c\u043e\u0436\u043d\u043e \u0432 \u043b\u044e\u0431\u043e\u0435 \u0432\u0440\u0435\u043c\u044f \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u044d\u0442\u043e \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u0432\u0430\u0448\u0435\u0439 \u0443\u0447\u0435\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438 PayPal.",
"OptionList": "\u0421\u043f\u0438\u0441\u043e\u043a", "OptionList": "\u0421\u043f\u0438\u0441\u043e\u043a",
"TabDashboard": "\u0418\u043d\u0444\u043e\u043f\u0430\u043d\u0435\u043b\u044c", "TabDashboard": "\u0418\u043d\u0444\u043e\u043f\u0430\u043d\u0435\u043b\u044c",
"TitleServer": "\u0421\u0435\u0440\u0432\u0435\u0440", "TitleServer": "\u0421\u0435\u0440\u0432\u0435\u0440",
@ -1092,9 +1090,9 @@
"OptionReportSeries": "\u0422\u0412-\u0441\u0435\u0440\u0438\u0430\u043b\u044b", "OptionReportSeries": "\u0422\u0412-\u0441\u0435\u0440\u0438\u0430\u043b\u044b",
"OptionReportSeasons": "\u0422\u0412-\u0441\u0435\u0437\u043e\u043d\u044b", "OptionReportSeasons": "\u0422\u0412-\u0441\u0435\u0437\u043e\u043d\u044b",
"OptionReportTrailers": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u044b", "OptionReportTrailers": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u044b",
"OptionReportMusicVideos": "\u041c\u0443\u0437\u044b\u043a\u0430\u043b\u044c\u043d\u044b\u0435 \u0432\u0438\u0434\u0435\u043e", "OptionReportMusicVideos": "\u041c\u0443\u0437-\u044b\u0435 \u0432\u0438\u0434\u0435\u043e",
"OptionReportMovies": "\u0424\u0438\u043b\u044c\u043c\u044b", "OptionReportMovies": "\u0424\u0438\u043b\u044c\u043c\u044b",
"OptionReportHomeVideos": "\u0414\u043e\u043c\u0430\u0448\u043d\u0438\u0435 \u0432\u0438\u0434\u0435\u043e", "OptionReportHomeVideos": "\u0414\u043e\u043c-\u0438\u0435 \u0432\u0438\u0434\u0435\u043e",
"OptionReportGames": "\u0418\u0433\u0440\u044b", "OptionReportGames": "\u0418\u0433\u0440\u044b",
"OptionReportEpisodes": "\u0422\u0412-\u044d\u043f\u0438\u0437\u043e\u0434\u044b", "OptionReportEpisodes": "\u0422\u0412-\u044d\u043f\u0438\u0437\u043e\u0434\u044b",
"OptionReportCollections": "\u041a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438", "OptionReportCollections": "\u041a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438",
@ -1220,18 +1218,12 @@
"HeaderMetadataSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445", "HeaderMetadataSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445",
"LabelLockItemToPreventChanges": "\u0417\u0430\u0444\u0438\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0439 \u044d\u043b\u0435\u043c\u0435\u043d\u0442, \u0447\u0442\u043e\u0431\u044b \u0437\u0430\u043f\u0440\u0435\u0442\u0438\u0442\u044c \u0431\u0443\u0434\u0443\u0449\u0438\u0435 \u043f\u0440\u0430\u0432\u043a\u0438", "LabelLockItemToPreventChanges": "\u0417\u0430\u0444\u0438\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0439 \u044d\u043b\u0435\u043c\u0435\u043d\u0442, \u0447\u0442\u043e\u0431\u044b \u0437\u0430\u043f\u0440\u0435\u0442\u0438\u0442\u044c \u0431\u0443\u0434\u0443\u0449\u0438\u0435 \u043f\u0440\u0430\u0432\u043a\u0438",
"MessageLeaveEmptyToInherit": "\u041d\u0435 \u0437\u0430\u043f\u043e\u043b\u043d\u044f\u0439\u0442\u0435, \u0447\u0442\u043e\u0431\u044b \u043d\u0430\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u044c \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u043e\u0442 \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430, \u0438\u043b\u0438 \u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e.", "MessageLeaveEmptyToInherit": "\u041d\u0435 \u0437\u0430\u043f\u043e\u043b\u043d\u044f\u0439\u0442\u0435, \u0447\u0442\u043e\u0431\u044b \u043d\u0430\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u044c \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u043e\u0442 \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430, \u0438\u043b\u0438 \u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e.",
"TabDonate": "\u041f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f",
"HeaderDonationType": "\u0422\u0438\u043f \u043f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f:", "HeaderDonationType": "\u0422\u0438\u043f \u043f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f:",
"OptionMakeOneTimeDonation": "\u0421\u0434\u0435\u043b\u0430\u0442\u044c \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u043e\u0435 \u043f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u0435", "OptionMakeOneTimeDonation": "\u0421\u0434\u0435\u043b\u0430\u0442\u044c \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u043e\u0435 \u043f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u0435",
"OptionOneTimeDescription": "\u042d\u0442\u043e \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c \u043f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u0435\u043c \u043a\u043e\u043c\u0430\u043d\u0434\u0435 \u0434\u043b\u044f \u043f\u043e\u043a\u0430\u0437\u0430 \u0432\u0430\u0448\u0435\u0439 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0438. \u041d\u0435 \u0434\u0430\u0451\u0442 \u043d\u0438\u043a\u0430\u043a\u0438\u0445 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0445 \u043f\u0440\u0435\u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432 \u0438 \u043d\u0435 \u0431\u0443\u0434\u0435\u0442 \u0432\u044b\u043f\u0443\u0441\u043a\u0430\u0442\u044c\u0441\u044f \u043a\u043b\u044e\u0447 \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430.",
"OptionLifeTimeSupporterMembership": "\u041f\u043e\u0436\u0438\u0437\u043d\u0435\u043d\u043d\u043e\u0435 \u0447\u043b\u0435\u043d\u0441\u0442\u0432\u043e \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430",
"OptionYearlySupporterMembership": "\u0413\u043e\u0434\u043e\u0432\u043e\u0435 \u0447\u043b\u0435\u043d\u0441\u0442\u0432\u043e \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430",
"OptionMonthlySupporterMembership": "\u041c\u0435\u0441\u044f\u0447\u043d\u043e\u0435 \u0447\u043b\u0435\u043d\u0441\u0442\u0432\u043e \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430",
"OptionNoTrailer": "\u0411\u0435\u0437 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u0430", "OptionNoTrailer": "\u0411\u0435\u0437 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u0430",
"OptionNoThemeSong": "\u0411\u0435\u0437 \u0442\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u043a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438", "OptionNoThemeSong": "\u0411\u0435\u0437 \u0442\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u043a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438",
"OptionNoThemeVideo": "\u0411\u0435\u0437 \u0442\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u0432\u0438\u0434\u0435\u043e", "OptionNoThemeVideo": "\u0411\u0435\u0437 \u0442\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u0432\u0438\u0434\u0435\u043e",
"LabelOneTimeDonationAmount": "\u0421\u0443\u043c\u043c\u0430 \u043f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f:", "LabelOneTimeDonationAmount": "\u0421\u0443\u043c\u043c\u0430 \u043f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f:",
"ButtonDonate": "\u041f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u0442\u044c",
"ButtonPurchase": "\u041f\u0440\u0438\u043e\u0431\u0440\u0435\u0441\u0442\u0438", "ButtonPurchase": "\u041f\u0440\u0438\u043e\u0431\u0440\u0435\u0441\u0442\u0438",
"OptionActor": "\u0410\u043a\u0442\u0451\u0440", "OptionActor": "\u0410\u043a\u0442\u0451\u0440",
"OptionComposer": "\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0442\u043e\u0440", "OptionComposer": "\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0442\u043e\u0440",
@ -1245,9 +1237,9 @@
"HeaderPhotoInfo": "\u041e \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438", "HeaderPhotoInfo": "\u041e \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438",
"HeaderInstall": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430", "HeaderInstall": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430",
"LabelSelectVersionToInstall": "\u0412\u044b\u0431\u043e\u0440 \u0432\u0435\u0440\u0441\u0438\u0438 \u0434\u043b\u044f \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438:", "LabelSelectVersionToInstall": "\u0412\u044b\u0431\u043e\u0440 \u0432\u0435\u0440\u0441\u0438\u0438 \u0434\u043b\u044f \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438:",
"LinkSupporterMembership": "\u0423\u0437\u043d\u0430\u0442\u044c \u043e \u0447\u043b\u0435\u043d\u0441\u0442\u0432\u0435 \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430", "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
"MessageSupporterPluginRequiresMembership": "\u0414\u043b\u044f \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u043f\u043b\u0430\u0433\u0438\u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u0447\u043b\u0435\u043d\u0441\u0442\u0432\u043e \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430 \u043f\u043e\u0441\u043b\u0435 \u043f\u0440\u043e\u0431\u043d\u044b\u0445 14 \u0434\u043d\u0435\u0439 \u0431\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u043e\u0439 \u0432\u0435\u0440\u0441\u0438\u0438.", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
"MessagePremiumPluginRequiresMembership": "\u0414\u043b\u044f \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u043f\u043b\u0430\u0433\u0438\u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u0447\u043b\u0435\u043d\u0441\u0442\u0432\u043e \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430, \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u0438\u043e\u0431\u0440\u0435\u0441\u0442\u0438 \u0435\u0433\u043e \u043f\u043e\u0441\u043b\u0435 \u043f\u0440\u043e\u0431\u043d\u044b\u0445 14 \u0434\u043d\u0435\u0439 \u0431\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u043e\u0439 \u0432\u0435\u0440\u0441\u0438\u0438.", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
"HeaderReviews": "\u041e\u0442\u0437\u044b\u0432\u044b", "HeaderReviews": "\u041e\u0442\u0437\u044b\u0432\u044b",
"HeaderDeveloperInfo": "\u041e \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u0430\u0445", "HeaderDeveloperInfo": "\u041e \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u0430\u0445",
"HeaderRevisionHistory": "\u0418\u0441\u0442\u043e\u0440\u0438\u044f \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439", "HeaderRevisionHistory": "\u0418\u0441\u0442\u043e\u0440\u0438\u044f \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439",
@ -1292,7 +1284,7 @@
"LabelLimitIntrosToUnwatchedContent": "\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u044b \u0442\u043e\u043b\u044c\u043a\u043e \u043a \u043d\u0435\u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u043e\u043c\u0443 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044e", "LabelLimitIntrosToUnwatchedContent": "\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u044b \u0442\u043e\u043b\u044c\u043a\u043e \u043a \u043d\u0435\u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u043e\u043c\u0443 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044e",
"LabelEnableIntroParentalControl": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0438\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442\u0443\u0430\u043b\u044c\u043d\u043e\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435\u043c", "LabelEnableIntroParentalControl": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0438\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442\u0443\u0430\u043b\u044c\u043d\u043e\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435\u043c",
"LabelEnableIntroParentalControlHelp": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u044b \u0431\u0443\u0434\u0443\u0442 \u0432\u044b\u0431\u0438\u0440\u0430\u0442\u044c\u0441\u044f \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u043e\u0439 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0435\u0439 \u0440\u0430\u0432\u043d\u043e\u0439 \u0438\u043b\u0438 \u043c\u0435\u043d\u044c\u0448\u0435\u0439, \u0447\u0435\u043c \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u0435\u043c\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435.", "LabelEnableIntroParentalControlHelp": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u044b \u0431\u0443\u0434\u0443\u0442 \u0432\u044b\u0431\u0438\u0440\u0430\u0442\u044c\u0441\u044f \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u043e\u0439 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0435\u0439 \u0440\u0430\u0432\u043d\u043e\u0439 \u0438\u043b\u0438 \u043c\u0435\u043d\u044c\u0448\u0435\u0439, \u0447\u0435\u043c \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u0435\u043c\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435.",
"LabelTheseFeaturesRequireSupporterHelpAndTrailers": "\u0414\u043b\u044f \u0434\u0430\u043d\u043d\u044b\u0445 \u0444\u0443\u043d\u043a\u0446\u0438\u0439 \u0442\u0440\u0435\u0431\u0443\u044e\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u0447\u043b\u0435\u043d\u0441\u0442\u0432\u043e \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430 \u0438 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u043f\u043b\u0430\u0433\u0438\u043d\u0430 \u043a\u0430\u043d\u0430\u043b\u0430 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043e\u0432.", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "\u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u044b\u0445 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043e\u0432.", "OptionTrailersFromMyMoviesHelp": "\u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u044b\u0445 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043e\u0432.",
"LabelCustomIntrosPath": "\u041f\u0443\u0442\u044c \u043a \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u043c \u0437\u0430\u0441\u0442\u0430\u0432\u043a\u0430\u043c:", "LabelCustomIntrosPath": "\u041f\u0443\u0442\u044c \u043a \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u043c \u0437\u0430\u0441\u0442\u0430\u0432\u043a\u0430\u043c:",
"LabelCustomIntrosPathHelp": "\u041f\u0430\u043f\u043a\u0430, \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0449\u0430\u044f \u0432\u0438\u0434\u0435\u043e\u0444\u0430\u0439\u043b\u044b. \u0421\u043b\u0443\u0447\u0430\u0439\u043d\u043e \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u043e\u0435 \u0432\u0438\u0434\u0435\u043e \u0431\u0443\u0434\u0435\u0442 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u043e \u043f\u043e\u0441\u043b\u0435 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043e\u0432.", "LabelCustomIntrosPathHelp": "\u041f\u0430\u043f\u043a\u0430, \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0449\u0430\u044f \u0432\u0438\u0434\u0435\u043e\u0444\u0430\u0439\u043b\u044b. \u0421\u043b\u0443\u0447\u0430\u0439\u043d\u043e \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u043e\u0435 \u0432\u0438\u0434\u0435\u043e \u0431\u0443\u0434\u0435\u0442 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u043e \u043f\u043e\u0441\u043b\u0435 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043e\u0432.",
@ -1502,7 +1494,7 @@
"LabelTranscodingThreadCountHelp": "\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e\u0435 \u0447\u0438\u0441\u043b\u043e \u043f\u043e\u0434\u043f\u043e\u0442\u043e\u043a\u043e\u0432:, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u044b\u0445 \u043f\u0440\u0438 \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0435. \u0423\u043c\u0435\u043d\u044c\u0448\u0435\u043d\u0438\u0435 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u0430 \u043f\u043e\u0434\u043f\u043e\u0442\u043e\u043a\u043e\u0432 \u0441\u043d\u0438\u0436\u0430\u0435\u0442 \u043d\u0430\u0433\u0440\u0443\u0437\u043a\u0443 \u043d\u0430 \u0426\u041f, \u043d\u043e \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u043e\u0436\u0435\u0442 \u043e\u043a\u0430\u0437\u0430\u0442\u044c\u0441\u044f \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e\u0439 \u0434\u043b\u044f \u043e\u0449\u0443\u0449\u0435\u043d\u0438\u0439 \u043f\u043b\u0430\u0432\u043d\u043e\u0433\u043e \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f.", "LabelTranscodingThreadCountHelp": "\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e\u0435 \u0447\u0438\u0441\u043b\u043e \u043f\u043e\u0434\u043f\u043e\u0442\u043e\u043a\u043e\u0432:, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u044b\u0445 \u043f\u0440\u0438 \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0435. \u0423\u043c\u0435\u043d\u044c\u0448\u0435\u043d\u0438\u0435 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u0430 \u043f\u043e\u0434\u043f\u043e\u0442\u043e\u043a\u043e\u0432 \u0441\u043d\u0438\u0436\u0430\u0435\u0442 \u043d\u0430\u0433\u0440\u0443\u0437\u043a\u0443 \u043d\u0430 \u0426\u041f, \u043d\u043e \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u043e\u0436\u0435\u0442 \u043e\u043a\u0430\u0437\u0430\u0442\u044c\u0441\u044f \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e\u0439 \u0434\u043b\u044f \u043e\u0449\u0443\u0449\u0435\u043d\u0438\u0439 \u043f\u043b\u0430\u0432\u043d\u043e\u0433\u043e \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f.",
"OptionMax": "\u041c\u0430\u043a\u0441.", "OptionMax": "\u041c\u0430\u043a\u0441.",
"HeaderEmbyGuide": "\u0422\u0435\u043b\u0435\u0433\u0438\u0434 Emby", "HeaderEmbyGuide": "\u0422\u0435\u043b\u0435\u0433\u0438\u0434 Emby",
"LabelSyncPath": "\u041f\u0443\u0442\u044c \u043a \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u043c\u0443 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044e:", "LabelSyncPath": "\u041f\u0443\u0442\u044c \u043a \u0441\u0438\u043d\u0445\u0440-\u043c\u0443 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044e:",
"OptionSyncOnlyOnWifi": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u043f\u043e WiFi", "OptionSyncOnlyOnWifi": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u043f\u043e WiFi",
"OptionSyncLosslessAudioOriginal": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0430\u0443\u0434\u0438\u043e \u0431\u0435\u0437 \u043f\u043e\u0442\u0435\u0440\u044c \u043f\u0440\u0438 \u0438\u0441\u0445\u043e\u0434\u043d\u043e\u043c \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435", "OptionSyncLosslessAudioOriginal": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0430\u0443\u0434\u0438\u043e \u0431\u0435\u0437 \u043f\u043e\u0442\u0435\u0440\u044c \u043f\u0440\u0438 \u0438\u0441\u0445\u043e\u0434\u043d\u043e\u043c \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435",
"HeaderMetadata": "\u041c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435", "HeaderMetadata": "\u041c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435",
@ -1513,7 +1505,7 @@
"LabelTunerType": "\u0422\u0438\u043f \u0442\u044e\u043d\u0435\u0440\u0430:", "LabelTunerType": "\u0422\u0438\u043f \u0442\u044e\u043d\u0435\u0440\u0430:",
"HelpMoreTunersCanBeAdded": "\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0442\u044e\u043d\u0435\u0440\u044b \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u044b \u043f\u043e\u0437\u0436\u0435 \u0432\u043d\u0443\u0442\u0440\u0438 \u0440\u0430\u0437\u0434\u0435\u043b\u0430 \u042d\u0444\u0438\u0440.", "HelpMoreTunersCanBeAdded": "\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0442\u044e\u043d\u0435\u0440\u044b \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u044b \u043f\u043e\u0437\u0436\u0435 \u0432\u043d\u0443\u0442\u0440\u0438 \u0440\u0430\u0437\u0434\u0435\u043b\u0430 \u042d\u0444\u0438\u0440.",
"AdditionalLiveTvProvidersCanBeInstalledLater": "\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u044d\u0444\u0438\u0440\u043d\u043e\u0433\u043e \u0422\u0412 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u044b \u043f\u043e\u0437\u0436\u0435 \u0432 \u043f\u0440\u0435\u0434\u0435\u043b\u0430\u0445 \u0440\u0430\u0437\u0434\u0435\u043b\u0430 \u042d\u0444\u0438\u0440.", "AdditionalLiveTvProvidersCanBeInstalledLater": "\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u044d\u0444\u0438\u0440\u043d\u043e\u0433\u043e \u0422\u0412 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u044b \u043f\u043e\u0437\u0436\u0435 \u0432 \u043f\u0440\u0435\u0434\u0435\u043b\u0430\u0445 \u0440\u0430\u0437\u0434\u0435\u043b\u0430 \u042d\u0444\u0438\u0440.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u0447\u043b\u0435\u043d\u0441\u0442\u0432\u043e \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430 Emby \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u0442\u043e\u0433\u043e, \u0447\u0442\u043e\u0431\u044b \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0438 \u0441\u0435\u0440\u0438\u0439.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u0442\u0435\u043b\u0435\u0433\u0438\u0434\u0430", "HeaderSetupTVGuide": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u0442\u0435\u043b\u0435\u0433\u0438\u0434\u0430",
"LabelDataProvider": "\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a \u0434\u0430\u043d\u043d\u044b\u0445:", "LabelDataProvider": "\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a \u0434\u0430\u043d\u043d\u044b\u0445:",
"OptionSendRecordingsToAutoOrganize": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0430\u0432\u0442\u043e\u0440\u0435\u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u044e \u0434\u043b\u044f \u043d\u043e\u0432\u044b\u0445 \u0437\u0430\u043f\u0438\u0441\u0435\u0439", "OptionSendRecordingsToAutoOrganize": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0430\u0432\u0442\u043e\u0440\u0435\u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u044e \u0434\u043b\u044f \u043d\u043e\u0432\u044b\u0445 \u0437\u0430\u043f\u0438\u0441\u0435\u0439",
@ -1526,7 +1518,9 @@
"LabelVideoFrameAnalysisLimit": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435 \u043f\u043e\u043a\u0430\u0434\u0440\u043e\u0432\u043e\u0433\u043e \u0430\u043d\u0430\u043b\u0438\u0437\u0430 \u043a \u0432\u0438\u0434\u0435\u043e \u043c\u0435\u043d\u044c\u0448\u0435 \u0447\u0435\u043c:", "LabelVideoFrameAnalysisLimit": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435 \u043f\u043e\u043a\u0430\u0434\u0440\u043e\u0432\u043e\u0433\u043e \u0430\u043d\u0430\u043b\u0438\u0437\u0430 \u043a \u0432\u0438\u0434\u0435\u043e \u043c\u0435\u043d\u044c\u0448\u0435 \u0447\u0435\u043c:",
"LabelHardwareVideoDecoder": "\u0410\u043f\u043f\u0430\u0440\u0430\u0442\u043d\u044b\u0439 \u0434\u0435\u043a\u043e\u0434\u0435\u0440 \u0432\u0438\u0434\u0435\u043e:", "LabelHardwareVideoDecoder": "\u0410\u043f\u043f\u0430\u0440\u0430\u0442\u043d\u044b\u0439 \u0434\u0435\u043a\u043e\u0434\u0435\u0440 \u0432\u0438\u0434\u0435\u043e:",
"LabelHardwareVideoDecoderHelp": "\u0414\u043e\u0441\u0442\u0443\u043f\u043d\u043e \u0442\u043e\u043b\u044c\u043a\u043e \u043d\u0430 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u043c\u044b\u0445 \u0441\u0438\u0441\u0442\u0435\u043c\u0430\u0445.", "LabelHardwareVideoDecoderHelp": "\u0414\u043e\u0441\u0442\u0443\u043f\u043d\u043e \u0442\u043e\u043b\u044c\u043a\u043e \u043d\u0430 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u043c\u044b\u0445 \u0441\u0438\u0441\u0442\u0435\u043c\u0430\u0445.",
"ButtonServerDashboard": "Server Dashboard", "ButtonServerDashboard": "\u0418\u043d\u0444\u043e\u043f\u0430\u043d\u0435\u043b\u044c \u0441\u0435\u0440\u0432\u0435\u0440\u0430",
"HeaderAdmin": "\u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "HeaderAdmin": "\u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435",
"ButtonSignOut": "Sign out" "ButtonSignOut": "\u0412\u044b\u0439\u0442\u0438",
"HeaderCameraUpload": "\u0412\u044b\u043a\u043b\u0430\u0434\u043a\u0430 \u0441 \u043a\u0430\u043c\u0435\u0440\u044b",
"SelectCameraUploadServers": "\u0412\u044b\u043a\u043b\u0430\u0434\u043a\u0430 \u0441 \u043a\u0430\u043c\u0435\u0440\u044b \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0439 \u043d\u0430 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0435 \u0441\u0435\u0440\u0432\u0435\u0440\u044b:"
} }

View file

@ -48,7 +48,7 @@
"ButtonConvertMedia": "Convert media", "ButtonConvertMedia": "Convert media",
"ButtonOrganize": "Organize", "ButtonOrganize": "Organize",
"LinkedToEmbyConnect": "Linked to Emby Connect", "LinkedToEmbyConnect": "Linked to Emby Connect",
"HeaderSupporterBenefits": "Supporter Benefits", "HeaderSupporterBenefits": "Emby Premiere Benefits",
"HeaderAddUser": "Add User", "HeaderAddUser": "Add User",
"LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
"LabelPinCode": "Pin code:", "LabelPinCode": "Pin code:",
@ -75,14 +75,13 @@
"ButtonConfigurePinCode": "Configure pin code", "ButtonConfigurePinCode": "Configure pin code",
"HeaderAdultsReadHere": "Adults Read Here!", "HeaderAdultsReadHere": "Adults Read Here!",
"RegisterWithPayPal": "Register with PayPal", "RegisterWithPayPal": "Register with PayPal",
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership", "HeaderSyncRequiresSupporterMembership": "Sync Requires an Emby Premiere Subscription",
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial", "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
"LabelSyncTempPath": "Temporary file path:", "LabelSyncTempPath": "Temporary file path:",
"LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
"LabelCustomCertificatePath": "Custom certificate path:", "LabelCustomCertificatePath": "Custom certificate path:",
"LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.", "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ButtonDonateWithPayPal": "Donate with PayPal",
"OptionDetectArchiveFilesAsMedia": "Detect archive files as media", "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
"OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.", "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
"LabelEnterConnectUserName": "Username or email:", "LabelEnterConnectUserName": "Username or email:",
@ -289,8 +288,9 @@
"TitleSupport": "Support", "TitleSupport": "Support",
"TabLog": "Log", "TabLog": "Log",
"TabAbout": "About", "TabAbout": "About",
"TabSupporterKey": "Supporter Key", "TabSupporterKey": "Emby Premiere Key",
"TabBecomeSupporter": "Become a Supporter", "TabBecomeSupporter": "Get Emby Premiere",
"TabEmbyPremiere": "Emby Premiere",
"ProjectHasCommunity": "Emby has a thriving community of users and contributors.", "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.", "CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "Search the Knowledge Base", "SearchKnowledgeBase": "Search the Knowledge Base",
@ -594,9 +594,9 @@
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"LabelSupportAmount": "Amount (USD)", "LabelSupportAmount": "Amount (USD)",
"HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by donating. A portion of all donations will be contributed to other free tools we depend on.", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
"ButtonEnterSupporterKey": "Enter supporter key", "ButtonEnterSupporterKey": "Enter Emby Premiere key",
"DonationNextStep": "Once complete, please return and enter your supporter key, which you will receive by email.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
"AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.",
"AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.",
"OptionEnableEpisodeOrganization": "Enable new episode organization", "OptionEnableEpisodeOrganization": "Enable new episode organization",
@ -642,20 +642,20 @@
"LabelDownMixAudioScale": "Audio boost when downmixing:", "LabelDownMixAudioScale": "Audio boost when downmixing:",
"LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.",
"ButtonLinkKeys": "Transfer Key", "ButtonLinkKeys": "Transfer Key",
"LabelOldSupporterKey": "Old supporter key", "LabelOldSupporterKey": "Old Emby Premiere key",
"LabelNewSupporterKey": "New supporter key", "LabelNewSupporterKey": "New Emby Premiere key",
"HeaderMultipleKeyLinking": "Transfer to New Key", "HeaderMultipleKeyLinking": "Transfer to New Key",
"MultipleKeyLinkingHelp": "If you received a new supporter key, use this form to transfer the old key's registrations to your new one.", "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
"LabelCurrentEmailAddress": "Current email address", "LabelCurrentEmailAddress": "Current email address",
"LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.", "LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.",
"HeaderForgotKey": "Forgot Key", "HeaderForgotKey": "Forgot Key",
"LabelEmailAddress": "Email address", "LabelEmailAddress": "Email address",
"LabelSupporterEmailAddress": "The email address that was used to purchase the key.", "LabelSupporterEmailAddress": "The email address that was used to purchase the key.",
"ButtonRetrieveKey": "Retrieve Key", "ButtonRetrieveKey": "Retrieve Key",
"LabelSupporterKey": "Supporter Key (paste from email)", "LabelSupporterKey": "Emby Premiere key (paste from email):",
"LabelSupporterKeyHelp": "Enter your supporter key to start enjoying additional benefits the community has developed for Emby.", "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
"MessageInvalidKey": "Supporter key is missing or invalid.", "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
"ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also be an Emby Supporter. Please donate and support the continued development of the core product. Thank you.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
"HeaderDisplaySettings": "Display Settings", "HeaderDisplaySettings": "Display Settings",
"TabPlayTo": "Play To", "TabPlayTo": "Play To",
"LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServer": "Enable Dlna server",
@ -921,7 +921,7 @@
"OptionCommunityMostWatchedSort": "Most Watched", "OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up", "TabNextUp": "Next Up",
"PlaceholderUsername": "Username", "PlaceholderUsername": "Username",
"HeaderBecomeProjectSupporter": "Become an Emby Supporter", "HeaderBecomeProjectSupporter": "Get Emby Premiere",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
"MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
@ -1011,8 +1011,6 @@
"HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.",
"LabelLoginDisclaimer": "Login disclaimer:", "LabelLoginDisclaimer": "Login disclaimer:",
"LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.",
"LabelAutomaticallyDonate": "Automatically donate this amount every month",
"LabelAutomaticallyDonateHelp": "You can cancel at any time via your PayPal account.",
"OptionList": "List", "OptionList": "List",
"TabDashboard": "Dashboard", "TabDashboard": "Dashboard",
"TitleServer": "Server", "TitleServer": "Server",
@ -1035,7 +1033,7 @@
"LabelAppName": "App name", "LabelAppName": "App name",
"LabelAppNameExample": "Example: Sickbeard, NzbDrone", "LabelAppNameExample": "Example: Sickbeard, NzbDrone",
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.", "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
"ButtonEnterSupporterKey": "Enter supporter key", "ButtonEnterSupporterKey": "Enter Emby Premiere key",
"HeaderHttpHeaders": "Http Headers", "HeaderHttpHeaders": "Http Headers",
"HeaderIdentificationHeader": "Identification Header", "HeaderIdentificationHeader": "Identification Header",
"LabelValue": "Value:", "LabelValue": "Value:",
@ -1235,18 +1233,12 @@
"HeaderMetadataSettings": "Metadata Settings", "HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes", "LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
"TabDonate": "Donate",
"HeaderDonationType": "Donation type:", "HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation", "OptionMakeOneTimeDonation": "Make a separate donation",
"OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
"OptionYearlySupporterMembership": "Yearly supporter membership",
"OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer", "OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song", "OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video", "OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:", "LabelOneTimeDonationAmount": "Donation amount:",
"ButtonDonate": "Donate",
"ButtonPurchase": "Purchase", "ButtonPurchase": "Purchase",
"OptionActor": "Actor", "OptionActor": "Actor",
"OptionComposer": "Composer", "OptionComposer": "Composer",
@ -1260,9 +1252,9 @@
"HeaderPhotoInfo": "Photo Info", "HeaderPhotoInfo": "Photo Info",
"HeaderInstall": "Install", "HeaderInstall": "Install",
"LabelSelectVersionToInstall": "Select version to install:", "LabelSelectVersionToInstall": "Select version to install:",
"LinkSupporterMembership": "Learn about the Supporter Membership", "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
"MessageSupporterPluginRequiresMembership": "This plugin will require an active supporter membership after the 14 day free trial.", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
"MessagePremiumPluginRequiresMembership": "This plugin will require an active supporter membership in order to purchase after the 14 day free trial.", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
"HeaderReviews": "Reviews", "HeaderReviews": "Reviews",
"HeaderDeveloperInfo": "Developer Info", "HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History", "HeaderRevisionHistory": "Revision History",
@ -1307,7 +1299,7 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content", "LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control", "LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
"LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:", "LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
@ -1529,7 +1521,7 @@
"LabelTunerType": "Tuner type:", "LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.", "HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
"AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.", "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",

View file

@ -48,7 +48,7 @@
"ButtonConvertMedia": "Convert media", "ButtonConvertMedia": "Convert media",
"ButtonOrganize": "Organize", "ButtonOrganize": "Organize",
"LinkedToEmbyConnect": "Linked to Emby Connect", "LinkedToEmbyConnect": "Linked to Emby Connect",
"HeaderSupporterBenefits": "Supporter Benefits", "HeaderSupporterBenefits": "Emby Premiere Benefits",
"HeaderAddUser": "Add User", "HeaderAddUser": "Add User",
"LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
"LabelPinCode": "Pin code:", "LabelPinCode": "Pin code:",
@ -82,7 +82,6 @@
"LabelCustomCertificatePath": "Custom certificate path:", "LabelCustomCertificatePath": "Custom certificate path:",
"LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.", "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ButtonDonateWithPayPal": "Donate with PayPal",
"OptionDetectArchiveFilesAsMedia": "Detect archive files as media", "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
"OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.", "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
"LabelEnterConnectUserName": "Username or email:", "LabelEnterConnectUserName": "Username or email:",
@ -289,8 +288,9 @@
"TitleSupport": "Support", "TitleSupport": "Support",
"TabLog": "Log", "TabLog": "Log",
"TabAbout": "About", "TabAbout": "About",
"TabSupporterKey": "Supporter Key", "TabSupporterKey": "Emby Premiere Key",
"TabBecomeSupporter": "Become a Supporter", "TabBecomeSupporter": "Get Emby Premiere",
"TabEmbyPremiere": "Emby Premiere",
"ProjectHasCommunity": "Emby has a thriving community of users and contributors.", "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.", "CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "Search the Knowledge Base", "SearchKnowledgeBase": "Search the Knowledge Base",
@ -591,9 +591,9 @@
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"LabelSupportAmount": "Amount (USD)", "LabelSupportAmount": "Amount (USD)",
"HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by donating. A portion of all donations will be contributed to other free tools we depend on.", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
"ButtonEnterSupporterKey": "Enter supporter key", "ButtonEnterSupporterKey": "Enter Emby Premiere key",
"DonationNextStep": "Once complete, please return and enter your supporter key, which you will receive by email.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
"AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.",
"AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.",
"OptionEnableEpisodeOrganization": "Enable new episode organization", "OptionEnableEpisodeOrganization": "Enable new episode organization",
@ -639,20 +639,20 @@
"LabelDownMixAudioScale": "Audio boost when downmixing:", "LabelDownMixAudioScale": "Audio boost when downmixing:",
"LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.",
"ButtonLinkKeys": "Transfer Key", "ButtonLinkKeys": "Transfer Key",
"LabelOldSupporterKey": "Old supporter key", "LabelOldSupporterKey": "Old Emby Premiere key",
"LabelNewSupporterKey": "New supporter key", "LabelNewSupporterKey": "New Emby Premiere key",
"HeaderMultipleKeyLinking": "Transfer to New Key", "HeaderMultipleKeyLinking": "Transfer to New Key",
"MultipleKeyLinkingHelp": "If you received a new supporter key, use this form to transfer the old key's registrations to your new one.", "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
"LabelCurrentEmailAddress": "Current email address", "LabelCurrentEmailAddress": "Current email address",
"LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.", "LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.",
"HeaderForgotKey": "Forgot Key", "HeaderForgotKey": "Forgot Key",
"LabelEmailAddress": "Email address", "LabelEmailAddress": "Email address",
"LabelSupporterEmailAddress": "The email address that was used to purchase the key.", "LabelSupporterEmailAddress": "The email address that was used to purchase the key.",
"ButtonRetrieveKey": "Retrieve Key", "ButtonRetrieveKey": "Retrieve Key",
"LabelSupporterKey": "Supporter Key (paste from email)", "LabelSupporterKey": "Emby Premiere key (paste from email):",
"LabelSupporterKeyHelp": "Enter your supporter key to start enjoying additional benefits the community has developed for Emby.", "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
"MessageInvalidKey": "Supporter key is missing or invalid.", "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
"ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also be an Emby Supporter. Please donate and support the continued development of the core product. Thank you.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
"HeaderDisplaySettings": "Display Settings", "HeaderDisplaySettings": "Display Settings",
"TabPlayTo": "Play To", "TabPlayTo": "Play To",
"LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServer": "Enable Dlna server",
@ -912,7 +912,7 @@
"OptionCommunityMostWatchedSort": "Most Watched", "OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up", "TabNextUp": "Next Up",
"PlaceholderUsername": "Username", "PlaceholderUsername": "Username",
"HeaderBecomeProjectSupporter": "Become an Emby Supporter", "HeaderBecomeProjectSupporter": "Get Emby Premiere",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
"MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
@ -1002,8 +1002,6 @@
"HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.",
"LabelLoginDisclaimer": "Login disclaimer:", "LabelLoginDisclaimer": "Login disclaimer:",
"LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.",
"LabelAutomaticallyDonate": "Automatically donate this amount every month",
"LabelAutomaticallyDonateHelp": "You can cancel at any time via your PayPal account.",
"OptionList": "List", "OptionList": "List",
"TabDashboard": "Dashboard", "TabDashboard": "Dashboard",
"TitleServer": "Server", "TitleServer": "Server",
@ -1220,18 +1218,12 @@
"HeaderMetadataSettings": "Metadata Settings", "HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes", "LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
"TabDonate": "Donate",
"HeaderDonationType": "Donation type:", "HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation", "OptionMakeOneTimeDonation": "Make a separate donation",
"OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
"OptionYearlySupporterMembership": "Yearly supporter membership",
"OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer", "OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song", "OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video", "OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:", "LabelOneTimeDonationAmount": "Donation amount:",
"ButtonDonate": "Donate",
"ButtonPurchase": "Purchase", "ButtonPurchase": "Purchase",
"OptionActor": "Actor", "OptionActor": "Actor",
"OptionComposer": "Composer", "OptionComposer": "Composer",
@ -1245,9 +1237,9 @@
"HeaderPhotoInfo": "Photo Info", "HeaderPhotoInfo": "Photo Info",
"HeaderInstall": "Install", "HeaderInstall": "Install",
"LabelSelectVersionToInstall": "Select version to install:", "LabelSelectVersionToInstall": "Select version to install:",
"LinkSupporterMembership": "Learn about the Supporter Membership", "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
"MessageSupporterPluginRequiresMembership": "This plugin will require an active supporter membership after the 14 day free trial.", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
"MessagePremiumPluginRequiresMembership": "This plugin will require an active supporter membership in order to purchase after the 14 day free trial.", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
"HeaderReviews": "Reviews", "HeaderReviews": "Reviews",
"HeaderDeveloperInfo": "Developer Info", "HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History", "HeaderRevisionHistory": "Revision History",
@ -1292,7 +1284,7 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content", "LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control", "LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
"LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:", "LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
@ -1513,7 +1505,7 @@
"LabelTunerType": "Tuner type:", "LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.", "HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
"AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.", "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
@ -1528,5 +1520,7 @@
"LabelHardwareVideoDecoderHelp": "Available on supported systems only.", "LabelHardwareVideoDecoderHelp": "Available on supported systems only.",
"ButtonServerDashboard": "Server Dashboard", "ButtonServerDashboard": "Server Dashboard",
"HeaderAdmin": "Admin", "HeaderAdmin": "Admin",
"ButtonSignOut": "Sign out" "ButtonSignOut": "Sign out",
"HeaderCameraUpload": "Camera Upload",
"SelectCameraUploadServers": "Upload camera photos to the following servers:"
} }

View file

@ -48,7 +48,7 @@
"ButtonConvertMedia": "Convert media", "ButtonConvertMedia": "Convert media",
"ButtonOrganize": "Organize", "ButtonOrganize": "Organize",
"LinkedToEmbyConnect": "Linked to Emby Connect", "LinkedToEmbyConnect": "Linked to Emby Connect",
"HeaderSupporterBenefits": "Supporter Benefits", "HeaderSupporterBenefits": "Emby Premiere Benefits",
"HeaderAddUser": "Add User", "HeaderAddUser": "Add User",
"LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
"LabelPinCode": "Pin code:", "LabelPinCode": "Pin code:",
@ -82,7 +82,6 @@
"LabelCustomCertificatePath": "Custom certificate path:", "LabelCustomCertificatePath": "Custom certificate path:",
"LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.", "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ButtonDonateWithPayPal": "Donate with PayPal",
"OptionDetectArchiveFilesAsMedia": "Identifiera arkivfiler som media", "OptionDetectArchiveFilesAsMedia": "Identifiera arkivfiler som media",
"OptionDetectArchiveFilesAsMediaHelp": "Om aktiverad, kommer filer med .rar och .zip f\u00f6rl\u00e4ngningar att uppt\u00e4ckas som mediefiler.", "OptionDetectArchiveFilesAsMediaHelp": "Om aktiverad, kommer filer med .rar och .zip f\u00f6rl\u00e4ngningar att uppt\u00e4ckas som mediefiler.",
"LabelEnterConnectUserName": "Username or email:", "LabelEnterConnectUserName": "Username or email:",
@ -289,8 +288,9 @@
"TitleSupport": "Support", "TitleSupport": "Support",
"TabLog": "H\u00e4ndelselogg", "TabLog": "H\u00e4ndelselogg",
"TabAbout": "Om", "TabAbout": "Om",
"TabSupporterKey": "Donationskod", "TabSupporterKey": "Emby Premiere Key",
"TabBecomeSupporter": "Bidra med en donation", "TabBecomeSupporter": "Get Emby Premiere",
"TabEmbyPremiere": "Emby Premiere",
"ProjectHasCommunity": "Emby has a thriving community of users and contributors.", "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.", "CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "S\u00f6k i kunskapsdatabasen", "SearchKnowledgeBase": "S\u00f6k i kunskapsdatabasen",
@ -350,7 +350,7 @@
"LabelImagesByNamePath": "Plats f\u00f6r bilddatabasen (ImagesByName):", "LabelImagesByNamePath": "Plats f\u00f6r bilddatabasen (ImagesByName):",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.", "LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Plats f\u00f6r metadata:", "LabelMetadataPath": "Plats f\u00f6r metadata:",
"LabelMetadataPathHelp": "Ange en plats f\u00f6r nerladdad grafik och metadata, om du inte vill spara dessa i mediamapparna.", "LabelMetadataPathHelp": "Specify a custom location for downloaded artwork and metadata.",
"LabelTranscodingTempPath": "Mellanlagringsplats f\u00f6r omkodning:", "LabelTranscodingTempPath": "Mellanlagringsplats f\u00f6r omkodning:",
"LabelTranscodingTempPathHelp": "Denna mapp inneh\u00e5ller tillf\u00e4lliga filer som anv\u00e4nds vid omkodning. Ange en plats f\u00f6r dessa, eller l\u00e4mna blankt f\u00f6r att anv\u00e4nda f\u00f6rvald plats.", "LabelTranscodingTempPathHelp": "Denna mapp inneh\u00e5ller tillf\u00e4lliga filer som anv\u00e4nds vid omkodning. Ange en plats f\u00f6r dessa, eller l\u00e4mna blankt f\u00f6r att anv\u00e4nda f\u00f6rvald plats.",
"TabBasics": "Grunderna", "TabBasics": "Grunderna",
@ -591,9 +591,9 @@
"LabelEndingEpisodeNumberHelp": "Kr\u00e4vs endast f\u00f6r filer som inneh\u00e5ller flera avsnitt", "LabelEndingEpisodeNumberHelp": "Kr\u00e4vs endast f\u00f6r filer som inneh\u00e5ller flera avsnitt",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"LabelSupportAmount": "Belopp (USD)", "LabelSupportAmount": "Belopp (USD)",
"HeaderSupportTheTeamHelp": "Bidra till fortsatt utveckling av projektet genom att donera. En del av alla donationer kommer att ges till andra kostnadsfria verktyg som vi \u00e4r beroende av.", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
"ButtonEnterSupporterKey": "Ange din donationskod", "ButtonEnterSupporterKey": "Enter Emby Premiere key",
"DonationNextStep": "N\u00e4r du \u00e4r klar, g\u00e5 tillbaka och ange din donationskod, som du kommer att f\u00e5 via e-post.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
"AutoOrganizeHelp": "Automatisk katalogisering bevakar angivna mappar och flyttar nytillkomna objekt till dina mediamappar.", "AutoOrganizeHelp": "Automatisk katalogisering bevakar angivna mappar och flyttar nytillkomna objekt till dina mediamappar.",
"AutoOrganizeTvHelp": "Katalogiseringen av TV-avsnitt flyttar bara nya avsnitt av befintliga serier. Den skapar inte mappar f\u00f6r nya serier.", "AutoOrganizeTvHelp": "Katalogiseringen av TV-avsnitt flyttar bara nya avsnitt av befintliga serier. Den skapar inte mappar f\u00f6r nya serier.",
"OptionEnableEpisodeOrganization": "Aktivera katalogisering av nya avsnitt", "OptionEnableEpisodeOrganization": "Aktivera katalogisering av nya avsnitt",
@ -639,20 +639,20 @@
"LabelDownMixAudioScale": "H\u00f6j niv\u00e5n vid nedmixning av ljud", "LabelDownMixAudioScale": "H\u00f6j niv\u00e5n vid nedmixning av ljud",
"LabelDownMixAudioScaleHelp": "H\u00f6j niv\u00e5n vid nedmixning. S\u00e4tt v\u00e4rdet till 1 f\u00f6r att beh\u00e5lla den ursprungliga niv\u00e5n.", "LabelDownMixAudioScaleHelp": "H\u00f6j niv\u00e5n vid nedmixning. S\u00e4tt v\u00e4rdet till 1 f\u00f6r att beh\u00e5lla den ursprungliga niv\u00e5n.",
"ButtonLinkKeys": "Transfer Key", "ButtonLinkKeys": "Transfer Key",
"LabelOldSupporterKey": "Tidigare donationskod", "LabelOldSupporterKey": "Old Emby Premiere key",
"LabelNewSupporterKey": "Ny donationskod", "LabelNewSupporterKey": "New Emby Premiere key",
"HeaderMultipleKeyLinking": "Transfer to New Key", "HeaderMultipleKeyLinking": "Transfer to New Key",
"MultipleKeyLinkingHelp": "Om du f\u00e5tt en ny supporter nyckel, anv\u00e4nd detta formul\u00e4r f\u00f6r att \u00f6verf\u00f6ra gamla nyckelns registreringar till din nya.", "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
"LabelCurrentEmailAddress": "Nuvarande e-postadress", "LabelCurrentEmailAddress": "Nuvarande e-postadress",
"LabelCurrentEmailAddressHelp": "Den e-postadress den nya koden skickades till.", "LabelCurrentEmailAddressHelp": "Den e-postadress den nya koden skickades till.",
"HeaderForgotKey": "Gl\u00f6mt koden", "HeaderForgotKey": "Gl\u00f6mt koden",
"LabelEmailAddress": "E-postadress", "LabelEmailAddress": "E-postadress",
"LabelSupporterEmailAddress": "Den e-postadress du angav vid k\u00f6pet av den nya koden.", "LabelSupporterEmailAddress": "Den e-postadress du angav vid k\u00f6pet av den nya koden.",
"ButtonRetrieveKey": "H\u00e4mta donationskod", "ButtonRetrieveKey": "H\u00e4mta donationskod",
"LabelSupporterKey": "Donationskod (klistra in fr\u00e5n e-postmeddelandet)", "LabelSupporterKey": "Emby Premiere key (paste from email):",
"LabelSupporterKeyHelp": "Enter your supporter key to start enjoying additional benefits the community has developed for Emby.", "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
"MessageInvalidKey": "Supporterkod ogiltig eller saknas.", "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
"ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also be an Emby Supporter. Please donate and support the continued development of the core product. Thank you.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
"HeaderDisplaySettings": "Bildsk\u00e4rmsinst\u00e4llningar", "HeaderDisplaySettings": "Bildsk\u00e4rmsinst\u00e4llningar",
"TabPlayTo": "Spela upp p\u00e5", "TabPlayTo": "Spela upp p\u00e5",
"LabelEnableDlnaServer": "Aktivera DLNA-server", "LabelEnableDlnaServer": "Aktivera DLNA-server",
@ -912,7 +912,7 @@
"OptionCommunityMostWatchedSort": "Oftast visade", "OptionCommunityMostWatchedSort": "Oftast visade",
"TabNextUp": "N\u00e4stkommande", "TabNextUp": "N\u00e4stkommande",
"PlaceholderUsername": "Username", "PlaceholderUsername": "Username",
"HeaderBecomeProjectSupporter": "Become an Emby Supporter", "HeaderBecomeProjectSupporter": "Get Emby Premiere",
"MessageNoMovieSuggestionsAvailable": "Det finns inga filmf\u00f6rslag f\u00f6r tillf\u00e4llet. Efter att ha sett ett antal filmer kan du \u00e5terkomma hit f\u00f6r att se dina f\u00f6rslag.", "MessageNoMovieSuggestionsAvailable": "Det finns inga filmf\u00f6rslag f\u00f6r tillf\u00e4llet. Efter att ha sett ett antal filmer kan du \u00e5terkomma hit f\u00f6r att se dina f\u00f6rslag.",
"MessageNoCollectionsAvailable": "Samlingar g\u00f6r det m\u00f6jligt att avnjuta personliga grupperingar av filmer, serier, Album, b\u00f6cker och spel. Klicka p\u00e5 knappen + f\u00f6r att b\u00f6rja skapa samlingar.", "MessageNoCollectionsAvailable": "Samlingar g\u00f6r det m\u00f6jligt att avnjuta personliga grupperingar av filmer, serier, Album, b\u00f6cker och spel. Klicka p\u00e5 knappen + f\u00f6r att b\u00f6rja skapa samlingar.",
"MessageNoPlaylistsAvailable": "Spellistor l\u00e5ter dig skapa listor med inneh\u00e5ll att spela upp i ordning. F\u00f6r att l\u00e4gga till objekt i spellistor, h\u00f6gerklicka eller tryck-och-h\u00e5ll och v\u00e4lj \"l\u00e4gg till i spellista\".", "MessageNoPlaylistsAvailable": "Spellistor l\u00e5ter dig skapa listor med inneh\u00e5ll att spela upp i ordning. F\u00f6r att l\u00e4gga till objekt i spellistor, h\u00f6gerklicka eller tryck-och-h\u00e5ll och v\u00e4lj \"l\u00e4gg till i spellista\".",
@ -1002,8 +1002,6 @@
"HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.",
"LabelLoginDisclaimer": "Ansvarsbegr\u00e4nsning vid inloggning:", "LabelLoginDisclaimer": "Ansvarsbegr\u00e4nsning vid inloggning:",
"LabelLoginDisclaimerHelp": "Detta visas l\u00e4ngst ned p\u00e5 inloggningssidan.", "LabelLoginDisclaimerHelp": "Detta visas l\u00e4ngst ned p\u00e5 inloggningssidan.",
"LabelAutomaticallyDonate": "Donera detta belopp automatiskt varje m\u00e5nad",
"LabelAutomaticallyDonateHelp": "Du kan avbryta n\u00e4r som helst via ditt PayPal-konto.",
"OptionList": "Lista", "OptionList": "Lista",
"TabDashboard": "Kontrollpanel", "TabDashboard": "Kontrollpanel",
"TitleServer": "Server", "TitleServer": "Server",
@ -1220,18 +1218,12 @@
"HeaderMetadataSettings": "Metadatainst\u00e4llningar", "HeaderMetadataSettings": "Metadatainst\u00e4llningar",
"LabelLockItemToPreventChanges": "L\u00e5s det h\u00e4r objektet f\u00f6r att f\u00f6rhindra \u00e4ndringar", "LabelLockItemToPreventChanges": "L\u00e5s det h\u00e4r objektet f\u00f6r att f\u00f6rhindra \u00e4ndringar",
"MessageLeaveEmptyToInherit": "L\u00e4mna tomt f\u00f6r att \u00e4rva inst\u00e4llningarna fr\u00e5n \u00f6verordnat objekt, eller anv\u00e4nda globalt f\u00f6rval.", "MessageLeaveEmptyToInherit": "L\u00e4mna tomt f\u00f6r att \u00e4rva inst\u00e4llningarna fr\u00e5n \u00f6verordnat objekt, eller anv\u00e4nda globalt f\u00f6rval.",
"TabDonate": "L\u00e4mna bidrag",
"HeaderDonationType": "Donationstyp:", "HeaderDonationType": "Donationstyp:",
"OptionMakeOneTimeDonation": "Ge ett extra bidrag", "OptionMakeOneTimeDonation": "Ge ett extra bidrag",
"OptionOneTimeDescription": "Detta \u00e4r ett extra bidrag f\u00f6r att visa ditt st\u00f6d f\u00f6r teamet. Det ger inga ytterligare f\u00f6rm\u00e5ner och ingen supporterkod.",
"OptionLifeTimeSupporterMembership": "Livstids supportermedlemskap",
"OptionYearlySupporterMembership": "\u00c5rligt supportermedlemskap",
"OptionMonthlySupporterMembership": "M\u00e5natligt supportermedlemskap",
"OptionNoTrailer": "Trailer saknas", "OptionNoTrailer": "Trailer saknas",
"OptionNoThemeSong": "Ledmotiv saknas", "OptionNoThemeSong": "Ledmotiv saknas",
"OptionNoThemeVideo": "Temavideo saknas", "OptionNoThemeVideo": "Temavideo saknas",
"LabelOneTimeDonationAmount": "Bidragsbelopp:", "LabelOneTimeDonationAmount": "Bidragsbelopp:",
"ButtonDonate": "Donera",
"ButtonPurchase": "Purchase", "ButtonPurchase": "Purchase",
"OptionActor": "Sk\u00e5despelare", "OptionActor": "Sk\u00e5despelare",
"OptionComposer": "Komposit\u00f6r", "OptionComposer": "Komposit\u00f6r",
@ -1245,9 +1237,9 @@
"HeaderPhotoInfo": "Fotoinformation", "HeaderPhotoInfo": "Fotoinformation",
"HeaderInstall": "Installera", "HeaderInstall": "Installera",
"LabelSelectVersionToInstall": "V\u00e4lj version att installera:", "LabelSelectVersionToInstall": "V\u00e4lj version att installera:",
"LinkSupporterMembership": "Visa information om supportermedlemskap", "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
"MessageSupporterPluginRequiresMembership": "Denna plugin kr\u00e4ver ett akivt supportermedlemskap efter en gratis provperiod p\u00e5 14 dagar.", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
"MessagePremiumPluginRequiresMembership": "Denna plugin kr\u00e4ver ett akivt supportermedlemskap f\u00f6r k\u00f6p efter en gratis provperiod p\u00e5 14 dagar.", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
"HeaderReviews": "Recensioner", "HeaderReviews": "Recensioner",
"HeaderDeveloperInfo": "Information f\u00f6r utvecklare", "HeaderDeveloperInfo": "Information f\u00f6r utvecklare",
"HeaderRevisionHistory": "Revisionshistorik", "HeaderRevisionHistory": "Revisionshistorik",
@ -1292,7 +1284,7 @@
"LabelLimitIntrosToUnwatchedContent": "Anv\u00e4nd bara trailers f\u00f6r objekt som ej visats", "LabelLimitIntrosToUnwatchedContent": "Anv\u00e4nd bara trailers f\u00f6r objekt som ej visats",
"LabelEnableIntroParentalControl": "Aktivera intelligent f\u00f6r\u00e4ldral\u00e5s", "LabelEnableIntroParentalControl": "Aktivera intelligent f\u00f6r\u00e4ldral\u00e5s",
"LabelEnableIntroParentalControlHelp": "Enbart trailers med samma eller l\u00e4gre \u00e5ldersgr\u00e4ns som huvudmaterialet kommer att visas.", "LabelEnableIntroParentalControlHelp": "Enbart trailers med samma eller l\u00e4gre \u00e5ldersgr\u00e4ns som huvudmaterialet kommer att visas.",
"LabelTheseFeaturesRequireSupporterHelpAndTrailers": "Dessa funktioner kr\u00e4ver ett akivt supportermedlemskap och installation av till\u00e4gget \"Trailer Channels\".", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Kr\u00e4ver att lokala trailers konfigurerats.", "OptionTrailersFromMyMoviesHelp": "Kr\u00e4ver att lokala trailers konfigurerats.",
"LabelCustomIntrosPath": "S\u00f6kv\u00e4g f\u00f6r egna vinjetter:", "LabelCustomIntrosPath": "S\u00f6kv\u00e4g f\u00f6r egna vinjetter:",
"LabelCustomIntrosPathHelp": "En mapp inneh\u00e5llande videofiler. En video kommer att v\u00e4ljas slumpm\u00e4ssigt och spelas upp efter trailers.", "LabelCustomIntrosPathHelp": "En mapp inneh\u00e5llande videofiler. En video kommer att v\u00e4ljas slumpm\u00e4ssigt och spelas upp efter trailers.",
@ -1513,7 +1505,7 @@
"LabelTunerType": "Tuner type:", "LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.", "HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
"AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.", "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
@ -1528,5 +1520,7 @@
"LabelHardwareVideoDecoderHelp": "Available on supported systems only.", "LabelHardwareVideoDecoderHelp": "Available on supported systems only.",
"ButtonServerDashboard": "Server Dashboard", "ButtonServerDashboard": "Server Dashboard",
"HeaderAdmin": "Admin", "HeaderAdmin": "Admin",
"ButtonSignOut": "Sign out" "ButtonSignOut": "Sign out",
"HeaderCameraUpload": "Camera Upload",
"SelectCameraUploadServers": "Upload camera photos to the following servers:"
} }

View file

@ -48,7 +48,7 @@
"ButtonConvertMedia": "Convert media", "ButtonConvertMedia": "Convert media",
"ButtonOrganize": "Organize", "ButtonOrganize": "Organize",
"LinkedToEmbyConnect": "Linked to Emby Connect", "LinkedToEmbyConnect": "Linked to Emby Connect",
"HeaderSupporterBenefits": "Supporter Benefits", "HeaderSupporterBenefits": "Emby Premiere Benefits",
"HeaderAddUser": "Add User", "HeaderAddUser": "Add User",
"LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
"LabelPinCode": "Pin code:", "LabelPinCode": "Pin code:",
@ -82,7 +82,6 @@
"LabelCustomCertificatePath": "Custom certificate path:", "LabelCustomCertificatePath": "Custom certificate path:",
"LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.", "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ButtonDonateWithPayPal": "Donate with PayPal",
"OptionDetectArchiveFilesAsMedia": "Detect archive files as media", "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
"OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.", "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
"LabelEnterConnectUserName": "Username or email:", "LabelEnterConnectUserName": "Username or email:",
@ -289,8 +288,9 @@
"TitleSupport": "Destek", "TitleSupport": "Destek",
"TabLog": "Kay\u0131t", "TabLog": "Kay\u0131t",
"TabAbout": "Hakk\u0131nda", "TabAbout": "Hakk\u0131nda",
"TabSupporterKey": "Destek\u00e7i kodu", "TabSupporterKey": "Emby Premiere Key",
"TabBecomeSupporter": "Destek\u00e7i ol", "TabBecomeSupporter": "Get Emby Premiere",
"TabEmbyPremiere": "Emby Premiere",
"ProjectHasCommunity": "Emby has a thriving community of users and contributors.", "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.", "CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "Search the Knowledge Base", "SearchKnowledgeBase": "Search the Knowledge Base",
@ -591,9 +591,9 @@
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"LabelSupportAmount": "Amount (USD)", "LabelSupportAmount": "Amount (USD)",
"HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by donating. A portion of all donations will be contributed to other free tools we depend on.", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
"ButtonEnterSupporterKey": "Enter supporter key", "ButtonEnterSupporterKey": "Enter Emby Premiere key",
"DonationNextStep": "Once complete, please return and enter your supporter key, which you will receive by email.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
"AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.",
"AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.",
"OptionEnableEpisodeOrganization": "Enable new episode organization", "OptionEnableEpisodeOrganization": "Enable new episode organization",
@ -639,20 +639,20 @@
"LabelDownMixAudioScale": "Audio boost when downmixing:", "LabelDownMixAudioScale": "Audio boost when downmixing:",
"LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.",
"ButtonLinkKeys": "Transfer Key", "ButtonLinkKeys": "Transfer Key",
"LabelOldSupporterKey": "Old supporter key", "LabelOldSupporterKey": "Old Emby Premiere key",
"LabelNewSupporterKey": "New supporter key", "LabelNewSupporterKey": "New Emby Premiere key",
"HeaderMultipleKeyLinking": "Transfer to New Key", "HeaderMultipleKeyLinking": "Transfer to New Key",
"MultipleKeyLinkingHelp": "If you received a new supporter key, use this form to transfer the old key's registrations to your new one.", "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
"LabelCurrentEmailAddress": "Current email address", "LabelCurrentEmailAddress": "Current email address",
"LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.", "LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.",
"HeaderForgotKey": "Forgot Key", "HeaderForgotKey": "Forgot Key",
"LabelEmailAddress": "Email address", "LabelEmailAddress": "Email address",
"LabelSupporterEmailAddress": "The email address that was used to purchase the key.", "LabelSupporterEmailAddress": "The email address that was used to purchase the key.",
"ButtonRetrieveKey": "Retrieve Key", "ButtonRetrieveKey": "Retrieve Key",
"LabelSupporterKey": "Supporter Key (paste from email)", "LabelSupporterKey": "Emby Premiere key (paste from email):",
"LabelSupporterKeyHelp": "Enter your supporter key to start enjoying additional benefits the community has developed for Emby.", "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
"MessageInvalidKey": "Supporter key is missing or invalid.", "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
"ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also be an Emby Supporter. Please donate and support the continued development of the core product. Thank you.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
"HeaderDisplaySettings": "Display Settings", "HeaderDisplaySettings": "Display Settings",
"TabPlayTo": "Play To", "TabPlayTo": "Play To",
"LabelEnableDlnaServer": "DLNA Sunucusu etkin", "LabelEnableDlnaServer": "DLNA Sunucusu etkin",
@ -912,7 +912,7 @@
"OptionCommunityMostWatchedSort": "Most Watched", "OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Sonraki hafta", "TabNextUp": "Sonraki hafta",
"PlaceholderUsername": "Username", "PlaceholderUsername": "Username",
"HeaderBecomeProjectSupporter": "Become an Emby Supporter", "HeaderBecomeProjectSupporter": "Get Emby Premiere",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
"MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
@ -1002,8 +1002,6 @@
"HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.",
"LabelLoginDisclaimer": "Login disclaimer:", "LabelLoginDisclaimer": "Login disclaimer:",
"LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.",
"LabelAutomaticallyDonate": "Automatically donate this amount every month",
"LabelAutomaticallyDonateHelp": "You can cancel at any time via your PayPal account.",
"OptionList": "List", "OptionList": "List",
"TabDashboard": "Dashboard", "TabDashboard": "Dashboard",
"TitleServer": "Sunucu", "TitleServer": "Sunucu",
@ -1220,18 +1218,12 @@
"HeaderMetadataSettings": "Metadata Settings", "HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes", "LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
"TabDonate": "Donate",
"HeaderDonationType": "Donation type:", "HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation", "OptionMakeOneTimeDonation": "Make a separate donation",
"OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
"OptionYearlySupporterMembership": "Yearly supporter membership",
"OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer", "OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song", "OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video", "OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:", "LabelOneTimeDonationAmount": "Donation amount:",
"ButtonDonate": "Donate",
"ButtonPurchase": "Purchase", "ButtonPurchase": "Purchase",
"OptionActor": "Actor", "OptionActor": "Actor",
"OptionComposer": "Composer", "OptionComposer": "Composer",
@ -1245,9 +1237,9 @@
"HeaderPhotoInfo": "Photo Info", "HeaderPhotoInfo": "Photo Info",
"HeaderInstall": "Install", "HeaderInstall": "Install",
"LabelSelectVersionToInstall": "Select version to install:", "LabelSelectVersionToInstall": "Select version to install:",
"LinkSupporterMembership": "Learn about the Supporter Membership", "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
"MessageSupporterPluginRequiresMembership": "This plugin will require an active supporter membership after the 14 day free trial.", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
"MessagePremiumPluginRequiresMembership": "This plugin will require an active supporter membership in order to purchase after the 14 day free trial.", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
"HeaderReviews": "Reviews", "HeaderReviews": "Reviews",
"HeaderDeveloperInfo": "Developer Info", "HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History", "HeaderRevisionHistory": "Revision History",
@ -1292,7 +1284,7 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content", "LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control", "LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
"LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:", "LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
@ -1513,7 +1505,7 @@
"LabelTunerType": "Tuner type:", "LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.", "HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
"AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.", "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
@ -1528,5 +1520,7 @@
"LabelHardwareVideoDecoderHelp": "Available on supported systems only.", "LabelHardwareVideoDecoderHelp": "Available on supported systems only.",
"ButtonServerDashboard": "Server Dashboard", "ButtonServerDashboard": "Server Dashboard",
"HeaderAdmin": "Admin", "HeaderAdmin": "Admin",
"ButtonSignOut": "Sign out" "ButtonSignOut": "Sign out",
"HeaderCameraUpload": "Camera Upload",
"SelectCameraUploadServers": "Upload camera photos to the following servers:"
} }

View file

@ -48,7 +48,7 @@
"ButtonConvertMedia": "Convert media", "ButtonConvertMedia": "Convert media",
"ButtonOrganize": "Organize", "ButtonOrganize": "Organize",
"LinkedToEmbyConnect": "Linked to Emby Connect", "LinkedToEmbyConnect": "Linked to Emby Connect",
"HeaderSupporterBenefits": "Supporter Benefits", "HeaderSupporterBenefits": "Emby Premiere Benefits",
"HeaderAddUser": "Add User", "HeaderAddUser": "Add User",
"LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
"LabelPinCode": "Pin code:", "LabelPinCode": "Pin code:",
@ -82,7 +82,6 @@
"LabelCustomCertificatePath": "Custom certificate path:", "LabelCustomCertificatePath": "Custom certificate path:",
"LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.", "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
"TitleNotifications": "\u041f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f", "TitleNotifications": "\u041f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f",
"ButtonDonateWithPayPal": "Donate with PayPal",
"OptionDetectArchiveFilesAsMedia": "Detect archive files as media", "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
"OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.", "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
"LabelEnterConnectUserName": "Username or email:", "LabelEnterConnectUserName": "Username or email:",
@ -289,8 +288,9 @@
"TitleSupport": "Support", "TitleSupport": "Support",
"TabLog": "Log", "TabLog": "Log",
"TabAbout": "About", "TabAbout": "About",
"TabSupporterKey": "Supporter Key", "TabSupporterKey": "Emby Premiere Key",
"TabBecomeSupporter": "Become a Supporter", "TabBecomeSupporter": "Get Emby Premiere",
"TabEmbyPremiere": "Emby Premiere",
"ProjectHasCommunity": "Emby has a thriving community of users and contributors.", "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.", "CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "Search the Knowledge Base", "SearchKnowledgeBase": "Search the Knowledge Base",
@ -591,9 +591,9 @@
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"LabelSupportAmount": "Amount (USD)", "LabelSupportAmount": "Amount (USD)",
"HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by donating. A portion of all donations will be contributed to other free tools we depend on.", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
"ButtonEnterSupporterKey": "Enter supporter key", "ButtonEnterSupporterKey": "Enter Emby Premiere key",
"DonationNextStep": "Once complete, please return and enter your supporter key, which you will receive by email.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
"AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.",
"AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.",
"OptionEnableEpisodeOrganization": "Enable new episode organization", "OptionEnableEpisodeOrganization": "Enable new episode organization",
@ -639,20 +639,20 @@
"LabelDownMixAudioScale": "Audio boost when downmixing:", "LabelDownMixAudioScale": "Audio boost when downmixing:",
"LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.",
"ButtonLinkKeys": "Transfer Key", "ButtonLinkKeys": "Transfer Key",
"LabelOldSupporterKey": "Old supporter key", "LabelOldSupporterKey": "Old Emby Premiere key",
"LabelNewSupporterKey": "New supporter key", "LabelNewSupporterKey": "New Emby Premiere key",
"HeaderMultipleKeyLinking": "Transfer to New Key", "HeaderMultipleKeyLinking": "Transfer to New Key",
"MultipleKeyLinkingHelp": "If you received a new supporter key, use this form to transfer the old key's registrations to your new one.", "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
"LabelCurrentEmailAddress": "Current email address", "LabelCurrentEmailAddress": "Current email address",
"LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.", "LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.",
"HeaderForgotKey": "Forgot Key", "HeaderForgotKey": "Forgot Key",
"LabelEmailAddress": "Email address", "LabelEmailAddress": "Email address",
"LabelSupporterEmailAddress": "The email address that was used to purchase the key.", "LabelSupporterEmailAddress": "The email address that was used to purchase the key.",
"ButtonRetrieveKey": "Retrieve Key", "ButtonRetrieveKey": "Retrieve Key",
"LabelSupporterKey": "Supporter Key (paste from email)", "LabelSupporterKey": "Emby Premiere key (paste from email):",
"LabelSupporterKeyHelp": "Enter your supporter key to start enjoying additional benefits the community has developed for Emby.", "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
"MessageInvalidKey": "Supporter key is missing or invalid.", "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
"ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also be an Emby Supporter. Please donate and support the continued development of the core product. Thank you.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
"HeaderDisplaySettings": "Display Settings", "HeaderDisplaySettings": "Display Settings",
"TabPlayTo": "Play To", "TabPlayTo": "Play To",
"LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServer": "Enable Dlna server",
@ -912,7 +912,7 @@
"OptionCommunityMostWatchedSort": "Most Watched", "OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up", "TabNextUp": "Next Up",
"PlaceholderUsername": "Username", "PlaceholderUsername": "Username",
"HeaderBecomeProjectSupporter": "Become an Emby Supporter", "HeaderBecomeProjectSupporter": "Get Emby Premiere",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
"MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
@ -1002,8 +1002,6 @@
"HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.",
"LabelLoginDisclaimer": "Login disclaimer:", "LabelLoginDisclaimer": "Login disclaimer:",
"LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.",
"LabelAutomaticallyDonate": "Automatically donate this amount every month",
"LabelAutomaticallyDonateHelp": "You can cancel at any time via your PayPal account.",
"OptionList": "List", "OptionList": "List",
"TabDashboard": "Dashboard", "TabDashboard": "Dashboard",
"TitleServer": "Server", "TitleServer": "Server",
@ -1220,18 +1218,12 @@
"HeaderMetadataSettings": "Metadata Settings", "HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes", "LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
"TabDonate": "Donate",
"HeaderDonationType": "Donation type:", "HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation", "OptionMakeOneTimeDonation": "Make a separate donation",
"OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
"OptionYearlySupporterMembership": "Yearly supporter membership",
"OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer", "OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song", "OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video", "OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:", "LabelOneTimeDonationAmount": "Donation amount:",
"ButtonDonate": "Donate",
"ButtonPurchase": "Purchase", "ButtonPurchase": "Purchase",
"OptionActor": "Actor", "OptionActor": "Actor",
"OptionComposer": "Composer", "OptionComposer": "Composer",
@ -1245,9 +1237,9 @@
"HeaderPhotoInfo": "Photo Info", "HeaderPhotoInfo": "Photo Info",
"HeaderInstall": "Install", "HeaderInstall": "Install",
"LabelSelectVersionToInstall": "Select version to install:", "LabelSelectVersionToInstall": "Select version to install:",
"LinkSupporterMembership": "Learn about the Supporter Membership", "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
"MessageSupporterPluginRequiresMembership": "This plugin will require an active supporter membership after the 14 day free trial.", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
"MessagePremiumPluginRequiresMembership": "This plugin will require an active supporter membership in order to purchase after the 14 day free trial.", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
"HeaderReviews": "Reviews", "HeaderReviews": "Reviews",
"HeaderDeveloperInfo": "Developer Info", "HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History", "HeaderRevisionHistory": "Revision History",
@ -1292,7 +1284,7 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content", "LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control", "LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
"LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:", "LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
@ -1513,7 +1505,7 @@
"LabelTunerType": "Tuner type:", "LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.", "HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
"AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.", "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
@ -1528,5 +1520,7 @@
"LabelHardwareVideoDecoderHelp": "Available on supported systems only.", "LabelHardwareVideoDecoderHelp": "Available on supported systems only.",
"ButtonServerDashboard": "Server Dashboard", "ButtonServerDashboard": "Server Dashboard",
"HeaderAdmin": "Admin", "HeaderAdmin": "Admin",
"ButtonSignOut": "Sign out" "ButtonSignOut": "Sign out",
"HeaderCameraUpload": "Camera Upload",
"SelectCameraUploadServers": "Upload camera photos to the following servers:"
} }

View file

@ -48,7 +48,7 @@
"ButtonConvertMedia": "Convert media", "ButtonConvertMedia": "Convert media",
"ButtonOrganize": "Organize", "ButtonOrganize": "Organize",
"LinkedToEmbyConnect": "Linked to Emby Connect", "LinkedToEmbyConnect": "Linked to Emby Connect",
"HeaderSupporterBenefits": "Supporter Benefits", "HeaderSupporterBenefits": "Emby Premiere Benefits",
"HeaderAddUser": "Add User", "HeaderAddUser": "Add User",
"LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
"LabelPinCode": "Pin code:", "LabelPinCode": "Pin code:",
@ -82,7 +82,6 @@
"LabelCustomCertificatePath": "Custom certificate path:", "LabelCustomCertificatePath": "Custom certificate path:",
"LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.", "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ButtonDonateWithPayPal": "Donate with PayPal",
"OptionDetectArchiveFilesAsMedia": "Detect archive files as media", "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
"OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.", "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
"LabelEnterConnectUserName": "Username or email:", "LabelEnterConnectUserName": "Username or email:",
@ -289,8 +288,9 @@
"TitleSupport": "H\u1ed7 tr\u1ee3", "TitleSupport": "H\u1ed7 tr\u1ee3",
"TabLog": "Log", "TabLog": "Log",
"TabAbout": "About", "TabAbout": "About",
"TabSupporterKey": "Supporter Key", "TabSupporterKey": "Emby Premiere Key",
"TabBecomeSupporter": "Become a Supporter", "TabBecomeSupporter": "Get Emby Premiere",
"TabEmbyPremiere": "Emby Premiere",
"ProjectHasCommunity": "Emby has a thriving community of users and contributors.", "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.", "CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "Search the Knowledge Base", "SearchKnowledgeBase": "Search the Knowledge Base",
@ -591,9 +591,9 @@
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"LabelSupportAmount": "Amount (USD)", "LabelSupportAmount": "Amount (USD)",
"HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by donating. A portion of all donations will be contributed to other free tools we depend on.", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
"ButtonEnterSupporterKey": "Enter supporter key", "ButtonEnterSupporterKey": "Enter Emby Premiere key",
"DonationNextStep": "Once complete, please return and enter your supporter key, which you will receive by email.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
"AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.",
"AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.",
"OptionEnableEpisodeOrganization": "Enable new episode organization", "OptionEnableEpisodeOrganization": "Enable new episode organization",
@ -639,20 +639,20 @@
"LabelDownMixAudioScale": "Audio boost when downmixing:", "LabelDownMixAudioScale": "Audio boost when downmixing:",
"LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.",
"ButtonLinkKeys": "Transfer Key", "ButtonLinkKeys": "Transfer Key",
"LabelOldSupporterKey": "Old supporter key", "LabelOldSupporterKey": "Old Emby Premiere key",
"LabelNewSupporterKey": "New supporter key", "LabelNewSupporterKey": "New Emby Premiere key",
"HeaderMultipleKeyLinking": "Transfer to New Key", "HeaderMultipleKeyLinking": "Transfer to New Key",
"MultipleKeyLinkingHelp": "If you received a new supporter key, use this form to transfer the old key's registrations to your new one.", "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
"LabelCurrentEmailAddress": "Current email address", "LabelCurrentEmailAddress": "Current email address",
"LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.", "LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.",
"HeaderForgotKey": "Forgot Key", "HeaderForgotKey": "Forgot Key",
"LabelEmailAddress": "Email address", "LabelEmailAddress": "Email address",
"LabelSupporterEmailAddress": "The email address that was used to purchase the key.", "LabelSupporterEmailAddress": "The email address that was used to purchase the key.",
"ButtonRetrieveKey": "Retrieve Key", "ButtonRetrieveKey": "Retrieve Key",
"LabelSupporterKey": "Supporter Key (paste from email)", "LabelSupporterKey": "Emby Premiere key (paste from email):",
"LabelSupporterKeyHelp": "Enter your supporter key to start enjoying additional benefits the community has developed for Emby.", "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
"MessageInvalidKey": "Supporter key is missing or invalid.", "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
"ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also be an Emby Supporter. Please donate and support the continued development of the core product. Thank you.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
"HeaderDisplaySettings": "Display Settings", "HeaderDisplaySettings": "Display Settings",
"TabPlayTo": "Play To", "TabPlayTo": "Play To",
"LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServer": "Enable Dlna server",
@ -912,7 +912,7 @@
"OptionCommunityMostWatchedSort": "Most Watched", "OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up", "TabNextUp": "Next Up",
"PlaceholderUsername": "Username", "PlaceholderUsername": "Username",
"HeaderBecomeProjectSupporter": "Become an Emby Supporter", "HeaderBecomeProjectSupporter": "Get Emby Premiere",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
"MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
@ -1002,8 +1002,6 @@
"HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.",
"LabelLoginDisclaimer": "Login disclaimer:", "LabelLoginDisclaimer": "Login disclaimer:",
"LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.",
"LabelAutomaticallyDonate": "Automatically donate this amount every month",
"LabelAutomaticallyDonateHelp": "You can cancel at any time via your PayPal account.",
"OptionList": "List", "OptionList": "List",
"TabDashboard": "Dashboard", "TabDashboard": "Dashboard",
"TitleServer": "Server", "TitleServer": "Server",
@ -1220,18 +1218,12 @@
"HeaderMetadataSettings": "Metadata Settings", "HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes", "LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
"TabDonate": "Donate",
"HeaderDonationType": "Donation type:", "HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation", "OptionMakeOneTimeDonation": "Make a separate donation",
"OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
"OptionYearlySupporterMembership": "Yearly supporter membership",
"OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer", "OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song", "OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video", "OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:", "LabelOneTimeDonationAmount": "Donation amount:",
"ButtonDonate": "Donate",
"ButtonPurchase": "Purchase", "ButtonPurchase": "Purchase",
"OptionActor": "Actor", "OptionActor": "Actor",
"OptionComposer": "Composer", "OptionComposer": "Composer",
@ -1245,9 +1237,9 @@
"HeaderPhotoInfo": "Photo Info", "HeaderPhotoInfo": "Photo Info",
"HeaderInstall": "Install", "HeaderInstall": "Install",
"LabelSelectVersionToInstall": "Select version to install:", "LabelSelectVersionToInstall": "Select version to install:",
"LinkSupporterMembership": "Learn about the Supporter Membership", "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
"MessageSupporterPluginRequiresMembership": "This plugin will require an active supporter membership after the 14 day free trial.", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
"MessagePremiumPluginRequiresMembership": "This plugin will require an active supporter membership in order to purchase after the 14 day free trial.", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
"HeaderReviews": "Reviews", "HeaderReviews": "Reviews",
"HeaderDeveloperInfo": "Developer Info", "HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History", "HeaderRevisionHistory": "Revision History",
@ -1292,7 +1284,7 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content", "LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control", "LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
"LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:", "LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
@ -1513,7 +1505,7 @@
"LabelTunerType": "Tuner type:", "LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.", "HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
"AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.", "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
@ -1528,5 +1520,7 @@
"LabelHardwareVideoDecoderHelp": "Available on supported systems only.", "LabelHardwareVideoDecoderHelp": "Available on supported systems only.",
"ButtonServerDashboard": "Server Dashboard", "ButtonServerDashboard": "Server Dashboard",
"HeaderAdmin": "Admin", "HeaderAdmin": "Admin",
"ButtonSignOut": "Sign out" "ButtonSignOut": "Sign out",
"HeaderCameraUpload": "Camera Upload",
"SelectCameraUploadServers": "Upload camera photos to the following servers:"
} }

View file

@ -48,7 +48,7 @@
"ButtonConvertMedia": "\u5a92\u4f53\u8f6c\u6362", "ButtonConvertMedia": "\u5a92\u4f53\u8f6c\u6362",
"ButtonOrganize": "\u6574\u7406", "ButtonOrganize": "\u6574\u7406",
"LinkedToEmbyConnect": "Linked to Emby Connect", "LinkedToEmbyConnect": "Linked to Emby Connect",
"HeaderSupporterBenefits": "Supporter Benefits", "HeaderSupporterBenefits": "Emby Premiere Benefits",
"HeaderAddUser": "Add User", "HeaderAddUser": "Add User",
"LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
"LabelPinCode": "Pin code:", "LabelPinCode": "Pin code:",
@ -82,7 +82,6 @@
"LabelCustomCertificatePath": "\u81ea\u5b9a\u4e49\u8bc1\u4e66\u8def\u5f84\uff1a", "LabelCustomCertificatePath": "\u81ea\u5b9a\u4e49\u8bc1\u4e66\u8def\u5f84\uff1a",
"LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.", "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
"TitleNotifications": "\u901a\u77e5", "TitleNotifications": "\u901a\u77e5",
"ButtonDonateWithPayPal": "\u901a\u8fc7PayPal\u6350\u8d60",
"OptionDetectArchiveFilesAsMedia": "\u628a\u538b\u7f29\u6587\u4ef6\u4f5c\u4e3a\u5a92\u4f53\u6587\u4ef6\u68c0\u6d4b", "OptionDetectArchiveFilesAsMedia": "\u628a\u538b\u7f29\u6587\u4ef6\u4f5c\u4e3a\u5a92\u4f53\u6587\u4ef6\u68c0\u6d4b",
"OptionDetectArchiveFilesAsMediaHelp": "\u5982\u679c\u542f\u7528\uff0c\u4e0e.RAR\u548c.zip\u6269\u5c55\u540d\u7684\u6587\u4ef6\u5c06\u88ab\u68c0\u6d4b\u4e3a\u5a92\u4f53\u6587\u4ef6\u3002", "OptionDetectArchiveFilesAsMediaHelp": "\u5982\u679c\u542f\u7528\uff0c\u4e0e.RAR\u548c.zip\u6269\u5c55\u540d\u7684\u6587\u4ef6\u5c06\u88ab\u68c0\u6d4b\u4e3a\u5a92\u4f53\u6587\u4ef6\u3002",
"LabelEnterConnectUserName": "Username or email:", "LabelEnterConnectUserName": "Username or email:",
@ -289,8 +288,9 @@
"TitleSupport": "\u652f\u6301", "TitleSupport": "\u652f\u6301",
"TabLog": "\u65e5\u5fd7\u6587\u6863", "TabLog": "\u65e5\u5fd7\u6587\u6863",
"TabAbout": "\u5173\u4e8e", "TabAbout": "\u5173\u4e8e",
"TabSupporterKey": "\u652f\u6301\u8005\u5e8f\u53f7", "TabSupporterKey": "Emby Premiere Key",
"TabBecomeSupporter": "\u6210\u4e3a\u652f\u6301\u8005", "TabBecomeSupporter": "Get Emby Premiere",
"TabEmbyPremiere": "Emby Premiere",
"ProjectHasCommunity": "Emby has a thriving community of users and contributors.", "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.", "CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "\u641c\u7d22\u77e5\u8bc6\u5e93", "SearchKnowledgeBase": "\u641c\u7d22\u77e5\u8bc6\u5e93",
@ -350,7 +350,7 @@
"LabelImagesByNamePath": "\u6309\u540d\u79f0\u5f52\u7c7b\u7684\u56fe\u7247\u8def\u5f84\uff1a", "LabelImagesByNamePath": "\u6309\u540d\u79f0\u5f52\u7c7b\u7684\u56fe\u7247\u8def\u5f84\uff1a",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.", "LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "\u5a92\u4f53\u8d44\u6599\u8def\u5f84\uff1a", "LabelMetadataPath": "\u5a92\u4f53\u8d44\u6599\u8def\u5f84\uff1a",
"LabelMetadataPathHelp": "\u5982\u679c\u4e0d\u4fdd\u5b58\u5a92\u4f53\u6587\u4ef6\u5939\u5185\uff0c\u8bf7\u81ea\u5b9a\u4e49\u4e0b\u8f7d\u7684\u5a92\u4f53\u8d44\u6599\u548c\u56fe\u50cf\u4f4d\u7f6e\u3002", "LabelMetadataPathHelp": "Specify a custom location for downloaded artwork and metadata.",
"LabelTranscodingTempPath": "\u4e34\u65f6\u89e3\u7801\u8def\u5f84\uff1a", "LabelTranscodingTempPath": "\u4e34\u65f6\u89e3\u7801\u8def\u5f84\uff1a",
"LabelTranscodingTempPathHelp": "\u6b64\u6587\u4ef6\u5939\u5305\u542b\u7528\u4e8e\u8f6c\u7801\u7684\u5de5\u4f5c\u6587\u4ef6\u3002\u8bf7\u81ea\u5b9a\u4e49\u8def\u5f84\uff0c\u6216\u7559\u7a7a\u4ee5\u4f7f\u7528\u9ed8\u8ba4\u7684\u670d\u52a1\u5668\u6570\u636e\u6587\u4ef6\u5939\u3002", "LabelTranscodingTempPathHelp": "\u6b64\u6587\u4ef6\u5939\u5305\u542b\u7528\u4e8e\u8f6c\u7801\u7684\u5de5\u4f5c\u6587\u4ef6\u3002\u8bf7\u81ea\u5b9a\u4e49\u8def\u5f84\uff0c\u6216\u7559\u7a7a\u4ee5\u4f7f\u7528\u9ed8\u8ba4\u7684\u670d\u52a1\u5668\u6570\u636e\u6587\u4ef6\u5939\u3002",
"TabBasics": "\u57fa\u7840", "TabBasics": "\u57fa\u7840",
@ -591,9 +591,9 @@
"LabelEndingEpisodeNumberHelp": "\u53ea\u9700\u8981\u591a\u96c6\u6587\u4ef6", "LabelEndingEpisodeNumberHelp": "\u53ea\u9700\u8981\u591a\u96c6\u6587\u4ef6",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"LabelSupportAmount": "\u91d1\u989d\uff08\u7f8e\u5143\uff09", "LabelSupportAmount": "\u91d1\u989d\uff08\u7f8e\u5143\uff09",
"HeaderSupportTheTeamHelp": "\u4e3a\u786e\u4fdd\u8be5\u9879\u76ee\u7684\u6301\u7eed\u53d1\u5c55\u3002\u6350\u6b3e\u7684\u4e00\u90e8\u5206\u5c06\u8d21\u732e\u7ed9\u6211\u4eec\u6240\u4f9d\u8d56\u5176\u4ed6\u7684\u514d\u8d39\u5de5\u5177\u3002", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
"ButtonEnterSupporterKey": "\u8f93\u5165\u652f\u6301\u8005\u5e8f\u53f7", "ButtonEnterSupporterKey": "Enter Emby Premiere key",
"DonationNextStep": "\u5b8c\u6210\u540e\uff0c\u8bf7\u8fd4\u56de\u5e76\u8f93\u5165\u4f60\u7684\u652f\u6301\u8005\u5e8f\u53f7\uff0c\u8be5\u5e8f\u5217\u53f7\u901a\u8fc7\u7535\u5b50\u90ae\u4ef6\u63a5\u6536\u3002", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
"AutoOrganizeHelp": "\u81ea\u52a8\u6574\u7406\u4f1a\u76d1\u63a7\u4f60\u4e0b\u8f7d\u6587\u4ef6\u5939\u4e2d\u7684\u65b0\u6587\u4ef6\uff0c\u5e76\u4e14\u4f1a\u81ea\u52a8\u628a\u5b83\u4eec\u79fb\u52a8\u5230\u4f60\u7684\u5a92\u4f53\u6587\u4ef6\u5939\u4e2d\u3002", "AutoOrganizeHelp": "\u81ea\u52a8\u6574\u7406\u4f1a\u76d1\u63a7\u4f60\u4e0b\u8f7d\u6587\u4ef6\u5939\u4e2d\u7684\u65b0\u6587\u4ef6\uff0c\u5e76\u4e14\u4f1a\u81ea\u52a8\u628a\u5b83\u4eec\u79fb\u52a8\u5230\u4f60\u7684\u5a92\u4f53\u6587\u4ef6\u5939\u4e2d\u3002",
"AutoOrganizeTvHelp": "\u7535\u89c6\u6587\u4ef6\u6574\u7406\u4ec5\u4f1a\u6dfb\u52a0\u5267\u96c6\u5230\u4f60\u73b0\u6709\u7684\u7535\u89c6\u5267\u4e2d\uff0c\u4e0d\u4f1a\u521b\u5efa\u65b0\u7684\u7535\u89c6\u5267\u6587\u4ef6\u5939\u3002", "AutoOrganizeTvHelp": "\u7535\u89c6\u6587\u4ef6\u6574\u7406\u4ec5\u4f1a\u6dfb\u52a0\u5267\u96c6\u5230\u4f60\u73b0\u6709\u7684\u7535\u89c6\u5267\u4e2d\uff0c\u4e0d\u4f1a\u521b\u5efa\u65b0\u7684\u7535\u89c6\u5267\u6587\u4ef6\u5939\u3002",
"OptionEnableEpisodeOrganization": "\u542f\u7528\u65b0\u5267\u96c6\u6574\u7406", "OptionEnableEpisodeOrganization": "\u542f\u7528\u65b0\u5267\u96c6\u6574\u7406",
@ -639,20 +639,20 @@
"LabelDownMixAudioScale": "\u7f29\u6df7\u97f3\u9891\u589e\u5f3a\uff1a", "LabelDownMixAudioScale": "\u7f29\u6df7\u97f3\u9891\u589e\u5f3a\uff1a",
"LabelDownMixAudioScaleHelp": "\u7f29\u6df7\u97f3\u9891\u589e\u5f3a\u3002\u8bbe\u7f6e\u4e3a1\uff0c\u5c06\u4fdd\u7559\u539f\u6765\u7684\u97f3\u91cf\u00b7\u3002", "LabelDownMixAudioScaleHelp": "\u7f29\u6df7\u97f3\u9891\u589e\u5f3a\u3002\u8bbe\u7f6e\u4e3a1\uff0c\u5c06\u4fdd\u7559\u539f\u6765\u7684\u97f3\u91cf\u00b7\u3002",
"ButtonLinkKeys": "\u8f6c\u79fb\u5e8f\u5217\u53f7", "ButtonLinkKeys": "\u8f6c\u79fb\u5e8f\u5217\u53f7",
"LabelOldSupporterKey": "\u65e7\u7684\u652f\u6301\u8005\u5e8f\u53f7", "LabelOldSupporterKey": "Old Emby Premiere key",
"LabelNewSupporterKey": "\u65b0\u7684\u652f\u6301\u8005\u5e8f\u53f7", "LabelNewSupporterKey": "New Emby Premiere key",
"HeaderMultipleKeyLinking": "\u8f6c\u79fb\u5230\u65b0\u5e8f\u5217\u53f7", "HeaderMultipleKeyLinking": "\u8f6c\u79fb\u5230\u65b0\u5e8f\u5217\u53f7",
"MultipleKeyLinkingHelp": "\u5982\u679c\u4f60\u6536\u5230\u65b0\u7684\u652f\u6301\u8005\u5e8f\u5217\u53f7\uff0c\u4f7f\u7528\u6b64\u529f\u80fd\u53ef\u4ee5\u628a\u4f60\u65e7\u5e8f\u5217\u53f7\u7684\u6ce8\u518c\u4fe1\u606f\u8f6c\u79fb\u5230\u65b0\u5e8f\u5217\u53f7\u4e0a\u3002", "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
"LabelCurrentEmailAddress": "\u73b0\u6709\u90ae\u7bb1\u5730\u5740", "LabelCurrentEmailAddress": "\u73b0\u6709\u90ae\u7bb1\u5730\u5740",
"LabelCurrentEmailAddressHelp": "\u6536\u53d6\u65b0\u5e8f\u53f7\u7684\u73b0\u6709\u90ae\u7bb1\u5730\u5740\u3002", "LabelCurrentEmailAddressHelp": "\u6536\u53d6\u65b0\u5e8f\u53f7\u7684\u73b0\u6709\u90ae\u7bb1\u5730\u5740\u3002",
"HeaderForgotKey": "\u5fd8\u8bb0\u5e8f\u53f7", "HeaderForgotKey": "\u5fd8\u8bb0\u5e8f\u53f7",
"LabelEmailAddress": "\u90ae\u7bb1\u5730\u5740", "LabelEmailAddress": "\u90ae\u7bb1\u5730\u5740",
"LabelSupporterEmailAddress": "\u8d2d\u4e70\u5e8f\u53f7\u7684\u90ae\u7bb1\u5730\u5740\u3002", "LabelSupporterEmailAddress": "\u8d2d\u4e70\u5e8f\u53f7\u7684\u90ae\u7bb1\u5730\u5740\u3002",
"ButtonRetrieveKey": "\u53d6\u56de\u5e8f\u53f7", "ButtonRetrieveKey": "\u53d6\u56de\u5e8f\u53f7",
"LabelSupporterKey": "\u652f\u6301\u8005\u5e8f\u53f7\uff08\u4ece\u90ae\u4ef6\u7c98\u8d34\uff09", "LabelSupporterKey": "Emby Premiere key (paste from email):",
"LabelSupporterKeyHelp": "Enter your supporter key to start enjoying additional benefits the community has developed for Emby.", "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
"MessageInvalidKey": "\u652f\u6301\u8005\u5e8f\u53f7\u9519\u8bef\u6216\u4e0d\u5b58\u5728\u3002", "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
"ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also be an Emby Supporter. Please donate and support the continued development of the core product. Thank you.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
"HeaderDisplaySettings": "\u663e\u793a\u8bbe\u7f6e", "HeaderDisplaySettings": "\u663e\u793a\u8bbe\u7f6e",
"TabPlayTo": "\u64ad\u653e\u5230", "TabPlayTo": "\u64ad\u653e\u5230",
"LabelEnableDlnaServer": "\u542f\u7528Dlna\u670d\u52a1\u5668", "LabelEnableDlnaServer": "\u542f\u7528Dlna\u670d\u52a1\u5668",
@ -912,7 +912,7 @@
"OptionCommunityMostWatchedSort": "\u6700\u53d7\u77a9\u76ee", "OptionCommunityMostWatchedSort": "\u6700\u53d7\u77a9\u76ee",
"TabNextUp": "\u4e0b\u4e00\u4e2a", "TabNextUp": "\u4e0b\u4e00\u4e2a",
"PlaceholderUsername": "Username", "PlaceholderUsername": "Username",
"HeaderBecomeProjectSupporter": "Become an Emby Supporter", "HeaderBecomeProjectSupporter": "Get Emby Premiere",
"MessageNoMovieSuggestionsAvailable": "\u6ca1\u6709\u53ef\u7528\u7684\u7535\u5f71\u5efa\u8bae\u3002\u5f00\u59cb\u89c2\u770b\u4f60\u7684\u7535\u5f71\u5e76\u8fdb\u884c\u8bc4\u5206\uff0c\u518d\u56de\u8fc7\u5934\u6765\u67e5\u770b\u4f60\u7684\u5efa\u8bae\u3002", "MessageNoMovieSuggestionsAvailable": "\u6ca1\u6709\u53ef\u7528\u7684\u7535\u5f71\u5efa\u8bae\u3002\u5f00\u59cb\u89c2\u770b\u4f60\u7684\u7535\u5f71\u5e76\u8fdb\u884c\u8bc4\u5206\uff0c\u518d\u56de\u8fc7\u5934\u6765\u67e5\u770b\u4f60\u7684\u5efa\u8bae\u3002",
"MessageNoCollectionsAvailable": "\u5408\u96c6\u8ba9\u4f60\u4eab\u53d7\u7535\u5f71\uff0c\u7cfb\u5217\uff0c\u76f8\u518c\uff0c\u4e66\u7c4d\u548c\u6e38\u620f\u4e2a\u6027\u5316\u7684\u5206\u7ec4\u3002\u5355\u51fb\u201c+\u201d\u6309\u94ae\u5f00\u59cb\u521b\u5efa\u5408\u96c6\u3002", "MessageNoCollectionsAvailable": "\u5408\u96c6\u8ba9\u4f60\u4eab\u53d7\u7535\u5f71\uff0c\u7cfb\u5217\uff0c\u76f8\u518c\uff0c\u4e66\u7c4d\u548c\u6e38\u620f\u4e2a\u6027\u5316\u7684\u5206\u7ec4\u3002\u5355\u51fb\u201c+\u201d\u6309\u94ae\u5f00\u59cb\u521b\u5efa\u5408\u96c6\u3002",
"MessageNoPlaylistsAvailable": "\u64ad\u653e\u5217\u8868\u5141\u8bb8\u60a8\u521b\u5efa\u4e00\u4e2a\u5185\u5bb9\u5217\u8868\u6765\u8fde\u7eed\u64ad\u653e\u3002\u5c06\u9879\u76ee\u6dfb\u52a0\u5230\u64ad\u653e\u5217\u8868\uff0c\u53f3\u952e\u5355\u51fb\u6216\u70b9\u51fb\u5e76\u6309\u4f4f\uff0c\u7136\u540e\u9009\u62e9\u201c\u6dfb\u52a0\u5230\u64ad\u653e\u5217\u8868\u201d\u3002", "MessageNoPlaylistsAvailable": "\u64ad\u653e\u5217\u8868\u5141\u8bb8\u60a8\u521b\u5efa\u4e00\u4e2a\u5185\u5bb9\u5217\u8868\u6765\u8fde\u7eed\u64ad\u653e\u3002\u5c06\u9879\u76ee\u6dfb\u52a0\u5230\u64ad\u653e\u5217\u8868\uff0c\u53f3\u952e\u5355\u51fb\u6216\u70b9\u51fb\u5e76\u6309\u4f4f\uff0c\u7136\u540e\u9009\u62e9\u201c\u6dfb\u52a0\u5230\u64ad\u653e\u5217\u8868\u201d\u3002",
@ -1002,8 +1002,6 @@
"HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.",
"LabelLoginDisclaimer": "\u767b\u5f55\u58f0\u660e\uff1a", "LabelLoginDisclaimer": "\u767b\u5f55\u58f0\u660e\uff1a",
"LabelLoginDisclaimerHelp": "\u8fd9\u5c06\u5728\u767b\u5f55\u9875\u9762\u5e95\u90e8\u663e\u793a\u3002", "LabelLoginDisclaimerHelp": "\u8fd9\u5c06\u5728\u767b\u5f55\u9875\u9762\u5e95\u90e8\u663e\u793a\u3002",
"LabelAutomaticallyDonate": "\u6bcf\u6708\u81ea\u52a8\u6350\u8d60\u7684\u91d1\u989d",
"LabelAutomaticallyDonateHelp": "\u4f60\u53ef\u4ee5\u901a\u8fc7\u4f60\u7684PayPal\u5e10\u6237\u968f\u65f6\u53d6\u6d88\u3002",
"OptionList": "\u5217\u8868", "OptionList": "\u5217\u8868",
"TabDashboard": "\u63a7\u5236\u53f0", "TabDashboard": "\u63a7\u5236\u53f0",
"TitleServer": "\u670d\u52a1\u5668", "TitleServer": "\u670d\u52a1\u5668",
@ -1220,18 +1218,12 @@
"HeaderMetadataSettings": "\u5a92\u4f53\u8d44\u6599\u8bbe\u7f6e", "HeaderMetadataSettings": "\u5a92\u4f53\u8d44\u6599\u8bbe\u7f6e",
"LabelLockItemToPreventChanges": "\u9501\u5b9a\u6b64\u9879\u76ee\u9632\u6b62\u6539\u52a8", "LabelLockItemToPreventChanges": "\u9501\u5b9a\u6b64\u9879\u76ee\u9632\u6b62\u6539\u52a8",
"MessageLeaveEmptyToInherit": "\u7559\u7a7a\u5219\u7ee7\u627f\u7236\u9879\u6216\u5168\u5c40\u9ed8\u8ba4\u503c\u8bbe\u7f6e\u3002", "MessageLeaveEmptyToInherit": "\u7559\u7a7a\u5219\u7ee7\u627f\u7236\u9879\u6216\u5168\u5c40\u9ed8\u8ba4\u503c\u8bbe\u7f6e\u3002",
"TabDonate": "\u6350\u8d60",
"HeaderDonationType": "\u6350\u8d60\u7c7b\u578b\uff1a", "HeaderDonationType": "\u6350\u8d60\u7c7b\u578b\uff1a",
"OptionMakeOneTimeDonation": "\u505a\u4e00\u4e2a\u5355\u72ec\u7684\u6350\u8d60", "OptionMakeOneTimeDonation": "\u505a\u4e00\u4e2a\u5355\u72ec\u7684\u6350\u8d60",
"OptionOneTimeDescription": "\u8fd9\u662f\u4e00\u4e2a\u989d\u5916\u7684\u6350\u52a9\u9879\u76ee\uff0c\u4ee5\u663e\u793a\u4f60\u5bf9\u6211\u4eec\u7684\u652f\u6301\u3002\u5b83\u6ca1\u6709\u4efb\u4f55\u989d\u5916\u7684\u597d\u5904\uff0c\u4e5f\u4e0d\u4f1a\u4ea7\u751f\u4e00\u4e2a\u652f\u6301\u8005\u5e8f\u5217\u53f7\u3002",
"OptionLifeTimeSupporterMembership": "\u7ec8\u8eab\u652f\u6301\u8005\u4f1a\u5458",
"OptionYearlySupporterMembership": "\u5e74\u5ea6\u652f\u6301\u8005\u4f1a\u5458",
"OptionMonthlySupporterMembership": "\u6708\u5ea6\u7684\u652f\u6301\u8005\u4f1a\u5458",
"OptionNoTrailer": "\u65e0\u9884\u544a\u7247", "OptionNoTrailer": "\u65e0\u9884\u544a\u7247",
"OptionNoThemeSong": "\u65e0\u4e3b\u9898\u6b4c", "OptionNoThemeSong": "\u65e0\u4e3b\u9898\u6b4c",
"OptionNoThemeVideo": "\u65e0\u4e3b\u9898\u89c6\u9891", "OptionNoThemeVideo": "\u65e0\u4e3b\u9898\u89c6\u9891",
"LabelOneTimeDonationAmount": "\u6350\u6b3e\u91d1\u989d\uff1a", "LabelOneTimeDonationAmount": "\u6350\u6b3e\u91d1\u989d\uff1a",
"ButtonDonate": "\u6350\u8d60",
"ButtonPurchase": "Purchase", "ButtonPurchase": "Purchase",
"OptionActor": "\u6f14\u5458", "OptionActor": "\u6f14\u5458",
"OptionComposer": "\u4f5c\u66f2\u5bb6", "OptionComposer": "\u4f5c\u66f2\u5bb6",
@ -1245,9 +1237,9 @@
"HeaderPhotoInfo": "\u56fe\u7247\u4fe1\u606f", "HeaderPhotoInfo": "\u56fe\u7247\u4fe1\u606f",
"HeaderInstall": "\u5b89\u88c5", "HeaderInstall": "\u5b89\u88c5",
"LabelSelectVersionToInstall": "\u9009\u62e9\u5b89\u88c5\u7248\u672c\uff1a", "LabelSelectVersionToInstall": "\u9009\u62e9\u5b89\u88c5\u7248\u672c\uff1a",
"LinkSupporterMembership": "\u4e86\u89e3\u6709\u5173\u652f\u6301\u8005\u4f1a\u5458", "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
"MessageSupporterPluginRequiresMembership": "\u6b64\u63d2\u4ef6\u5c06\u670914\u5929\u7684\u514d\u8d39\u8bd5\u7528\uff0c\u6b64\u540e\u9700\u8981\u6fc0\u6d3b\u652f\u6301\u8005\u4f1a\u5458\u624d\u80fd\u4f7f\u7528\u3002", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
"MessagePremiumPluginRequiresMembership": "\u6b64\u63d2\u4ef6\u572814\u5929\u7684\u514d\u8d39\u8bd5\u7528\u671f\u540e\uff0c\u9700\u8981\u6fc0\u6d3b\u652f\u6301\u8005\u4f1a\u5458\u624d\u80fd\u8d2d\u4e70\u3002", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
"HeaderReviews": "\u8bc4\u8bba", "HeaderReviews": "\u8bc4\u8bba",
"HeaderDeveloperInfo": "\u5f00\u53d1\u8005\u4fe1\u606f", "HeaderDeveloperInfo": "\u5f00\u53d1\u8005\u4fe1\u606f",
"HeaderRevisionHistory": "\u4fee\u8ba2\u5386\u53f2", "HeaderRevisionHistory": "\u4fee\u8ba2\u5386\u53f2",
@ -1292,7 +1284,7 @@
"LabelLimitIntrosToUnwatchedContent": "\u9884\u544a\u7247\u4ec5\u7528\u4e8e\u672a\u89c2\u770b\u7684\u5185\u5bb9", "LabelLimitIntrosToUnwatchedContent": "\u9884\u544a\u7247\u4ec5\u7528\u4e8e\u672a\u89c2\u770b\u7684\u5185\u5bb9",
"LabelEnableIntroParentalControl": "\u542f\u7528\u667a\u80fd\u5bb6\u957f\u63a7\u5236", "LabelEnableIntroParentalControl": "\u542f\u7528\u667a\u80fd\u5bb6\u957f\u63a7\u5236",
"LabelEnableIntroParentalControlHelp": "\u9884\u544a\u7247\u5c06\u53ea\u80fd\u9009\u62e9\u89c2\u770b\u5bb6\u957f\u5206\u7ea7\u5c0f\u4e8e\u6216\u7b49\u4e8e\u73b0\u5728\u7684\u7b49\u7ea7\u3002", "LabelEnableIntroParentalControlHelp": "\u9884\u544a\u7247\u5c06\u53ea\u80fd\u9009\u62e9\u89c2\u770b\u5bb6\u957f\u5206\u7ea7\u5c0f\u4e8e\u6216\u7b49\u4e8e\u73b0\u5728\u7684\u7b49\u7ea7\u3002",
"LabelTheseFeaturesRequireSupporterHelpAndTrailers": "\u8fd9\u4e9b\u529f\u80fd\u9700\u8981\u6fc0\u6d3b\u652f\u6301\u8005\u4f1a\u5458\u5e76\u5b89\u88c5\u9884\u544a\u7247\u9891\u9053\u63d2\u4ef6\u3002", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "\u9700\u8981\u8bbe\u7f6e\u672c\u5730\u9884\u544a\u7247\u3002", "OptionTrailersFromMyMoviesHelp": "\u9700\u8981\u8bbe\u7f6e\u672c\u5730\u9884\u544a\u7247\u3002",
"LabelCustomIntrosPath": "\u81ea\u5b9a\u4e49\u4ecb\u7ecd\u8def\u5f84\uff1a", "LabelCustomIntrosPath": "\u81ea\u5b9a\u4e49\u4ecb\u7ecd\u8def\u5f84\uff1a",
"LabelCustomIntrosPathHelp": "\u6587\u4ef6\u5939\u5305\u542b\u89c6\u9891\u6587\u4ef6\u3002\u5728\u9884\u544a\u7247\u4e4b\u540e\u89c6\u9891\u5c06\u88ab\u968f\u673a\u9009\u62e9\u64ad\u653e\u3002", "LabelCustomIntrosPathHelp": "\u6587\u4ef6\u5939\u5305\u542b\u89c6\u9891\u6587\u4ef6\u3002\u5728\u9884\u544a\u7247\u4e4b\u540e\u89c6\u9891\u5c06\u88ab\u968f\u673a\u9009\u62e9\u64ad\u653e\u3002",
@ -1513,7 +1505,7 @@
"LabelTunerType": "Tuner type:", "LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.", "HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
"AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.", "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
@ -1528,5 +1520,7 @@
"LabelHardwareVideoDecoderHelp": "Available on supported systems only.", "LabelHardwareVideoDecoderHelp": "Available on supported systems only.",
"ButtonServerDashboard": "Server Dashboard", "ButtonServerDashboard": "Server Dashboard",
"HeaderAdmin": "Admin", "HeaderAdmin": "Admin",
"ButtonSignOut": "Sign out" "ButtonSignOut": "Sign out",
"HeaderCameraUpload": "Camera Upload",
"SelectCameraUploadServers": "Upload camera photos to the following servers:"
} }

View file

@ -48,9 +48,9 @@
"ButtonConvertMedia": "\u8f49\u63db\u5a92\u9ad4", "ButtonConvertMedia": "\u8f49\u63db\u5a92\u9ad4",
"ButtonOrganize": "\u6574\u7406", "ButtonOrganize": "\u6574\u7406",
"LinkedToEmbyConnect": "\u9023\u63a5 Emby Connect", "LinkedToEmbyConnect": "\u9023\u63a5 Emby Connect",
"HeaderSupporterBenefits": "\u6703\u54e1\u512a\u52e2", "HeaderSupporterBenefits": "Emby Premiere Benefits",
"HeaderAddUser": "\u6dfb\u52a0\u7528\u6236", "HeaderAddUser": "\u6dfb\u52a0\u7528\u6236",
"LabelAddConnectSupporterHelp": "\u8981\u6dfb\u52a0\u6c92\u6709\u5217\u51fa\u7684\u7528\u6236\uff0c\u9996\u5148\u9700\u8981\u4ed6\u5011\u7684\u5e33\u6236\uff0c\u7531\u500b\u4eba\u5e33\u6236\u8cc7\u6599\u9801\u9023\u63a5\u5230 Emby Connect \u3002", "LabelAddConnectSupporterHelp": "\u8981\u6dfb\u52a0\u6c92\u6709\u5217\u51fa\u7684\u7528\u6236\uff0c\u9996\u5148\u9700\u8981\u7531\u500b\u4eba\u5e33\u6236\u9801\uff0c\u9023\u63a5\u4ed6\u5011\u5e33\u6236\u5230 Emby Connect \u3002",
"LabelPinCode": "PIN \u78bc\uff1a", "LabelPinCode": "PIN \u78bc\uff1a",
"OptionHideWatchedContentFromLatestMedia": "\u96b1\u85cf\u6700\u65b0\u5a92\u9ad4\u5167\u5bb9", "OptionHideWatchedContentFromLatestMedia": "\u96b1\u85cf\u6700\u65b0\u5a92\u9ad4\u5167\u5bb9",
"HeaderSync": "\u540c\u6b65", "HeaderSync": "\u540c\u6b65",
@ -82,7 +82,6 @@
"LabelCustomCertificatePath": "\u81ea\u5b9a\u8b49\u66f8\u8def\u5f91\uff1a", "LabelCustomCertificatePath": "\u81ea\u5b9a\u8b49\u66f8\u8def\u5f91\uff1a",
"LabelCustomCertificatePathHelp": "\u63d0\u4f9b\u81ea\u5df1\u7684 SSL \u8b49\u66f8 .pfx \u6587\u4ef6\u3002\u5982\u679c\u5ffd\u7565\uff0c\u4f3a\u670d\u5668\u5c07\u5efa\u7acb\u4e00\u500b\u81ea\u5bb6\u7c3d\u540d\u8b49\u66f8\u3002", "LabelCustomCertificatePathHelp": "\u63d0\u4f9b\u81ea\u5df1\u7684 SSL \u8b49\u66f8 .pfx \u6587\u4ef6\u3002\u5982\u679c\u5ffd\u7565\uff0c\u4f3a\u670d\u5668\u5c07\u5efa\u7acb\u4e00\u500b\u81ea\u5bb6\u7c3d\u540d\u8b49\u66f8\u3002",
"TitleNotifications": "\u901a\u77e5", "TitleNotifications": "\u901a\u77e5",
"ButtonDonateWithPayPal": "\u5f9e PayPal \u6350\u8d08",
"OptionDetectArchiveFilesAsMedia": "\u5075\u6e2c\u6a94\u6848\u6587\u4ef6\u70ba\u5a92\u9ad4", "OptionDetectArchiveFilesAsMedia": "\u5075\u6e2c\u6a94\u6848\u6587\u4ef6\u70ba\u5a92\u9ad4",
"OptionDetectArchiveFilesAsMediaHelp": "\u5982\u679c\u555f\u7528\uff0c .rar \u548c .zip \u7684\u6587\u4ef6\u5c07\u6703\u88ab\u5075\u6e2c\u70ba\u5a92\u9ad4\u3002", "OptionDetectArchiveFilesAsMediaHelp": "\u5982\u679c\u555f\u7528\uff0c .rar \u548c .zip \u7684\u6587\u4ef6\u5c07\u6703\u88ab\u5075\u6e2c\u70ba\u5a92\u9ad4\u3002",
"LabelEnterConnectUserName": "\u7528\u6236\u540d\u6216\u96fb\u5b50\u90f5\u4ef6\uff1a", "LabelEnterConnectUserName": "\u7528\u6236\u540d\u6216\u96fb\u5b50\u90f5\u4ef6\uff1a",
@ -289,8 +288,9 @@
"TitleSupport": "\u652f\u63f4", "TitleSupport": "\u652f\u63f4",
"TabLog": "\u65e5\u8a8c", "TabLog": "\u65e5\u8a8c",
"TabAbout": "\u95dc\u65bc", "TabAbout": "\u95dc\u65bc",
"TabSupporterKey": "\u6703\u54e1\u9396\u5319", "TabSupporterKey": "Emby Premiere Key",
"TabBecomeSupporter": "\u6210\u70ba\u6703\u54e1", "TabBecomeSupporter": "Get Emby Premiere",
"TabEmbyPremiere": "Emby Premiere",
"ProjectHasCommunity": "Emby \u64c1\u6709\u4e00\u500b\u9f90\u5927\u7528\u6236\u8207\u8ca2\u737b\u8005\u7684\u8a0e\u8ad6\u5340\u3002", "ProjectHasCommunity": "Emby \u64c1\u6709\u4e00\u500b\u9f90\u5927\u7528\u6236\u8207\u8ca2\u737b\u8005\u7684\u8a0e\u8ad6\u5340\u3002",
"CheckoutKnowledgeBase": "\u67e5\u770b\u6211\u5011\u7684\u77e5\u8b58\u5eab\uff0c\u6703\u5e6b\u52a9\u60a8\u5f97\u5230\u6700\u597d Emby \u7684\u9ad4\u9a57\u3002", "CheckoutKnowledgeBase": "\u67e5\u770b\u6211\u5011\u7684\u77e5\u8b58\u5eab\uff0c\u6703\u5e6b\u52a9\u60a8\u5f97\u5230\u6700\u597d Emby \u7684\u9ad4\u9a57\u3002",
"SearchKnowledgeBase": "\u641c\u5c0b\u77e5\u8b58\u5eab", "SearchKnowledgeBase": "\u641c\u5c0b\u77e5\u8b58\u5eab",
@ -591,9 +591,9 @@
"LabelEndingEpisodeNumberHelp": "\u53ea\u9700\u591a\u5287\u96c6\u6587\u4ef6", "LabelEndingEpisodeNumberHelp": "\u53ea\u9700\u591a\u5287\u96c6\u6587\u4ef6",
"HeaderSupportTheTeam": "\u8d0a\u52a9 Emby \u5718\u968a", "HeaderSupportTheTeam": "\u8d0a\u52a9 Emby \u5718\u968a",
"LabelSupportAmount": "\u91d1\u984d\uff08\u7f8e\u5143\uff09", "LabelSupportAmount": "\u91d1\u984d\uff08\u7f8e\u5143\uff09",
"HeaderSupportTheTeamHelp": "\u8acb\u78ba\u4fdd\u6301\u7e8c\u652f\u6301\u6350\u8d08\u9805\u76ee\u7684\u767c\u5c55\u3002\u90e8\u5206\u6350\u6b3e\u6703\u6210\u70ba\u6211\u5011\u8ca2\u737b\u66f4\u591a\u514d\u8cbb\u9805\u76ee\u7684\u52d5\u529b\u3002", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
"ButtonEnterSupporterKey": "\u8f38\u5165\u6703\u54e1\u9396\u5319", "ButtonEnterSupporterKey": "Enter Emby Premiere key",
"DonationNextStep": "\u4e00\u65e6\u5b8c\u6210\uff0c\u8acb\u8fd4\u56de\u4e26\u8f38\u5165\u60a8\u7684\u6703\u54e1\u9396\u5319\uff0c\u60a8\u5c07\u6703\u6536\u5230\u96fb\u5b50\u90f5\u4ef6\u3002", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
"AutoOrganizeHelp": "\u81ea\u52d5\u6574\u7406\u6703\u76e3\u6e2c\u60a8\u7684\u4e0b\u8f09\u6587\u4ef6\u593e\u5167\u65b0\u6587\u4ef6\uff0c\u4e26\u5c07\u6703\u79fb\u52d5\u5230\u60a8\u7684\u5a92\u9ad4\u76ee\u9304\u3002", "AutoOrganizeHelp": "\u81ea\u52d5\u6574\u7406\u6703\u76e3\u6e2c\u60a8\u7684\u4e0b\u8f09\u6587\u4ef6\u593e\u5167\u65b0\u6587\u4ef6\uff0c\u4e26\u5c07\u6703\u79fb\u52d5\u5230\u60a8\u7684\u5a92\u9ad4\u76ee\u9304\u3002",
"AutoOrganizeTvHelp": "\u96fb\u8996\u7bc0\u76ee\u6574\u7406\u53ea\u6703\u6dfb\u52a0\u6232\u96c6\u5230\u73fe\u6709\u7bc0\u76ee\u7cfb\u5217\u3002\u5b83\u4e0d\u6703\u7522\u751f\u65b0\u7cfb\u5217\u7684\u6587\u4ef6\u593e\u3002", "AutoOrganizeTvHelp": "\u96fb\u8996\u7bc0\u76ee\u6574\u7406\u53ea\u6703\u6dfb\u52a0\u6232\u96c6\u5230\u73fe\u6709\u7bc0\u76ee\u7cfb\u5217\u3002\u5b83\u4e0d\u6703\u7522\u751f\u65b0\u7cfb\u5217\u7684\u6587\u4ef6\u593e\u3002",
"OptionEnableEpisodeOrganization": "\u555f\u7528\u65b0\u6232\u96c6\u6574\u7406", "OptionEnableEpisodeOrganization": "\u555f\u7528\u65b0\u6232\u96c6\u6574\u7406",
@ -639,20 +639,20 @@
"LabelDownMixAudioScale": "Audio boost when downmixing:", "LabelDownMixAudioScale": "Audio boost when downmixing:",
"LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.",
"ButtonLinkKeys": "Transfer Key", "ButtonLinkKeys": "Transfer Key",
"LabelOldSupporterKey": "\u820a\u6703\u54e1\u9396\u5319", "LabelOldSupporterKey": "Old Emby Premiere key",
"LabelNewSupporterKey": "\u65b0\u6703\u54e1\u9396\u5319", "LabelNewSupporterKey": "New Emby Premiere key",
"HeaderMultipleKeyLinking": "Transfer to New Key", "HeaderMultipleKeyLinking": "Transfer to New Key",
"MultipleKeyLinkingHelp": "\u5982\u679c\u60a8\u6536\u5230\u4e86\u65b0\u6703\u54e1\u9396\u5319\uff0c\u8acb\u4f7f\u7528\u6b64\u8868\u4f86\u8f49\u79fb\u820a\u9396\u5319\u81f3\u65b0\u9396\u5319\u3002", "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
"LabelCurrentEmailAddress": "Current email address", "LabelCurrentEmailAddress": "Current email address",
"LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.", "LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.",
"HeaderForgotKey": "Forgot Key", "HeaderForgotKey": "Forgot Key",
"LabelEmailAddress": "Email address", "LabelEmailAddress": "Email address",
"LabelSupporterEmailAddress": "\u96fb\u5b50\u90f5\u4ef6\u5730\u5740\u5c07\u88ab\u7528\u4f5c\u8cfc\u8cb7\u6703\u54e1\u9396\u5319\u3002", "LabelSupporterEmailAddress": "\u96fb\u5b50\u90f5\u4ef6\u5730\u5740\u5c07\u88ab\u7528\u4f5c\u8cfc\u8cb7\u6703\u54e1\u9396\u5319\u3002",
"ButtonRetrieveKey": "Retrieve Key", "ButtonRetrieveKey": "Retrieve Key",
"LabelSupporterKey": "\u6703\u54e1\u9396\u5319\uff08\u5f9e\u96fb\u5b50\u90f5\u4ef6\u8cbc\u4e0a\uff09", "LabelSupporterKey": "Emby Premiere key (paste from email):",
"LabelSupporterKeyHelp": "\u8acb\u8f38\u5165\u60a8\u7684\u6703\u54e1\u9396\u5319\uff0c\u4eab\u53d7\u5df2\u958b\u767c Emby \u984d\u5916\u597d\u8655\u3002", "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
"MessageInvalidKey": "Supporter key is missing or invalid.", "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
"ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also be an Emby Supporter. Please donate and support the continued development of the core product. Thank you.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
"HeaderDisplaySettings": "Display Settings", "HeaderDisplaySettings": "Display Settings",
"TabPlayTo": "Play To", "TabPlayTo": "Play To",
"LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServer": "Enable Dlna server",
@ -912,7 +912,7 @@
"OptionCommunityMostWatchedSort": "Most Watched", "OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up", "TabNextUp": "Next Up",
"PlaceholderUsername": "Username", "PlaceholderUsername": "Username",
"HeaderBecomeProjectSupporter": "Become an Emby Supporter", "HeaderBecomeProjectSupporter": "Get Emby Premiere",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
"MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
@ -1002,8 +1002,6 @@
"HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.",
"LabelLoginDisclaimer": "Login disclaimer:", "LabelLoginDisclaimer": "Login disclaimer:",
"LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.",
"LabelAutomaticallyDonate": "Automatically donate this amount every month",
"LabelAutomaticallyDonateHelp": "You can cancel at any time via your PayPal account.",
"OptionList": "List", "OptionList": "List",
"TabDashboard": "Dashboard", "TabDashboard": "Dashboard",
"TitleServer": "Server", "TitleServer": "Server",
@ -1220,18 +1218,12 @@
"HeaderMetadataSettings": "Metadata Settings", "HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes", "LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
"TabDonate": "Donate",
"HeaderDonationType": "Donation type:", "HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation", "OptionMakeOneTimeDonation": "Make a separate donation",
"OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
"OptionYearlySupporterMembership": "Yearly supporter membership",
"OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer", "OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song", "OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video", "OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:", "LabelOneTimeDonationAmount": "Donation amount:",
"ButtonDonate": "Donate",
"ButtonPurchase": "Purchase", "ButtonPurchase": "Purchase",
"OptionActor": "Actor", "OptionActor": "Actor",
"OptionComposer": "Composer", "OptionComposer": "Composer",
@ -1245,9 +1237,9 @@
"HeaderPhotoInfo": "Photo Info", "HeaderPhotoInfo": "Photo Info",
"HeaderInstall": "Install", "HeaderInstall": "Install",
"LabelSelectVersionToInstall": "Select version to install:", "LabelSelectVersionToInstall": "Select version to install:",
"LinkSupporterMembership": "Learn about the Supporter Membership", "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
"MessageSupporterPluginRequiresMembership": "This plugin will require an active supporter membership after the 14 day free trial.", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
"MessagePremiumPluginRequiresMembership": "This plugin will require an active supporter membership in order to purchase after the 14 day free trial.", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
"HeaderReviews": "Reviews", "HeaderReviews": "Reviews",
"HeaderDeveloperInfo": "Developer Info", "HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History", "HeaderRevisionHistory": "Revision History",
@ -1292,7 +1284,7 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content", "LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control", "LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
"LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:", "LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
@ -1513,7 +1505,7 @@
"LabelTunerType": "Tuner type:", "LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.", "HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
"AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.", "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
@ -1528,5 +1520,7 @@
"LabelHardwareVideoDecoderHelp": "Available on supported systems only.", "LabelHardwareVideoDecoderHelp": "Available on supported systems only.",
"ButtonServerDashboard": "Server Dashboard", "ButtonServerDashboard": "Server Dashboard",
"HeaderAdmin": "Admin", "HeaderAdmin": "Admin",
"ButtonSignOut": "Sign out" "ButtonSignOut": "Sign out",
"HeaderCameraUpload": "Camera Upload",
"SelectCameraUploadServers": "Upload camera photos to the following servers:"
} }

View file

@ -48,7 +48,7 @@
"ButtonConvertMedia": "Convert media", "ButtonConvertMedia": "Convert media",
"ButtonOrganize": "Organize", "ButtonOrganize": "Organize",
"LinkedToEmbyConnect": "Linked to Emby Connect", "LinkedToEmbyConnect": "Linked to Emby Connect",
"HeaderSupporterBenefits": "Supporter Benefits", "HeaderSupporterBenefits": "Emby Premiere Benefits",
"HeaderAddUser": "Add User", "HeaderAddUser": "Add User",
"LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
"LabelPinCode": "Pin code:", "LabelPinCode": "Pin code:",
@ -82,7 +82,6 @@
"LabelCustomCertificatePath": "Custom certificate path:", "LabelCustomCertificatePath": "Custom certificate path:",
"LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.", "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ButtonDonateWithPayPal": "Donate with PayPal",
"OptionDetectArchiveFilesAsMedia": "Detect archive files as media", "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
"OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.", "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
"LabelEnterConnectUserName": "Username or email:", "LabelEnterConnectUserName": "Username or email:",
@ -289,8 +288,9 @@
"TitleSupport": "\u652f\u63f4", "TitleSupport": "\u652f\u63f4",
"TabLog": "\u65e5\u8a8c", "TabLog": "\u65e5\u8a8c",
"TabAbout": "\u95dc\u65bc", "TabAbout": "\u95dc\u65bc",
"TabSupporterKey": "\u652f\u6301\u8005\u5e8f\u865f", "TabSupporterKey": "Emby Premiere Key",
"TabBecomeSupporter": "\u6210\u70ba\u652f\u6301\u8005", "TabBecomeSupporter": "Get Emby Premiere",
"TabEmbyPremiere": "Emby Premiere",
"ProjectHasCommunity": "Emby has a thriving community of users and contributors.", "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.", "CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "\u641c\u7d22\u77e5\u8b58\u5eab", "SearchKnowledgeBase": "\u641c\u7d22\u77e5\u8b58\u5eab",
@ -591,9 +591,9 @@
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"LabelSupportAmount": "Amount (USD)", "LabelSupportAmount": "Amount (USD)",
"HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by donating. A portion of all donations will be contributed to other free tools we depend on.", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
"ButtonEnterSupporterKey": "Enter supporter key", "ButtonEnterSupporterKey": "Enter Emby Premiere key",
"DonationNextStep": "Once complete, please return and enter your supporter key, which you will receive by email.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
"AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.",
"AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.",
"OptionEnableEpisodeOrganization": "Enable new episode organization", "OptionEnableEpisodeOrganization": "Enable new episode organization",
@ -639,20 +639,20 @@
"LabelDownMixAudioScale": "Audio boost when downmixing:", "LabelDownMixAudioScale": "Audio boost when downmixing:",
"LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.",
"ButtonLinkKeys": "Transfer Key", "ButtonLinkKeys": "Transfer Key",
"LabelOldSupporterKey": "Old supporter key", "LabelOldSupporterKey": "Old Emby Premiere key",
"LabelNewSupporterKey": "New supporter key", "LabelNewSupporterKey": "New Emby Premiere key",
"HeaderMultipleKeyLinking": "Transfer to New Key", "HeaderMultipleKeyLinking": "Transfer to New Key",
"MultipleKeyLinkingHelp": "If you received a new supporter key, use this form to transfer the old key's registrations to your new one.", "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
"LabelCurrentEmailAddress": "Current email address", "LabelCurrentEmailAddress": "Current email address",
"LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.", "LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.",
"HeaderForgotKey": "Forgot Key", "HeaderForgotKey": "Forgot Key",
"LabelEmailAddress": "Email address", "LabelEmailAddress": "Email address",
"LabelSupporterEmailAddress": "The email address that was used to purchase the key.", "LabelSupporterEmailAddress": "The email address that was used to purchase the key.",
"ButtonRetrieveKey": "Retrieve Key", "ButtonRetrieveKey": "Retrieve Key",
"LabelSupporterKey": "Supporter Key (paste from email)", "LabelSupporterKey": "Emby Premiere key (paste from email):",
"LabelSupporterKeyHelp": "Enter your supporter key to start enjoying additional benefits the community has developed for Emby.", "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
"MessageInvalidKey": "Supporter key is missing or invalid.", "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
"ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also be an Emby Supporter. Please donate and support the continued development of the core product. Thank you.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
"HeaderDisplaySettings": "Display Settings", "HeaderDisplaySettings": "Display Settings",
"TabPlayTo": "Play To", "TabPlayTo": "Play To",
"LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServer": "Enable Dlna server",
@ -912,7 +912,7 @@
"OptionCommunityMostWatchedSort": "Most Watched", "OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up", "TabNextUp": "Next Up",
"PlaceholderUsername": "Username", "PlaceholderUsername": "Username",
"HeaderBecomeProjectSupporter": "Become an Emby Supporter", "HeaderBecomeProjectSupporter": "Get Emby Premiere",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
"MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
@ -1002,8 +1002,6 @@
"HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.",
"LabelLoginDisclaimer": "Login disclaimer:", "LabelLoginDisclaimer": "Login disclaimer:",
"LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.",
"LabelAutomaticallyDonate": "Automatically donate this amount every month",
"LabelAutomaticallyDonateHelp": "You can cancel at any time via your PayPal account.",
"OptionList": "List", "OptionList": "List",
"TabDashboard": "Dashboard", "TabDashboard": "Dashboard",
"TitleServer": "Server", "TitleServer": "Server",
@ -1220,18 +1218,12 @@
"HeaderMetadataSettings": "Metadata Settings", "HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes", "LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
"TabDonate": "Donate",
"HeaderDonationType": "Donation type:", "HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation", "OptionMakeOneTimeDonation": "Make a separate donation",
"OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
"OptionYearlySupporterMembership": "Yearly supporter membership",
"OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer", "OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song", "OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video", "OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:", "LabelOneTimeDonationAmount": "Donation amount:",
"ButtonDonate": "Donate",
"ButtonPurchase": "Purchase", "ButtonPurchase": "Purchase",
"OptionActor": "Actor", "OptionActor": "Actor",
"OptionComposer": "Composer", "OptionComposer": "Composer",
@ -1245,9 +1237,9 @@
"HeaderPhotoInfo": "Photo Info", "HeaderPhotoInfo": "Photo Info",
"HeaderInstall": "Install", "HeaderInstall": "Install",
"LabelSelectVersionToInstall": "Select version to install:", "LabelSelectVersionToInstall": "Select version to install:",
"LinkSupporterMembership": "Learn about the Supporter Membership", "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
"MessageSupporterPluginRequiresMembership": "This plugin will require an active supporter membership after the 14 day free trial.", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
"MessagePremiumPluginRequiresMembership": "This plugin will require an active supporter membership in order to purchase after the 14 day free trial.", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
"HeaderReviews": "Reviews", "HeaderReviews": "Reviews",
"HeaderDeveloperInfo": "Developer Info", "HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History", "HeaderRevisionHistory": "Revision History",
@ -1292,7 +1284,7 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content", "LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control", "LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
"LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:", "LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
@ -1513,7 +1505,7 @@
"LabelTunerType": "Tuner type:", "LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.", "HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
"AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.", "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
@ -1528,5 +1520,7 @@
"LabelHardwareVideoDecoderHelp": "Available on supported systems only.", "LabelHardwareVideoDecoderHelp": "Available on supported systems only.",
"ButtonServerDashboard": "Server Dashboard", "ButtonServerDashboard": "Server Dashboard",
"HeaderAdmin": "Admin", "HeaderAdmin": "Admin",
"ButtonSignOut": "Sign out" "ButtonSignOut": "Sign out",
"HeaderCameraUpload": "Camera Upload",
"SelectCameraUploadServers": "Upload camera photos to the following servers:"
} }

View file

@ -33,17 +33,16 @@
"MessageKeyEmailedTo": "Key emailed to {0}.", "MessageKeyEmailedTo": "Key emailed to {0}.",
"MessageKeysLinked": "Keys linked.", "MessageKeysLinked": "Keys linked.",
"HeaderConfirmation": "Confirmation", "HeaderConfirmation": "Confirmation",
"MessageKeyUpdated": "Thank you. Your supporter key has been updated.", "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
"MessageKeyRemoved": "Thank you. Your supporter key has been removed.", "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"TextEnjoyBonusFeatures": "Enjoy Bonus Features", "TextEnjoyBonusFeatures": "Enjoy Bonus Features",
"TitleLiveTV": "Live TV", "TitleLiveTV": "Live TV",
"ButtonCancelSyncJob": "Cancel sync job", "ButtonCancelSyncJob": "Cancel sync",
"ButtonSelectView": "Select view", "ButtonSelectView": "Select view",
"TitleSync": "Sync", "TitleSync": "Sync",
"OptionAutomatic": "Auto", "OptionAutomatic": "Auto",
"HeaderSelectDate": "Select Date", "HeaderSelectDate": "Select Date",
"ButtonDonate": "Donate",
"LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.",
"HeaderMyMedia": "My Media", "HeaderMyMedia": "My Media",
"ButtonRemoveFromCollection": "Remove from Collection", "ButtonRemoveFromCollection": "Remove from Collection",
@ -51,11 +50,11 @@
"LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.",
"MessageErrorLoadingSupporterInfo": "There was an error loading supporter information. Please try again later.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
"MessageLinkYourSupporterKey": "Link your supporter key with up to {0} Emby Connect members to enjoy free access to the following apps:", "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:",
"HeaderConfirmRemoveUser": "Remove User", "HeaderConfirmRemoveUser": "Remove User",
"MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.", "MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.",
"MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional supporter benefits from this user?", "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?",
"ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitSingleHour": "Time limit: 1 hour",
"ValueTimeLimitMultiHour": "Time limit: {0} hours", "ValueTimeLimitMultiHour": "Time limit: {0} hours",
"HeaderUsers": "\u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646", "HeaderUsers": "\u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646",
@ -544,11 +543,8 @@
"MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)",
"MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.",
"ValuePriceUSD": "Price: {0} (USD)", "ValuePriceUSD": "Price: {0} (USD)",
"MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active supporter membership.", "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
"MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.",
"MessageSupporterMembershipExpiredOn": "Your supporter membership expired on {0}.",
"MessageYouHaveALifetimeMembership": "You have a lifetime supporter membership. You can provide additional donations on a one-time or recurring basis using the options below. Thank you for supporting Emby.",
"MessageYouHaveAnActiveRecurringMembership": "You have an active {0} membership. You can upgrade your plan using the options below.",
"ButtonDelete": "Delete", "ButtonDelete": "Delete",
"HeaderEmbyAccountAdded": "Emby Account Added", "HeaderEmbyAccountAdded": "Emby Account Added",
"MessageEmbyAccountAdded": "The Emby account has been added to this user.", "MessageEmbyAccountAdded": "The Emby account has been added to this user.",
@ -778,11 +774,10 @@
"TabScenes": "Scenes", "TabScenes": "Scenes",
"HeaderUnlockApp": "Unlock App", "HeaderUnlockApp": "Unlock App",
"MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.", "MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.",
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or with an active Emby Premiere subscription.",
"MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Premiere subscription.",
"MessageToValidateSupporter": "If you have an active Emby Supporter Membership, simply sign into the app using your Wifi connection within your home network.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app using your Wifi connection within your home network.",
"MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.",
"ButtonUnlockWithSupporter": "Sign in with Emby Supporter Membership",
"MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.",
"ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase",
"ButtonUnlockPrice": "Unlock {0}", "ButtonUnlockPrice": "Unlock {0}",
@ -826,14 +821,14 @@
"MessageCreateAccountAt": "Create an account at {0}", "MessageCreateAccountAt": "Create an account at {0}",
"ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.",
"HeaderTryCinemaMode": "Try Cinema Mode", "HeaderTryCinemaMode": "Try Cinema Mode",
"ButtonBecomeSupporter": "Become an Emby Supporter", "ButtonBecomeSupporter": "Get Emby Premiere",
"ButtonClosePlayVideo": "Close and play my media", "ButtonClosePlayVideo": "Close and play my media",
"MessageDidYouKnowCinemaMode": "Did you know that by becoming an Emby Supporter, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Supporter membership.", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Supporter membership.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Supporter information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"HeaderSync": "Sync", "HeaderSync": "Sync",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
"MessageSyncStarted": "Sync started", "MessageSyncStarted": "Sync started",
@ -893,5 +888,8 @@
"MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.",
"HeaderNextUp": "\u0627\u0644\u062a\u0627\u0644\u0649", "HeaderNextUp": "\u0627\u0644\u062a\u0627\u0644\u0649",
"HeaderLatestMovies": "Latest Movies", "HeaderLatestMovies": "Latest Movies",
"HeaderLatestEpisodes": "\u0627\u062d\u062f\u062b \u0627\u0644\u062d\u0644\u0642\u0627\u062a" "HeaderLatestEpisodes": "\u0627\u062d\u062f\u062b \u0627\u0644\u062d\u0644\u0642\u0627\u062a",
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
"HeaderEmailAddress": "E-Mail Address",
"TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address."
} }

View file

@ -33,17 +33,16 @@
"MessageKeyEmailedTo": "Key emailed to {0}.", "MessageKeyEmailedTo": "Key emailed to {0}.",
"MessageKeysLinked": "Keys linked.", "MessageKeysLinked": "Keys linked.",
"HeaderConfirmation": "Confirmation", "HeaderConfirmation": "Confirmation",
"MessageKeyUpdated": "Thank you. Your supporter key has been updated.", "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
"MessageKeyRemoved": "Thank you. Your supporter key has been removed.", "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
"HeaderSupportTheTeam": "\u041f\u043e\u0434\u043a\u0440\u0435\u043f\u0435\u0442\u0435 Emby \u041e\u0442\u0431\u043e\u0440\u044a\u0442", "HeaderSupportTheTeam": "\u041f\u043e\u0434\u043a\u0440\u0435\u043f\u0435\u0442\u0435 Emby \u041e\u0442\u0431\u043e\u0440\u044a\u0442",
"TextEnjoyBonusFeatures": "Enjoy Bonus Features", "TextEnjoyBonusFeatures": "Enjoy Bonus Features",
"TitleLiveTV": "\u0422V \u043d\u0430 \u0436\u0438\u0432\u043e", "TitleLiveTV": "\u0422V \u043d\u0430 \u0436\u0438\u0432\u043e",
"ButtonCancelSyncJob": "Cancel sync job", "ButtonCancelSyncJob": "Cancel sync",
"ButtonSelectView": "Select view", "ButtonSelectView": "Select view",
"TitleSync": "Sync", "TitleSync": "Sync",
"OptionAutomatic": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442", "OptionAutomatic": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442",
"HeaderSelectDate": "Select Date", "HeaderSelectDate": "Select Date",
"ButtonDonate": "Donate",
"LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.",
"HeaderMyMedia": "My Media", "HeaderMyMedia": "My Media",
"ButtonRemoveFromCollection": "Remove from Collection", "ButtonRemoveFromCollection": "Remove from Collection",
@ -51,11 +50,11 @@
"LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:",
"TitleNotifications": "\u0418\u0437\u0432\u0435\u0441\u0442\u0438\u044f", "TitleNotifications": "\u0418\u0437\u0432\u0435\u0441\u0442\u0438\u044f",
"ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.",
"MessageErrorLoadingSupporterInfo": "There was an error loading supporter information. Please try again later.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
"MessageLinkYourSupporterKey": "Link your supporter key with up to {0} Emby Connect members to enjoy free access to the following apps:", "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:",
"HeaderConfirmRemoveUser": "Remove User", "HeaderConfirmRemoveUser": "Remove User",
"MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.", "MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.",
"MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional supporter benefits from this user?", "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?",
"ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitSingleHour": "Time limit: 1 hour",
"ValueTimeLimitMultiHour": "Time limit: {0} hours", "ValueTimeLimitMultiHour": "Time limit: {0} hours",
"HeaderUsers": "\u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438", "HeaderUsers": "\u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438",
@ -544,11 +543,8 @@
"MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)",
"MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.",
"ValuePriceUSD": "Price: {0} (USD)", "ValuePriceUSD": "Price: {0} (USD)",
"MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active supporter membership.", "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
"MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.",
"MessageSupporterMembershipExpiredOn": "Your supporter membership expired on {0}.",
"MessageYouHaveALifetimeMembership": "You have a lifetime supporter membership. You can provide additional donations on a one-time or recurring basis using the options below. Thank you for supporting Emby.",
"MessageYouHaveAnActiveRecurringMembership": "You have an active {0} membership. You can upgrade your plan using the options below.",
"ButtonDelete": "\u0418\u0437\u0442\u0440\u0438\u0439", "ButtonDelete": "\u0418\u0437\u0442\u0440\u0438\u0439",
"HeaderEmbyAccountAdded": "Emby Account Added", "HeaderEmbyAccountAdded": "Emby Account Added",
"MessageEmbyAccountAdded": "The Emby account has been added to this user.", "MessageEmbyAccountAdded": "The Emby account has been added to this user.",
@ -778,11 +774,10 @@
"TabScenes": "Scenes", "TabScenes": "Scenes",
"HeaderUnlockApp": "Unlock App", "HeaderUnlockApp": "Unlock App",
"MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.", "MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.",
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or with an active Emby Premiere subscription.",
"MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Premiere subscription.",
"MessageToValidateSupporter": "If you have an active Emby Supporter Membership, simply sign into the app using your Wifi connection within your home network.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app using your Wifi connection within your home network.",
"MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.",
"ButtonUnlockWithSupporter": "Sign in with Emby Supporter Membership",
"MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.",
"ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase",
"ButtonUnlockPrice": "Unlock {0}", "ButtonUnlockPrice": "Unlock {0}",
@ -826,14 +821,14 @@
"MessageCreateAccountAt": "Create an account at {0}", "MessageCreateAccountAt": "Create an account at {0}",
"ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.",
"HeaderTryCinemaMode": "Try Cinema Mode", "HeaderTryCinemaMode": "Try Cinema Mode",
"ButtonBecomeSupporter": "Become an Emby Supporter", "ButtonBecomeSupporter": "Get Emby Premiere",
"ButtonClosePlayVideo": "Close and play my media", "ButtonClosePlayVideo": "Close and play my media",
"MessageDidYouKnowCinemaMode": "Did you know that by becoming an Emby Supporter, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Supporter membership.", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Supporter membership.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Supporter information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"HeaderSync": "Sync", "HeaderSync": "Sync",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
"MessageSyncStarted": "Sync started", "MessageSyncStarted": "Sync started",
@ -893,5 +888,8 @@
"MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.",
"HeaderNextUp": "\u0421\u043b\u0435\u0434\u0432\u0430", "HeaderNextUp": "\u0421\u043b\u0435\u0434\u0432\u0430",
"HeaderLatestMovies": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438 \u0424\u0438\u043b\u043c\u0438", "HeaderLatestMovies": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438 \u0424\u0438\u043b\u043c\u0438",
"HeaderLatestEpisodes": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438 \u0415\u043f\u0438\u0437\u043e\u0434\u0438" "HeaderLatestEpisodes": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438 \u0415\u043f\u0438\u0437\u043e\u0434\u0438",
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
"HeaderEmailAddress": "E-Mail Address",
"TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address."
} }

View file

@ -33,17 +33,16 @@
"MessageKeyEmailedTo": "Key emailed to {0}.", "MessageKeyEmailedTo": "Key emailed to {0}.",
"MessageKeysLinked": "Keys linked.", "MessageKeysLinked": "Keys linked.",
"HeaderConfirmation": "Confirmation", "HeaderConfirmation": "Confirmation",
"MessageKeyUpdated": "Thank you. Your supporter key has been updated.", "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
"MessageKeyRemoved": "Thank you. Your supporter key has been removed.", "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"TextEnjoyBonusFeatures": "Enjoy Bonus Features", "TextEnjoyBonusFeatures": "Enjoy Bonus Features",
"TitleLiveTV": "Live TV", "TitleLiveTV": "Live TV",
"ButtonCancelSyncJob": "Cancel sync job", "ButtonCancelSyncJob": "Cancel sync",
"ButtonSelectView": "Select view", "ButtonSelectView": "Select view",
"TitleSync": "Sync", "TitleSync": "Sync",
"OptionAutomatic": "Auto", "OptionAutomatic": "Auto",
"HeaderSelectDate": "Select Date", "HeaderSelectDate": "Select Date",
"ButtonDonate": "Donate",
"LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.",
"HeaderMyMedia": "My Media", "HeaderMyMedia": "My Media",
"ButtonRemoveFromCollection": "Remove from Collection", "ButtonRemoveFromCollection": "Remove from Collection",
@ -51,11 +50,11 @@
"LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.",
"MessageErrorLoadingSupporterInfo": "There was an error loading supporter information. Please try again later.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
"MessageLinkYourSupporterKey": "Link your supporter key with up to {0} Emby Connect members to enjoy free access to the following apps:", "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:",
"HeaderConfirmRemoveUser": "Remove User", "HeaderConfirmRemoveUser": "Remove User",
"MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.", "MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.",
"MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional supporter benefits from this user?", "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?",
"ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitSingleHour": "Time limit: 1 hour",
"ValueTimeLimitMultiHour": "Time limit: {0} hours", "ValueTimeLimitMultiHour": "Time limit: {0} hours",
"HeaderUsers": "Users", "HeaderUsers": "Users",
@ -544,11 +543,8 @@
"MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)",
"MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.",
"ValuePriceUSD": "Price: {0} (USD)", "ValuePriceUSD": "Price: {0} (USD)",
"MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active supporter membership.", "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
"MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.",
"MessageSupporterMembershipExpiredOn": "Your supporter membership expired on {0}.",
"MessageYouHaveALifetimeMembership": "You have a lifetime supporter membership. You can provide additional donations on a one-time or recurring basis using the options below. Thank you for supporting Emby.",
"MessageYouHaveAnActiveRecurringMembership": "You have an active {0} membership. You can upgrade your plan using the options below.",
"ButtonDelete": "Delete", "ButtonDelete": "Delete",
"HeaderEmbyAccountAdded": "Emby Account Added", "HeaderEmbyAccountAdded": "Emby Account Added",
"MessageEmbyAccountAdded": "The Emby account has been added to this user.", "MessageEmbyAccountAdded": "The Emby account has been added to this user.",
@ -778,11 +774,10 @@
"TabScenes": "Scenes", "TabScenes": "Scenes",
"HeaderUnlockApp": "Unlock App", "HeaderUnlockApp": "Unlock App",
"MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.", "MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.",
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or with an active Emby Premiere subscription.",
"MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Premiere subscription.",
"MessageToValidateSupporter": "If you have an active Emby Supporter Membership, simply sign into the app using your Wifi connection within your home network.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app using your Wifi connection within your home network.",
"MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.",
"ButtonUnlockWithSupporter": "Sign in with Emby Supporter Membership",
"MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.",
"ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase",
"ButtonUnlockPrice": "Unlock {0}", "ButtonUnlockPrice": "Unlock {0}",
@ -826,14 +821,14 @@
"MessageCreateAccountAt": "Create an account at {0}", "MessageCreateAccountAt": "Create an account at {0}",
"ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.",
"HeaderTryCinemaMode": "Try Cinema Mode", "HeaderTryCinemaMode": "Try Cinema Mode",
"ButtonBecomeSupporter": "Become an Emby Supporter", "ButtonBecomeSupporter": "Get Emby Premiere",
"ButtonClosePlayVideo": "Close and play my media", "ButtonClosePlayVideo": "Close and play my media",
"MessageDidYouKnowCinemaMode": "Did you know that by becoming an Emby Supporter, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Supporter membership.", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Supporter membership.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Supporter information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"HeaderSync": "Sync", "HeaderSync": "Sync",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
"MessageSyncStarted": "Sync started", "MessageSyncStarted": "Sync started",
@ -893,5 +888,8 @@
"MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.",
"HeaderNextUp": "Next Up", "HeaderNextUp": "Next Up",
"HeaderLatestMovies": "Latest Movies", "HeaderLatestMovies": "Latest Movies",
"HeaderLatestEpisodes": "Latest Episodes" "HeaderLatestEpisodes": "Latest Episodes",
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
"HeaderEmailAddress": "E-Mail Address",
"TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address."
} }

View file

@ -33,17 +33,16 @@
"MessageKeyEmailedTo": "Key emailed to {0}.", "MessageKeyEmailedTo": "Key emailed to {0}.",
"MessageKeysLinked": "Keys linked.", "MessageKeysLinked": "Keys linked.",
"HeaderConfirmation": "Potvrzen\u00ed", "HeaderConfirmation": "Potvrzen\u00ed",
"MessageKeyUpdated": "Thank you. Your supporter key has been updated.", "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
"MessageKeyRemoved": "Thank you. Your supporter key has been removed.", "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"TextEnjoyBonusFeatures": "Enjoy Bonus Features", "TextEnjoyBonusFeatures": "Enjoy Bonus Features",
"TitleLiveTV": "\u017div\u00e1 TV", "TitleLiveTV": "\u017div\u00e1 TV",
"ButtonCancelSyncJob": "Cancel sync job", "ButtonCancelSyncJob": "Cancel sync",
"ButtonSelectView": "Select view", "ButtonSelectView": "Select view",
"TitleSync": "Sync", "TitleSync": "Sync",
"OptionAutomatic": "Auto", "OptionAutomatic": "Auto",
"HeaderSelectDate": "Select Date", "HeaderSelectDate": "Select Date",
"ButtonDonate": "Donate",
"LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.",
"HeaderMyMedia": "My Media", "HeaderMyMedia": "My Media",
"ButtonRemoveFromCollection": "Remove from Collection", "ButtonRemoveFromCollection": "Remove from Collection",
@ -51,11 +50,11 @@
"LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.",
"MessageErrorLoadingSupporterInfo": "There was an error loading supporter information. Please try again later.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
"MessageLinkYourSupporterKey": "Link your supporter key with up to {0} Emby Connect members to enjoy free access to the following apps:", "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:",
"HeaderConfirmRemoveUser": "Remove User", "HeaderConfirmRemoveUser": "Remove User",
"MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.", "MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.",
"MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional supporter benefits from this user?", "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?",
"ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitSingleHour": "Time limit: 1 hour",
"ValueTimeLimitMultiHour": "Time limit: {0} hours", "ValueTimeLimitMultiHour": "Time limit: {0} hours",
"HeaderUsers": "U\u017eivatel\u00e9", "HeaderUsers": "U\u017eivatel\u00e9",
@ -544,11 +543,8 @@
"MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)",
"MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.",
"ValuePriceUSD": "Price: {0} (USD)", "ValuePriceUSD": "Price: {0} (USD)",
"MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active supporter membership.", "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
"MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.",
"MessageSupporterMembershipExpiredOn": "Your supporter membership expired on {0}.",
"MessageYouHaveALifetimeMembership": "You have a lifetime supporter membership. You can provide additional donations on a one-time or recurring basis using the options below. Thank you for supporting Emby.",
"MessageYouHaveAnActiveRecurringMembership": "You have an active {0} membership. You can upgrade your plan using the options below.",
"ButtonDelete": "Odstranit", "ButtonDelete": "Odstranit",
"HeaderEmbyAccountAdded": "Emby Account Added", "HeaderEmbyAccountAdded": "Emby Account Added",
"MessageEmbyAccountAdded": "The Emby account has been added to this user.", "MessageEmbyAccountAdded": "The Emby account has been added to this user.",
@ -778,11 +774,10 @@
"TabScenes": "Scenes", "TabScenes": "Scenes",
"HeaderUnlockApp": "Unlock App", "HeaderUnlockApp": "Unlock App",
"MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.", "MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.",
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or with an active Emby Premiere subscription.",
"MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Premiere subscription.",
"MessageToValidateSupporter": "If you have an active Emby Supporter Membership, simply sign into the app using your Wifi connection within your home network.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app using your Wifi connection within your home network.",
"MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.",
"ButtonUnlockWithSupporter": "Sign in with Emby Supporter Membership",
"MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.",
"ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase",
"ButtonUnlockPrice": "Unlock {0}", "ButtonUnlockPrice": "Unlock {0}",
@ -826,14 +821,14 @@
"MessageCreateAccountAt": "Create an account at {0}", "MessageCreateAccountAt": "Create an account at {0}",
"ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.",
"HeaderTryCinemaMode": "Try Cinema Mode", "HeaderTryCinemaMode": "Try Cinema Mode",
"ButtonBecomeSupporter": "Become an Emby Supporter", "ButtonBecomeSupporter": "Get Emby Premiere",
"ButtonClosePlayVideo": "Close and play my media", "ButtonClosePlayVideo": "Close and play my media",
"MessageDidYouKnowCinemaMode": "Did you know that by becoming an Emby Supporter, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Supporter membership.", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Supporter membership.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Supporter information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"HeaderSync": "Sync", "HeaderSync": "Sync",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
"MessageSyncStarted": "Sync started", "MessageSyncStarted": "Sync started",
@ -893,5 +888,8 @@
"MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.",
"HeaderNextUp": "Dal\u0161\u00ed nahoru", "HeaderNextUp": "Dal\u0161\u00ed nahoru",
"HeaderLatestMovies": "Posledn\u00ed filmy", "HeaderLatestMovies": "Posledn\u00ed filmy",
"HeaderLatestEpisodes": "Posledn\u00ed d\u00edly" "HeaderLatestEpisodes": "Posledn\u00ed d\u00edly",
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
"HeaderEmailAddress": "E-Mail Address",
"TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address."
} }

View file

@ -33,17 +33,16 @@
"MessageKeyEmailedTo": "N\u00f8gle sendt med e-mail til {0}.", "MessageKeyEmailedTo": "N\u00f8gle sendt med e-mail til {0}.",
"MessageKeysLinked": "N\u00f8gler sammenknyttet.", "MessageKeysLinked": "N\u00f8gler sammenknyttet.",
"HeaderConfirmation": "Bekr\u00e6ftelse", "HeaderConfirmation": "Bekr\u00e6ftelse",
"MessageKeyUpdated": "Tak. Din supporter n\u00f8gle er nu opdateret.", "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
"MessageKeyRemoved": "Tak. Din supporter n\u00f8gle er fjernet.", "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
"HeaderSupportTheTeam": "St\u00f8t Emby-holdet", "HeaderSupportTheTeam": "St\u00f8t Emby-holdet",
"TextEnjoyBonusFeatures": "F\u00e5 bonus funktioner", "TextEnjoyBonusFeatures": "F\u00e5 bonus funktioner",
"TitleLiveTV": "Live TV", "TitleLiveTV": "Live TV",
"ButtonCancelSyncJob": "Cancel sync job", "ButtonCancelSyncJob": "Cancel sync",
"ButtonSelectView": "Select view", "ButtonSelectView": "Select view",
"TitleSync": "Sync", "TitleSync": "Sync",
"OptionAutomatic": "Auto", "OptionAutomatic": "Auto",
"HeaderSelectDate": "V\u00e6lg dato", "HeaderSelectDate": "V\u00e6lg dato",
"ButtonDonate": "Don\u00e9r",
"LabelRecurringDonationCanBeCancelledHelp": "Tilbagevendende donationer kan afmeldes n\u00e5r som helst fra din PayPal konto.", "LabelRecurringDonationCanBeCancelledHelp": "Tilbagevendende donationer kan afmeldes n\u00e5r som helst fra din PayPal konto.",
"HeaderMyMedia": "Mine medier", "HeaderMyMedia": "Mine medier",
"ButtonRemoveFromCollection": "Remove from Collection", "ButtonRemoveFromCollection": "Remove from Collection",
@ -51,11 +50,11 @@
"LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:",
"TitleNotifications": "Underretninger", "TitleNotifications": "Underretninger",
"ErrorLaunchingChromecast": "Der opstod en fejl ved start af cromecast. Tjek venligst at din enhed er forbundet til det tr\u00e5dl\u00f8se netv\u00e6rk.", "ErrorLaunchingChromecast": "Der opstod en fejl ved start af cromecast. Tjek venligst at din enhed er forbundet til det tr\u00e5dl\u00f8se netv\u00e6rk.",
"MessageErrorLoadingSupporterInfo": "Det opstod en fejl ved indl\u00e6sning at supporter information. Pr\u00f8v igen senere.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
"MessageLinkYourSupporterKey": "Sammenk\u00e6d din supporter n\u00f8gle med op til {0} Emby Connect medlemmer for at f\u00e5 gratis adgang til disse apps:", "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:",
"HeaderConfirmRemoveUser": "Fjern bruger", "HeaderConfirmRemoveUser": "Fjern bruger",
"MessageSwipeDownOnRemoteControl": "Velkommen til fjernstyring. V\u00e6lg hvilken enhed du vil styre ved at klikke cast ikonet i \u00f8verste h\u00f8jre hj\u00f8rne. Tr\u00e6k ned hvor som helst p\u00e5 sk\u00e6rmen for at g\u00e5 tilbage til hvor du kom fra.", "MessageSwipeDownOnRemoteControl": "Velkommen til fjernstyring. V\u00e6lg hvilken enhed du vil styre ved at klikke cast ikonet i \u00f8verste h\u00f8jre hj\u00f8rne. Tr\u00e6k ned hvor som helst p\u00e5 sk\u00e6rmen for at g\u00e5 tilbage til hvor du kom fra.",
"MessageConfirmRemoveConnectSupporter": "Er du sikker p\u00e5 at du vil fjerne supporter fordelene fra denne bruger?", "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?",
"ValueTimeLimitSingleHour": "Tidsbegr\u00e6nsning: 1 time", "ValueTimeLimitSingleHour": "Tidsbegr\u00e6nsning: 1 time",
"ValueTimeLimitMultiHour": "Tidsbegr\u00e6nsning: {0} timer", "ValueTimeLimitMultiHour": "Tidsbegr\u00e6nsning: {0} timer",
"HeaderUsers": "Brugere", "HeaderUsers": "Brugere",
@ -101,7 +100,7 @@
"MessageItemsAdded": "Elementer tilf\u00f8jet", "MessageItemsAdded": "Elementer tilf\u00f8jet",
"ButtonAddToCollection": "Tilf\u00f8j til samling", "ButtonAddToCollection": "Tilf\u00f8j til samling",
"HeaderSelectCertificatePath": "V\u00e6lg certifikatsti", "HeaderSelectCertificatePath": "V\u00e6lg certifikatsti",
"ConfirmMessageScheduledTaskButton": "Denne operation k\u00f8rer normalt som en planlagt opgave. Den kan ogs\u00e5 k\u00f8res manuelt her. For at konfigurere den planlage opgave, se:", "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:",
"HeaderSupporterBenefit": "Med et supporter medlemskab opn\u00e5r du ekstra fordele s\u00e5 som adgang til sync, premium plugins, internet kanaler samt meget mere. {0}L\u00e6r mere{1}.", "HeaderSupporterBenefit": "Med et supporter medlemskab opn\u00e5r du ekstra fordele s\u00e5 som adgang til sync, premium plugins, internet kanaler samt meget mere. {0}L\u00e6r mere{1}.",
"LabelSyncNoTargetsHelp": "Det ser ud til at du for \u00f8jeblikket ikke har nogle enheder ser underst\u00f8tter sync.", "LabelSyncNoTargetsHelp": "Det ser ud til at du for \u00f8jeblikket ikke har nogle enheder ser underst\u00f8tter sync.",
"HeaderWelcomeToProjectServerDashboard": "Velkommen til Emby betjeningspanel", "HeaderWelcomeToProjectServerDashboard": "Velkommen til Emby betjeningspanel",
@ -418,7 +417,7 @@
"ButtonScenes": "Scener", "ButtonScenes": "Scener",
"ButtonQuality": "Kvalitet", "ButtonQuality": "Kvalitet",
"HeaderNotifications": "Notifikationer", "HeaderNotifications": "Notifikationer",
"HeaderSelectPlayer": "V\u00e6lg afspiller:", "HeaderSelectPlayer": "Select Player",
"ButtonSelect": "V\u00e6lg", "ButtonSelect": "V\u00e6lg",
"ButtonNew": "Ny", "ButtonNew": "Ny",
"MessageInternetExplorerWebm": "For at opn\u00e5 de bedste resultater med Internet Explorer bedes du installere WebM afspilningstilf\u00f8jelsen.", "MessageInternetExplorerWebm": "For at opn\u00e5 de bedste resultater med Internet Explorer bedes du installere WebM afspilningstilf\u00f8jelsen.",
@ -544,11 +543,8 @@
"MessageTrialWillExpireIn": "Pr\u00f8veperioden for denne funktion udl\u00f8ber om {0} dag(e)", "MessageTrialWillExpireIn": "Pr\u00f8veperioden for denne funktion udl\u00f8ber om {0} dag(e)",
"MessageInstallPluginFromApp": "Dette plugin skal v\u00e6re installeret inde i den app du \u00f8nsker at benytte det fra.", "MessageInstallPluginFromApp": "Dette plugin skal v\u00e6re installeret inde i den app du \u00f8nsker at benytte det fra.",
"ValuePriceUSD": "Pris: {0} (USD)", "ValuePriceUSD": "Pris: {0} (USD)",
"MessageFeatureIncludedWithSupporter": "Du er registreret til at benytte denne funktion, og kan blive ved med at benytte den under foruds\u00e6tning af et aktivt supporter medlemsskab.", "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
"MessageChangeRecurringPlanConfirm": "Efter denne transaktion er udf\u00f8rt skal du afmelde din tidligere l\u00f8bende donation inde fra din PayPal konto. Tak fordi du st\u00f8tter Emby.", "MessageChangeRecurringPlanConfirm": "Efter denne transaktion er udf\u00f8rt skal du afmelde din tidligere l\u00f8bende donation inde fra din PayPal konto. Tak fordi du st\u00f8tter Emby.",
"MessageSupporterMembershipExpiredOn": "Dit supporter medlemskab udl\u00f8b den {0}.",
"MessageYouHaveALifetimeMembership": "Du har et livstidsmedlemskab. Du kan give yderligere donationer via en engangsydelse eller p\u00e5 l\u00f8bende basis ved at benytte mulighederne nedenfor. Tak fordi du st\u00f8tter Emby.",
"MessageYouHaveAnActiveRecurringMembership": "Du har et aktivt {0} medlemsskab. Du kan opgradere dette via mulighederne nedenfor.",
"ButtonDelete": "Slet", "ButtonDelete": "Slet",
"HeaderEmbyAccountAdded": "Emby konto tilf\u00f8jet", "HeaderEmbyAccountAdded": "Emby konto tilf\u00f8jet",
"MessageEmbyAccountAdded": "Emby kontoen er blevet tilf\u00f8jet til denne bruger.", "MessageEmbyAccountAdded": "Emby kontoen er blevet tilf\u00f8jet til denne bruger.",
@ -778,11 +774,10 @@
"TabScenes": "Scener", "TabScenes": "Scener",
"HeaderUnlockApp": "Opl\u00e5s app", "HeaderUnlockApp": "Opl\u00e5s app",
"MessageUnlockAppWithPurchase": "L\u00e5s alle funktionerne i denne app op med en lille engangsbetaling.", "MessageUnlockAppWithPurchase": "L\u00e5s alle funktionerne i denne app op med en lille engangsbetaling.",
"MessageUnlockAppWithPurchaseOrSupporter": "L\u00e5s alle funktionerne i denne app op med en lille engangsbetaling eller ved at logge ind med et aktivt Emby Supporter medlemsskab.", "MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or with an active Emby Premiere subscription.",
"MessageUnlockAppWithSupporter": "L\u00e5s alle funktionerne i denne app op ved at logge ind med et aktivt Emby Supporter medlemsskab.", "MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Premiere subscription.",
"MessageToValidateSupporter": "Hvis du har et aktivt Emby Supporter medlemsskab skal du blot logge ind i app'en mens du er p\u00e5 din Wifi forbindelse i dit eget hjem.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app using your Wifi connection within your home network.",
"MessagePaymentServicesUnavailable": "Betalingsservicen er ikke tilg\u00e6ngelig p\u00e5 nuv\u00e6rende tidspunkt. Pr\u00f8v igen senere.", "MessagePaymentServicesUnavailable": "Betalingsservicen er ikke tilg\u00e6ngelig p\u00e5 nuv\u00e6rende tidspunkt. Pr\u00f8v igen senere.",
"ButtonUnlockWithSupporter": "Log ind med et Emby Supporter medlemsskab",
"MessagePleaseSignInLocalNetwork": "F\u00f8r du forts\u00e6tter bedes du sikre dig at du har forbindelse til dit lokale netv\u00e6rk via Wifi eller Lan forbindelse.", "MessagePleaseSignInLocalNetwork": "F\u00f8r du forts\u00e6tter bedes du sikre dig at du har forbindelse til dit lokale netv\u00e6rk via Wifi eller Lan forbindelse.",
"ButtonUnlockWithPurchase": "L\u00e5s op gennem k\u00f8b", "ButtonUnlockWithPurchase": "L\u00e5s op gennem k\u00f8b",
"ButtonUnlockPrice": "Unlock {0}", "ButtonUnlockPrice": "Unlock {0}",
@ -826,14 +821,14 @@
"MessageCreateAccountAt": "Create an account at {0}", "MessageCreateAccountAt": "Create an account at {0}",
"ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.",
"HeaderTryCinemaMode": "Try Cinema Mode", "HeaderTryCinemaMode": "Try Cinema Mode",
"ButtonBecomeSupporter": "Become an Emby Supporter", "ButtonBecomeSupporter": "Get Emby Premiere",
"ButtonClosePlayVideo": "Close and play my media", "ButtonClosePlayVideo": "Close and play my media",
"MessageDidYouKnowCinemaMode": "Did you know that by becoming an Emby Supporter, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Supporter membership.", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Supporter membership.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Supporter information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"HeaderSync": "Sync", "HeaderSync": "Sync",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
"MessageSyncStarted": "Sync started", "MessageSyncStarted": "Sync started",
@ -893,5 +888,8 @@
"MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.",
"HeaderNextUp": "N\u00e6ste", "HeaderNextUp": "N\u00e6ste",
"HeaderLatestMovies": "Seneste film", "HeaderLatestMovies": "Seneste film",
"HeaderLatestEpisodes": "Sidste episoder" "HeaderLatestEpisodes": "Sidste episoder",
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
"HeaderEmailAddress": "E-Mail Address",
"TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address."
} }

View file

@ -33,17 +33,16 @@
"MessageKeyEmailedTo": "E-Mail mit Zugangsschl\u00fcssel an: {0}.", "MessageKeyEmailedTo": "E-Mail mit Zugangsschl\u00fcssel an: {0}.",
"MessageKeysLinked": "Schl\u00fcssel verkn\u00fcpft.", "MessageKeysLinked": "Schl\u00fcssel verkn\u00fcpft.",
"HeaderConfirmation": "Best\u00e4tigung", "HeaderConfirmation": "Best\u00e4tigung",
"MessageKeyUpdated": "Danke. Dein Unterst\u00fctzerschl\u00fcssel wurde aktualisiert.", "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
"MessageKeyRemoved": "Danke. Ihr Unterst\u00fctzerschl\u00fcssel wurde entfernt.", "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
"HeaderSupportTheTeam": "Unterst\u00fctzen Sie das Emby Team", "HeaderSupportTheTeam": "Unterst\u00fctzen Sie das Emby Team",
"TextEnjoyBonusFeatures": "Erleben Sie Bonus Funktionen", "TextEnjoyBonusFeatures": "Erleben Sie Bonus Funktionen",
"TitleLiveTV": "Live-TV", "TitleLiveTV": "Live-TV",
"ButtonCancelSyncJob": "Synchronisationsjob abbrechen", "ButtonCancelSyncJob": "Cancel sync",
"ButtonSelectView": "Ansicht w\u00e4hlen", "ButtonSelectView": "Ansicht w\u00e4hlen",
"TitleSync": "Synchronisation", "TitleSync": "Synchronisation",
"OptionAutomatic": "Auto", "OptionAutomatic": "Auto",
"HeaderSelectDate": "Datum w\u00e4hlen", "HeaderSelectDate": "Datum w\u00e4hlen",
"ButtonDonate": "Spenden",
"LabelRecurringDonationCanBeCancelledHelp": "Fortlaufende Spenden k\u00f6nnen jederzeit \u00fcber deinen PayPal Account gek\u00fcndigt werden.", "LabelRecurringDonationCanBeCancelledHelp": "Fortlaufende Spenden k\u00f6nnen jederzeit \u00fcber deinen PayPal Account gek\u00fcndigt werden.",
"HeaderMyMedia": "Meine Medien", "HeaderMyMedia": "Meine Medien",
"ButtonRemoveFromCollection": "Aus Sammlung entfernen", "ButtonRemoveFromCollection": "Aus Sammlung entfernen",
@ -51,11 +50,11 @@
"LabelAutomaticUpdateLevelForPlugins": "Automatische Updates f\u00fcr Plugins:", "LabelAutomaticUpdateLevelForPlugins": "Automatische Updates f\u00fcr Plugins:",
"TitleNotifications": "Benachrichtigungen", "TitleNotifications": "Benachrichtigungen",
"ErrorLaunchingChromecast": "W\u00e4hrend des startens von Chromecast ist ein Fehler aufgetreten. Bitte stelle sicher, dass dein Ger\u00e4te mit dem WLAN verbunden ist.", "ErrorLaunchingChromecast": "W\u00e4hrend des startens von Chromecast ist ein Fehler aufgetreten. Bitte stelle sicher, dass dein Ger\u00e4te mit dem WLAN verbunden ist.",
"MessageErrorLoadingSupporterInfo": "Es trat ein Fehler beim laden der Unterst\u00fctzer-Informationen auf. Bitte versuchen Sie es sp\u00e4ter erneut.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
"MessageLinkYourSupporterKey": "Verbinden Sie Ihren Unterst\u00fctzer-Schl\u00fcssel mit bis zu {0} Emby Connect Benutzern um kostenfreien Zugriff auf die folgenden Apps zu erhalten:", "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:",
"HeaderConfirmRemoveUser": "Entferne Benutzer", "HeaderConfirmRemoveUser": "Entferne Benutzer",
"MessageSwipeDownOnRemoteControl": "Willkommen zur Fernbedienung. W\u00e4hlen Sie ein Ger\u00e4t durch Klick auf das Cast-Icon in der rechten oberen Ecke, um es fernzusteuern. Streichen Sie irgendwo auf dem Bildschirm nach unten um zur\u00fcck zu gehen.", "MessageSwipeDownOnRemoteControl": "Willkommen zur Fernbedienung. W\u00e4hlen Sie ein Ger\u00e4t durch Klick auf das Cast-Icon in der rechten oberen Ecke, um es fernzusteuern. Streichen Sie irgendwo auf dem Bildschirm nach unten um zur\u00fcck zu gehen.",
"MessageConfirmRemoveConnectSupporter": "M\u00f6chten Sie wirklich zus\u00e4tzliche Unterst\u00fctzer-Features von diesem Anwender entfernen?", "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?",
"ValueTimeLimitSingleHour": "Zeitlimit: 1 Stunde", "ValueTimeLimitSingleHour": "Zeitlimit: 1 Stunde",
"ValueTimeLimitMultiHour": "Zeitlimit: {0} Stunden", "ValueTimeLimitMultiHour": "Zeitlimit: {0} Stunden",
"HeaderUsers": "Benutzer", "HeaderUsers": "Benutzer",
@ -101,7 +100,7 @@
"MessageItemsAdded": "Eintr\u00e4ge hinzugef\u00fcgt", "MessageItemsAdded": "Eintr\u00e4ge hinzugef\u00fcgt",
"ButtonAddToCollection": "Zu Sammlung hinzuf\u00fcgen", "ButtonAddToCollection": "Zu Sammlung hinzuf\u00fcgen",
"HeaderSelectCertificatePath": "W\u00e4hlen Sie einen Zertifikat Ordner", "HeaderSelectCertificatePath": "W\u00e4hlen Sie einen Zertifikat Ordner",
"ConfirmMessageScheduledTaskButton": "Diese Aufgabe l\u00e4uft normalerweise automatisch als geplante Aufgabe. Sie kann jedoch auch manuell von hier gestartet werden. F\u00fcr Einstellungen der geplanten Aufgaben schauen Sie hier:", "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:",
"HeaderSupporterBenefit": "Eine Unterst\u00fctzer-Mitgliedschaft bietet weitere Funktionen wie z.B. Zugriff auf die Synchronisation, Premium-Plugins, Internet Kan\u00e4le und mehr. {0}Erfahren Sie mehr{1}.", "HeaderSupporterBenefit": "Eine Unterst\u00fctzer-Mitgliedschaft bietet weitere Funktionen wie z.B. Zugriff auf die Synchronisation, Premium-Plugins, Internet Kan\u00e4le und mehr. {0}Erfahren Sie mehr{1}.",
"LabelSyncNoTargetsHelp": "Es sieht so aus als w\u00fcrden Sie aktuell keine Apps verwenden, die Synchronisation unterst\u00fctzen.", "LabelSyncNoTargetsHelp": "Es sieht so aus als w\u00fcrden Sie aktuell keine Apps verwenden, die Synchronisation unterst\u00fctzen.",
"HeaderWelcomeToProjectServerDashboard": "Willkommen zur Emby Server \u00dcbersicht", "HeaderWelcomeToProjectServerDashboard": "Willkommen zur Emby Server \u00dcbersicht",
@ -393,7 +392,7 @@
"MessagePleaseRefreshPage": "Bitte aktualisiere diese Seite um neue Updates vom Server zu erhalten.", "MessagePleaseRefreshPage": "Bitte aktualisiere diese Seite um neue Updates vom Server zu erhalten.",
"ButtonHide": "Verstecke", "ButtonHide": "Verstecke",
"MessageSettingsSaved": "Einstellungen gespeichert", "MessageSettingsSaved": "Einstellungen gespeichert",
"ButtonSignOut": "Sign Out", "ButtonSignOut": "Abmelden",
"ButtonMyProfile": "Mein Profil", "ButtonMyProfile": "Mein Profil",
"ButtonMyPreferences": "Meine Einstellungen", "ButtonMyPreferences": "Meine Einstellungen",
"MessageBrowserDoesNotSupportWebSockets": "Dieser Browser unterst\u00fctzt keine Websockets. Versuche f\u00fcr ein besseres Nutzungserlebnis einen neueren Browser wie beispielsweise Chrome, Firefox, IE10+, Safari (iOS) oder Opera.", "MessageBrowserDoesNotSupportWebSockets": "Dieser Browser unterst\u00fctzt keine Websockets. Versuche f\u00fcr ein besseres Nutzungserlebnis einen neueren Browser wie beispielsweise Chrome, Firefox, IE10+, Safari (iOS) oder Opera.",
@ -418,7 +417,7 @@
"ButtonScenes": "Szenen", "ButtonScenes": "Szenen",
"ButtonQuality": "Qualit\u00e4t", "ButtonQuality": "Qualit\u00e4t",
"HeaderNotifications": "Benachrichtigungen", "HeaderNotifications": "Benachrichtigungen",
"HeaderSelectPlayer": "W\u00e4hle Abspielger\u00e4t:", "HeaderSelectPlayer": "Select Player",
"ButtonSelect": "Ausw\u00e4hlen", "ButtonSelect": "Ausw\u00e4hlen",
"ButtonNew": "Neu", "ButtonNew": "Neu",
"MessageInternetExplorerWebm": "Installiere f\u00fcr die besten Ergebnisse mit dem Internet Explorer bitte das WebM Playback Plugin.", "MessageInternetExplorerWebm": "Installiere f\u00fcr die besten Ergebnisse mit dem Internet Explorer bitte das WebM Playback Plugin.",
@ -544,11 +543,8 @@
"MessageTrialWillExpireIn": "Der Testzeitraum f\u00fcr diese Funktion wird in {0} Tag(en) auslaufen", "MessageTrialWillExpireIn": "Der Testzeitraum f\u00fcr diese Funktion wird in {0} Tag(en) auslaufen",
"MessageInstallPluginFromApp": "Dieses Plugin muss von der App aus installiert werden, mit der du es benutzen willst.", "MessageInstallPluginFromApp": "Dieses Plugin muss von der App aus installiert werden, mit der du es benutzen willst.",
"ValuePriceUSD": "Preis: {0} (USD)", "ValuePriceUSD": "Preis: {0} (USD)",
"MessageFeatureIncludedWithSupporter": "Du bist f\u00fcr diese Funktion registriert und kannst diese durch eine aktive Unterst\u00fctzer Mitgliedschaft weiterhin nutzen.", "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
"MessageChangeRecurringPlanConfirm": "Nach vollendeter Bezahlung m\u00fcssen Sie Ihre zuvor gemachten Dauer-Spenden in Ihrem PayPal Konto beenden. Vielen Dank das Sie Emby unterst\u00fctzen.", "MessageChangeRecurringPlanConfirm": "Nach vollendeter Bezahlung m\u00fcssen Sie Ihre zuvor gemachten Dauer-Spenden in Ihrem PayPal Konto beenden. Vielen Dank das Sie Emby unterst\u00fctzen.",
"MessageSupporterMembershipExpiredOn": "Deine Unterst\u00fctzer Mitgliedschaft endet am {0}.",
"MessageYouHaveALifetimeMembership": "Sie besitzen eine lebenslange Unterst\u00fctzer-Mitgliedschaft. Sie k\u00f6nnen zus\u00e4tzliche Spenden als Einmal-Zahlung oder als wiederkehrende Zahlungen t\u00e4tigen. Vielen Dank das Sie Emby unterst\u00fctzen.",
"MessageYouHaveAnActiveRecurringMembership": "Du hast eine aktive {0} Mitgliedschaft. Du kannst deine Mitgliedschaft durch folgende Optionen aufwerten.",
"ButtonDelete": "L\u00f6schen", "ButtonDelete": "L\u00f6schen",
"HeaderEmbyAccountAdded": "Emby Konto hinzugef\u00fcgt", "HeaderEmbyAccountAdded": "Emby Konto hinzugef\u00fcgt",
"MessageEmbyAccountAdded": "Das Emby Konto wurde diesem Benutzer hinzugef\u00fcgt.", "MessageEmbyAccountAdded": "Das Emby Konto wurde diesem Benutzer hinzugef\u00fcgt.",
@ -778,11 +774,10 @@
"TabScenes": "Szenen", "TabScenes": "Szenen",
"HeaderUnlockApp": "App freischalten", "HeaderUnlockApp": "App freischalten",
"MessageUnlockAppWithPurchase": "Schalten Sie weitere Funktionen mit einem kleinen & einmaligen Kauf frei.", "MessageUnlockAppWithPurchase": "Schalten Sie weitere Funktionen mit einem kleinen & einmaligen Kauf frei.",
"MessageUnlockAppWithPurchaseOrSupporter": "Schalten Sie alle Funktionen mit einem einmaligen kleinen Kauf frei. Alternativ k\u00f6nnen Sie sich auch mit einer aktiven Emby Unterst\u00fctzer-Mitgliedschaft anmelden.", "MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or with an active Emby Premiere subscription.",
"MessageUnlockAppWithSupporter": "Schalten Sie alle Funktionen der Anwendung frei, indem Sie sich mit einer aktiven Emby Unterst\u00fctzer-Mitgliedschaft anmelden.", "MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Premiere subscription.",
"MessageToValidateSupporter": "Wenn Sie bereits ein aktiver Emby Suporter sind, melden Sie sich einfach mit der App in Ihrem Heimnetzwerk via WLAN an.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app using your Wifi connection within your home network.",
"MessagePaymentServicesUnavailable": "Die Zahlungsdienste stehen leider gerade nicht zur Verf\u00fcgung. Bitte versuchen Sie es sp\u00e4ter erneut.", "MessagePaymentServicesUnavailable": "Die Zahlungsdienste stehen leider gerade nicht zur Verf\u00fcgung. Bitte versuchen Sie es sp\u00e4ter erneut.",
"ButtonUnlockWithSupporter": "Anmelden mit Emby Unterst\u00fctzer Mitgliedschaft",
"MessagePleaseSignInLocalNetwork": "Bevor Sie fortsetzen sollten Sie sicher sein, dass Sie mit Ihrem Heimnetzwerk verbunden sind.", "MessagePleaseSignInLocalNetwork": "Bevor Sie fortsetzen sollten Sie sicher sein, dass Sie mit Ihrem Heimnetzwerk verbunden sind.",
"ButtonUnlockWithPurchase": "Freischalten durch Kauf", "ButtonUnlockWithPurchase": "Freischalten durch Kauf",
"ButtonUnlockPrice": "Freischalten {0}", "ButtonUnlockPrice": "Freischalten {0}",
@ -826,14 +821,14 @@
"MessageCreateAccountAt": "Erstellen Sie ein Konto bei {0}", "MessageCreateAccountAt": "Erstellen Sie ein Konto bei {0}",
"ErrorPleaseSelectLineup": "Bitte w\u00e4hlen Sie ein TV Programm und versuchen Sie es erneut. Wenn keine Programme verf\u00fcgbar sind pr\u00fcfen Sie bitte Benutzername, Passwort und Ihre Postleitzahl.", "ErrorPleaseSelectLineup": "Bitte w\u00e4hlen Sie ein TV Programm und versuchen Sie es erneut. Wenn keine Programme verf\u00fcgbar sind pr\u00fcfen Sie bitte Benutzername, Passwort und Ihre Postleitzahl.",
"HeaderTryCinemaMode": "Versuche Kino Modus", "HeaderTryCinemaMode": "Versuche Kino Modus",
"ButtonBecomeSupporter": "Werde ein Emby Unterst\u00fctzer", "ButtonBecomeSupporter": "Get Emby Premiere",
"ButtonClosePlayVideo": "Schlie\u00dfe und starte meine Medien", "ButtonClosePlayVideo": "Schlie\u00dfe und starte meine Medien",
"MessageDidYouKnowCinemaMode": "Wussten Sie es schon? Wenn Sie ein Emby Unterst\u00fctzer sind k\u00f6nnen Sie den Komfort von Emby mit Funktionen wie dem Kino Modus erweitern.", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Der Kino-Modus bringt ihnen das richtige Kino-Erlebnis nach Hause, mit Trailern und eigenen Intros vor Ihrem Hauptfilm.", "MessageDidYouKnowCinemaMode2": "Der Kino-Modus bringt ihnen das richtige Kino-Erlebnis nach Hause, mit Trailern und eigenen Intros vor Ihrem Hauptfilm.",
"OptionEnableDisplayMirroring": "Aktiviere Display-Weiterleitung", "OptionEnableDisplayMirroring": "Aktiviere Display-Weiterleitung",
"HeaderSyncRequiresSupporterMembership": "Die Synchronisation ben\u00f6tigt eine aktive Emby Unterst\u00fctzer-Mitgliedschaft.", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Die Synchronisation ben\u00f6tigt eine Verbindung zu einem Server mit einer aktiven Unterst\u00fctzer-Mitgliedschaft.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "Ein Fehler trat bei der Pr\u00fcfung Ihrer Emby Unterst\u00fctzer-Mitgliedschaft auf. Bitte versuchen Sie es sp\u00e4ter erneut.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"HeaderSync": "Synchronisation", "HeaderSync": "Synchronisation",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
"MessageSyncStarted": "Synchronisation gestartet", "MessageSyncStarted": "Synchronisation gestartet",
@ -888,10 +883,13 @@
"ButtonLibrary": "Biliothek", "ButtonLibrary": "Biliothek",
"ButtonSearch": "Suche", "ButtonSearch": "Suche",
"ButtonNowPlaying": "L\u00e4uft", "ButtonNowPlaying": "L\u00e4uft",
"ButtonViewNewApp": "View new app", "ButtonViewNewApp": "Zeige neue App",
"HeaderEmbyForAndroidHasMoved": "Emby for Android has moved!", "HeaderEmbyForAndroidHasMoved": "Emby f\u00fcr Android ist umgezogen!",
"MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", "MessageEmbyForAndroidHasMoved": "Emby f\u00fcr Android ist innerhalb des App-Stores umgezogen! Bitte schauen Sie sich die neue App an! Sie k\u00f6nnen alternativ diese App so lange verwenden, wie Sie es m\u00f6chten.",
"HeaderNextUp": "Als N\u00e4chstes", "HeaderNextUp": "Als N\u00e4chstes",
"HeaderLatestMovies": "Neueste Filme", "HeaderLatestMovies": "Neueste Filme",
"HeaderLatestEpisodes": "Neueste Episoden" "HeaderLatestEpisodes": "Neueste Episoden",
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
"HeaderEmailAddress": "E-Mail Address",
"TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address."
} }

View file

@ -33,17 +33,16 @@
"MessageKeyEmailedTo": "Key emailed to {0}.", "MessageKeyEmailedTo": "Key emailed to {0}.",
"MessageKeysLinked": "Keys linked.", "MessageKeysLinked": "Keys linked.",
"HeaderConfirmation": "Confirmation", "HeaderConfirmation": "Confirmation",
"MessageKeyUpdated": "Thank you. Your supporter key has been updated.", "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
"MessageKeyRemoved": "Thank you. Your supporter key has been removed.", "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"TextEnjoyBonusFeatures": "Enjoy Bonus Features", "TextEnjoyBonusFeatures": "Enjoy Bonus Features",
"TitleLiveTV": "Live TV", "TitleLiveTV": "Live TV",
"ButtonCancelSyncJob": "Cancel sync job", "ButtonCancelSyncJob": "Cancel sync",
"ButtonSelectView": "Select view", "ButtonSelectView": "Select view",
"TitleSync": "Sync", "TitleSync": "Sync",
"OptionAutomatic": "Auto", "OptionAutomatic": "Auto",
"HeaderSelectDate": "Select Date", "HeaderSelectDate": "Select Date",
"ButtonDonate": "Donate",
"LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.",
"HeaderMyMedia": "My Media", "HeaderMyMedia": "My Media",
"ButtonRemoveFromCollection": "Remove from Collection", "ButtonRemoveFromCollection": "Remove from Collection",
@ -51,11 +50,11 @@
"LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:",
"TitleNotifications": "\u0395\u03b9\u03b4\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03b9\u03c2", "TitleNotifications": "\u0395\u03b9\u03b4\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03b9\u03c2",
"ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.",
"MessageErrorLoadingSupporterInfo": "There was an error loading supporter information. Please try again later.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
"MessageLinkYourSupporterKey": "Link your supporter key with up to {0} Emby Connect members to enjoy free access to the following apps:", "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:",
"HeaderConfirmRemoveUser": "Remove User", "HeaderConfirmRemoveUser": "Remove User",
"MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.", "MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.",
"MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional supporter benefits from this user?", "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?",
"ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitSingleHour": "Time limit: 1 hour",
"ValueTimeLimitMultiHour": "Time limit: {0} hours", "ValueTimeLimitMultiHour": "Time limit: {0} hours",
"HeaderUsers": "\u03a7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2 ", "HeaderUsers": "\u03a7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2 ",
@ -544,11 +543,8 @@
"MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)",
"MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.",
"ValuePriceUSD": "Price: {0} (USD)", "ValuePriceUSD": "Price: {0} (USD)",
"MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active supporter membership.", "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
"MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.",
"MessageSupporterMembershipExpiredOn": "Your supporter membership expired on {0}.",
"MessageYouHaveALifetimeMembership": "You have a lifetime supporter membership. You can provide additional donations on a one-time or recurring basis using the options below. Thank you for supporting Emby.",
"MessageYouHaveAnActiveRecurringMembership": "You have an active {0} membership. You can upgrade your plan using the options below.",
"ButtonDelete": "Delete", "ButtonDelete": "Delete",
"HeaderEmbyAccountAdded": "Emby Account Added", "HeaderEmbyAccountAdded": "Emby Account Added",
"MessageEmbyAccountAdded": "The Emby account has been added to this user.", "MessageEmbyAccountAdded": "The Emby account has been added to this user.",
@ -778,11 +774,10 @@
"TabScenes": "Scenes", "TabScenes": "Scenes",
"HeaderUnlockApp": "Unlock App", "HeaderUnlockApp": "Unlock App",
"MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.", "MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.",
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or with an active Emby Premiere subscription.",
"MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Premiere subscription.",
"MessageToValidateSupporter": "If you have an active Emby Supporter Membership, simply sign into the app using your Wifi connection within your home network.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app using your Wifi connection within your home network.",
"MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.",
"ButtonUnlockWithSupporter": "Sign in with Emby Supporter Membership",
"MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.",
"ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase",
"ButtonUnlockPrice": "Unlock {0}", "ButtonUnlockPrice": "Unlock {0}",
@ -826,14 +821,14 @@
"MessageCreateAccountAt": "Create an account at {0}", "MessageCreateAccountAt": "Create an account at {0}",
"ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.",
"HeaderTryCinemaMode": "Try Cinema Mode", "HeaderTryCinemaMode": "Try Cinema Mode",
"ButtonBecomeSupporter": "Become an Emby Supporter", "ButtonBecomeSupporter": "Get Emby Premiere",
"ButtonClosePlayVideo": "Close and play my media", "ButtonClosePlayVideo": "Close and play my media",
"MessageDidYouKnowCinemaMode": "Did you know that by becoming an Emby Supporter, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Supporter membership.", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Supporter membership.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Supporter information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"HeaderSync": "Sync", "HeaderSync": "Sync",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
"MessageSyncStarted": "Sync started", "MessageSyncStarted": "Sync started",
@ -893,5 +888,8 @@
"MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.",
"HeaderNextUp": "\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf", "HeaderNextUp": "\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf",
"HeaderLatestMovies": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b5\u03c2 \u03a4\u03b1\u03b9\u03bd\u03af\u03b5\u03c2", "HeaderLatestMovies": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b5\u03c2 \u03a4\u03b1\u03b9\u03bd\u03af\u03b5\u03c2",
"HeaderLatestEpisodes": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03b5\u03c0\u03b5\u03b9\u03c3\u03cc\u03b4\u03b9\u03b1" "HeaderLatestEpisodes": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03b5\u03c0\u03b5\u03b9\u03c3\u03cc\u03b4\u03b9\u03b1",
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
"HeaderEmailAddress": "E-Mail Address",
"TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address."
} }

View file

@ -33,17 +33,16 @@
"MessageKeyEmailedTo": "Key emailed to {0}.", "MessageKeyEmailedTo": "Key emailed to {0}.",
"MessageKeysLinked": "Keys linked.", "MessageKeysLinked": "Keys linked.",
"HeaderConfirmation": "Confirmation", "HeaderConfirmation": "Confirmation",
"MessageKeyUpdated": "Thank you. Your supporter key has been updated.", "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
"MessageKeyRemoved": "Thank you. Your supporter key has been removed.", "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"TextEnjoyBonusFeatures": "Enjoy Bonus Features", "TextEnjoyBonusFeatures": "Enjoy Bonus Features",
"TitleLiveTV": "Live TV", "TitleLiveTV": "Live TV",
"ButtonCancelSyncJob": "Cancel sync job", "ButtonCancelSyncJob": "Cancel sync",
"ButtonSelectView": "Select view", "ButtonSelectView": "Select view",
"TitleSync": "Sync", "TitleSync": "Sync",
"OptionAutomatic": "Auto", "OptionAutomatic": "Auto",
"HeaderSelectDate": "Select Date", "HeaderSelectDate": "Select Date",
"ButtonDonate": "Donate",
"LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.",
"HeaderMyMedia": "My Media", "HeaderMyMedia": "My Media",
"ButtonRemoveFromCollection": "Remove from Collection", "ButtonRemoveFromCollection": "Remove from Collection",
@ -51,11 +50,11 @@
"LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.",
"MessageErrorLoadingSupporterInfo": "There was an error loading supporter information. Please try again later.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
"MessageLinkYourSupporterKey": "Link your supporter key with up to {0} Emby Connect members to enjoy free access to the following apps:", "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:",
"HeaderConfirmRemoveUser": "Remove User", "HeaderConfirmRemoveUser": "Remove User",
"MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.", "MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.",
"MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional supporter benefits from this user?", "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?",
"ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitSingleHour": "Time limit: 1 hour",
"ValueTimeLimitMultiHour": "Time limit: {0} hours", "ValueTimeLimitMultiHour": "Time limit: {0} hours",
"HeaderUsers": "Users", "HeaderUsers": "Users",
@ -544,11 +543,8 @@
"MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)",
"MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.",
"ValuePriceUSD": "Price: {0} (USD)", "ValuePriceUSD": "Price: {0} (USD)",
"MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active supporter membership.", "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
"MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.",
"MessageSupporterMembershipExpiredOn": "Your supporter membership expired on {0}.",
"MessageYouHaveALifetimeMembership": "You have a lifetime supporter membership. You can provide additional donations on a one-time or recurring basis using the options below. Thank you for supporting Emby.",
"MessageYouHaveAnActiveRecurringMembership": "You have an active {0} membership. You can upgrade your plan using the options below.",
"ButtonDelete": "Delete", "ButtonDelete": "Delete",
"HeaderEmbyAccountAdded": "Emby Account Added", "HeaderEmbyAccountAdded": "Emby Account Added",
"MessageEmbyAccountAdded": "The Emby account has been added to this user.", "MessageEmbyAccountAdded": "The Emby account has been added to this user.",
@ -778,11 +774,10 @@
"TabScenes": "Scenes", "TabScenes": "Scenes",
"HeaderUnlockApp": "Unlock App", "HeaderUnlockApp": "Unlock App",
"MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.", "MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.",
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or with an active Emby Premiere subscription.",
"MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Premiere subscription.",
"MessageToValidateSupporter": "If you have an active Emby Supporter Membership, simply sign into the app using your Wifi connection within your home network.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app using your Wifi connection within your home network.",
"MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.",
"ButtonUnlockWithSupporter": "Sign in with Emby Supporter Membership",
"MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.",
"ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase",
"ButtonUnlockPrice": "Unlock {0}", "ButtonUnlockPrice": "Unlock {0}",
@ -826,14 +821,14 @@
"MessageCreateAccountAt": "Create an account at {0}", "MessageCreateAccountAt": "Create an account at {0}",
"ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.",
"HeaderTryCinemaMode": "Try Cinema Mode", "HeaderTryCinemaMode": "Try Cinema Mode",
"ButtonBecomeSupporter": "Become an Emby Supporter", "ButtonBecomeSupporter": "Get Emby Premiere",
"ButtonClosePlayVideo": "Close and play my media", "ButtonClosePlayVideo": "Close and play my media",
"MessageDidYouKnowCinemaMode": "Did you know that by becoming an Emby Supporter, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Supporter membership.", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Supporter membership.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Supporter information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"HeaderSync": "Sync", "HeaderSync": "Sync",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
"MessageSyncStarted": "Sync started", "MessageSyncStarted": "Sync started",
@ -893,5 +888,8 @@
"MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.",
"HeaderNextUp": "Next Up", "HeaderNextUp": "Next Up",
"HeaderLatestMovies": "Latest Movies", "HeaderLatestMovies": "Latest Movies",
"HeaderLatestEpisodes": "Latest Episodes" "HeaderLatestEpisodes": "Latest Episodes",
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
"HeaderEmailAddress": "E-Mail Address",
"TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address."
} }

View file

@ -33,17 +33,16 @@
"MessageKeyEmailedTo": "Key emailed to {0}.", "MessageKeyEmailedTo": "Key emailed to {0}.",
"MessageKeysLinked": "Keys linked.", "MessageKeysLinked": "Keys linked.",
"HeaderConfirmation": "Confirmation", "HeaderConfirmation": "Confirmation",
"MessageKeyUpdated": "Thank you. Your supporter key has been updated.", "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
"MessageKeyRemoved": "Thank you. Your supporter key has been removed.", "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"TextEnjoyBonusFeatures": "Enjoy Bonus Features", "TextEnjoyBonusFeatures": "Enjoy Bonus Features",
"TitleLiveTV": "Live TV", "TitleLiveTV": "Live TV",
"ButtonCancelSyncJob": "Cancel sync job", "ButtonCancelSyncJob": "Cancel sync",
"ButtonSelectView": "Select view", "ButtonSelectView": "Select view",
"TitleSync": "Sync", "TitleSync": "Sync",
"OptionAutomatic": "Auto", "OptionAutomatic": "Auto",
"HeaderSelectDate": "Select Date", "HeaderSelectDate": "Select Date",
"ButtonDonate": "Donate",
"LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.",
"HeaderMyMedia": "My Media", "HeaderMyMedia": "My Media",
"ButtonRemoveFromCollection": "Remove from Collection", "ButtonRemoveFromCollection": "Remove from Collection",
@ -51,11 +50,11 @@
"LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.",
"MessageErrorLoadingSupporterInfo": "There was an error loading supporter information. Please try again later.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
"MessageLinkYourSupporterKey": "Link your supporter key with up to {0} Emby Connect members to enjoy free access to the following apps:", "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:",
"HeaderConfirmRemoveUser": "Remove User", "HeaderConfirmRemoveUser": "Remove User",
"MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.", "MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.",
"MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional supporter benefits from this user?", "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?",
"ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitSingleHour": "Time limit: 1 hour",
"ValueTimeLimitMultiHour": "Time limit: {0} hours", "ValueTimeLimitMultiHour": "Time limit: {0} hours",
"HeaderUsers": "Users", "HeaderUsers": "Users",
@ -544,11 +543,8 @@
"MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)",
"MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.",
"ValuePriceUSD": "Price: {0} (USD)", "ValuePriceUSD": "Price: {0} (USD)",
"MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active supporter membership.", "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
"MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.",
"MessageSupporterMembershipExpiredOn": "Your supporter membership expired on {0}.",
"MessageYouHaveALifetimeMembership": "You have a lifetime supporter membership. You can provide additional donations on a one-time or recurring basis using the options below. Thank you for supporting Emby.",
"MessageYouHaveAnActiveRecurringMembership": "You have an active {0} membership. You can upgrade your plan using the options below.",
"ButtonDelete": "Delete", "ButtonDelete": "Delete",
"HeaderEmbyAccountAdded": "Emby Account Added", "HeaderEmbyAccountAdded": "Emby Account Added",
"MessageEmbyAccountAdded": "The Emby account has been added to this user.", "MessageEmbyAccountAdded": "The Emby account has been added to this user.",
@ -778,11 +774,10 @@
"TabScenes": "Scenes", "TabScenes": "Scenes",
"HeaderUnlockApp": "Unlock App", "HeaderUnlockApp": "Unlock App",
"MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.", "MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.",
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or with an active Emby Premiere subscription.",
"MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Premiere subscription.",
"MessageToValidateSupporter": "If you have an active Emby Supporter Membership, simply sign into the app using your Wifi connection within your home network.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app using your Wifi connection within your home network.",
"MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.",
"ButtonUnlockWithSupporter": "Sign in with Emby Supporter Membership",
"MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.",
"ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase",
"ButtonUnlockPrice": "Unlock {0}", "ButtonUnlockPrice": "Unlock {0}",
@ -826,14 +821,14 @@
"MessageCreateAccountAt": "Create an account at {0}", "MessageCreateAccountAt": "Create an account at {0}",
"ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.",
"HeaderTryCinemaMode": "Try Cinema Mode", "HeaderTryCinemaMode": "Try Cinema Mode",
"ButtonBecomeSupporter": "Become an Emby Supporter", "ButtonBecomeSupporter": "Get Emby Premiere",
"ButtonClosePlayVideo": "Close and play my media", "ButtonClosePlayVideo": "Close and play my media",
"MessageDidYouKnowCinemaMode": "Did you know that by becoming an Emby Supporter, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Supporter membership.", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Supporter membership.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Supporter information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"HeaderSync": "Sync", "HeaderSync": "Sync",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
"MessageSyncStarted": "Sync started", "MessageSyncStarted": "Sync started",
@ -893,5 +888,8 @@
"MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.",
"HeaderNextUp": "Next Up", "HeaderNextUp": "Next Up",
"HeaderLatestMovies": "Latest Movies", "HeaderLatestMovies": "Latest Movies",
"HeaderLatestEpisodes": "Latest Episodes" "HeaderLatestEpisodes": "Latest Episodes",
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
"HeaderEmailAddress": "E-Mail Address",
"TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address."
} }

View file

@ -33,17 +33,16 @@
"MessageKeyEmailedTo": "Key emailed to {0}.", "MessageKeyEmailedTo": "Key emailed to {0}.",
"MessageKeysLinked": "Keys linked.", "MessageKeysLinked": "Keys linked.",
"HeaderConfirmation": "Confirmation", "HeaderConfirmation": "Confirmation",
"MessageKeyUpdated": "Thank you. Your supporter key has been updated.", "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
"MessageKeyRemoved": "Thank you. Your supporter key has been removed.", "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"TextEnjoyBonusFeatures": "Disfrute los extras", "TextEnjoyBonusFeatures": "Disfrute los extras",
"TitleLiveTV": "Live TV", "TitleLiveTV": "Live TV",
"ButtonCancelSyncJob": "Cancel sync job", "ButtonCancelSyncJob": "Cancel sync",
"ButtonSelectView": "Select view", "ButtonSelectView": "Select view",
"TitleSync": "Sync", "TitleSync": "Sync",
"OptionAutomatic": "Auto", "OptionAutomatic": "Auto",
"HeaderSelectDate": "Select Date", "HeaderSelectDate": "Select Date",
"ButtonDonate": "Donate",
"LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.",
"HeaderMyMedia": "My Media", "HeaderMyMedia": "My Media",
"ButtonRemoveFromCollection": "Remove from Collection", "ButtonRemoveFromCollection": "Remove from Collection",
@ -51,11 +50,11 @@
"LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.",
"MessageErrorLoadingSupporterInfo": "There was an error loading supporter information. Please try again later.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
"MessageLinkYourSupporterKey": "Link your supporter key with up to {0} Emby Connect members to enjoy free access to the following apps:", "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:",
"HeaderConfirmRemoveUser": "Remove User", "HeaderConfirmRemoveUser": "Remove User",
"MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.", "MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.",
"MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional supporter benefits from this user?", "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?",
"ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitSingleHour": "Time limit: 1 hour",
"ValueTimeLimitMultiHour": "Time limit: {0} hours", "ValueTimeLimitMultiHour": "Time limit: {0} hours",
"HeaderUsers": "Users", "HeaderUsers": "Users",
@ -544,11 +543,8 @@
"MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)",
"MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.",
"ValuePriceUSD": "Price: {0} (USD)", "ValuePriceUSD": "Price: {0} (USD)",
"MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active supporter membership.", "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
"MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.",
"MessageSupporterMembershipExpiredOn": "Your supporter membership expired on {0}.",
"MessageYouHaveALifetimeMembership": "You have a lifetime supporter membership. You can provide additional donations on a one-time or recurring basis using the options below. Thank you for supporting Emby.",
"MessageYouHaveAnActiveRecurringMembership": "You have an active {0} membership. You can upgrade your plan using the options below.",
"ButtonDelete": "Delete", "ButtonDelete": "Delete",
"HeaderEmbyAccountAdded": "Emby Account Added", "HeaderEmbyAccountAdded": "Emby Account Added",
"MessageEmbyAccountAdded": "The Emby account has been added to this user.", "MessageEmbyAccountAdded": "The Emby account has been added to this user.",
@ -778,11 +774,10 @@
"TabScenes": "Scenes", "TabScenes": "Scenes",
"HeaderUnlockApp": "Unlock App", "HeaderUnlockApp": "Unlock App",
"MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.", "MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.",
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or with an active Emby Premiere subscription.",
"MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Premiere subscription.",
"MessageToValidateSupporter": "If you have an active Emby Supporter Membership, simply sign into the app using your Wifi connection within your home network.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app using your Wifi connection within your home network.",
"MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.",
"ButtonUnlockWithSupporter": "Sign in with Emby Supporter Membership",
"MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.",
"ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase",
"ButtonUnlockPrice": "Unlock {0}", "ButtonUnlockPrice": "Unlock {0}",
@ -826,14 +821,14 @@
"MessageCreateAccountAt": "Create an account at {0}", "MessageCreateAccountAt": "Create an account at {0}",
"ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.",
"HeaderTryCinemaMode": "Try Cinema Mode", "HeaderTryCinemaMode": "Try Cinema Mode",
"ButtonBecomeSupporter": "Become an Emby Supporter", "ButtonBecomeSupporter": "Get Emby Premiere",
"ButtonClosePlayVideo": "Close and play my media", "ButtonClosePlayVideo": "Close and play my media",
"MessageDidYouKnowCinemaMode": "Did you know that by becoming an Emby Supporter, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Supporter membership.", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Supporter membership.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Supporter information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"HeaderSync": "Sync", "HeaderSync": "Sync",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
"MessageSyncStarted": "Sync started", "MessageSyncStarted": "Sync started",
@ -893,5 +888,8 @@
"MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.",
"HeaderNextUp": "Next Up", "HeaderNextUp": "Next Up",
"HeaderLatestMovies": "Latest Movies", "HeaderLatestMovies": "Latest Movies",
"HeaderLatestEpisodes": "\u00daltimos cap\u00edtulos" "HeaderLatestEpisodes": "\u00daltimos cap\u00edtulos",
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
"HeaderEmailAddress": "E-Mail Address",
"TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address."
} }

View file

@ -33,17 +33,16 @@
"MessageKeyEmailedTo": "Clave enviada por correo a {0}.", "MessageKeyEmailedTo": "Clave enviada por correo a {0}.",
"MessageKeysLinked": "Llaves Vinculadas", "MessageKeysLinked": "Llaves Vinculadas",
"HeaderConfirmation": "Confirmaci\u00f3n", "HeaderConfirmation": "Confirmaci\u00f3n",
"MessageKeyUpdated": "Gracias. Su clave de aficionado ha sido actualizada.", "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
"MessageKeyRemoved": "Gracias. Su clave de aficionado ha sido eliminada.", "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
"HeaderSupportTheTeam": "Apoye al equipo de Emby", "HeaderSupportTheTeam": "Apoye al equipo de Emby",
"TextEnjoyBonusFeatures": "Disfruta de Caracter\u00edsticas Premium", "TextEnjoyBonusFeatures": "Disfruta de Caracter\u00edsticas Premium",
"TitleLiveTV": "TV en Vivo", "TitleLiveTV": "TV en Vivo",
"ButtonCancelSyncJob": "Cancelar trabajo de Sinc.", "ButtonCancelSyncJob": "Cancel sync",
"ButtonSelectView": "Seleccionar vista", "ButtonSelectView": "Seleccionar vista",
"TitleSync": "Sinc", "TitleSync": "Sinc",
"OptionAutomatic": "Auto", "OptionAutomatic": "Auto",
"HeaderSelectDate": "Seleccionar fecha", "HeaderSelectDate": "Seleccionar fecha",
"ButtonDonate": "Donar",
"LabelRecurringDonationCanBeCancelledHelp": "Las donaciones recurrentes pueden ser canceladas en cualquier momento desde su cuenta PayPal.", "LabelRecurringDonationCanBeCancelledHelp": "Las donaciones recurrentes pueden ser canceladas en cualquier momento desde su cuenta PayPal.",
"HeaderMyMedia": "Mis Medios", "HeaderMyMedia": "Mis Medios",
"ButtonRemoveFromCollection": "Remover de la Colecci\u00f3n", "ButtonRemoveFromCollection": "Remover de la Colecci\u00f3n",
@ -51,11 +50,11 @@
"LabelAutomaticUpdateLevelForPlugins": "Nivel de actualizaci\u00f3n autom\u00e1tico para complementos:", "LabelAutomaticUpdateLevelForPlugins": "Nivel de actualizaci\u00f3n autom\u00e1tico para complementos:",
"TitleNotifications": "Notificaciones", "TitleNotifications": "Notificaciones",
"ErrorLaunchingChromecast": "Hubo un error iniciando chromecast. Por favor aseg\u00farate de que tu dispositivo este conectado a tu red inalambrica", "ErrorLaunchingChromecast": "Hubo un error iniciando chromecast. Por favor aseg\u00farate de que tu dispositivo este conectado a tu red inalambrica",
"MessageErrorLoadingSupporterInfo": "Se present\u00f3 un error al cargar la informaci\u00f3n del aficionado. Por favor int\u00e9ntelo m\u00e1s tarde.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
"MessageLinkYourSupporterKey": "Enlaza tu clave de aficionado con hasta {0} miembros de Emby Connect para disfrutar de acceso gratuito a la siguientes aplicaciones:", "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:",
"HeaderConfirmRemoveUser": "Eliminar Usuario", "HeaderConfirmRemoveUser": "Eliminar Usuario",
"MessageSwipeDownOnRemoteControl": "Bienvenidos al control remoto. Seleccione el equipo para controlar haciendo clic en el icono en la esquina de arriba de la parte derecha. Deslizar hacia abajo en cualquier parte de la pantalla para regresar a donde usted estaba anteriormente.", "MessageSwipeDownOnRemoteControl": "Bienvenidos al control remoto. Seleccione el equipo para controlar haciendo clic en el icono en la esquina de arriba de la parte derecha. Deslizar hacia abajo en cualquier parte de la pantalla para regresar a donde usted estaba anteriormente.",
"MessageConfirmRemoveConnectSupporter": "\u00bfEst\u00e1 seguro de querer eliminar los beneficios adicionales de aficionado de este usuario?", "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?",
"ValueTimeLimitSingleHour": "L\u00edmite de tiempo: 1 hora", "ValueTimeLimitSingleHour": "L\u00edmite de tiempo: 1 hora",
"ValueTimeLimitMultiHour": "L\u00edmite de tiempo: {0} horas", "ValueTimeLimitMultiHour": "L\u00edmite de tiempo: {0} horas",
"HeaderUsers": "Usuarios", "HeaderUsers": "Usuarios",
@ -393,7 +392,7 @@
"MessagePleaseRefreshPage": "Por favor actualice esta p\u00e1gina para recibir nuevas actualizaciones desde el servidor.", "MessagePleaseRefreshPage": "Por favor actualice esta p\u00e1gina para recibir nuevas actualizaciones desde el servidor.",
"ButtonHide": "Ocultar", "ButtonHide": "Ocultar",
"MessageSettingsSaved": "Configuraci\u00f3n guardada.", "MessageSettingsSaved": "Configuraci\u00f3n guardada.",
"ButtonSignOut": "Sign Out", "ButtonSignOut": "Cerrar Sesi\u00f3n",
"ButtonMyProfile": "Mi Perf\u00edl", "ButtonMyProfile": "Mi Perf\u00edl",
"ButtonMyPreferences": "Mis Preferencias", "ButtonMyPreferences": "Mis Preferencias",
"MessageBrowserDoesNotSupportWebSockets": "Este navegador no soporta sockets web. Para una mejor experiencia, pruebe con un navegador m\u00e1s nuevo como Chrome, Firefox, IE10+, Safari (iOS) u Opera.", "MessageBrowserDoesNotSupportWebSockets": "Este navegador no soporta sockets web. Para una mejor experiencia, pruebe con un navegador m\u00e1s nuevo como Chrome, Firefox, IE10+, Safari (iOS) u Opera.",
@ -544,11 +543,8 @@
"MessageTrialWillExpireIn": "El periodo de prueba de esta caracter\u00edstica expirar\u00e1 en {0} d\u00eda(s).", "MessageTrialWillExpireIn": "El periodo de prueba de esta caracter\u00edstica expirar\u00e1 en {0} d\u00eda(s).",
"MessageInstallPluginFromApp": "El complemento debe estar instalado desde la aplicaci\u00f3n en la que va a utilizarlo.", "MessageInstallPluginFromApp": "El complemento debe estar instalado desde la aplicaci\u00f3n en la que va a utilizarlo.",
"ValuePriceUSD": "Precio: {0} (USD)", "ValuePriceUSD": "Precio: {0} (USD)",
"MessageFeatureIncludedWithSupporter": "Se encuentra registrado para esta caracter\u00edstica, y podr\u00e1 continuar us\u00e1ndola con una membres\u00eda de aficionado activa.", "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
"MessageChangeRecurringPlanConfirm": "Despu\u00e9s de completar esta transacci\u00f3n necesitar\u00e1 cancelar su donaci\u00f3n recurrente previa desde su cuenta PayPal. Gracias por apoyar Emby.", "MessageChangeRecurringPlanConfirm": "Despu\u00e9s de completar esta transacci\u00f3n necesitar\u00e1 cancelar su donaci\u00f3n recurrente previa desde su cuenta PayPal. Gracias por apoyar Emby.",
"MessageSupporterMembershipExpiredOn": "Su membres\u00eda de aficionado expir\u00f3 en {0}.",
"MessageYouHaveALifetimeMembership": "Usted cuenta con una membres\u00eda de aficionado vitalicia. Puede realizar donaciones adicionales individuales o recurrentes usando las opciones siguientes. Gracias por apoyar a Emby.",
"MessageYouHaveAnActiveRecurringMembership": "Usted cuenta con membres\u00eda {0} activa. Puede mejorarla usando las opciones siguientes.",
"ButtonDelete": "Eliminar", "ButtonDelete": "Eliminar",
"HeaderEmbyAccountAdded": "Cuenta Emby Agregada", "HeaderEmbyAccountAdded": "Cuenta Emby Agregada",
"MessageEmbyAccountAdded": "La cuenta Emby ha sido agregada a este usuario.", "MessageEmbyAccountAdded": "La cuenta Emby ha sido agregada a este usuario.",
@ -778,11 +774,10 @@
"TabScenes": "Escenas", "TabScenes": "Escenas",
"HeaderUnlockApp": "Desbloquear App", "HeaderUnlockApp": "Desbloquear App",
"MessageUnlockAppWithPurchase": "Desbloquear todas las caracter\u00edsticas de la app con una peque\u00f1a compra \u00fanica.", "MessageUnlockAppWithPurchase": "Desbloquear todas las caracter\u00edsticas de la app con una peque\u00f1a compra \u00fanica.",
"MessageUnlockAppWithPurchaseOrSupporter": "Desbloquear todas las caracter\u00edsticas de la app con un peque\u00f1a compra \u00fanica, o iniciando sesi\u00f3n con una cuenta activa de Miembro Aficionado Emby.", "MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or with an active Emby Premiere subscription.",
"MessageUnlockAppWithSupporter": "Desbloquear todas las caracter\u00edsticas de la app iniciando sesi\u00f3n con una cuenta activa de Miembro Aficionado Emby.", "MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Premiere subscription.",
"MessageToValidateSupporter": "Si tiene una cuenta activa de Miembro Aficionado Emby, solo inicie sesi\u00f3n en la app usando la conexi\u00f3n Wifi dentro de su red de hogar.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app using your Wifi connection within your home network.",
"MessagePaymentServicesUnavailable": "Los servicios de pago no se encuentran disponibles actualmente. Por favor intente de nuevo mas tarde.", "MessagePaymentServicesUnavailable": "Los servicios de pago no se encuentran disponibles actualmente. Por favor intente de nuevo mas tarde.",
"ButtonUnlockWithSupporter": "Iniciar sesi\u00f3n con una Membres\u00eda de Aficionado Emby",
"MessagePleaseSignInLocalNetwork": "Antes de continuar, por favor aseg\u00farese de que esta conectado a su red local usando una conexi\u00f3n Wifi o LAN.", "MessagePleaseSignInLocalNetwork": "Antes de continuar, por favor aseg\u00farese de que esta conectado a su red local usando una conexi\u00f3n Wifi o LAN.",
"ButtonUnlockWithPurchase": "Desbloquear con una compra", "ButtonUnlockWithPurchase": "Desbloquear con una compra",
"ButtonUnlockPrice": "Desbloquear {0}", "ButtonUnlockPrice": "Desbloquear {0}",
@ -826,14 +821,14 @@
"MessageCreateAccountAt": "Crear una cuenta en {0}", "MessageCreateAccountAt": "Crear una cuenta en {0}",
"ErrorPleaseSelectLineup": "Por favor seleccione una programaci\u00f3n e intente de nuevo. Si no hay disponible ninguna, entonces por favor verifique que su nombre de usuario, contrase\u00f1a, y c\u00f3digo postal sean correctos.", "ErrorPleaseSelectLineup": "Por favor seleccione una programaci\u00f3n e intente de nuevo. Si no hay disponible ninguna, entonces por favor verifique que su nombre de usuario, contrase\u00f1a, y c\u00f3digo postal sean correctos.",
"HeaderTryCinemaMode": "Intente el Modo Cine", "HeaderTryCinemaMode": "Intente el Modo Cine",
"ButtonBecomeSupporter": "Convi\u00e9rtase en un Fan\u00e1tico Emby", "ButtonBecomeSupporter": "Get Emby Premiere",
"ButtonClosePlayVideo": "Cerrar y reproducir mi medio", "ButtonClosePlayVideo": "Cerrar y reproducir mi medio",
"MessageDidYouKnowCinemaMode": "\u00bfSabia que volvi\u00e9ndose un Fan\u00e1tico Emby, puede mejorar su experiencia con caracter\u00edsticas como el Modo Cine?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "El Modo Cine le da una verdadera experiencia de cine con trailers e intros personalizados antes de la presentaci\u00f3n estelar.", "MessageDidYouKnowCinemaMode2": "El Modo Cine le da una verdadera experiencia de cine con trailers e intros personalizados antes de la presentaci\u00f3n estelar.",
"OptionEnableDisplayMirroring": "Habilitar duplicaci\u00f3n de pantalla", "OptionEnableDisplayMirroring": "Habilitar duplicaci\u00f3n de pantalla",
"HeaderSyncRequiresSupporterMembership": "Sinc requiere de una Membres\u00eda de Aficionado Emby activa.", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sinc requiere estar conectado a un Servidor Emby con una cuenta de Aficionado Emby.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "Hubo un error al validar su informaci\u00f3n de su cuenta de Aficionado Emby. Por favor intente de nuevo mas tarde.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"HeaderSync": "Sinc", "HeaderSync": "Sinc",
"LabelLocalSyncStatusValue": "Estado: {0}", "LabelLocalSyncStatusValue": "Estado: {0}",
"MessageSyncStarted": "Sincronizaci\u00f3n iniciada", "MessageSyncStarted": "Sincronizaci\u00f3n iniciada",
@ -893,5 +888,8 @@
"MessageEmbyForAndroidHasMoved": "Emby para Android se ha mudado a una nueva casa en la tienda de apps. Por favor considere probar la nueva app. Usted puede usar esta app por todo el tiempo que lo desee.", "MessageEmbyForAndroidHasMoved": "Emby para Android se ha mudado a una nueva casa en la tienda de apps. Por favor considere probar la nueva app. Usted puede usar esta app por todo el tiempo que lo desee.",
"HeaderNextUp": "A Continuaci\u00f3n", "HeaderNextUp": "A Continuaci\u00f3n",
"HeaderLatestMovies": "Pel\u00edculas Recientes", "HeaderLatestMovies": "Pel\u00edculas Recientes",
"HeaderLatestEpisodes": "Episodios Recientes" "HeaderLatestEpisodes": "Episodios Recientes",
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
"HeaderEmailAddress": "E-Mail Address",
"TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address."
} }

View file

@ -33,17 +33,16 @@
"MessageKeyEmailedTo": "Clave enviada por email a {0}.", "MessageKeyEmailedTo": "Clave enviada por email a {0}.",
"MessageKeysLinked": "Claves vinculadas.", "MessageKeysLinked": "Claves vinculadas.",
"HeaderConfirmation": "Confirmaci\u00f3n", "HeaderConfirmation": "Confirmaci\u00f3n",
"MessageKeyUpdated": "Gracias. Su clave de seguidor ha sido actualizada.", "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
"MessageKeyRemoved": "Gracias. Su clave de seguidor ha sido eliminada.", "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
"HeaderSupportTheTeam": "Apoye al equipo de Emby", "HeaderSupportTheTeam": "Apoye al equipo de Emby",
"TextEnjoyBonusFeatures": "Disfrute los extras", "TextEnjoyBonusFeatures": "Disfrute los extras",
"TitleLiveTV": "Tv en vivo", "TitleLiveTV": "Tv en vivo",
"ButtonCancelSyncJob": "Cancel sync job", "ButtonCancelSyncJob": "Cancel sync",
"ButtonSelectView": "Select view", "ButtonSelectView": "Select view",
"TitleSync": "Sync", "TitleSync": "Sync",
"OptionAutomatic": "Auto", "OptionAutomatic": "Auto",
"HeaderSelectDate": "Seleccionar Fecha", "HeaderSelectDate": "Seleccionar Fecha",
"ButtonDonate": "Donate",
"LabelRecurringDonationCanBeCancelledHelp": "Donaciones recurrentes se pueden cancelar en cualquier momento desde su cuenta de PayPal.", "LabelRecurringDonationCanBeCancelledHelp": "Donaciones recurrentes se pueden cancelar en cualquier momento desde su cuenta de PayPal.",
"HeaderMyMedia": "My Media", "HeaderMyMedia": "My Media",
"ButtonRemoveFromCollection": "Remove from Collection", "ButtonRemoveFromCollection": "Remove from Collection",
@ -51,11 +50,11 @@
"LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:",
"TitleNotifications": "Notificaciones", "TitleNotifications": "Notificaciones",
"ErrorLaunchingChromecast": "Ha habido un error al lanzar chromecast. Asegurese que su dispositivo est\u00e1 conectado a su red inal\u00e1mbrica.", "ErrorLaunchingChromecast": "Ha habido un error al lanzar chromecast. Asegurese que su dispositivo est\u00e1 conectado a su red inal\u00e1mbrica.",
"MessageErrorLoadingSupporterInfo": "There was an error loading supporter information. Please try again later.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
"MessageLinkYourSupporterKey": "Link your supporter key with up to {0} Emby Connect members to enjoy free access to the following apps:", "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:",
"HeaderConfirmRemoveUser": "Remove User", "HeaderConfirmRemoveUser": "Remove User",
"MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.", "MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.",
"MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional supporter benefits from this user?", "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?",
"ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitSingleHour": "Time limit: 1 hour",
"ValueTimeLimitMultiHour": "Time limit: {0} hours", "ValueTimeLimitMultiHour": "Time limit: {0} hours",
"HeaderUsers": "Usuarios", "HeaderUsers": "Usuarios",
@ -544,11 +543,8 @@
"MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)",
"MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.",
"ValuePriceUSD": "Price: {0} (USD)", "ValuePriceUSD": "Price: {0} (USD)",
"MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active supporter membership.", "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
"MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.",
"MessageSupporterMembershipExpiredOn": "Your supporter membership expired on {0}.",
"MessageYouHaveALifetimeMembership": "You have a lifetime supporter membership. You can provide additional donations on a one-time or recurring basis using the options below. Thank you for supporting Emby.",
"MessageYouHaveAnActiveRecurringMembership": "You have an active {0} membership. You can upgrade your plan using the options below.",
"ButtonDelete": "Borrar", "ButtonDelete": "Borrar",
"HeaderEmbyAccountAdded": "Emby Account Added", "HeaderEmbyAccountAdded": "Emby Account Added",
"MessageEmbyAccountAdded": "The Emby account has been added to this user.", "MessageEmbyAccountAdded": "The Emby account has been added to this user.",
@ -778,11 +774,10 @@
"TabScenes": "Scenes", "TabScenes": "Scenes",
"HeaderUnlockApp": "Unlock App", "HeaderUnlockApp": "Unlock App",
"MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.", "MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.",
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or with an active Emby Premiere subscription.",
"MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Premiere subscription.",
"MessageToValidateSupporter": "If you have an active Emby Supporter Membership, simply sign into the app using your Wifi connection within your home network.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app using your Wifi connection within your home network.",
"MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.",
"ButtonUnlockWithSupporter": "Sign in with Emby Supporter Membership",
"MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.",
"ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase",
"ButtonUnlockPrice": "Unlock {0}", "ButtonUnlockPrice": "Unlock {0}",
@ -826,14 +821,14 @@
"MessageCreateAccountAt": "Create an account at {0}", "MessageCreateAccountAt": "Create an account at {0}",
"ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.",
"HeaderTryCinemaMode": "Try Cinema Mode", "HeaderTryCinemaMode": "Try Cinema Mode",
"ButtonBecomeSupporter": "Become an Emby Supporter", "ButtonBecomeSupporter": "Get Emby Premiere",
"ButtonClosePlayVideo": "Close and play my media", "ButtonClosePlayVideo": "Close and play my media",
"MessageDidYouKnowCinemaMode": "Did you know that by becoming an Emby Supporter, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Supporter membership.", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Supporter membership.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Supporter information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"HeaderSync": "Sincronizar", "HeaderSync": "Sincronizar",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
"MessageSyncStarted": "Sync started", "MessageSyncStarted": "Sync started",
@ -893,5 +888,8 @@
"MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.",
"HeaderNextUp": "Siguiendo", "HeaderNextUp": "Siguiendo",
"HeaderLatestMovies": "\u00daltimas pel\u00edculas", "HeaderLatestMovies": "\u00daltimas pel\u00edculas",
"HeaderLatestEpisodes": "Ultimos episodios" "HeaderLatestEpisodes": "Ultimos episodios",
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
"HeaderEmailAddress": "E-Mail Address",
"TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address."
} }

View file

@ -33,17 +33,16 @@
"MessageKeyEmailedTo": "Key emailed to {0}.", "MessageKeyEmailedTo": "Key emailed to {0}.",
"MessageKeysLinked": "Keys linked.", "MessageKeysLinked": "Keys linked.",
"HeaderConfirmation": "Confirmation", "HeaderConfirmation": "Confirmation",
"MessageKeyUpdated": "Thank you. Your supporter key has been updated.", "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
"MessageKeyRemoved": "Thank you. Your supporter key has been removed.", "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"TextEnjoyBonusFeatures": "Enjoy Bonus Features", "TextEnjoyBonusFeatures": "Enjoy Bonus Features",
"TitleLiveTV": "Live TV", "TitleLiveTV": "Live TV",
"ButtonCancelSyncJob": "Cancel sync job", "ButtonCancelSyncJob": "Cancel sync",
"ButtonSelectView": "Select view", "ButtonSelectView": "Select view",
"TitleSync": "Sync", "TitleSync": "Sync",
"OptionAutomatic": "Auto", "OptionAutomatic": "Auto",
"HeaderSelectDate": "Select Date", "HeaderSelectDate": "Select Date",
"ButtonDonate": "Donate",
"LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.",
"HeaderMyMedia": "My Media", "HeaderMyMedia": "My Media",
"ButtonRemoveFromCollection": "Remove from Collection", "ButtonRemoveFromCollection": "Remove from Collection",
@ -51,11 +50,11 @@
"LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.",
"MessageErrorLoadingSupporterInfo": "There was an error loading supporter information. Please try again later.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
"MessageLinkYourSupporterKey": "Link your supporter key with up to {0} Emby Connect members to enjoy free access to the following apps:", "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:",
"HeaderConfirmRemoveUser": "Remove User", "HeaderConfirmRemoveUser": "Remove User",
"MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.", "MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.",
"MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional supporter benefits from this user?", "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?",
"ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitSingleHour": "Time limit: 1 hour",
"ValueTimeLimitMultiHour": "Time limit: {0} hours", "ValueTimeLimitMultiHour": "Time limit: {0} hours",
"HeaderUsers": "Users", "HeaderUsers": "Users",
@ -544,11 +543,8 @@
"MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)",
"MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.",
"ValuePriceUSD": "Price: {0} (USD)", "ValuePriceUSD": "Price: {0} (USD)",
"MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active supporter membership.", "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
"MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.",
"MessageSupporterMembershipExpiredOn": "Your supporter membership expired on {0}.",
"MessageYouHaveALifetimeMembership": "You have a lifetime supporter membership. You can provide additional donations on a one-time or recurring basis using the options below. Thank you for supporting Emby.",
"MessageYouHaveAnActiveRecurringMembership": "You have an active {0} membership. You can upgrade your plan using the options below.",
"ButtonDelete": "Delete", "ButtonDelete": "Delete",
"HeaderEmbyAccountAdded": "Emby Account Added", "HeaderEmbyAccountAdded": "Emby Account Added",
"MessageEmbyAccountAdded": "The Emby account has been added to this user.", "MessageEmbyAccountAdded": "The Emby account has been added to this user.",
@ -778,11 +774,10 @@
"TabScenes": "Scenes", "TabScenes": "Scenes",
"HeaderUnlockApp": "Unlock App", "HeaderUnlockApp": "Unlock App",
"MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.", "MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.",
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or with an active Emby Premiere subscription.",
"MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Premiere subscription.",
"MessageToValidateSupporter": "If you have an active Emby Supporter Membership, simply sign into the app using your Wifi connection within your home network.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app using your Wifi connection within your home network.",
"MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.",
"ButtonUnlockWithSupporter": "Sign in with Emby Supporter Membership",
"MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.",
"ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase",
"ButtonUnlockPrice": "Unlock {0}", "ButtonUnlockPrice": "Unlock {0}",
@ -826,14 +821,14 @@
"MessageCreateAccountAt": "Create an account at {0}", "MessageCreateAccountAt": "Create an account at {0}",
"ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.",
"HeaderTryCinemaMode": "Try Cinema Mode", "HeaderTryCinemaMode": "Try Cinema Mode",
"ButtonBecomeSupporter": "Become an Emby Supporter", "ButtonBecomeSupporter": "Get Emby Premiere",
"ButtonClosePlayVideo": "Close and play my media", "ButtonClosePlayVideo": "Close and play my media",
"MessageDidYouKnowCinemaMode": "Did you know that by becoming an Emby Supporter, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Supporter membership.", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Supporter membership.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Supporter information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"HeaderSync": "Sync", "HeaderSync": "Sync",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
"MessageSyncStarted": "Sync started", "MessageSyncStarted": "Sync started",
@ -893,5 +888,8 @@
"MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.",
"HeaderNextUp": "Next Up", "HeaderNextUp": "Next Up",
"HeaderLatestMovies": "Latest Movies", "HeaderLatestMovies": "Latest Movies",
"HeaderLatestEpisodes": "Latest Episodes" "HeaderLatestEpisodes": "Latest Episodes",
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
"HeaderEmailAddress": "E-Mail Address",
"TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address."
} }

View file

@ -33,17 +33,16 @@
"MessageKeyEmailedTo": "Cl\u00e9 envoy\u00e9e par courriel \u00e0 {0}", "MessageKeyEmailedTo": "Cl\u00e9 envoy\u00e9e par courriel \u00e0 {0}",
"MessageKeysLinked": "Cl\u00e9s associ\u00e9es.", "MessageKeysLinked": "Cl\u00e9s associ\u00e9es.",
"HeaderConfirmation": "Confirmation", "HeaderConfirmation": "Confirmation",
"MessageKeyUpdated": "Merci. Votre cl\u00e9 de supporteur a \u00e9t\u00e9 mise \u00e0 jour.", "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
"MessageKeyRemoved": "Merci. Votre cl\u00e9 de supporteur a \u00e9t\u00e9 supprim\u00e9e.", "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
"HeaderSupportTheTeam": "Aidez l'\u00e9quipe Emby", "HeaderSupportTheTeam": "Aidez l'\u00e9quipe Emby",
"TextEnjoyBonusFeatures": "Profitez bien des fonctionnalit\u00e9s bonus", "TextEnjoyBonusFeatures": "Profitez bien des fonctionnalit\u00e9s bonus",
"TitleLiveTV": "TV en direct", "TitleLiveTV": "TV en direct",
"ButtonCancelSyncJob": "Annuler la t\u00e2che de synchro", "ButtonCancelSyncJob": "Cancel sync",
"ButtonSelectView": "S\u00e9lectionnez un affichage", "ButtonSelectView": "S\u00e9lectionnez un affichage",
"TitleSync": "Sync.", "TitleSync": "Sync.",
"OptionAutomatic": "Auto", "OptionAutomatic": "Auto",
"HeaderSelectDate": "S\u00e9lectionnez la date", "HeaderSelectDate": "S\u00e9lectionnez la date",
"ButtonDonate": "Faire un don",
"LabelRecurringDonationCanBeCancelledHelp": "Des donations r\u00e9currentes peuvent \u00eatre annul\u00e9es \u00e0 tout moment depuis votre compte PayPal.", "LabelRecurringDonationCanBeCancelledHelp": "Des donations r\u00e9currentes peuvent \u00eatre annul\u00e9es \u00e0 tout moment depuis votre compte PayPal.",
"HeaderMyMedia": "Mes medias", "HeaderMyMedia": "Mes medias",
"ButtonRemoveFromCollection": "Supprimer de la collection", "ButtonRemoveFromCollection": "Supprimer de la collection",
@ -51,11 +50,11 @@
"LabelAutomaticUpdateLevelForPlugins": "Niveau de mise \u00e0 jour automatique des plugins :", "LabelAutomaticUpdateLevelForPlugins": "Niveau de mise \u00e0 jour automatique des plugins :",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ErrorLaunchingChromecast": "Une erreur a \u00e9t\u00e9 rencontr\u00e9e lors du lancement de Chromecast. Veuillez vous assurer que votre appareil est bien connect\u00e9 \u00e0 votre r\u00e9seau sans-fil.", "ErrorLaunchingChromecast": "Une erreur a \u00e9t\u00e9 rencontr\u00e9e lors du lancement de Chromecast. Veuillez vous assurer que votre appareil est bien connect\u00e9 \u00e0 votre r\u00e9seau sans-fil.",
"MessageErrorLoadingSupporterInfo": "Il y a eu une erreur lors du chargement des informations de supporter. Veuillez r\u00e9essayer plus tard.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
"MessageLinkYourSupporterKey": "Liez votre cl\u00e9 de supporteur avec un maximum de {0} membres Emby Connect pour b\u00e9n\u00e9ficier de l'acc\u00e8s gratuit aux applications suivantes :", "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:",
"HeaderConfirmRemoveUser": "Supprimer l'utilisateur", "HeaderConfirmRemoveUser": "Supprimer l'utilisateur",
"MessageSwipeDownOnRemoteControl": "Bienvenue dans votre t\u00e9l\u00e9commande. S\u00e9lectionnez l'appareil \u00e0 contr\u00f4ler en cliquant sur l'ic\u00f4ne cast dans le coin en haut \u00e0 droite. Faites glissez votre doigt vers le bas depuis n'importe o\u00f9 sur cet \u00e9cran pour revenir d'o\u00f9 vous veniez.", "MessageSwipeDownOnRemoteControl": "Bienvenue dans votre t\u00e9l\u00e9commande. S\u00e9lectionnez l'appareil \u00e0 contr\u00f4ler en cliquant sur l'ic\u00f4ne cast dans le coin en haut \u00e0 droite. Faites glissez votre doigt vers le bas depuis n'importe o\u00f9 sur cet \u00e9cran pour revenir d'o\u00f9 vous veniez.",
"MessageConfirmRemoveConnectSupporter": "Etes-vous s\u00fbr de vouloir supprimer les avantages additionnels de supporteur pour cet utilisateur ?", "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?",
"ValueTimeLimitSingleHour": "Limite de temps : 1 heure", "ValueTimeLimitSingleHour": "Limite de temps : 1 heure",
"ValueTimeLimitMultiHour": "Limite de temps : {0} heures", "ValueTimeLimitMultiHour": "Limite de temps : {0} heures",
"HeaderUsers": "Utilisateurs", "HeaderUsers": "Utilisateurs",
@ -101,7 +100,7 @@
"MessageItemsAdded": "Items ajout\u00e9s", "MessageItemsAdded": "Items ajout\u00e9s",
"ButtonAddToCollection": "Ajouter \u00e0 une collection", "ButtonAddToCollection": "Ajouter \u00e0 une collection",
"HeaderSelectCertificatePath": "S\u00e9lectionnez le chemin du certificat", "HeaderSelectCertificatePath": "S\u00e9lectionnez le chemin du certificat",
"ConfirmMessageScheduledTaskButton": "Cette op\u00e9ration s'ex\u00e9cute normalement automatiquement en tant que t\u00e2che planifi\u00e9e. Elle peut aussi \u00eatre ex\u00e9cut\u00e9e manuellement ici. Pour configurer la t\u00e2che planifi\u00e9e, voir:", "ConfirmMessageScheduledTaskButton": "Cette op\u00e9ration s'ex\u00e9cute normalement automatiquement en tant que t\u00e2che planifi\u00e9e et ne requiert aucune action manuelle. Pour configurer cette t\u00e2che, voir :",
"HeaderSupporterBenefit": "Un partenariat de membre supporteur apporte des avantages suppl\u00e9mentaires, comme l'acc\u00e8s \u00e0 la synchronisation, aux plugins premiums, aux contenus des cha\u00eenes Internet, et plus encore. {0}En savoir plus{1}.", "HeaderSupporterBenefit": "Un partenariat de membre supporteur apporte des avantages suppl\u00e9mentaires, comme l'acc\u00e8s \u00e0 la synchronisation, aux plugins premiums, aux contenus des cha\u00eenes Internet, et plus encore. {0}En savoir plus{1}.",
"LabelSyncNoTargetsHelp": "Il semble que vous n'ayez actuellement aucune application qui supporte la synchronisation.", "LabelSyncNoTargetsHelp": "Il semble que vous n'ayez actuellement aucune application qui supporte la synchronisation.",
"HeaderWelcomeToProjectServerDashboard": "Bienvenue dans le tableau de bord du serveur Emby", "HeaderWelcomeToProjectServerDashboard": "Bienvenue dans le tableau de bord du serveur Emby",
@ -393,7 +392,7 @@
"MessagePleaseRefreshPage": "Veuillez actualiser cette page pour recevoir les nouvelles mises \u00e0 jour du serveur.", "MessagePleaseRefreshPage": "Veuillez actualiser cette page pour recevoir les nouvelles mises \u00e0 jour du serveur.",
"ButtonHide": "Cacher", "ButtonHide": "Cacher",
"MessageSettingsSaved": "Param\u00e8tres sauvegard\u00e9s.", "MessageSettingsSaved": "Param\u00e8tres sauvegard\u00e9s.",
"ButtonSignOut": "Sign Out", "ButtonSignOut": "D\u00e9connexion",
"ButtonMyProfile": "Mon profil", "ButtonMyProfile": "Mon profil",
"ButtonMyPreferences": "Mes pr\u00e9f\u00e9rences", "ButtonMyPreferences": "Mes pr\u00e9f\u00e9rences",
"MessageBrowserDoesNotSupportWebSockets": "Ce navigateur ne supporte pas les sockets Web. Pour un meilleur confort d'utilisation, essayez avec un navigateur moderne tel que Chrome, Firefox, IE10+, Safari (iOS) ou Opera.", "MessageBrowserDoesNotSupportWebSockets": "Ce navigateur ne supporte pas les sockets Web. Pour un meilleur confort d'utilisation, essayez avec un navigateur moderne tel que Chrome, Firefox, IE10+, Safari (iOS) ou Opera.",
@ -418,7 +417,7 @@
"ButtonScenes": "Sc\u00e8nes", "ButtonScenes": "Sc\u00e8nes",
"ButtonQuality": "Qualit\u00e9", "ButtonQuality": "Qualit\u00e9",
"HeaderNotifications": "Notifications", "HeaderNotifications": "Notifications",
"HeaderSelectPlayer": "S\u00e9lectionner le lecteur :", "HeaderSelectPlayer": "Select Player",
"ButtonSelect": "S\u00e9lectionner", "ButtonSelect": "S\u00e9lectionner",
"ButtonNew": "Nouveau", "ButtonNew": "Nouveau",
"MessageInternetExplorerWebm": "Pour de meilleurs r\u00e9sultats avec Internet Explorer, merci d'installer le plugin WebM pour IE.", "MessageInternetExplorerWebm": "Pour de meilleurs r\u00e9sultats avec Internet Explorer, merci d'installer le plugin WebM pour IE.",
@ -544,11 +543,8 @@
"MessageTrialWillExpireIn": "La p\u00e9riode d'essai de cette fonctionnalit\u00e9 expire dans {0} jour(s)", "MessageTrialWillExpireIn": "La p\u00e9riode d'essai de cette fonctionnalit\u00e9 expire dans {0} jour(s)",
"MessageInstallPluginFromApp": "Ce plugin doit-\u00eatre install\u00e9 depuis l'application dans laquelle vous voulez l'utiliser", "MessageInstallPluginFromApp": "Ce plugin doit-\u00eatre install\u00e9 depuis l'application dans laquelle vous voulez l'utiliser",
"ValuePriceUSD": "Prix: {0} (USD)", "ValuePriceUSD": "Prix: {0} (USD)",
"MessageFeatureIncludedWithSupporter": "Vous \u00eates enregistr\u00e9 pour cette fonctionnalit\u00e9, et vous pourrez continuer \u00e0 l'utiliser avec un compte actif de supporteur partenaire.", "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
"MessageChangeRecurringPlanConfirm": "Apr\u00e8s avoir termin\u00e9 cette transaction, vous devrez annuler votre donation r\u00e9currente depuis votre compte PayPal. Merci de supporter Emby.", "MessageChangeRecurringPlanConfirm": "Apr\u00e8s avoir termin\u00e9 cette transaction, vous devrez annuler votre donation r\u00e9currente depuis votre compte PayPal. Merci de supporter Emby.",
"MessageSupporterMembershipExpiredOn": "Votre compte supporteur partenaire expire le {0}",
"MessageYouHaveALifetimeMembership": "Vous \u00eates membres supporteur \u00e0 vie. Vous pouvez effectuez des dons ponctuels ou r\u00e9currents compl\u00e9mentaires \u00e0 l'aide des options ci-dessous. Merci de supporter Emby.",
"MessageYouHaveAnActiveRecurringMembership": "Vous avez un compte actif de supporteur {0}. Vous pouvez le mettre \u00e0 jour suivant les options ci-dessous.",
"ButtonDelete": "Supprimer", "ButtonDelete": "Supprimer",
"HeaderEmbyAccountAdded": "Compte Emby ajout\u00e9", "HeaderEmbyAccountAdded": "Compte Emby ajout\u00e9",
"MessageEmbyAccountAdded": "Le compte Emby a \u00e9t\u00e9 ajout\u00e9 \u00e0 cet utilisateur.", "MessageEmbyAccountAdded": "Le compte Emby a \u00e9t\u00e9 ajout\u00e9 \u00e0 cet utilisateur.",
@ -778,11 +774,10 @@
"TabScenes": "Sc\u00e8nes", "TabScenes": "Sc\u00e8nes",
"HeaderUnlockApp": "D\u00e9verrouiller l'App", "HeaderUnlockApp": "D\u00e9verrouiller l'App",
"MessageUnlockAppWithPurchase": "D\u00e9verrouillez toutes les fonctionnalit\u00e9s de l'app en un seul petit achat.", "MessageUnlockAppWithPurchase": "D\u00e9verrouillez toutes les fonctionnalit\u00e9s de l'app en un seul petit achat.",
"MessageUnlockAppWithPurchaseOrSupporter": "D\u00e9verrouillez toutes les fonctionnalit\u00e9s de l'app en un seul petit achat, ou en vous connectant avec un compte de supporteur actif d'Emby.", "MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or with an active Emby Premiere subscription.",
"MessageUnlockAppWithSupporter": "D\u00e9verrouillez toutes les fonctionnalit\u00e9s de l'app en vous connectant avec un compte de supporteur actif d'Emby.", "MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Premiere subscription.",
"MessageToValidateSupporter": "Si vos poss\u00e9dez un compte actif de supporteur Emby, connectez-vous simplement avec la connexion Wifi de votre r\u00e9seau domestique.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app using your Wifi connection within your home network.",
"MessagePaymentServicesUnavailable": "Les services de paiement sont actuellement indisponibles. Merci de r\u00e9essayer ult\u00e9rieurement", "MessagePaymentServicesUnavailable": "Les services de paiement sont actuellement indisponibles. Merci de r\u00e9essayer ult\u00e9rieurement",
"ButtonUnlockWithSupporter": "Connectez-vous avec votre compte de supporteur Emby.",
"MessagePleaseSignInLocalNetwork": "Avant de continuer, veuillez vous assurer que vous \u00eates connect\u00e9s sur votre r\u00e9seau local en Wifi ou LAN.", "MessagePleaseSignInLocalNetwork": "Avant de continuer, veuillez vous assurer que vous \u00eates connect\u00e9s sur votre r\u00e9seau local en Wifi ou LAN.",
"ButtonUnlockWithPurchase": "D\u00e9verrouillez par un achat.", "ButtonUnlockWithPurchase": "D\u00e9verrouillez par un achat.",
"ButtonUnlockPrice": "D\u00e9verrouiller {0}", "ButtonUnlockPrice": "D\u00e9verrouiller {0}",
@ -826,14 +821,14 @@
"MessageCreateAccountAt": "Cr\u00e9er un compte sur {0}", "MessageCreateAccountAt": "Cr\u00e9er un compte sur {0}",
"ErrorPleaseSelectLineup": "Veuillez s\u00e9lectionner une gamme et r\u00e9essayer. Si aucune gamme n'est disponible, veuillez v\u00e9rifier que votre identifiant, mot de passe et code postal sont corrects.", "ErrorPleaseSelectLineup": "Veuillez s\u00e9lectionner une gamme et r\u00e9essayer. Si aucune gamme n'est disponible, veuillez v\u00e9rifier que votre identifiant, mot de passe et code postal sont corrects.",
"HeaderTryCinemaMode": "Essayez le mode cin\u00e9ma", "HeaderTryCinemaMode": "Essayez le mode cin\u00e9ma",
"ButtonBecomeSupporter": "Devenez supporteur Emby", "ButtonBecomeSupporter": "Get Emby Premiere",
"ButtonClosePlayVideo": "Fermer et lire mon m\u00e9dia", "ButtonClosePlayVideo": "Fermer et lire mon m\u00e9dia",
"MessageDidYouKnowCinemaMode": "Saviez-vous qu'en devenant membre supporteur Emby, vous pouvez am\u00e9liorer votre exp\u00e9rience utilisateur avec des fonctionnalit\u00e9s comme le mode Cin\u00e9ma ?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Le mode Cin\u00e9ma vous apporte une vraie exp\u00e9rience utilisateur de cin\u00e9ma, avec les bandes-annonces et les intros personnalis\u00e9es avant le film principal.", "MessageDidYouKnowCinemaMode2": "Le mode Cin\u00e9ma vous apporte une vraie exp\u00e9rience utilisateur de cin\u00e9ma, avec les bandes-annonces et les intros personnalis\u00e9es avant le film principal.",
"OptionEnableDisplayMirroring": "Activer la recopie d'\u00e9cran", "OptionEnableDisplayMirroring": "Activer la recopie d'\u00e9cran",
"HeaderSyncRequiresSupporterMembership": "La synchronisation requiert d'\u00eatre membre supporteur actif d'Emby", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderSyncRequiresSupporterMembershipAppVersion": "La synchronisation n\u00e9cessite de se connecter \u00e0 un serveur Emby avec une adh\u00e9sion supporteur actif.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "Une erreur s'est produite lors de la validation de vos informations de membre supporteur actif d'Emby. Veuillez r\u00e9essayer ult\u00e9rieurement.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"HeaderSync": "Sync", "HeaderSync": "Sync",
"LabelLocalSyncStatusValue": "Status : {0}", "LabelLocalSyncStatusValue": "Status : {0}",
"MessageSyncStarted": "Synchronisation d\u00e9marr\u00e9e", "MessageSyncStarted": "Synchronisation d\u00e9marr\u00e9e",
@ -884,14 +879,17 @@
"ButtonYes": "Oui", "ButtonYes": "Oui",
"ButtonNo": "Non", "ButtonNo": "Non",
"ButtonRestorePreviousPurchase": "Restaurer l'achat", "ButtonRestorePreviousPurchase": "Restaurer l'achat",
"ButtonForYou": "For You", "ButtonForYou": "Pour vous",
"ButtonLibrary": "Library", "ButtonLibrary": "Biblioth\u00e8que",
"ButtonSearch": "Recherche", "ButtonSearch": "Recherche",
"ButtonNowPlaying": "Now Playing", "ButtonNowPlaying": "En cours de lecture",
"ButtonViewNewApp": "View new app", "ButtonViewNewApp": "Voir la nouvelle application",
"HeaderEmbyForAndroidHasMoved": "Emby for Android has moved!", "HeaderEmbyForAndroidHasMoved": "Emby pour Android a d\u00e9m\u00e9nag\u00e9 !",
"MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", "MessageEmbyForAndroidHasMoved": "Emby pour Android a d\u00e9m\u00e9nag\u00e9 vers une nouvelle page d'accueil de l'App Store. Vous pourriez \u00eatre int\u00e9ress\u00e9 par cette nouvelle version et vous pouvez continuer \u00e0 l'utiliser autant de temps que vous voulez.",
"HeaderNextUp": "Prochains \u00e0 voir", "HeaderNextUp": "Prochains \u00e0 voir",
"HeaderLatestMovies": "Films les plus r\u00e9cents", "HeaderLatestMovies": "Films les plus r\u00e9cents",
"HeaderLatestEpisodes": "\u00c9pisodes les plus r\u00e9cents" "HeaderLatestEpisodes": "\u00c9pisodes les plus r\u00e9cents",
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
"HeaderEmailAddress": "E-Mail Address",
"TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address."
} }

View file

@ -33,17 +33,16 @@
"MessageKeyEmailedTo": "Key emailed to {0}.", "MessageKeyEmailedTo": "Key emailed to {0}.",
"MessageKeysLinked": "Keys linked.", "MessageKeysLinked": "Keys linked.",
"HeaderConfirmation": "Confirmation", "HeaderConfirmation": "Confirmation",
"MessageKeyUpdated": "Thank you. Your supporter key has been updated.", "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
"MessageKeyRemoved": "Thank you. Your supporter key has been removed.", "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"TextEnjoyBonusFeatures": "Erleb di ganze Bonis", "TextEnjoyBonusFeatures": "Erleb di ganze Bonis",
"TitleLiveTV": "Live TV", "TitleLiveTV": "Live TV",
"ButtonCancelSyncJob": "Cancel sync job", "ButtonCancelSyncJob": "Cancel sync",
"ButtonSelectView": "Select view", "ButtonSelectView": "Select view",
"TitleSync": "Sync", "TitleSync": "Sync",
"OptionAutomatic": "Auto", "OptionAutomatic": "Auto",
"HeaderSelectDate": "Select Date", "HeaderSelectDate": "Select Date",
"ButtonDonate": "Donate",
"LabelRecurringDonationCanBeCancelledHelp": "Gmachti Spende ch\u00f6nt jederziit abbroche werde mithilf vo dim PayPal Account.", "LabelRecurringDonationCanBeCancelledHelp": "Gmachti Spende ch\u00f6nt jederziit abbroche werde mithilf vo dim PayPal Account.",
"HeaderMyMedia": "My Media", "HeaderMyMedia": "My Media",
"ButtonRemoveFromCollection": "Remove from Collection", "ButtonRemoveFromCollection": "Remove from Collection",
@ -51,11 +50,11 @@
"LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:",
"TitleNotifications": "Mitteilige", "TitleNotifications": "Mitteilige",
"ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.",
"MessageErrorLoadingSupporterInfo": "There was an error loading supporter information. Please try again later.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
"MessageLinkYourSupporterKey": "Link your supporter key with up to {0} Emby Connect members to enjoy free access to the following apps:", "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:",
"HeaderConfirmRemoveUser": "Remove User", "HeaderConfirmRemoveUser": "Remove User",
"MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.", "MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.",
"MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional supporter benefits from this user?", "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?",
"ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitSingleHour": "Time limit: 1 hour",
"ValueTimeLimitMultiHour": "Time limit: {0} hours", "ValueTimeLimitMultiHour": "Time limit: {0} hours",
"HeaderUsers": "User", "HeaderUsers": "User",
@ -544,11 +543,8 @@
"MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)",
"MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.",
"ValuePriceUSD": "Price: {0} (USD)", "ValuePriceUSD": "Price: {0} (USD)",
"MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active supporter membership.", "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
"MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.",
"MessageSupporterMembershipExpiredOn": "Your supporter membership expired on {0}.",
"MessageYouHaveALifetimeMembership": "You have a lifetime supporter membership. You can provide additional donations on a one-time or recurring basis using the options below. Thank you for supporting Emby.",
"MessageYouHaveAnActiveRecurringMembership": "You have an active {0} membership. You can upgrade your plan using the options below.",
"ButtonDelete": "Delete", "ButtonDelete": "Delete",
"HeaderEmbyAccountAdded": "Emby Account Added", "HeaderEmbyAccountAdded": "Emby Account Added",
"MessageEmbyAccountAdded": "The Emby account has been added to this user.", "MessageEmbyAccountAdded": "The Emby account has been added to this user.",
@ -778,11 +774,10 @@
"TabScenes": "Scenes", "TabScenes": "Scenes",
"HeaderUnlockApp": "Unlock App", "HeaderUnlockApp": "Unlock App",
"MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.", "MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.",
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or with an active Emby Premiere subscription.",
"MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Premiere subscription.",
"MessageToValidateSupporter": "If you have an active Emby Supporter Membership, simply sign into the app using your Wifi connection within your home network.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app using your Wifi connection within your home network.",
"MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.",
"ButtonUnlockWithSupporter": "Sign in with Emby Supporter Membership",
"MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.",
"ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase",
"ButtonUnlockPrice": "Unlock {0}", "ButtonUnlockPrice": "Unlock {0}",
@ -826,14 +821,14 @@
"MessageCreateAccountAt": "Create an account at {0}", "MessageCreateAccountAt": "Create an account at {0}",
"ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.",
"HeaderTryCinemaMode": "Try Cinema Mode", "HeaderTryCinemaMode": "Try Cinema Mode",
"ButtonBecomeSupporter": "Become an Emby Supporter", "ButtonBecomeSupporter": "Get Emby Premiere",
"ButtonClosePlayVideo": "Close and play my media", "ButtonClosePlayVideo": "Close and play my media",
"MessageDidYouKnowCinemaMode": "Did you know that by becoming an Emby Supporter, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Supporter membership.", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Supporter membership.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Supporter information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"HeaderSync": "synchronisiere", "HeaderSync": "synchronisiere",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
"MessageSyncStarted": "Sync started", "MessageSyncStarted": "Sync started",
@ -893,5 +888,8 @@
"MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.",
"HeaderNextUp": "Als n\u00f6chsts", "HeaderNextUp": "Als n\u00f6chsts",
"HeaderLatestMovies": "Letschti Film", "HeaderLatestMovies": "Letschti Film",
"HeaderLatestEpisodes": "Letschti Episode" "HeaderLatestEpisodes": "Letschti Episode",
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
"HeaderEmailAddress": "E-Mail Address",
"TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address."
} }

View file

@ -33,17 +33,16 @@
"MessageKeyEmailedTo": "Key emailed to {0}.", "MessageKeyEmailedTo": "Key emailed to {0}.",
"MessageKeysLinked": "Keys linked.", "MessageKeysLinked": "Keys linked.",
"HeaderConfirmation": "Confirmation", "HeaderConfirmation": "Confirmation",
"MessageKeyUpdated": "Thank you. Your supporter key has been updated.", "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
"MessageKeyRemoved": "Thank you. Your supporter key has been removed.", "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"TextEnjoyBonusFeatures": "Enjoy Bonus Features", "TextEnjoyBonusFeatures": "Enjoy Bonus Features",
"TitleLiveTV": "\u05d8\u05dc\u05d5\u05d5\u05d9\u05d6\u05d9\u05d4 \u05d7\u05d9\u05d9\u05d4", "TitleLiveTV": "\u05d8\u05dc\u05d5\u05d5\u05d9\u05d6\u05d9\u05d4 \u05d7\u05d9\u05d9\u05d4",
"ButtonCancelSyncJob": "Cancel sync job", "ButtonCancelSyncJob": "Cancel sync",
"ButtonSelectView": "Select view", "ButtonSelectView": "Select view",
"TitleSync": "Sync", "TitleSync": "Sync",
"OptionAutomatic": "\u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9", "OptionAutomatic": "\u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9",
"HeaderSelectDate": "Select Date", "HeaderSelectDate": "Select Date",
"ButtonDonate": "Donate",
"LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.",
"HeaderMyMedia": "My Media", "HeaderMyMedia": "My Media",
"ButtonRemoveFromCollection": "Remove from Collection", "ButtonRemoveFromCollection": "Remove from Collection",
@ -51,11 +50,11 @@
"LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.",
"MessageErrorLoadingSupporterInfo": "There was an error loading supporter information. Please try again later.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
"MessageLinkYourSupporterKey": "Link your supporter key with up to {0} Emby Connect members to enjoy free access to the following apps:", "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:",
"HeaderConfirmRemoveUser": "Remove User", "HeaderConfirmRemoveUser": "Remove User",
"MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.", "MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.",
"MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional supporter benefits from this user?", "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?",
"ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitSingleHour": "Time limit: 1 hour",
"ValueTimeLimitMultiHour": "Time limit: {0} hours", "ValueTimeLimitMultiHour": "Time limit: {0} hours",
"HeaderUsers": "\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd", "HeaderUsers": "\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd",
@ -544,11 +543,8 @@
"MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)",
"MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.",
"ValuePriceUSD": "Price: {0} (USD)", "ValuePriceUSD": "Price: {0} (USD)",
"MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active supporter membership.", "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
"MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.",
"MessageSupporterMembershipExpiredOn": "Your supporter membership expired on {0}.",
"MessageYouHaveALifetimeMembership": "You have a lifetime supporter membership. You can provide additional donations on a one-time or recurring basis using the options below. Thank you for supporting Emby.",
"MessageYouHaveAnActiveRecurringMembership": "You have an active {0} membership. You can upgrade your plan using the options below.",
"ButtonDelete": "\u05de\u05d7\u05e7", "ButtonDelete": "\u05de\u05d7\u05e7",
"HeaderEmbyAccountAdded": "Emby Account Added", "HeaderEmbyAccountAdded": "Emby Account Added",
"MessageEmbyAccountAdded": "The Emby account has been added to this user.", "MessageEmbyAccountAdded": "The Emby account has been added to this user.",
@ -778,11 +774,10 @@
"TabScenes": "Scenes", "TabScenes": "Scenes",
"HeaderUnlockApp": "Unlock App", "HeaderUnlockApp": "Unlock App",
"MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.", "MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.",
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or with an active Emby Premiere subscription.",
"MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Premiere subscription.",
"MessageToValidateSupporter": "If you have an active Emby Supporter Membership, simply sign into the app using your Wifi connection within your home network.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app using your Wifi connection within your home network.",
"MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.",
"ButtonUnlockWithSupporter": "Sign in with Emby Supporter Membership",
"MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.",
"ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase",
"ButtonUnlockPrice": "Unlock {0}", "ButtonUnlockPrice": "Unlock {0}",
@ -826,14 +821,14 @@
"MessageCreateAccountAt": "Create an account at {0}", "MessageCreateAccountAt": "Create an account at {0}",
"ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.",
"HeaderTryCinemaMode": "Try Cinema Mode", "HeaderTryCinemaMode": "Try Cinema Mode",
"ButtonBecomeSupporter": "Become an Emby Supporter", "ButtonBecomeSupporter": "Get Emby Premiere",
"ButtonClosePlayVideo": "Close and play my media", "ButtonClosePlayVideo": "Close and play my media",
"MessageDidYouKnowCinemaMode": "Did you know that by becoming an Emby Supporter, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Supporter membership.", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Supporter membership.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Supporter information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"HeaderSync": "Sync", "HeaderSync": "Sync",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
"MessageSyncStarted": "Sync started", "MessageSyncStarted": "Sync started",
@ -893,5 +888,8 @@
"MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.",
"HeaderNextUp": "\u05d4\u05d1\u05d0 \u05d1\u05ea\u05d5\u05e8", "HeaderNextUp": "\u05d4\u05d1\u05d0 \u05d1\u05ea\u05d5\u05e8",
"HeaderLatestMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd \u05d0\u05d7\u05e8\u05d5\u05e0\u05d9\u05dd", "HeaderLatestMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd \u05d0\u05d7\u05e8\u05d5\u05e0\u05d9\u05dd",
"HeaderLatestEpisodes": "\u05e4\u05e8\u05e7\u05d9\u05dd \u05d0\u05d7\u05e8\u05d5\u05e0\u05d9\u05dd" "HeaderLatestEpisodes": "\u05e4\u05e8\u05e7\u05d9\u05dd \u05d0\u05d7\u05e8\u05d5\u05e0\u05d9\u05dd",
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
"HeaderEmailAddress": "E-Mail Address",
"TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address."
} }

View file

@ -33,17 +33,16 @@
"MessageKeyEmailedTo": "Key emailed to {0}.", "MessageKeyEmailedTo": "Key emailed to {0}.",
"MessageKeysLinked": "Keys linked.", "MessageKeysLinked": "Keys linked.",
"HeaderConfirmation": "Confirmation", "HeaderConfirmation": "Confirmation",
"MessageKeyUpdated": "Thank you. Your supporter key has been updated.", "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
"MessageKeyRemoved": "Thank you. Your supporter key has been removed.", "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"TextEnjoyBonusFeatures": "Enjoy Bonus Features", "TextEnjoyBonusFeatures": "Enjoy Bonus Features",
"TitleLiveTV": "TV", "TitleLiveTV": "TV",
"ButtonCancelSyncJob": "Cancel sync job", "ButtonCancelSyncJob": "Cancel sync",
"ButtonSelectView": "Select view", "ButtonSelectView": "Select view",
"TitleSync": "Sync", "TitleSync": "Sync",
"OptionAutomatic": "Automatski", "OptionAutomatic": "Automatski",
"HeaderSelectDate": "Select Date", "HeaderSelectDate": "Select Date",
"ButtonDonate": "Donate",
"LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.",
"HeaderMyMedia": "My Media", "HeaderMyMedia": "My Media",
"ButtonRemoveFromCollection": "Remove from Collection", "ButtonRemoveFromCollection": "Remove from Collection",
@ -51,11 +50,11 @@
"LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.",
"MessageErrorLoadingSupporterInfo": "There was an error loading supporter information. Please try again later.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
"MessageLinkYourSupporterKey": "Link your supporter key with up to {0} Emby Connect members to enjoy free access to the following apps:", "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:",
"HeaderConfirmRemoveUser": "Remove User", "HeaderConfirmRemoveUser": "Remove User",
"MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.", "MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.",
"MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional supporter benefits from this user?", "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?",
"ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitSingleHour": "Time limit: 1 hour",
"ValueTimeLimitMultiHour": "Time limit: {0} hours", "ValueTimeLimitMultiHour": "Time limit: {0} hours",
"HeaderUsers": "Korisnici", "HeaderUsers": "Korisnici",
@ -544,11 +543,8 @@
"MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)",
"MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.",
"ValuePriceUSD": "Price: {0} (USD)", "ValuePriceUSD": "Price: {0} (USD)",
"MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active supporter membership.", "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
"MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.",
"MessageSupporterMembershipExpiredOn": "Your supporter membership expired on {0}.",
"MessageYouHaveALifetimeMembership": "You have a lifetime supporter membership. You can provide additional donations on a one-time or recurring basis using the options below. Thank you for supporting Emby.",
"MessageYouHaveAnActiveRecurringMembership": "You have an active {0} membership. You can upgrade your plan using the options below.",
"ButtonDelete": "Izbri\u0161i", "ButtonDelete": "Izbri\u0161i",
"HeaderEmbyAccountAdded": "Emby Account Added", "HeaderEmbyAccountAdded": "Emby Account Added",
"MessageEmbyAccountAdded": "The Emby account has been added to this user.", "MessageEmbyAccountAdded": "The Emby account has been added to this user.",
@ -778,11 +774,10 @@
"TabScenes": "Scenes", "TabScenes": "Scenes",
"HeaderUnlockApp": "Unlock App", "HeaderUnlockApp": "Unlock App",
"MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.", "MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.",
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or with an active Emby Premiere subscription.",
"MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Premiere subscription.",
"MessageToValidateSupporter": "If you have an active Emby Supporter Membership, simply sign into the app using your Wifi connection within your home network.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app using your Wifi connection within your home network.",
"MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.",
"ButtonUnlockWithSupporter": "Sign in with Emby Supporter Membership",
"MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.",
"ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase",
"ButtonUnlockPrice": "Unlock {0}", "ButtonUnlockPrice": "Unlock {0}",
@ -826,14 +821,14 @@
"MessageCreateAccountAt": "Create an account at {0}", "MessageCreateAccountAt": "Create an account at {0}",
"ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.",
"HeaderTryCinemaMode": "Try Cinema Mode", "HeaderTryCinemaMode": "Try Cinema Mode",
"ButtonBecomeSupporter": "Become an Emby Supporter", "ButtonBecomeSupporter": "Get Emby Premiere",
"ButtonClosePlayVideo": "Close and play my media", "ButtonClosePlayVideo": "Close and play my media",
"MessageDidYouKnowCinemaMode": "Did you know that by becoming an Emby Supporter, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Supporter membership.", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Supporter membership.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Supporter information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"HeaderSync": "Sync", "HeaderSync": "Sync",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
"MessageSyncStarted": "Sync started", "MessageSyncStarted": "Sync started",
@ -893,5 +888,8 @@
"MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.",
"HeaderNextUp": "Sljede\u0107e je", "HeaderNextUp": "Sljede\u0107e je",
"HeaderLatestMovies": "Zadnji Filmovi", "HeaderLatestMovies": "Zadnji Filmovi",
"HeaderLatestEpisodes": "Zadnje epizode" "HeaderLatestEpisodes": "Zadnje epizode",
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
"HeaderEmailAddress": "E-Mail Address",
"TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address."
} }

View file

@ -33,17 +33,16 @@
"MessageKeyEmailedTo": "Chiave inviata all'email {0}.", "MessageKeyEmailedTo": "Chiave inviata all'email {0}.",
"MessageKeysLinked": "Chiave Collegata.", "MessageKeysLinked": "Chiave Collegata.",
"HeaderConfirmation": "Conferma", "HeaderConfirmation": "Conferma",
"MessageKeyUpdated": "Grazie. La vostra chiave supporter \u00e8 stato aggiornato.", "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
"MessageKeyRemoved": "Grazie. La vostra chiave supporter \u00e8 stata rimossa.", "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
"HeaderSupportTheTeam": "Supporta il Team di Emby", "HeaderSupportTheTeam": "Supporta il Team di Emby",
"TextEnjoyBonusFeatures": "Goditi le caratteristiche aggiuntive", "TextEnjoyBonusFeatures": "Goditi le caratteristiche aggiuntive",
"TitleLiveTV": "Tv in diretta", "TitleLiveTV": "Tv in diretta",
"ButtonCancelSyncJob": "Cancella sincronizzazione", "ButtonCancelSyncJob": "Cancel sync",
"ButtonSelectView": "Seleziona vista", "ButtonSelectView": "Seleziona vista",
"TitleSync": "Sincronizza", "TitleSync": "Sincronizza",
"OptionAutomatic": "Automatico", "OptionAutomatic": "Automatico",
"HeaderSelectDate": "Seleziona la data", "HeaderSelectDate": "Seleziona la data",
"ButtonDonate": "Donazione",
"LabelRecurringDonationCanBeCancelledHelp": "Donazioni ricorrenti possono essere cancellati in qualsiasi momento dal tuo conto PayPal.", "LabelRecurringDonationCanBeCancelledHelp": "Donazioni ricorrenti possono essere cancellati in qualsiasi momento dal tuo conto PayPal.",
"HeaderMyMedia": "I miei media", "HeaderMyMedia": "I miei media",
"ButtonRemoveFromCollection": "Rimuovi da Collezione", "ButtonRemoveFromCollection": "Rimuovi da Collezione",
@ -51,11 +50,11 @@
"LabelAutomaticUpdateLevelForPlugins": "Livello di aggiornamento automatico per i plugin:", "LabelAutomaticUpdateLevelForPlugins": "Livello di aggiornamento automatico per i plugin:",
"TitleNotifications": "Notifiche", "TitleNotifications": "Notifiche",
"ErrorLaunchingChromecast": "Si \u00e8 verificato un errore all'avvio di chromecast. Assicurati che il tuo dispositivo sia connesso alla rete wireless.", "ErrorLaunchingChromecast": "Si \u00e8 verificato un errore all'avvio di chromecast. Assicurati che il tuo dispositivo sia connesso alla rete wireless.",
"MessageErrorLoadingSupporterInfo": "Si \u00e8 verificato un errore caricando le informazioni sui supporter. Si prega di riprovare pi\u00f9 tardi.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
"MessageLinkYourSupporterKey": "Collega il tuo codice Supporter con al massimo {0} membri di Emby per accedere liberamente alle seguenti app:", "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:",
"HeaderConfirmRemoveUser": "Cancellazione utente", "HeaderConfirmRemoveUser": "Cancellazione utente",
"MessageSwipeDownOnRemoteControl": "Benvenuti a controllo remoto. Selezionare il dispositivo per il controllo facendo clic sull'icona cast in alto a destra. Scorri verso il basso ovunque su questo schermo per tornare da dove sei venuto.", "MessageSwipeDownOnRemoteControl": "Benvenuti a controllo remoto. Selezionare il dispositivo per il controllo facendo clic sull'icona cast in alto a destra. Scorri verso il basso ovunque su questo schermo per tornare da dove sei venuto.",
"MessageConfirmRemoveConnectSupporter": "Sei sicuro di voler rimuovere da questo utente i benefici aggiuntivi da supporter?", "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?",
"ValueTimeLimitSingleHour": "Tempo limite: 1 ora", "ValueTimeLimitSingleHour": "Tempo limite: 1 ora",
"ValueTimeLimitMultiHour": "Tempo limite: {0} ore", "ValueTimeLimitMultiHour": "Tempo limite: {0} ore",
"HeaderUsers": "Utenti", "HeaderUsers": "Utenti",
@ -544,11 +543,8 @@
"MessageTrialWillExpireIn": "Il periodo di prova per questa funzione scadr\u00e0 in {0} giorni", "MessageTrialWillExpireIn": "Il periodo di prova per questa funzione scadr\u00e0 in {0} giorni",
"MessageInstallPluginFromApp": "Questo Plugin deve essere installato dall'app in cui vuoi farlo funzionare", "MessageInstallPluginFromApp": "Questo Plugin deve essere installato dall'app in cui vuoi farlo funzionare",
"ValuePriceUSD": "Prezzo: {0} (USD)", "ValuePriceUSD": "Prezzo: {0} (USD)",
"MessageFeatureIncludedWithSupporter": "Siete registrati per questa funzione, e sarete in grado di continuare ad usarlo con un abbonamento attivo sostenitore.", "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
"MessageChangeRecurringPlanConfirm": "Dopo aver completato questa transazione dovrai cancellare dal tuo account PayPal la tua precedente donazione ricorrente. Grazie per aver sostenuto Emby.", "MessageChangeRecurringPlanConfirm": "Dopo aver completato questa transazione dovrai cancellare dal tuo account PayPal la tua precedente donazione ricorrente. Grazie per aver sostenuto Emby.",
"MessageSupporterMembershipExpiredOn": "La tua iscrizione supporter scaduto il {0}.",
"MessageYouHaveALifetimeMembership": "Tu hai un abbonamento come Supporter che non ha scadenza. Puoi fare ulteriori donazioni, singole o ricorrenti, scegliendo le opzioni sottostanti. Grazie per il tuo sostegno a Emby",
"MessageYouHaveAnActiveRecurringMembership": "Si dispone di un attivo {0} appartenenza. \u00c8 possibile aggiornare il vostro piano utilizzando le opzioni di seguito.",
"ButtonDelete": "Elimina", "ButtonDelete": "Elimina",
"HeaderEmbyAccountAdded": "Account Emby aggiunto", "HeaderEmbyAccountAdded": "Account Emby aggiunto",
"MessageEmbyAccountAdded": "L'account Emby \u00e8 stato aggiunto a questo utente", "MessageEmbyAccountAdded": "L'account Emby \u00e8 stato aggiunto a questo utente",
@ -778,11 +774,10 @@
"TabScenes": "Scene", "TabScenes": "Scene",
"HeaderUnlockApp": "Sblocca App", "HeaderUnlockApp": "Sblocca App",
"MessageUnlockAppWithPurchase": "Sblocca tutte le funzionalit\u00e0 di app con un piccolo acquisto di una volta.", "MessageUnlockAppWithPurchase": "Sblocca tutte le funzionalit\u00e0 di app con un piccolo acquisto di una volta.",
"MessageUnlockAppWithPurchaseOrSupporter": "Sblocca tutte le funzionalit\u00e0 di app con un piccolo acquisto di una volta, o accedendo con un attivo sostenitore Emby Membership.", "MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or with an active Emby Premiere subscription.",
"MessageUnlockAppWithSupporter": "Sblocca tutte le funzionalit\u00e0 di app per l'accesso con un attivo sostenitore Emby Membership.", "MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Premiere subscription.",
"MessageToValidateSupporter": "Se si dispone di un attivo sostenitore Emby iscrizione, \u00e8 sufficiente accedere al app utilizzando la connessione Wi-Fi all'interno della rete domestica.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app using your Wifi connection within your home network.",
"MessagePaymentServicesUnavailable": "I servizi di pagamento non sono attualmente disponibili. Per favore riprova pi\u00f9 tardi.", "MessagePaymentServicesUnavailable": "I servizi di pagamento non sono attualmente disponibili. Per favore riprova pi\u00f9 tardi.",
"ButtonUnlockWithSupporter": "Accedi con Emby Supporter appartenenza",
"MessagePleaseSignInLocalNetwork": "Prima di procedere, assicurarsi che si \u00e8 connessi alla rete locale utilizzando una connessione WiFi o LAN.", "MessagePleaseSignInLocalNetwork": "Prima di procedere, assicurarsi che si \u00e8 connessi alla rete locale utilizzando una connessione WiFi o LAN.",
"ButtonUnlockWithPurchase": "Sbloccare con l'acquisto", "ButtonUnlockWithPurchase": "Sbloccare con l'acquisto",
"ButtonUnlockPrice": "Sblocca {0}", "ButtonUnlockPrice": "Sblocca {0}",
@ -826,14 +821,14 @@
"MessageCreateAccountAt": "Crea un account a {0}", "MessageCreateAccountAt": "Crea un account a {0}",
"ErrorPleaseSelectLineup": "Si prega di selezionare una scaletta e riprova. Se non formazioni sono disponibili, quindi si prega di verificare che il vostro nome utente, password, e il codice postale \u00e8 corretto.", "ErrorPleaseSelectLineup": "Si prega di selezionare una scaletta e riprova. Se non formazioni sono disponibili, quindi si prega di verificare che il vostro nome utente, password, e il codice postale \u00e8 corretto.",
"HeaderTryCinemaMode": "Prova la modalit\u00e0 cinema", "HeaderTryCinemaMode": "Prova la modalit\u00e0 cinema",
"ButtonBecomeSupporter": "Diventa un Emby Supporter", "ButtonBecomeSupporter": "Get Emby Premiere",
"ButtonClosePlayVideo": "Chiudi e avvia il mio media", "ButtonClosePlayVideo": "Chiudi e avvia il mio media",
"MessageDidYouKnowCinemaMode": "Lo sapevi che diventando un Emby Supporter, puoi aumentare la tua esperienza con le funzioni come la Modalit\u00e0 Cinema?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "La Modalit\u00e0 Cinema ti d\u00e0 la vera una esperienza da cinema con trailers e intro personalizzati prima delle funzioni principali.", "MessageDidYouKnowCinemaMode2": "La Modalit\u00e0 Cinema ti d\u00e0 la vera una esperienza da cinema con trailers e intro personalizzati prima delle funzioni principali.",
"OptionEnableDisplayMirroring": "Abilita visualizzazione remota", "OptionEnableDisplayMirroring": "Abilita visualizzazione remota",
"HeaderSyncRequiresSupporterMembership": "La sincronizzazione richiede di essere un membro attivo di Emby Supporter.", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync richiede la connessione a un server ricamato con un abbonamento attivo sostenitore.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "Si \u00e8 verificato un errore durante la convalida delle informazioni Sostenitore ricamato. Per favore riprova pi\u00f9 tardi.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"HeaderSync": "Sincronizza", "HeaderSync": "Sincronizza",
"LabelLocalSyncStatusValue": "Stato {0}", "LabelLocalSyncStatusValue": "Stato {0}",
"MessageSyncStarted": "Sync iniziato", "MessageSyncStarted": "Sync iniziato",
@ -893,5 +888,8 @@
"MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.",
"HeaderNextUp": "Prossimo", "HeaderNextUp": "Prossimo",
"HeaderLatestMovies": "Ultimi Film Aggiunti", "HeaderLatestMovies": "Ultimi Film Aggiunti",
"HeaderLatestEpisodes": "Ultimi Episodi Aggiunti" "HeaderLatestEpisodes": "Ultimi Episodi Aggiunti",
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
"HeaderEmailAddress": "E-Mail Address",
"TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address."
} }

View file

@ -33,8 +33,8 @@
"MessageKeyEmailedTo": "Key emailed to {0}.", "MessageKeyEmailedTo": "Key emailed to {0}.",
"MessageKeysLinked": "Keys linked.", "MessageKeysLinked": "Keys linked.",
"HeaderConfirmation": "Confirmation", "HeaderConfirmation": "Confirmation",
"MessageKeyUpdated": "Thank you. Your supporter key has been updated.", "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
"MessageKeyRemoved": "Thank you. Your supporter key has been removed.", "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"TextEnjoyBonusFeatures": "Enjoy Bonus Features", "TextEnjoyBonusFeatures": "Enjoy Bonus Features",
"TitleLiveTV": "Live TV", "TitleLiveTV": "Live TV",
@ -43,7 +43,6 @@
"TitleSync": "Sync", "TitleSync": "Sync",
"OptionAutomatic": "Auto", "OptionAutomatic": "Auto",
"HeaderSelectDate": "Select Date", "HeaderSelectDate": "Select Date",
"ButtonDonate": "Donate",
"LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.",
"HeaderMyMedia": "My Media", "HeaderMyMedia": "My Media",
"ButtonRemoveFromCollection": "Remove from Collection", "ButtonRemoveFromCollection": "Remove from Collection",
@ -51,11 +50,11 @@
"LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.",
"MessageErrorLoadingSupporterInfo": "There was an error loading supporter information. Please try again later.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
"MessageLinkYourSupporterKey": "Link your supporter key with up to {0} Emby Connect members to enjoy free access to the following apps:", "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:",
"HeaderConfirmRemoveUser": "Remove User", "HeaderConfirmRemoveUser": "Remove User",
"MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.", "MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.",
"MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional supporter benefits from this user?", "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?",
"ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitSingleHour": "Time limit: 1 hour",
"ValueTimeLimitMultiHour": "Time limit: {0} hours", "ValueTimeLimitMultiHour": "Time limit: {0} hours",
"HeaderUsers": "Users", "HeaderUsers": "Users",
@ -553,11 +552,8 @@
"MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)",
"MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.",
"ValuePriceUSD": "Price: {0} (USD)", "ValuePriceUSD": "Price: {0} (USD)",
"MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active supporter membership.", "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
"MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.",
"MessageSupporterMembershipExpiredOn": "Your supporter membership expired on {0}.",
"MessageYouHaveALifetimeMembership": "You have a lifetime supporter membership. You can provide additional donations on a one-time or recurring basis using the options below. Thank you for supporting Emby.",
"MessageYouHaveAnActiveRecurringMembership": "You have an active {0} membership. You can upgrade your plan using the options below.",
"ButtonDelete": "Delete", "ButtonDelete": "Delete",
"HeaderEmbyAccountAdded": "Emby Account Added", "HeaderEmbyAccountAdded": "Emby Account Added",
"MessageEmbyAccountAdded": "The Emby account has been added to this user.", "MessageEmbyAccountAdded": "The Emby account has been added to this user.",
@ -787,9 +783,9 @@
"TabCast": "Cast", "TabCast": "Cast",
"TabScenes": "Scenes", "TabScenes": "Scenes",
"HeaderUnlockApp": "Unlock App", "HeaderUnlockApp": "Unlock App",
"MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.", "HeaderUnlockSync": "Unlock Emby Sync",
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or with an active Emby Premiere subscription.", "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
"MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Premiere subscription.", "MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app using your Wifi connection within your home network.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app using your Wifi connection within your home network.",
"MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.",
"MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.",
@ -835,14 +831,14 @@
"MessageCreateAccountAt": "Create an account at {0}", "MessageCreateAccountAt": "Create an account at {0}",
"ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.",
"HeaderTryCinemaMode": "Try Cinema Mode", "HeaderTryCinemaMode": "Try Cinema Mode",
"ButtonBecomeSupporter": "Become an Emby Supporter", "ButtonBecomeSupporter": "Get Emby Premiere",
"ButtonClosePlayVideo": "Close and play my media", "ButtonClosePlayVideo": "Close and play my media",
"MessageDidYouKnowCinemaMode": "Did you know that by becoming an Emby Supporter, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Supporter membership.", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Supporter membership.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Supporter information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"HeaderSync": "Sync", "HeaderSync": "Sync",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
"MessageSyncStarted": "Sync started", "MessageSyncStarted": "Sync started",

View file

@ -33,17 +33,16 @@
"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.", "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.", "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", "HeaderConfirmation": "\u0420\u0430\u0441\u0442\u0430\u0443",
"MessageKeyUpdated": "\u0416\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043a\u0456\u043b\u0442\u0456\u04a3\u0456\u0437 \u0436\u0430\u04a3\u0430\u0440\u0442\u044b\u043b\u0434\u044b.", "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
"MessageKeyRemoved": "\u0416\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043a\u0456\u043b\u0442\u0456\u04a3\u0456\u0437 \u0430\u043b\u0430\u0441\u0442\u0430\u043b\u0434\u044b.", "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
"HeaderSupportTheTeam": "Emby \u0442\u043e\u0431\u044b\u043d \u049b\u043e\u043b\u0434\u0430\u04a3\u044b\u0437", "HeaderSupportTheTeam": "Emby \u0442\u043e\u0431\u044b\u043d \u049b\u043e\u043b\u0434\u0430\u04a3\u044b\u0437",
"TextEnjoyBonusFeatures": "\u0421\u044b\u0439\u0430\u049b\u044b \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u0442\u0430\u0440\u0434\u044b \u0442\u0430\u043c\u0430\u0448\u0430\u043b\u0430\u043d\u044b\u04a3\u044b\u0437", "TextEnjoyBonusFeatures": "\u0421\u044b\u0439\u0430\u049b\u044b \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u0442\u0430\u0440\u0434\u044b \u0442\u0430\u043c\u0430\u0448\u0430\u043b\u0430\u043d\u044b\u04a3\u044b\u0437",
"TitleLiveTV": "\u042d\u0444\u0438\u0440\u043b\u0456\u043a \u0422\u0414", "TitleLiveTV": "\u042d\u0444\u0438\u0440\u043b\u0456\u043a \u0422\u0414",
"ButtonCancelSyncJob": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443\u0434\u0456 \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443", "ButtonCancelSyncJob": "Cancel sync",
"ButtonSelectView": "\u041a\u04e9\u0440\u0456\u043d\u0456\u0441\u0442\u0456 \u0442\u0430\u04a3\u0434\u0430\u0443", "ButtonSelectView": "\u041a\u04e9\u0440\u0456\u043d\u0456\u0441\u0442\u0456 \u0442\u0430\u04a3\u0434\u0430\u0443",
"TitleSync": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443", "TitleSync": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443",
"OptionAutomatic": "\u0410\u0432\u0442\u043e\u0442\u0430\u04a3\u0434\u0430\u0443", "OptionAutomatic": "\u0410\u0432\u0442\u043e\u0442\u0430\u04a3\u0434\u0430\u0443",
"HeaderSelectDate": "\u041a\u04af\u043d\u0434\u0456 \u0442\u0430\u04a3\u0434\u0430\u0443", "HeaderSelectDate": "\u041a\u04af\u043d\u0434\u0456 \u0442\u0430\u04a3\u0434\u0430\u0443",
"ButtonDonate": "\u049a\u0430\u0439\u044b\u0440\u043c\u0430\u043b\u0430\u0443",
"LabelRecurringDonationCanBeCancelledHelp": "\u049a\u0430\u0439\u0442\u0430\u043b\u0430\u043c\u0430 \u049b\u0430\u0439\u044b\u0440\u043c\u0430\u043b\u0434\u044b\u049b\u0442\u0430\u0440 PayPal \u0435\u0441\u0435\u043f \u0448\u043e\u0442\u044b \u0430\u0440\u049b\u044b\u043b\u044b \u04d9\u0440 \u0443\u0430\u049b\u044b\u0442\u0442\u0430 \u0434\u0430 \u0431\u043e\u043b\u0434\u044b\u0440\u044b\u043b\u043c\u0430\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d.", "LabelRecurringDonationCanBeCancelledHelp": "\u049a\u0430\u0439\u0442\u0430\u043b\u0430\u043c\u0430 \u049b\u0430\u0439\u044b\u0440\u043c\u0430\u043b\u0434\u044b\u049b\u0442\u0430\u0440 PayPal \u0435\u0441\u0435\u043f \u0448\u043e\u0442\u044b \u0430\u0440\u049b\u044b\u043b\u044b \u04d9\u0440 \u0443\u0430\u049b\u044b\u0442\u0442\u0430 \u0434\u0430 \u0431\u043e\u043b\u0434\u044b\u0440\u044b\u043b\u043c\u0430\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d.",
"HeaderMyMedia": "\u041c\u0435\u043d\u0456\u04a3 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u043c", "HeaderMyMedia": "\u041c\u0435\u043d\u0456\u04a3 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u043c",
"ButtonRemoveFromCollection": "\u0416\u0438\u044b\u043d\u0442\u044b\u049b\u0442\u0430\u043d \u0430\u043b\u0430\u0441\u0442\u0430\u0443", "ButtonRemoveFromCollection": "\u0416\u0438\u044b\u043d\u0442\u044b\u049b\u0442\u0430\u043d \u0430\u043b\u0430\u0441\u0442\u0430\u0443",
@ -51,11 +50,11 @@
"LabelAutomaticUpdateLevelForPlugins": "\u041f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440\u0434\u0456 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0436\u0430\u04a3\u0430\u0440\u0442\u0443 \u0434\u0435\u04a3\u0433\u0435\u0439\u0456:", "LabelAutomaticUpdateLevelForPlugins": "\u041f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440\u0434\u0456 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0436\u0430\u04a3\u0430\u0440\u0442\u0443 \u0434\u0435\u04a3\u0433\u0435\u0439\u0456:",
"TitleNotifications": "\u0425\u0430\u0431\u0430\u0440\u043b\u0430\u043d\u0434\u044b\u0440\u0443\u043b\u0430\u0440", "TitleNotifications": "\u0425\u0430\u0431\u0430\u0440\u043b\u0430\u043d\u0434\u044b\u0440\u0443\u043b\u0430\u0440",
"ErrorLaunchingChromecast": "Chromecast \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u044b\u043b\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. \u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u04a3\u044b\u0437 \u0441\u044b\u043c\u0441\u044b\u0437 \u0436\u0435\u043b\u0456\u0433\u0435 \u049b\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u044b\u043d\u0430 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437.", "ErrorLaunchingChromecast": "Chromecast \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u044b\u043b\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. \u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u04a3\u044b\u0437 \u0441\u044b\u043c\u0441\u044b\u0437 \u0436\u0435\u043b\u0456\u0433\u0435 \u049b\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u044b\u043d\u0430 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437.",
"MessageErrorLoadingSupporterInfo": "\u0416\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u044b\u043d \u0436\u04af\u043a\u0442\u0435\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. \u04d8\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u043a\u0435\u0439\u0456\u043d \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
"MessageLinkYourSupporterKey": "\u041a\u0435\u043b\u0435\u0441\u0456 \u0431\u0430\u0493\u0434\u0430\u0440\u043b\u0430\u043c\u0430\u043b\u0430\u0440\u0493\u0430 \u0442\u0435\u0433\u0456\u043d \u049b\u0430\u0442\u044b\u043d\u0430\u0443\u0434\u044b \u0442\u0430\u043c\u0430\u0448\u0430\u043b\u0430\u0443 \u04af\u0448\u0456\u043d {0} Emby Connect \u043c\u04af\u0448\u0435\u0441\u0456\u043d\u0435 \u0434\u0435\u0439\u0456\u043d \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u044b\u0440\u044b\u04a3\u044b\u0437.", "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:",
"HeaderConfirmRemoveUser": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043d\u044b \u0430\u043b\u0430\u0441\u0442\u0430\u0443", "HeaderConfirmRemoveUser": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043d\u044b \u0430\u043b\u0430\u0441\u0442\u0430\u0443",
"MessageSwipeDownOnRemoteControl": "\u049a\u0430\u0448\u044b\u049b\u0442\u0430\u043d \u0431\u0430\u0441\u049b\u0430\u0440\u0443\u0493\u0430 \u049b\u043e\u0448 \u043a\u0435\u043b\u0434\u0456\u04a3\u0456\u0437. \u0411\u0430\u0441\u049b\u0430\u0440\u044b\u043b\u0430\u0442\u044b\u043d \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043d\u044b \u0436\u043e\u0493\u0430\u0440\u044b \u043e\u04a3 \u0431\u04b1\u0440\u044b\u0448\u0442\u0430\u0493\u044b \u0442\u0430\u0440\u0430\u0442\u0443 \u0431\u0435\u043b\u0433\u0456\u0448\u0435\u0441\u0456\u043d \u043d\u04b1\u049b\u044b\u043f \u0442\u0430\u043d\u0434\u0430\u04a3\u044b\u0437. \u041e\u0441\u044b \u044d\u043a\u0440\u0430\u043d\u0434\u044b\u04a3 \u049b\u0430\u0439 \u0436\u0435\u0440\u0456\u043d\u0434\u0435 \u0442\u04e9\u043c\u0435\u043d\u0433\u0435 \u0441\u0438\u043f\u0430\u043f \u043e\u0442\u0456\u043f \u043a\u0435\u043b\u0433\u0435\u043d \u0436\u0435\u0440\u0456\u04a3\u0456\u0437\u0433\u0435 \u049b\u0430\u0439\u0442\u0430 \u043e\u0440\u0430\u043b\u044b\u04a3\u044b\u0437.", "MessageSwipeDownOnRemoteControl": "\u049a\u0430\u0448\u044b\u049b\u0442\u0430\u043d \u0431\u0430\u0441\u049b\u0430\u0440\u0443\u0493\u0430 \u049b\u043e\u0448 \u043a\u0435\u043b\u0434\u0456\u04a3\u0456\u0437. \u0411\u0430\u0441\u049b\u0430\u0440\u044b\u043b\u0430\u0442\u044b\u043d \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043d\u044b \u0436\u043e\u0493\u0430\u0440\u044b \u043e\u04a3 \u0431\u04b1\u0440\u044b\u0448\u0442\u0430\u0493\u044b \u0442\u0430\u0440\u0430\u0442\u0443 \u0431\u0435\u043b\u0433\u0456\u0448\u0435\u0441\u0456\u043d \u043d\u04b1\u049b\u044b\u043f \u0442\u0430\u043d\u0434\u0430\u04a3\u044b\u0437. \u041e\u0441\u044b \u044d\u043a\u0440\u0430\u043d\u0434\u044b\u04a3 \u049b\u0430\u0439 \u0436\u0435\u0440\u0456\u043d\u0434\u0435 \u0442\u04e9\u043c\u0435\u043d\u0433\u0435 \u0441\u0438\u043f\u0430\u043f \u043e\u0442\u0456\u043f \u043a\u0435\u043b\u0433\u0435\u043d \u0436\u0435\u0440\u0456\u04a3\u0456\u0437\u0433\u0435 \u049b\u0430\u0439\u0442\u0430 \u043e\u0440\u0430\u043b\u044b\u04a3\u044b\u0437.",
"MessageConfirmRemoveConnectSupporter": "\u0428\u044b\u043d\u044b\u043c\u0435\u043d \u043e\u0441\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u0434\u0430\u043d \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b\u043d\u044b\u04a3 \u049b\u043e\u0441\u044b\u043c\u0448\u0430 \u0430\u0440\u0442\u044b\u049b\u0448\u044b\u043b\u044b\u049b\u0442\u0430\u0440\u044b\u043d \u0430\u043b\u0430\u0441\u0442\u0430\u0443 \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?", "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?",
"ValueTimeLimitSingleHour": "\u0423\u0430\u049b\u044b\u0442 \u0448\u0435\u0433\u0456: 1 \u0441\u0430\u0493\u0430\u0442", "ValueTimeLimitSingleHour": "\u0423\u0430\u049b\u044b\u0442 \u0448\u0435\u0433\u0456: 1 \u0441\u0430\u0493\u0430\u0442",
"ValueTimeLimitMultiHour": "\u0423\u0430\u049b\u044b\u0442 \u0448\u0435\u0433\u0456: {0} \u0441\u0430\u0493\u0430\u0442", "ValueTimeLimitMultiHour": "\u0423\u0430\u049b\u044b\u0442 \u0448\u0435\u0433\u0456: {0} \u0441\u0430\u0493\u0430\u0442",
"HeaderUsers": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440", "HeaderUsers": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440",
@ -393,7 +392,7 @@
"MessagePleaseRefreshPage": "\u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0435\u043d \u0436\u0430\u04a3\u0430 \u0436\u0430\u04a3\u0430\u0440\u0442\u0443\u043b\u0430\u0440\u0434\u044b \u0430\u043b\u0443 \u04af\u0448\u0456\u043d \u043e\u0441\u044b \u0431\u0435\u0442\u0442\u0456 \u0436\u0430\u04a3\u0493\u044b\u0440\u0442\u044b\u04a3\u044b\u0437.", "MessagePleaseRefreshPage": "\u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0435\u043d \u0436\u0430\u04a3\u0430 \u0436\u0430\u04a3\u0430\u0440\u0442\u0443\u043b\u0430\u0440\u0434\u044b \u0430\u043b\u0443 \u04af\u0448\u0456\u043d \u043e\u0441\u044b \u0431\u0435\u0442\u0442\u0456 \u0436\u0430\u04a3\u0493\u044b\u0440\u0442\u044b\u04a3\u044b\u0437.",
"ButtonHide": "\u0416\u0430\u0441\u044b\u0440\u0443", "ButtonHide": "\u0416\u0430\u0441\u044b\u0440\u0443",
"MessageSettingsSaved": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440 \u0441\u0430\u049b\u0442\u0430\u043b\u0434\u044b.", "MessageSettingsSaved": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440 \u0441\u0430\u049b\u0442\u0430\u043b\u0434\u044b.",
"ButtonSignOut": "Sign Out", "ButtonSignOut": "\u0428\u044b\u0493\u0443",
"ButtonMyProfile": "\u041c\u0435\u043d\u0456\u04a3 \u043f\u0440\u043e\u0444\u0430\u0439\u043b\u044b\u043c\u0493\u0430", "ButtonMyProfile": "\u041c\u0435\u043d\u0456\u04a3 \u043f\u0440\u043e\u0444\u0430\u0439\u043b\u044b\u043c\u0493\u0430",
"ButtonMyPreferences": "\u041c\u0435\u043d\u0456\u04a3 \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0434\u0435\u0440\u0456\u043c\u0433\u0435", "ButtonMyPreferences": "\u041c\u0435\u043d\u0456\u04a3 \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0434\u0435\u0440\u0456\u043c\u0433\u0435",
"MessageBrowserDoesNotSupportWebSockets": "\u041e\u0441\u044b \u0448\u043e\u043b\u0493\u044b\u0448 \u0432\u0435\u0431-\u0441\u043e\u043a\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u049b\u043e\u043b\u0434\u0430\u043c\u0430\u0439\u0434\u044b. \u0410\u043d\u0430\u0493\u04b1\u0440\u043b\u044b\u043c \u0442\u0438\u0456\u043c\u0434\u0456 \u0436\u04b1\u043c\u044b\u0441 \u04af\u0448\u0456\u043d, \u0436\u0430\u04a3\u0430 \u0448\u043e\u043b\u0493\u044b\u0448 \u0430\u0440\u049b\u044b\u043b\u044b, \u043c\u044b\u0441\u0430\u043b\u044b, Chrome, Firefox, IE10+, Safari (iOS) \u043d\u0435 Opera, \u04d9\u0440\u0435\u043a\u0435\u0442 \u0436\u0430\u0441\u0430\u04a3\u044b\u0437", "MessageBrowserDoesNotSupportWebSockets": "\u041e\u0441\u044b \u0448\u043e\u043b\u0493\u044b\u0448 \u0432\u0435\u0431-\u0441\u043e\u043a\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u049b\u043e\u043b\u0434\u0430\u043c\u0430\u0439\u0434\u044b. \u0410\u043d\u0430\u0493\u04b1\u0440\u043b\u044b\u043c \u0442\u0438\u0456\u043c\u0434\u0456 \u0436\u04b1\u043c\u044b\u0441 \u04af\u0448\u0456\u043d, \u0436\u0430\u04a3\u0430 \u0448\u043e\u043b\u0493\u044b\u0448 \u0430\u0440\u049b\u044b\u043b\u044b, \u043c\u044b\u0441\u0430\u043b\u044b, Chrome, Firefox, IE10+, Safari (iOS) \u043d\u0435 Opera, \u04d9\u0440\u0435\u043a\u0435\u0442 \u0436\u0430\u0441\u0430\u04a3\u044b\u0437",
@ -544,11 +543,8 @@
"MessageTrialWillExpireIn": "\u041e\u0441\u044b \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u0442\u044b\u04a3 \u0441\u044b\u043d\u0430\u043f \u043a\u04e9\u0440\u0443 \u043c\u0435\u0440\u0437\u0456\u043c\u0456 {0} \u043a\u04af\u043d\u0434\u0435 \u0430\u044f\u049b\u0442\u0430\u043b\u0430\u0434\u044b", "MessageTrialWillExpireIn": "\u041e\u0441\u044b \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u0442\u044b\u04a3 \u0441\u044b\u043d\u0430\u043f \u043a\u04e9\u0440\u0443 \u043c\u0435\u0440\u0437\u0456\u043c\u0456 {0} \u043a\u04af\u043d\u0434\u0435 \u0430\u044f\u049b\u0442\u0430\u043b\u0430\u0434\u044b",
"MessageInstallPluginFromApp": "\u0411\u04b1\u043b \u043f\u043b\u0430\u0433\u0438\u043d \u049b\u0430\u043d\u0434\u0430\u0439 \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u0493\u0430 \u0442\u0430\u0493\u0430\u0439\u044b\u043d\u0434\u0430\u043b\u0441\u0430, \u0441\u043e\u043d\u044b\u04a3 \u0456\u0448\u0456\u043d\u0435\u043d \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0443\u044b \u0442\u0438\u0456\u0441\u0442\u0456.", "MessageInstallPluginFromApp": "\u0411\u04b1\u043b \u043f\u043b\u0430\u0433\u0438\u043d \u049b\u0430\u043d\u0434\u0430\u0439 \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u0493\u0430 \u0442\u0430\u0493\u0430\u0439\u044b\u043d\u0434\u0430\u043b\u0441\u0430, \u0441\u043e\u043d\u044b\u04a3 \u0456\u0448\u0456\u043d\u0435\u043d \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0443\u044b \u0442\u0438\u0456\u0441\u0442\u0456.",
"ValuePriceUSD": "\u0411\u0430\u0493\u0430\u0441\u044b: {0} USD", "ValuePriceUSD": "\u0411\u0430\u0493\u0430\u0441\u044b: {0} USD",
"MessageFeatureIncludedWithSupporter": "\u041e\u0441\u044b \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441 \u04af\u0448\u0456\u043d \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0435\u043d\u0441\u0456\u0437, \u0436\u04d9\u043d\u0435 \u043e\u043d\u044b \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043c\u04af\u0448\u0435\u043b\u0456\u0433\u0456 \u0430\u0440\u049b\u044b\u043b\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0434\u044b \u0436\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0430 \u0430\u043b\u0430\u0441\u044b\u0437.", "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
"MessageChangeRecurringPlanConfirm": "\u041e\u0441\u044b \u043c\u04d9\u043c\u0456\u043b\u0435\u043d\u0456 \u0430\u044f\u049b\u0442\u0430\u0493\u0430\u043d\u043d\u0430\u043d \u043a\u0435\u0439\u0456\u043d \u04e9\u0437\u0456\u04a3\u0456\u0437\u0434\u0456\u04a3 PayPal \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456 \u0456\u0448\u0456\u043d\u0435\u043d \u0430\u043b\u0434\u044b\u04a3\u0493\u044b \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u043c\u0430 \u049b\u0430\u0439\u044b\u0440\u043c\u0430\u043b\u0434\u044b\u049b\u0442\u044b \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443 \u049b\u0430\u0436\u0435\u0442 \u0431\u043e\u043b\u0430\u0434\u044b. Emby \u049b\u043e\u043b\u0434\u0430\u0443 \u04af\u0448\u0456\u043d \u0430\u043b\u0493\u044b\u0441.", "MessageChangeRecurringPlanConfirm": "\u041e\u0441\u044b \u043c\u04d9\u043c\u0456\u043b\u0435\u043d\u0456 \u0430\u044f\u049b\u0442\u0430\u0493\u0430\u043d\u043d\u0430\u043d \u043a\u0435\u0439\u0456\u043d \u04e9\u0437\u0456\u04a3\u0456\u0437\u0434\u0456\u04a3 PayPal \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456 \u0456\u0448\u0456\u043d\u0435\u043d \u0430\u043b\u0434\u044b\u04a3\u0493\u044b \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u043c\u0430 \u049b\u0430\u0439\u044b\u0440\u043c\u0430\u043b\u0434\u044b\u049b\u0442\u044b \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443 \u049b\u0430\u0436\u0435\u0442 \u0431\u043e\u043b\u0430\u0434\u044b. Emby \u049b\u043e\u043b\u0434\u0430\u0443 \u04af\u0448\u0456\u043d \u0430\u043b\u0493\u044b\u0441.",
"MessageSupporterMembershipExpiredOn": "\u0416\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043c\u04af\u0448\u0435\u043b\u0456\u0433\u0456\u04a3\u0456\u0437\u0434\u0456\u04a3 \u043c\u0435\u0440\u0437\u0456\u043c\u0456 {0} \u0430\u044f\u049b\u0442\u0430\u043b\u0493\u0430\u043d.",
"MessageYouHaveALifetimeMembership": "\u0421\u0456\u0437\u0434\u0435 \u04e9\u043c\u0456\u0440\u0431\u0430\u049b\u0438 \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b\u043b\u044b\u049b \u043c\u04af\u0448\u0435\u043b\u0456\u0433\u0456 \u0431\u0430\u0440. \u0422\u04e9\u043c\u0435\u043d\u0434\u0435\u0433\u0456 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a\u0442\u0435\u0440\u0434\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043f, \u0431\u0456\u0440\u0436\u043e\u043b\u0493\u044b \u043d\u0435\u043c\u0435\u0441\u0435 \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u043c\u0430 \u043d\u0435\u0433\u0456\u0437\u0456\u043d\u0434\u0435 \u049b\u043e\u0441\u044b\u043c\u0448\u0430 \u049b\u0430\u0439\u044b\u0440\u043c\u0430\u043b\u0434\u044b\u049b\u0442\u0430\u0440\u0434\u044b \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0443\u0456\u04a3\u0456\u0437 \u043c\u04af\u043c\u043a\u0456\u043d. Emby \u049b\u043e\u043b\u0434\u0430\u0443 \u04af\u0448\u0456\u043d \u0430\u043b\u0493\u044b\u0441.",
"MessageYouHaveAnActiveRecurringMembership": "\u0411\u0435\u043b\u0441\u0435\u043d\u0434\u0456 {0} \u043c\u04af\u0448\u0435\u043b\u0456\u0433\u0456\u043d\u0435 \u0442\u0438\u0435\u0441\u043b\u0456\u0441\u0456\u0437. \u0422\u04e9\u043c\u0435\u043d\u0434\u0435\u0433\u0456 \u043d\u04b1\u0441\u049b\u0430\u043b\u0430\u0440\u0434\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043f \u0436\u043e\u0441\u043f\u0430\u0440\u044b\u04a3\u044b\u0437\u0434\u044b \u043a\u04e9\u0442\u0435\u0440\u0443 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u0433\u0456\u04a3\u0456\u0437 \u0431\u0430\u0440",
"ButtonDelete": "\u0416\u043e\u044e", "ButtonDelete": "\u0416\u043e\u044e",
"HeaderEmbyAccountAdded": "Emby \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456 \u04af\u0441\u0442\u0435\u043b\u0456\u043d\u0434\u0456", "HeaderEmbyAccountAdded": "Emby \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456 \u04af\u0441\u0442\u0435\u043b\u0456\u043d\u0434\u0456",
"MessageEmbyAccountAdded": "Emby \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456 \u043e\u0441\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u0433\u0430 \u04af\u0441\u0442\u0435\u043b\u0456\u043d\u0434\u0456.", "MessageEmbyAccountAdded": "Emby \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456 \u043e\u0441\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u0433\u0430 \u04af\u0441\u0442\u0435\u043b\u0456\u043d\u0434\u0456.",
@ -778,11 +774,10 @@
"TabScenes": "\u0421\u0430\u0445\u043d\u0430\u043b\u0430\u0440", "TabScenes": "\u0421\u0430\u0445\u043d\u0430\u043b\u0430\u0440",
"HeaderUnlockApp": "\u049a\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043d\u044b \u049b\u04b1\u0440\u0441\u0430\u0443\u0434\u0430\u043d \u0431\u043e\u0441\u0430\u0442\u0443", "HeaderUnlockApp": "\u049a\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043d\u044b \u049b\u04b1\u0440\u0441\u0430\u0443\u0434\u0430\u043d \u0431\u043e\u0441\u0430\u0442\u0443",
"MessageUnlockAppWithPurchase": "\u0428\u0430\u0493\u044b\u043d \u0431\u0456\u0440 \u0436\u043e\u043b\u0493\u044b \u0441\u0430\u0442\u044b\u043f \u0430\u043b\u0443 \u0430\u0440\u049b\u044b\u043b\u044b \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043d\u044b\u04a3 \u0442\u043e\u043b\u044b\u049b \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a\u0442\u0435\u0440 \u049b\u04b1\u0440\u0441\u0430\u0443\u044b\u043d \u0431\u043e\u0441\u0430\u0442\u0443.", "MessageUnlockAppWithPurchase": "\u0428\u0430\u0493\u044b\u043d \u0431\u0456\u0440 \u0436\u043e\u043b\u0493\u044b \u0441\u0430\u0442\u044b\u043f \u0430\u043b\u0443 \u0430\u0440\u049b\u044b\u043b\u044b \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043d\u044b\u04a3 \u0442\u043e\u043b\u044b\u049b \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a\u0442\u0435\u0440 \u049b\u04b1\u0440\u0441\u0430\u0443\u044b\u043d \u0431\u043e\u0441\u0430\u0442\u0443.",
"MessageUnlockAppWithPurchaseOrSupporter": "\u0428\u0430\u0493\u044b\u043d \u0431\u0456\u0440 \u0436\u043e\u043b\u0493\u044b \u0441\u0430\u0442\u044b\u043f \u0430\u043b\u0443 \u0430\u0440\u049b\u044b\u043b\u044b, \u043d\u0435\u043c\u0435\u0441\u0435 \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043c\u04af\u0448\u0435\u043b\u0456\u0433\u0456\u043c\u0435\u043d \u043a\u0456\u0440\u0456\u043f \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043d\u044b\u04a3 \u0442\u043e\u043b\u044b\u049b \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a\u0442\u0435\u0440\u0456\u043d \u049b\u04b1\u0440\u0441\u0430\u0443\u0434\u0430\u043d \u0431\u043e\u0441\u0430\u0442\u0443.", "MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or with an active Emby Premiere subscription.",
"MessageUnlockAppWithSupporter": "\u0411\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043c\u04af\u0448\u0435\u043b\u0456\u0433\u0456\u043c\u0435\u043d \u043a\u0456\u0440\u0456\u043f \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043d\u044b\u04a3 \u0442\u043e\u043b\u044b\u049b \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a\u0442\u0435\u0440\u0456\u043d \u049b\u04b1\u0440\u0441\u0430\u0443\u0434\u0430\u043d \u0431\u043e\u0441\u0430\u0442\u0443.", "MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Premiere subscription.",
"MessageToValidateSupporter": "\u0415\u0433\u0435\u0440 \u0441\u0456\u0437\u0434\u0435 \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043c\u04af\u0448\u0435\u043b\u0456\u0433\u0456 \u0431\u043e\u043b\u0441\u0430, \u04e9\u0437 \u04af\u0439\u0456\u04a3\u0456\u0437\u0434\u0456\u04a3 \u0436\u0435\u043b\u0456\u0441\u0456\u043d\u0435 Wifi \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043f \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u0493\u0430 \u0436\u0430\u0439 \u0493\u0430\u043d\u0430 \u043a\u0456\u0440\u0456\u04a3\u0456\u0437.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app using your Wifi connection within your home network.",
"MessagePaymentServicesUnavailable": "\u0422\u04e9\u043b\u0435\u043c \u049b\u044b\u0437\u043c\u0435\u0442\u0442\u0435\u0440\u0456 \u049b\u0430\u0437\u0456\u0440\u0433\u0456 \u0443\u0430\u049b\u044b\u0442\u0442\u0430 \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0435\u043c\u0435\u0441. \u04d8\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u043a\u0435\u0439\u0456\u043d \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.", "MessagePaymentServicesUnavailable": "\u0422\u04e9\u043b\u0435\u043c \u049b\u044b\u0437\u043c\u0435\u0442\u0442\u0435\u0440\u0456 \u049b\u0430\u0437\u0456\u0440\u0433\u0456 \u0443\u0430\u049b\u044b\u0442\u0442\u0430 \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0435\u043c\u0435\u0441. \u04d8\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u043a\u0435\u0439\u0456\u043d \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.",
"ButtonUnlockWithSupporter": "Emby \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043c\u04af\u0448\u0435\u043b\u0456\u0433\u0456\u043c\u0435\u043d \u043a\u0456\u0440\u0443",
"MessagePleaseSignInLocalNetwork": "\u041e\u0440\u044b\u043d\u0434\u0430\u043c\u0430\u0441 \u0431\u04b1\u0440\u044b\u043d, \u0436\u0435\u0440\u0433\u0456\u043b\u0456\u043a\u0442\u0456 \u0436\u0435\u043b\u0456\u0433\u0435 Wifi \u043d\u0435\u043c\u0435\u0441\u0435 LAN \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u044b\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043f \u049b\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u044b\u04a3\u044b\u0437\u0434\u044b \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0456\u04a3\u0456\u0437.", "MessagePleaseSignInLocalNetwork": "\u041e\u0440\u044b\u043d\u0434\u0430\u043c\u0430\u0441 \u0431\u04b1\u0440\u044b\u043d, \u0436\u0435\u0440\u0433\u0456\u043b\u0456\u043a\u0442\u0456 \u0436\u0435\u043b\u0456\u0433\u0435 Wifi \u043d\u0435\u043c\u0435\u0441\u0435 LAN \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u044b\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043f \u049b\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u044b\u04a3\u044b\u0437\u0434\u044b \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0456\u04a3\u0456\u0437.",
"ButtonUnlockWithPurchase": "\u0421\u0430\u0442\u044b\u043f \u0430\u043b\u0443\u043c\u0435\u043d \u049b\u04b1\u0440\u0441\u0430\u0443\u0434\u0430\u043d \u0431\u043e\u0441\u0430\u0442\u0443", "ButtonUnlockWithPurchase": "\u0421\u0430\u0442\u044b\u043f \u0430\u043b\u0443\u043c\u0435\u043d \u049b\u04b1\u0440\u0441\u0430\u0443\u0434\u0430\u043d \u0431\u043e\u0441\u0430\u0442\u0443",
"ButtonUnlockPrice": "{0} \u049b\u04b1\u043b\u044b\u043f\u0442\u0430\u043c\u0430\u0443", "ButtonUnlockPrice": "{0} \u049b\u04b1\u043b\u044b\u043f\u0442\u0430\u043c\u0430\u0443",
@ -826,14 +821,14 @@
"MessageCreateAccountAt": "{0} \u0436\u0430\u043d\u044b\u043d\u0434\u0430 \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456 \u0436\u0430\u0441\u0430\u0443", "MessageCreateAccountAt": "{0} \u0436\u0430\u043d\u044b\u043d\u0434\u0430 \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456 \u0436\u0430\u0441\u0430\u0443",
"ErrorPleaseSelectLineup": "\u0422\u0456\u0437\u0431\u0435\u043a\u0442\u0456 \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437 \u0436\u04d9\u043d\u0435 \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437. \u0415\u0433\u0435\u0440 \u0435\u0448\u049b\u0430\u043d\u0434\u0430\u0439 \u0442\u0456\u0437\u0431\u0435\u043a \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0431\u043e\u043b\u043c\u0430\u0441\u0430, \u043e\u043d\u0434\u0430 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b\u04a3\u044b\u0437\u0434\u044b, \u049b\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0456\u04a3\u0456\u0437\u0434\u0456 \u0436\u04d9\u043d\u0435 \u043f\u043e\u0448\u0442\u0430 \u043a\u043e\u0434\u044b\u043d \u0434\u04b1\u0440\u044b\u0441 \u0435\u043a\u0435\u043d\u0456\u043d \u0442\u0435\u043a\u0441\u0435\u0440\u0456\u04a3\u0456\u0437.", "ErrorPleaseSelectLineup": "\u0422\u0456\u0437\u0431\u0435\u043a\u0442\u0456 \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437 \u0436\u04d9\u043d\u0435 \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437. \u0415\u0433\u0435\u0440 \u0435\u0448\u049b\u0430\u043d\u0434\u0430\u0439 \u0442\u0456\u0437\u0431\u0435\u043a \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0431\u043e\u043b\u043c\u0430\u0441\u0430, \u043e\u043d\u0434\u0430 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b\u04a3\u044b\u0437\u0434\u044b, \u049b\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0456\u04a3\u0456\u0437\u0434\u0456 \u0436\u04d9\u043d\u0435 \u043f\u043e\u0448\u0442\u0430 \u043a\u043e\u0434\u044b\u043d \u0434\u04b1\u0440\u044b\u0441 \u0435\u043a\u0435\u043d\u0456\u043d \u0442\u0435\u043a\u0441\u0435\u0440\u0456\u04a3\u0456\u0437.",
"HeaderTryCinemaMode": "\u041a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440 \u0440\u0435\u0436\u0456\u043c\u0456\u043d \u0441\u044b\u043d\u0430\u043f \u043a\u04e9\u0440\u0456\u04a3\u0456\u0437", "HeaderTryCinemaMode": "\u041a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440 \u0440\u0435\u0436\u0456\u043c\u0456\u043d \u0441\u044b\u043d\u0430\u043f \u043a\u04e9\u0440\u0456\u04a3\u0456\u0437",
"ButtonBecomeSupporter": "Emby \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b\u0441\u044b \u0431\u043e\u043b\u044b\u04a3\u044b\u0437", "ButtonBecomeSupporter": "Get Emby Premiere",
"ButtonClosePlayVideo": "\u0416\u0430\u0431\u0443 \u043c\u0435\u043d \u0442\u0430\u0441\u044b\u0493\u044b\u0448. \u043e\u0439\u043d\u0430\u0442\u0443", "ButtonClosePlayVideo": "\u0416\u0430\u0431\u0443 \u043c\u0435\u043d \u0442\u0430\u0441\u044b\u0493\u044b\u0448. \u043e\u0439\u043d\u0430\u0442\u0443",
"MessageDidYouKnowCinemaMode": "Emby \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b\u0441\u044b \u0430\u0442\u0430\u043d\u044b\u043f, \u043a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440 \u0440\u0435\u0436\u0456\u043c\u0456 \u0441\u0438\u044f\u049b\u0442\u044b \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a\u0442\u0435\u0440\u0456\u043c\u0435\u043d \u0442\u04d9\u0436\u0456\u0440\u0438\u0431\u0435\u04a3\u0456\u0437\u0434\u0456 \u0430\u0440\u0442\u0442\u044b\u0440\u0443 \u0431\u043e\u043b\u0430\u0442\u044b\u043d\u044b\u043d \u0431\u0456\u043b\u0435\u0441\u0456\u0437 \u0431\u0435?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "\u041a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440 \u0440\u0435\u0436\u0456\u043c\u0456 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u043a\u04e9\u0440\u043d\u0435\u0443\u0434\u0456 \u043d\u0435\u0433\u0456\u0437\u0433\u0456 \u0444\u0438\u043b\u044c\u043c \u0430\u043b\u0434\u044b\u043d\u0434\u0430 \u043e\u0439\u043d\u0430\u0442\u0443 \u049b\u0430\u0431\u0456\u043b\u0435\u0442\u0456\u043c\u0435\u043d \u043a\u0438\u043d\u043e \u04d9\u0441\u0435\u0440\u0456\u043d \u0436\u0435\u0442\u043a\u0456\u0437\u0435\u0434\u0456.", "MessageDidYouKnowCinemaMode2": "\u041a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440 \u0440\u0435\u0436\u0456\u043c\u0456 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u043a\u04e9\u0440\u043d\u0435\u0443\u0434\u0456 \u043d\u0435\u0433\u0456\u0437\u0433\u0456 \u0444\u0438\u043b\u044c\u043c \u0430\u043b\u0434\u044b\u043d\u0434\u0430 \u043e\u0439\u043d\u0430\u0442\u0443 \u049b\u0430\u0431\u0456\u043b\u0435\u0442\u0456\u043c\u0435\u043d \u043a\u0438\u043d\u043e \u04d9\u0441\u0435\u0440\u0456\u043d \u0436\u0435\u0442\u043a\u0456\u0437\u0435\u0434\u0456.",
"OptionEnableDisplayMirroring": "\u0411\u0435\u0439\u043d\u0435\u043b\u0435\u0443\u0434\u0456\u04a3 \u0442\u0435\u043b\u043d\u04b1\u0441\u049b\u0430\u0441\u044b\u043d \u049b\u043e\u0441\u0443", "OptionEnableDisplayMirroring": "\u0411\u0435\u0439\u043d\u0435\u043b\u0435\u0443\u0434\u0456\u04a3 \u0442\u0435\u043b\u043d\u04b1\u0441\u049b\u0430\u0441\u044b\u043d \u049b\u043e\u0441\u0443",
"HeaderSyncRequiresSupporterMembership": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u04af\u0448\u0456\u043d \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043c\u04af\u0448\u0435\u043b\u0456\u0433\u0456 \u049b\u0430\u0436\u0435\u0442.", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderSyncRequiresSupporterMembershipAppVersion": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u04af\u0448\u0456\u043d \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043c\u04af\u0448\u0435\u043b\u0456\u0433\u0456\u043c\u0435\u043d Emby Server \u04af\u0448\u0456\u043d \u049b\u043e\u0441\u044b\u043b\u0443 \u049b\u0430\u0436\u0435\u0442.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "Emby \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u044b\u043d \u0442\u0435\u043a\u0441\u0435\u0440\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. \u04d8\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u043a\u0435\u0439\u0456\u043d \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"HeaderSync": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443", "HeaderSync": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443",
"LabelLocalSyncStatusValue": "\u041a\u04af\u0439\u0456: {0}", "LabelLocalSyncStatusValue": "\u041a\u04af\u0439\u0456: {0}",
"MessageSyncStarted": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u0431\u0430\u0441\u0442\u0430\u043b\u0434\u044b", "MessageSyncStarted": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u0431\u0430\u0441\u0442\u0430\u043b\u0434\u044b",
@ -888,10 +883,13 @@
"ButtonLibrary": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430...", "ButtonLibrary": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430...",
"ButtonSearch": "\u0406\u0437\u0434\u0435\u0443", "ButtonSearch": "\u0406\u0437\u0434\u0435\u0443",
"ButtonNowPlaying": "\u049a\u0430\u0437\u0456\u0440 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0443\u0434\u0430...", "ButtonNowPlaying": "\u049a\u0430\u0437\u0456\u0440 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0443\u0434\u0430...",
"ButtonViewNewApp": "View new app", "ButtonViewNewApp": "\u0416\u0430\u04a3\u0430 \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043d\u044b \u049b\u0430\u0440\u0430\u0443",
"HeaderEmbyForAndroidHasMoved": "Emby for Android has moved!", "HeaderEmbyForAndroidHasMoved": "Android \u04af\u0448\u0456\u043d Emby \u0436\u044b\u043b\u0436\u044b\u0442\u044b\u043b\u0493\u0430\u043d!",
"MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", "MessageEmbyForAndroidHasMoved": "Android \u04af\u0448\u0456\u043d Emby \u0436\u0430\u04a3\u0430 App Store \u043e\u0440\u044b\u043d\u044b\u043d\u0430 \u043a\u04e9\u0448\u0442\u0456. \u0416\u0430\u04a3\u0430 \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430 \u0442\u0435\u043a\u0441\u0435\u0440\u0443\u0456\u043d \u0435\u0441\u043a\u0435\u0440\u0456\u04a3\u0456\u0437. \u041e\u0441\u044b \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u044b\u043d \u049b\u0430\u043b\u0430\u0443\u044b\u04a3\u044b\u0437 \u0431\u043e\u0439\u044b\u043d\u0448\u0430 \u04b1\u0437\u0430\u049b \u0436\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443\u04a3\u044b\u0437 \u043c\u04af\u043c\u043a\u0456\u043d.",
"HeaderNextUp": "\u041a\u0435\u0437\u0435\u043a\u0442\u0456", "HeaderNextUp": "\u041a\u0435\u0437\u0435\u043a\u0442\u0456",
"HeaderLatestMovies": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456 \u0444\u0438\u043b\u044c\u043c\u0434\u0435\u0440", "HeaderLatestMovies": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456 \u0444\u0438\u043b\u044c\u043c\u0434\u0435\u0440",
"HeaderLatestEpisodes": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456 \u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440" "HeaderLatestEpisodes": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456 \u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440",
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
"HeaderEmailAddress": "E-Mail Address",
"TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address."
} }

View file

@ -33,17 +33,16 @@
"MessageKeyEmailedTo": "Key emailed to {0}.", "MessageKeyEmailedTo": "Key emailed to {0}.",
"MessageKeysLinked": "Keys linked.", "MessageKeysLinked": "Keys linked.",
"HeaderConfirmation": "Confirmation", "HeaderConfirmation": "Confirmation",
"MessageKeyUpdated": "Thank you. Your supporter key has been updated.", "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
"MessageKeyRemoved": "Thank you. Your supporter key has been removed.", "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"TextEnjoyBonusFeatures": "Enjoy Bonus Features", "TextEnjoyBonusFeatures": "Enjoy Bonus Features",
"TitleLiveTV": "Live TV", "TitleLiveTV": "Live TV",
"ButtonCancelSyncJob": "Cancel sync job", "ButtonCancelSyncJob": "Cancel sync",
"ButtonSelectView": "Select view", "ButtonSelectView": "Select view",
"TitleSync": "Sync", "TitleSync": "Sync",
"OptionAutomatic": "Auto", "OptionAutomatic": "Auto",
"HeaderSelectDate": "Select Date", "HeaderSelectDate": "Select Date",
"ButtonDonate": "Donate",
"LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.",
"HeaderMyMedia": "My Media", "HeaderMyMedia": "My Media",
"ButtonRemoveFromCollection": "Remove from Collection", "ButtonRemoveFromCollection": "Remove from Collection",
@ -51,11 +50,11 @@
"LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.",
"MessageErrorLoadingSupporterInfo": "There was an error loading supporter information. Please try again later.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
"MessageLinkYourSupporterKey": "Link your supporter key with up to {0} Emby Connect members to enjoy free access to the following apps:", "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:",
"HeaderConfirmRemoveUser": "Remove User", "HeaderConfirmRemoveUser": "Remove User",
"MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.", "MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.",
"MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional supporter benefits from this user?", "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?",
"ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitSingleHour": "Time limit: 1 hour",
"ValueTimeLimitMultiHour": "Time limit: {0} hours", "ValueTimeLimitMultiHour": "Time limit: {0} hours",
"HeaderUsers": "Users", "HeaderUsers": "Users",
@ -544,11 +543,8 @@
"MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)",
"MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.",
"ValuePriceUSD": "Price: {0} (USD)", "ValuePriceUSD": "Price: {0} (USD)",
"MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active supporter membership.", "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
"MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.",
"MessageSupporterMembershipExpiredOn": "Your supporter membership expired on {0}.",
"MessageYouHaveALifetimeMembership": "You have a lifetime supporter membership. You can provide additional donations on a one-time or recurring basis using the options below. Thank you for supporting Emby.",
"MessageYouHaveAnActiveRecurringMembership": "You have an active {0} membership. You can upgrade your plan using the options below.",
"ButtonDelete": "Delete", "ButtonDelete": "Delete",
"HeaderEmbyAccountAdded": "Emby Account Added", "HeaderEmbyAccountAdded": "Emby Account Added",
"MessageEmbyAccountAdded": "The Emby account has been added to this user.", "MessageEmbyAccountAdded": "The Emby account has been added to this user.",
@ -778,11 +774,10 @@
"TabScenes": "Scenes", "TabScenes": "Scenes",
"HeaderUnlockApp": "Unlock App", "HeaderUnlockApp": "Unlock App",
"MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.", "MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.",
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or with an active Emby Premiere subscription.",
"MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Premiere subscription.",
"MessageToValidateSupporter": "If you have an active Emby Supporter Membership, simply sign into the app using your Wifi connection within your home network.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app using your Wifi connection within your home network.",
"MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.",
"ButtonUnlockWithSupporter": "Sign in with Emby Supporter Membership",
"MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.",
"ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase",
"ButtonUnlockPrice": "Unlock {0}", "ButtonUnlockPrice": "Unlock {0}",
@ -826,14 +821,14 @@
"MessageCreateAccountAt": "Create an account at {0}", "MessageCreateAccountAt": "Create an account at {0}",
"ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.",
"HeaderTryCinemaMode": "Try Cinema Mode", "HeaderTryCinemaMode": "Try Cinema Mode",
"ButtonBecomeSupporter": "Become an Emby Supporter", "ButtonBecomeSupporter": "Get Emby Premiere",
"ButtonClosePlayVideo": "Close and play my media", "ButtonClosePlayVideo": "Close and play my media",
"MessageDidYouKnowCinemaMode": "Did you know that by becoming an Emby Supporter, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Supporter membership.", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Supporter membership.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Supporter information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"HeaderSync": "Sync", "HeaderSync": "Sync",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
"MessageSyncStarted": "Sync started", "MessageSyncStarted": "Sync started",
@ -893,5 +888,8 @@
"MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.",
"HeaderNextUp": "Next Up", "HeaderNextUp": "Next Up",
"HeaderLatestMovies": "Latest Movies", "HeaderLatestMovies": "Latest Movies",
"HeaderLatestEpisodes": "Latest Episodes" "HeaderLatestEpisodes": "Latest Episodes",
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
"HeaderEmailAddress": "E-Mail Address",
"TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address."
} }

View file

@ -33,17 +33,16 @@
"MessageKeyEmailedTo": "N\u00f8kkel sendt til {0}", "MessageKeyEmailedTo": "N\u00f8kkel sendt til {0}",
"MessageKeysLinked": "N\u00f8kler lenket.", "MessageKeysLinked": "N\u00f8kler lenket.",
"HeaderConfirmation": "Bekreftelse", "HeaderConfirmation": "Bekreftelse",
"MessageKeyUpdated": "Takk. Din supportern\u00f8kkel har blitt oppdatert.", "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
"MessageKeyRemoved": "Takk. Din supportern\u00f8kkel har blitt fjernet.", "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
"HeaderSupportTheTeam": "St\u00f8tt Emby teamet!", "HeaderSupportTheTeam": "St\u00f8tt Emby teamet!",
"TextEnjoyBonusFeatures": "Nyt bonusfunksjonene", "TextEnjoyBonusFeatures": "Nyt bonusfunksjonene",
"TitleLiveTV": "Live TV", "TitleLiveTV": "Live TV",
"ButtonCancelSyncJob": "Cancel sync job", "ButtonCancelSyncJob": "Cancel sync",
"ButtonSelectView": "Select view", "ButtonSelectView": "Select view",
"TitleSync": "Synk", "TitleSync": "Synk",
"OptionAutomatic": "Auto", "OptionAutomatic": "Auto",
"HeaderSelectDate": "Velg dato", "HeaderSelectDate": "Velg dato",
"ButtonDonate": "Don\u00e9r",
"LabelRecurringDonationCanBeCancelledHelp": "Gjentakende donasjoner kan avbrytes n\u00e5r som helst fra din PayPal-konto.", "LabelRecurringDonationCanBeCancelledHelp": "Gjentakende donasjoner kan avbrytes n\u00e5r som helst fra din PayPal-konto.",
"HeaderMyMedia": "Mine media", "HeaderMyMedia": "Mine media",
"ButtonRemoveFromCollection": "Remove from Collection", "ButtonRemoveFromCollection": "Remove from Collection",
@ -51,11 +50,11 @@
"LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:",
"TitleNotifications": "Beskjeder", "TitleNotifications": "Beskjeder",
"ErrorLaunchingChromecast": "Det var en feil ved start av Chromecast. Vennligst forsikre deg om at enheten har korrekt forbindelse til ditt tr\u00e5dl\u00f8se nettverk.", "ErrorLaunchingChromecast": "Det var en feil ved start av Chromecast. Vennligst forsikre deg om at enheten har korrekt forbindelse til ditt tr\u00e5dl\u00f8se nettverk.",
"MessageErrorLoadingSupporterInfo": "Det oppstod en feil under innlasting supporterinformasjon. Vennligst pr\u00f8v igjen senere.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
"MessageLinkYourSupporterKey": "Link your supporter key with up to {0} Emby Connect members to enjoy free access to the following apps:", "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:",
"HeaderConfirmRemoveUser": "Fjern bruker", "HeaderConfirmRemoveUser": "Fjern bruker",
"MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.", "MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.",
"MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional supporter benefits from this user?", "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?",
"ValueTimeLimitSingleHour": "Tidsgrense: 1 time", "ValueTimeLimitSingleHour": "Tidsgrense: 1 time",
"ValueTimeLimitMultiHour": "Tidsgrense: {0} time", "ValueTimeLimitMultiHour": "Tidsgrense: {0} time",
"HeaderUsers": "Brukere", "HeaderUsers": "Brukere",
@ -101,7 +100,7 @@
"MessageItemsAdded": "Elementer lagt til", "MessageItemsAdded": "Elementer lagt til",
"ButtonAddToCollection": "Legg til samling", "ButtonAddToCollection": "Legg til samling",
"HeaderSelectCertificatePath": "Velg sti for sertifikat:", "HeaderSelectCertificatePath": "Velg sti for sertifikat:",
"ConfirmMessageScheduledTaskButton": "Dette kj\u00f8res vanligvis automatisk som en planlagt oppgave. Den kan ogs\u00e5 kj\u00f8res manuelt herfra. For \u00e5 konfigurere planlagte oppgaver, se:", "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:",
"HeaderSupporterBenefit": "St\u00f8ttemedlemskap gir ytterligere fordeler som for eksempel tilgang til synkronisering, premium plugins, internett-kanaler og mer. {0}L\u00e6r mer{1}.", "HeaderSupporterBenefit": "St\u00f8ttemedlemskap gir ytterligere fordeler som for eksempel tilgang til synkronisering, premium plugins, internett-kanaler og mer. {0}L\u00e6r mer{1}.",
"LabelSyncNoTargetsHelp": "Det ser ikke ut til at du har noen applikasjoner som st\u00f8tter synkronisering.", "LabelSyncNoTargetsHelp": "Det ser ikke ut til at du har noen applikasjoner som st\u00f8tter synkronisering.",
"HeaderWelcomeToProjectServerDashboard": "Velkommen til Emby Server Dashboard", "HeaderWelcomeToProjectServerDashboard": "Velkommen til Emby Server Dashboard",
@ -418,7 +417,7 @@
"ButtonScenes": "Scener", "ButtonScenes": "Scener",
"ButtonQuality": "Kvalitet", "ButtonQuality": "Kvalitet",
"HeaderNotifications": "Melding", "HeaderNotifications": "Melding",
"HeaderSelectPlayer": "Velg Spiller", "HeaderSelectPlayer": "Select Player",
"ButtonSelect": "Velg", "ButtonSelect": "Velg",
"ButtonNew": "Ny", "ButtonNew": "Ny",
"MessageInternetExplorerWebm": "For det beste resultatet med Internet Explorer anbefales det at du installerer WebM programtillegg for videoavspilling.", "MessageInternetExplorerWebm": "For det beste resultatet med Internet Explorer anbefales det at du installerer WebM programtillegg for videoavspilling.",
@ -544,11 +543,8 @@
"MessageTrialWillExpireIn": "Pr\u00f8veperioden for denne funksjonen utl\u00f8per om {0} dag (er)", "MessageTrialWillExpireIn": "Pr\u00f8veperioden for denne funksjonen utl\u00f8per om {0} dag (er)",
"MessageInstallPluginFromApp": "Dette programtillegget m\u00e5 installeres direkte i appen du har tenkt \u00e5 bruke den i.", "MessageInstallPluginFromApp": "Dette programtillegget m\u00e5 installeres direkte i appen du har tenkt \u00e5 bruke den i.",
"ValuePriceUSD": "Pris: {0} (USD)", "ValuePriceUSD": "Pris: {0} (USD)",
"MessageFeatureIncludedWithSupporter": "Du er registrert for denne funksjonen, og vil kunne fortsette \u00e5 bruke den med et aktiv supporter medlemskap.", "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
"MessageChangeRecurringPlanConfirm": "Etter \u00e5 ha fullf\u00f8rt denne transaksjonen vil du m\u00e5tte avbestille din forrige gjentagende donasjon fra din PayPal-konto. Takk for at du st\u00f8tter Emby.", "MessageChangeRecurringPlanConfirm": "Etter \u00e5 ha fullf\u00f8rt denne transaksjonen vil du m\u00e5tte avbestille din forrige gjentagende donasjon fra din PayPal-konto. Takk for at du st\u00f8tter Emby.",
"MessageSupporterMembershipExpiredOn": "Ditt supporter medlemskap utl\u00f8p den {0}.",
"MessageYouHaveALifetimeMembership": "Du har et levetid supporter medlemskap. Du kan gi ytterligere donasjoner engangs eller periodisk basis ved hjelp av alternativene nedenfor. Takk for at du st\u00f8tter Emby.",
"MessageYouHaveAnActiveRecurringMembership": "Du har et aktivt {0} medlemskap. Du kan oppgradere din plan ved hjelp av alternativene nedenfor.",
"ButtonDelete": "Slett", "ButtonDelete": "Slett",
"HeaderEmbyAccountAdded": "Emby konto lagt til", "HeaderEmbyAccountAdded": "Emby konto lagt til",
"MessageEmbyAccountAdded": "Emby-konto er blitt lagt til denne brukeren.", "MessageEmbyAccountAdded": "Emby-konto er blitt lagt til denne brukeren.",
@ -778,11 +774,10 @@
"TabScenes": "Scener", "TabScenes": "Scener",
"HeaderUnlockApp": "Unlock App", "HeaderUnlockApp": "Unlock App",
"MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.", "MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.",
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or with an active Emby Premiere subscription.",
"MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Premiere subscription.",
"MessageToValidateSupporter": "If you have an active Emby Supporter Membership, simply sign into the app using your Wifi connection within your home network.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app using your Wifi connection within your home network.",
"MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.",
"ButtonUnlockWithSupporter": "Sign in with Emby Supporter Membership",
"MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.",
"ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase",
"ButtonUnlockPrice": "Unlock {0}", "ButtonUnlockPrice": "Unlock {0}",
@ -826,14 +821,14 @@
"MessageCreateAccountAt": "Create an account at {0}", "MessageCreateAccountAt": "Create an account at {0}",
"ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.",
"HeaderTryCinemaMode": "Try Cinema Mode", "HeaderTryCinemaMode": "Try Cinema Mode",
"ButtonBecomeSupporter": "Become an Emby Supporter", "ButtonBecomeSupporter": "Get Emby Premiere",
"ButtonClosePlayVideo": "Close and play my media", "ButtonClosePlayVideo": "Close and play my media",
"MessageDidYouKnowCinemaMode": "Did you know that by becoming an Emby Supporter, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Supporter membership.", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Supporter membership.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Supporter information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"HeaderSync": "Synk.", "HeaderSync": "Synk.",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
"MessageSyncStarted": "Sync started", "MessageSyncStarted": "Sync started",
@ -893,5 +888,8 @@
"MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.",
"HeaderNextUp": "Neste", "HeaderNextUp": "Neste",
"HeaderLatestMovies": "Siste Filmer", "HeaderLatestMovies": "Siste Filmer",
"HeaderLatestEpisodes": "Siste episoder" "HeaderLatestEpisodes": "Siste episoder",
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
"HeaderEmailAddress": "E-Mail Address",
"TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address."
} }

View file

@ -33,17 +33,16 @@
"MessageKeyEmailedTo": "Sleutel gemaild naar {0}.", "MessageKeyEmailedTo": "Sleutel gemaild naar {0}.",
"MessageKeysLinked": "Sleutels gekoppeld.", "MessageKeysLinked": "Sleutels gekoppeld.",
"HeaderConfirmation": "Bevestiging", "HeaderConfirmation": "Bevestiging",
"MessageKeyUpdated": "Dank u. Uw supporter sleutel is bijgewerkt.", "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
"MessageKeyRemoved": "Dank u. Uw supporter sleutel is verwijderd.", "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
"HeaderSupportTheTeam": "Ondersteun het Emby Team", "HeaderSupportTheTeam": "Ondersteun het Emby Team",
"TextEnjoyBonusFeatures": "Profiteer van extra mogelijkheden", "TextEnjoyBonusFeatures": "Profiteer van extra mogelijkheden",
"TitleLiveTV": "Live TV", "TitleLiveTV": "Live TV",
"ButtonCancelSyncJob": "Annuleer synchronisatie opdracht", "ButtonCancelSyncJob": "Cancel sync",
"ButtonSelectView": "Selecteer weergave", "ButtonSelectView": "Selecteer weergave",
"TitleSync": "Synchroniseer", "TitleSync": "Synchroniseer",
"OptionAutomatic": "Automatisch", "OptionAutomatic": "Automatisch",
"HeaderSelectDate": "Selecteer Datum", "HeaderSelectDate": "Selecteer Datum",
"ButtonDonate": "Doneren",
"LabelRecurringDonationCanBeCancelledHelp": "Terugkerende donaties kunnen op elk moment stop gezet worden in uw PayPal account.", "LabelRecurringDonationCanBeCancelledHelp": "Terugkerende donaties kunnen op elk moment stop gezet worden in uw PayPal account.",
"HeaderMyMedia": "Mijn media", "HeaderMyMedia": "Mijn media",
"ButtonRemoveFromCollection": "Verwijder uit collectie", "ButtonRemoveFromCollection": "Verwijder uit collectie",
@ -51,11 +50,11 @@
"LabelAutomaticUpdateLevelForPlugins": "Niveau automatische update voor plugins:", "LabelAutomaticUpdateLevelForPlugins": "Niveau automatische update voor plugins:",
"TitleNotifications": "Meldingen", "TitleNotifications": "Meldingen",
"ErrorLaunchingChromecast": "Er is een fout opgetreden bij het starten van chromecast. Zorg ervoor dat uw apparaat is aangesloten op uw draadloze netwerk.", "ErrorLaunchingChromecast": "Er is een fout opgetreden bij het starten van chromecast. Zorg ervoor dat uw apparaat is aangesloten op uw draadloze netwerk.",
"MessageErrorLoadingSupporterInfo": "Er is een fout opgetreden bij het laden van uw supporter informatie. Probeer het later opnieuw.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
"MessageLinkYourSupporterKey": "Koppel uw supporters sleutel met maximaal {0} Emby Connect leden om te genieten van gratis toegang tot de volgende apps:", "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:",
"HeaderConfirmRemoveUser": "Gebruiker verwijderen", "HeaderConfirmRemoveUser": "Gebruiker verwijderen",
"MessageSwipeDownOnRemoteControl": "Welkom bij afstandbediening. Selecteer het apparaat dat u wilt bedienen door op het icoon rechtsboven te klikken. Swipe ergens op dit scherm naar beneden om terug te gaan.", "MessageSwipeDownOnRemoteControl": "Welkom bij afstandbediening. Selecteer het apparaat dat u wilt bedienen door op het icoon rechtsboven te klikken. Swipe ergens op dit scherm naar beneden om terug te gaan.",
"MessageConfirmRemoveConnectSupporter": "Bent u zeker dat u de extra supporter voordelen van deze gebruiker wilt verwijderen?", "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?",
"ValueTimeLimitSingleHour": "Tijdslimiet: 1 uur", "ValueTimeLimitSingleHour": "Tijdslimiet: 1 uur",
"ValueTimeLimitMultiHour": "Tijdslimiet: {0} uren", "ValueTimeLimitMultiHour": "Tijdslimiet: {0} uren",
"HeaderUsers": "Gebruikers", "HeaderUsers": "Gebruikers",
@ -101,7 +100,7 @@
"MessageItemsAdded": "Items toegevoegd", "MessageItemsAdded": "Items toegevoegd",
"ButtonAddToCollection": "Toevoegen aan Collectie", "ButtonAddToCollection": "Toevoegen aan Collectie",
"HeaderSelectCertificatePath": "Selecteer Certificaat Pad", "HeaderSelectCertificatePath": "Selecteer Certificaat Pad",
"ConfirmMessageScheduledTaskButton": "Deze operatie loopt normaal gesproken automatisch als een geplande taak. Het kan hier ook handmatig worden uitgevoerd. Om de geplande taak te configureren, zie:", "ConfirmMessageScheduledTaskButton": "Deze operatie loopt normaal gesproken automatisch als een geplande taak en behoeft geen handmatige inspanning. Om de geplande taak te configureren, zie:",
"HeaderSupporterBenefit": "Een supporter lidmaatschap biedt voordelen zoals toegang tot synchronisatie, premium plugins, internet kanalen en meer. {0}Meer weten{1}.", "HeaderSupporterBenefit": "Een supporter lidmaatschap biedt voordelen zoals toegang tot synchronisatie, premium plugins, internet kanalen en meer. {0}Meer weten{1}.",
"LabelSyncNoTargetsHelp": "Het lijkt erop dat u momenteel geen apps heeft die synchroniseren ondersteunen.", "LabelSyncNoTargetsHelp": "Het lijkt erop dat u momenteel geen apps heeft die synchroniseren ondersteunen.",
"HeaderWelcomeToProjectServerDashboard": "Welkom bij het Emby Server Dashboard", "HeaderWelcomeToProjectServerDashboard": "Welkom bij het Emby Server Dashboard",
@ -211,7 +210,7 @@
"MessagePleaseSelectOneItem": "Selecteer ten minste een item.", "MessagePleaseSelectOneItem": "Selecteer ten minste een item.",
"MessagePleaseSelectTwoItems": "Selecteer ten minste twee items.", "MessagePleaseSelectTwoItems": "Selecteer ten minste twee items.",
"MessageTheFollowingItemsWillBeGrouped": "De volgende titels worden gegroepeerd in \u00e9\u00e9n item:", "MessageTheFollowingItemsWillBeGrouped": "De volgende titels worden gegroepeerd in \u00e9\u00e9n item:",
"MessageConfirmItemGrouping": "Emby apps zullen automatisch de optimale versie kiezen om afspelen op basis van het apparaat en de prestaties van het netwerk. Weet u zeker dat u door wilt gaan?", "MessageConfirmItemGrouping": "Emby apps zullen automatisch de optimale versie kiezen om af te spelen op basis van het apparaat en de prestaties van het netwerk. Weet u zeker dat u door wilt gaan?",
"HeaderResume": "Hervatten", "HeaderResume": "Hervatten",
"HeaderMyViews": "Mijn Overzichten", "HeaderMyViews": "Mijn Overzichten",
"HeaderLibraryFolders": "Media Mappen", "HeaderLibraryFolders": "Media Mappen",
@ -393,7 +392,7 @@
"MessagePleaseRefreshPage": "Vernieuw deze pagina om nieuwe updates te ontvangen van de server.", "MessagePleaseRefreshPage": "Vernieuw deze pagina om nieuwe updates te ontvangen van de server.",
"ButtonHide": "Verbergen", "ButtonHide": "Verbergen",
"MessageSettingsSaved": "Instellingen opgeslagen.", "MessageSettingsSaved": "Instellingen opgeslagen.",
"ButtonSignOut": "Sign Out", "ButtonSignOut": "Afmelden",
"ButtonMyProfile": "Mijn profiel", "ButtonMyProfile": "Mijn profiel",
"ButtonMyPreferences": "Mijn Voorkeuren", "ButtonMyPreferences": "Mijn Voorkeuren",
"MessageBrowserDoesNotSupportWebSockets": "Deze browser ondersteunt geen web sockets. Voor een betere ervaring, probeer een nieuwere browser zoals Chrome, Firefox, IE10 +, Safari (iOS) of Opera.", "MessageBrowserDoesNotSupportWebSockets": "Deze browser ondersteunt geen web sockets. Voor een betere ervaring, probeer een nieuwere browser zoals Chrome, Firefox, IE10 +, Safari (iOS) of Opera.",
@ -544,11 +543,8 @@
"MessageTrialWillExpireIn": "De proef periode voor deze feature zal in {0} dag(en) verlopen", "MessageTrialWillExpireIn": "De proef periode voor deze feature zal in {0} dag(en) verlopen",
"MessageInstallPluginFromApp": "Deze plugin moet ge\u00efnstalleerd worden vanuit de app waarin u het wilt gebruiken.", "MessageInstallPluginFromApp": "Deze plugin moet ge\u00efnstalleerd worden vanuit de app waarin u het wilt gebruiken.",
"ValuePriceUSD": "Prijs {0} (USD)", "ValuePriceUSD": "Prijs {0} (USD)",
"MessageFeatureIncludedWithSupporter": "U bent geregistreerd voor deze functie, en zal deze kunnen blijven gebruiken met uw actieve supporter lidmaatschap.", "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
"MessageChangeRecurringPlanConfirm": "Na het voltooien van deze transactie zult u de eerdere terugkerende donatie in uw PayPal account moeten annuleren. Bedankt voor de ondersteuning aan Emby.", "MessageChangeRecurringPlanConfirm": "Na het voltooien van deze transactie zult u de eerdere terugkerende donatie in uw PayPal account moeten annuleren. Bedankt voor de ondersteuning aan Emby.",
"MessageSupporterMembershipExpiredOn": "Uw supporter lidmaatschap is verlopen op {0}",
"MessageYouHaveALifetimeMembership": "U heeft een levenslang supporter lidmaatschap. U kunt eenmalige en terugkerende donaties doen met onderstaande opties. Bedankt voor de ondersteuning aan Emby.",
"MessageYouHaveAnActiveRecurringMembership": "U hebt een actief {0} lidmaatschap. U kunt met de opties hieronder uw lidmaatschap upgraden.",
"ButtonDelete": "Verwijderen", "ButtonDelete": "Verwijderen",
"HeaderEmbyAccountAdded": "Emby Account Toegevoegd", "HeaderEmbyAccountAdded": "Emby Account Toegevoegd",
"MessageEmbyAccountAdded": "Het Emby account is aan deze gebruiker toegevoegd.", "MessageEmbyAccountAdded": "Het Emby account is aan deze gebruiker toegevoegd.",
@ -678,18 +674,18 @@
"LabelFullReview": "Volledige beoordeling:", "LabelFullReview": "Volledige beoordeling:",
"LabelShortRatingDescription": "Korte beoordeling overzicht:", "LabelShortRatingDescription": "Korte beoordeling overzicht:",
"OptionIRecommendThisItem": "Ik beveel dit item aan", "OptionIRecommendThisItem": "Ik beveel dit item aan",
"WebClientTourContent": "Bekijk de recent toegevoegde media, volgende afleveringen en meer. De groene cirkels tonen hoeveel niet afgespeelde items er zijn.", "WebClientTourContent": "Bekijk uw recent toegevoegde media, volgende afleveringen, en meer. De groene cirkels geven aan hoeveel afgespeelde items u heeft.",
"WebClientTourMovies": "Bekijk films, trailers en meer op elk apparaat met een web browser.", "WebClientTourMovies": "Speel films, trailers en meer van elk apparaat met een webbrowser",
"WebClientTourMouseOver": "Houd de muis over elke poster voor snelle toegang tot belangrijke informatie", "WebClientTourMouseOver": "Houd de muis over een poster voor snelle toegang tot belangrijke informatie",
"WebClientTourTapHold": "Klik en houd vast of rechtsklik op elke poster voor een context menu", "WebClientTourTapHold": "Klik en houd vast of rechtsklik op een poster voor een context menu",
"WebClientTourMetadataManager": "Klik wijzigen om de metadata manager te openen", "WebClientTourMetadataManager": "Klik wijzigen om de metadata manager te openen",
"WebClientTourPlaylists": "Maak eenvoudig een afspeellijst en mixlijst, en speel deze op elk apparaat", "WebClientTourPlaylists": "Gemakkelijk afspeellijsten maken en instant mixen, en speel ze op elk apparaat",
"WebClientTourCollections": "Maak film Collecties door boxsets samen te voegen", "WebClientTourCollections": "Maak film collecties door boxsets te groeperen",
"WebClientTourUserPreferences1": "Met gebruikersvoorkeuren kunt u de manier waarop uw bibliotheek getoond wordt in alle Emby apps aanpassen", "WebClientTourUserPreferences1": "Met gebruikersvoorkeuren kunt u de manier waarop uw bibliotheek wordt gepresenteerd in al uw Emby apps aanpassen",
"WebClientTourUserPreferences2": "Stel eenmalig uw voorkeuren in voor uw geluids- en ondertitelingstaal voor elke Emby app", "WebClientTourUserPreferences2": "Configureer geluids- en ondertitelingstaal eenmalig, voor elke Emby app",
"WebClientTourUserPreferences3": "Ontwerp de startpagina van de web client volgens uw wensen", "WebClientTourUserPreferences3": "Ontwerp de startpagina van de webclient volgens uw wensen",
"WebClientTourUserPreferences4": "Configureer achtergronden, theme songs en externe spelers", "WebClientTourUserPreferences4": "Achtergronden, theme songs en externe spelers configureren",
"WebClientTourMobile1": "De web client werk perfect op smartphones en tablets...", "WebClientTourMobile1": "De webclient werkt geweldig op smartphones en tablets ...",
"WebClientTourMobile2": "en bedien eenvoudig uw andere apparaten en Emby apps", "WebClientTourMobile2": "en bedien eenvoudig uw andere apparaten en Emby apps",
"WebClientTourMySync": "Synchroniseer uw persoonlijke media naar uw apparaten om het offline te bekijken.", "WebClientTourMySync": "Synchroniseer uw persoonlijke media naar uw apparaten om het offline te bekijken.",
"MessageEnjoyYourStay": "Geniet van uw verblijf", "MessageEnjoyYourStay": "Geniet van uw verblijf",
@ -778,11 +774,10 @@
"TabScenes": "Scenes", "TabScenes": "Scenes",
"HeaderUnlockApp": "App vrijgeven", "HeaderUnlockApp": "App vrijgeven",
"MessageUnlockAppWithPurchase": "Geef alle mogelijkheden van deze app vrij met een enkele kleine aankoop.", "MessageUnlockAppWithPurchase": "Geef alle mogelijkheden van deze app vrij met een enkele kleine aankoop.",
"MessageUnlockAppWithPurchaseOrSupporter": "Geef alle mogelijkheden van deze app vrij met een enkele kleine aankoop of door met een actief Emby Supporter Lidmaatschap aan te melden.", "MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or with an active Emby Premiere subscription.",
"MessageUnlockAppWithSupporter": "Geef alle mogelijkheden van deze app vrij door met een actief Emby Supporter Lidmaatschap aan te melden.", "MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Premiere subscription.",
"MessageToValidateSupporter": "Als u een actief Emby Supporter Lidmaatschap heeft, meld de app dan aan op uw eigen wifi netwerk.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app using your Wifi connection within your home network.",
"MessagePaymentServicesUnavailable": "Betaal services zijn momenteel niet beschikbaar, Probeer het later svp. nog eens.", "MessagePaymentServicesUnavailable": "Betaal services zijn momenteel niet beschikbaar, Probeer het later svp. nog eens.",
"ButtonUnlockWithSupporter": "Meld aan met uw Emby Supporter Lidmaatschap",
"MessagePleaseSignInLocalNetwork": "Controleer of u verbonden bent met uw lokale netwerk voordat u verder gaat.", "MessagePleaseSignInLocalNetwork": "Controleer of u verbonden bent met uw lokale netwerk voordat u verder gaat.",
"ButtonUnlockWithPurchase": "Geef vrij met een aankoop", "ButtonUnlockWithPurchase": "Geef vrij met een aankoop",
"ButtonUnlockPrice": "Unlock {0}", "ButtonUnlockPrice": "Unlock {0}",
@ -826,14 +821,14 @@
"MessageCreateAccountAt": "Maak een account bij {0}", "MessageCreateAccountAt": "Maak een account bij {0}",
"ErrorPleaseSelectLineup": "Selecteer een lineup en probeer het opnieuw. Als er geen lineups beschibaar zijn, controleer dan of uw gebruikersnaam, wachtwoord en postcode correct zijn.", "ErrorPleaseSelectLineup": "Selecteer een lineup en probeer het opnieuw. Als er geen lineups beschibaar zijn, controleer dan of uw gebruikersnaam, wachtwoord en postcode correct zijn.",
"HeaderTryCinemaMode": "Probeer Cinema Mode", "HeaderTryCinemaMode": "Probeer Cinema Mode",
"ButtonBecomeSupporter": "Word Emby supporter", "ButtonBecomeSupporter": "Get Emby Premiere",
"ButtonClosePlayVideo": "Sluit af en speel mijn media", "ButtonClosePlayVideo": "Sluit af en speel mijn media",
"MessageDidYouKnowCinemaMode": "Weet u dat als u een Emby Supoorter wordt, u de ervaring kan verbeteren met functies zoals de Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode geeft u de echte bioscoop ervaring met trailers en eigen intros voordat de film begint.", "MessageDidYouKnowCinemaMode2": "Cinema Mode geeft u de echte bioscoop ervaring met trailers en eigen intros voordat de film begint.",
"OptionEnableDisplayMirroring": "Schakel beeld spiegeling in", "OptionEnableDisplayMirroring": "Schakel beeld spiegeling in",
"HeaderSyncRequiresSupporterMembership": "Synchronisatie vereist een actief Emby Supporter lidmaatschap.", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Synchronisatie vereist het verbinden met een Emby Server met een actief Emby Supporter lidmaatschap.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "Er was een out bij het valideren van uw Emby Supporter informatie. Probeer het later nog eens.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"HeaderSync": "Sync", "HeaderSync": "Sync",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
"MessageSyncStarted": "Synchroniseren gestart", "MessageSyncStarted": "Synchroniseren gestart",
@ -884,14 +879,17 @@
"ButtonYes": "Ja", "ButtonYes": "Ja",
"ButtonNo": "Nee", "ButtonNo": "Nee",
"ButtonRestorePreviousPurchase": "Herstel aankoop", "ButtonRestorePreviousPurchase": "Herstel aankoop",
"ButtonForYou": "For You", "ButtonForYou": "Voor U",
"ButtonLibrary": "Library", "ButtonLibrary": "Bibliotheek",
"ButtonSearch": "Zoeken", "ButtonSearch": "Zoeken",
"ButtonNowPlaying": "Now Playing", "ButtonNowPlaying": "Wordt nu afgespeeld",
"ButtonViewNewApp": "View new app", "ButtonViewNewApp": "Bekijk nieuwe app",
"HeaderEmbyForAndroidHasMoved": "Emby for Android has moved!", "HeaderEmbyForAndroidHasMoved": "Emby voor Android is verhuisd!",
"MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", "MessageEmbyForAndroidHasMoved": "Emby voor Android is verhuisd naar een nieuwe plek in de app store. Probeer a.u.b. de nieuwe app. U kunt doorgaan met deze app te gebruiken voor zo lang als u wilt.",
"HeaderNextUp": "Volgend", "HeaderNextUp": "Volgend",
"HeaderLatestMovies": "Nieuwste Films", "HeaderLatestMovies": "Nieuwste Films",
"HeaderLatestEpisodes": "Nieuwste Afleveringen" "HeaderLatestEpisodes": "Nieuwste Afleveringen",
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
"HeaderEmailAddress": "E-Mail Address",
"TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address."
} }

View file

@ -33,17 +33,16 @@
"MessageKeyEmailedTo": "Key emailed to {0}.", "MessageKeyEmailedTo": "Key emailed to {0}.",
"MessageKeysLinked": "Keys linked.", "MessageKeysLinked": "Keys linked.",
"HeaderConfirmation": "Confirmation", "HeaderConfirmation": "Confirmation",
"MessageKeyUpdated": "Thank you. Your supporter key has been updated.", "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
"MessageKeyRemoved": "Thank you. Your supporter key has been removed.", "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"TextEnjoyBonusFeatures": "Enjoy Bonus Features", "TextEnjoyBonusFeatures": "Enjoy Bonus Features",
"TitleLiveTV": "Live TV", "TitleLiveTV": "Live TV",
"ButtonCancelSyncJob": "Cancel sync job", "ButtonCancelSyncJob": "Cancel sync",
"ButtonSelectView": "Select view", "ButtonSelectView": "Select view",
"TitleSync": "Sync", "TitleSync": "Sync",
"OptionAutomatic": "Auto", "OptionAutomatic": "Auto",
"HeaderSelectDate": "Select Date", "HeaderSelectDate": "Select Date",
"ButtonDonate": "Donate",
"LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.",
"HeaderMyMedia": "My Media", "HeaderMyMedia": "My Media",
"ButtonRemoveFromCollection": "Remove from Collection", "ButtonRemoveFromCollection": "Remove from Collection",
@ -51,11 +50,11 @@
"LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.",
"MessageErrorLoadingSupporterInfo": "There was an error loading supporter information. Please try again later.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
"MessageLinkYourSupporterKey": "Link your supporter key with up to {0} Emby Connect members to enjoy free access to the following apps:", "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:",
"HeaderConfirmRemoveUser": "Remove User", "HeaderConfirmRemoveUser": "Remove User",
"MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.", "MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.",
"MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional supporter benefits from this user?", "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?",
"ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitSingleHour": "Time limit: 1 hour",
"ValueTimeLimitMultiHour": "Time limit: {0} hours", "ValueTimeLimitMultiHour": "Time limit: {0} hours",
"HeaderUsers": "U\u017cytkownicy", "HeaderUsers": "U\u017cytkownicy",
@ -544,11 +543,8 @@
"MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)",
"MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.",
"ValuePriceUSD": "Price: {0} (USD)", "ValuePriceUSD": "Price: {0} (USD)",
"MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active supporter membership.", "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
"MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.",
"MessageSupporterMembershipExpiredOn": "Your supporter membership expired on {0}.",
"MessageYouHaveALifetimeMembership": "You have a lifetime supporter membership. You can provide additional donations on a one-time or recurring basis using the options below. Thank you for supporting Emby.",
"MessageYouHaveAnActiveRecurringMembership": "You have an active {0} membership. You can upgrade your plan using the options below.",
"ButtonDelete": "Delete", "ButtonDelete": "Delete",
"HeaderEmbyAccountAdded": "Emby Account Added", "HeaderEmbyAccountAdded": "Emby Account Added",
"MessageEmbyAccountAdded": "The Emby account has been added to this user.", "MessageEmbyAccountAdded": "The Emby account has been added to this user.",
@ -778,11 +774,10 @@
"TabScenes": "Scenes", "TabScenes": "Scenes",
"HeaderUnlockApp": "Unlock App", "HeaderUnlockApp": "Unlock App",
"MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.", "MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.",
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or with an active Emby Premiere subscription.",
"MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Premiere subscription.",
"MessageToValidateSupporter": "If you have an active Emby Supporter Membership, simply sign into the app using your Wifi connection within your home network.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app using your Wifi connection within your home network.",
"MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.",
"ButtonUnlockWithSupporter": "Sign in with Emby Supporter Membership",
"MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.",
"ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase",
"ButtonUnlockPrice": "Unlock {0}", "ButtonUnlockPrice": "Unlock {0}",
@ -826,14 +821,14 @@
"MessageCreateAccountAt": "Create an account at {0}", "MessageCreateAccountAt": "Create an account at {0}",
"ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.",
"HeaderTryCinemaMode": "Try Cinema Mode", "HeaderTryCinemaMode": "Try Cinema Mode",
"ButtonBecomeSupporter": "Become an Emby Supporter", "ButtonBecomeSupporter": "Get Emby Premiere",
"ButtonClosePlayVideo": "Close and play my media", "ButtonClosePlayVideo": "Close and play my media",
"MessageDidYouKnowCinemaMode": "Did you know that by becoming an Emby Supporter, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Supporter membership.", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Supporter membership.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Supporter information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"HeaderSync": "Sync", "HeaderSync": "Sync",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
"MessageSyncStarted": "Sync started", "MessageSyncStarted": "Sync started",
@ -893,5 +888,8 @@
"MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.",
"HeaderNextUp": "Next Up", "HeaderNextUp": "Next Up",
"HeaderLatestMovies": "Ostatnie filmy", "HeaderLatestMovies": "Ostatnie filmy",
"HeaderLatestEpisodes": "Ostanie odcinki" "HeaderLatestEpisodes": "Ostanie odcinki",
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
"HeaderEmailAddress": "E-Mail Address",
"TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address."
} }

View file

@ -33,17 +33,16 @@
"MessageKeyEmailedTo": "Chave enviada para {0}.", "MessageKeyEmailedTo": "Chave enviada para {0}.",
"MessageKeysLinked": "Chaves unificadas.", "MessageKeysLinked": "Chaves unificadas.",
"HeaderConfirmation": "Confirma\u00e7\u00e3o", "HeaderConfirmation": "Confirma\u00e7\u00e3o",
"MessageKeyUpdated": "Obrigado. Sua chave de colaborador foi atualizada.", "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
"MessageKeyRemoved": "Obrigado. Sua chave de colaborador foi removida.", "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
"HeaderSupportTheTeam": "Colabore com o Time do Emby", "HeaderSupportTheTeam": "Colabore com o Time do Emby",
"TextEnjoyBonusFeatures": "Aproveite Funcionalidades Extras", "TextEnjoyBonusFeatures": "Aproveite Funcionalidades Extras",
"TitleLiveTV": "TV ao Vivo", "TitleLiveTV": "TV ao Vivo",
"ButtonCancelSyncJob": "Cancelar tarefa de sincroniza\u00e7\u00e3o", "ButtonCancelSyncJob": "Cancel sync",
"ButtonSelectView": "Selecionar visualiza\u00e7\u00e3o", "ButtonSelectView": "Selecionar visualiza\u00e7\u00e3o",
"TitleSync": "Sinc", "TitleSync": "Sinc",
"OptionAutomatic": "Auto", "OptionAutomatic": "Auto",
"HeaderSelectDate": "Selecionar Data", "HeaderSelectDate": "Selecionar Data",
"ButtonDonate": "Doar",
"LabelRecurringDonationCanBeCancelledHelp": "Doa\u00e7\u00f5es recorrentes podem ser canceladas a qualquer momento dentro da conta do PayPal.", "LabelRecurringDonationCanBeCancelledHelp": "Doa\u00e7\u00f5es recorrentes podem ser canceladas a qualquer momento dentro da conta do PayPal.",
"HeaderMyMedia": "Minha M\u00eddia", "HeaderMyMedia": "Minha M\u00eddia",
"ButtonRemoveFromCollection": "Remover da Cole\u00e7\u00e3o", "ButtonRemoveFromCollection": "Remover da Cole\u00e7\u00e3o",
@ -51,11 +50,11 @@
"LabelAutomaticUpdateLevelForPlugins": "N\u00edvel de atualiza\u00e7\u00e3o autom\u00e1tica para plugins:", "LabelAutomaticUpdateLevelForPlugins": "N\u00edvel de atualiza\u00e7\u00e3o autom\u00e1tica para plugins:",
"TitleNotifications": "Notifica\u00e7\u00f5es", "TitleNotifications": "Notifica\u00e7\u00f5es",
"ErrorLaunchingChromecast": "Ocorreu um erro ao iniciar o chromecast. Por favor verifique se seu dispositivo est\u00e1 conectado \u00e0 sua rede sem fio.", "ErrorLaunchingChromecast": "Ocorreu um erro ao iniciar o chromecast. Por favor verifique se seu dispositivo est\u00e1 conectado \u00e0 sua rede sem fio.",
"MessageErrorLoadingSupporterInfo": "Ocorreu um erro ao carregar a informa\u00e7\u00e3o do colaborador. Por favor, tente novamente mais tarde.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
"MessageLinkYourSupporterKey": "Associe sua chave de colaborador com at\u00e9 {0} membros do Emby Connect para desfrutar acesso gr\u00e1tis \u00e0s seguintes apps:", "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:",
"HeaderConfirmRemoveUser": "Remover Usu\u00e1rio", "HeaderConfirmRemoveUser": "Remover Usu\u00e1rio",
"MessageSwipeDownOnRemoteControl": "Bem vindo ao controle remoto. Selecione o dispositivo que deseja controlar clicando no \u00edcone de transmiss\u00e3o no canto superior direito. Deslize para baixo em qualquer lugar da tela para voltar \u00e0 tela anterior.", "MessageSwipeDownOnRemoteControl": "Bem vindo ao controle remoto. Selecione o dispositivo que deseja controlar clicando no \u00edcone de transmiss\u00e3o no canto superior direito. Deslize para baixo em qualquer lugar da tela para voltar \u00e0 tela anterior.",
"MessageConfirmRemoveConnectSupporter": "Deseja realmente remover os benef\u00edcios adicionais de colaborador deste usu\u00e1rio?", "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?",
"ValueTimeLimitSingleHour": "Limite de tempo: 1 hora", "ValueTimeLimitSingleHour": "Limite de tempo: 1 hora",
"ValueTimeLimitMultiHour": "Limite de tempo: {0} horas", "ValueTimeLimitMultiHour": "Limite de tempo: {0} horas",
"HeaderUsers": "Usu\u00e1rios", "HeaderUsers": "Usu\u00e1rios",
@ -211,7 +210,7 @@
"MessagePleaseSelectOneItem": "Por favor selecione pelo menos um item.", "MessagePleaseSelectOneItem": "Por favor selecione pelo menos um item.",
"MessagePleaseSelectTwoItems": "Por favor selecione pelo menos dois itens.", "MessagePleaseSelectTwoItems": "Por favor selecione pelo menos dois itens.",
"MessageTheFollowingItemsWillBeGrouped": "Os seguintes t\u00edtulos ser\u00e3o agrupados em um \u00fanico item:", "MessageTheFollowingItemsWillBeGrouped": "Os seguintes t\u00edtulos ser\u00e3o agrupados em um \u00fanico item:",
"MessageConfirmItemGrouping": "As apps do Emby escolher\u00e3o automaticamente a melhor vers\u00e3o para reprodu\u00e7\u00e3o baseada na performance do dispositivo e da rede. Deseja realmente continuar?", "MessageConfirmItemGrouping": "Os apps do Emby escolher\u00e3o automaticamente a melhor vers\u00e3o para reprodu\u00e7\u00e3o baseada na performance do dispositivo e da rede. Deseja realmente continuar?",
"HeaderResume": "Retomar", "HeaderResume": "Retomar",
"HeaderMyViews": "Minhas Visualiza\u00e7\u00f5es", "HeaderMyViews": "Minhas Visualiza\u00e7\u00f5es",
"HeaderLibraryFolders": "Pastas de M\u00eddias", "HeaderLibraryFolders": "Pastas de M\u00eddias",
@ -393,7 +392,7 @@
"MessagePleaseRefreshPage": "Por favor, atualize esta p\u00e1gina para receber novas atualiza\u00e7\u00f5es do servidor.", "MessagePleaseRefreshPage": "Por favor, atualize esta p\u00e1gina para receber novas atualiza\u00e7\u00f5es do servidor.",
"ButtonHide": "Ocultar", "ButtonHide": "Ocultar",
"MessageSettingsSaved": "Ajustes salvos.", "MessageSettingsSaved": "Ajustes salvos.",
"ButtonSignOut": "Sign Out", "ButtonSignOut": "Sair",
"ButtonMyProfile": "Meu Perfil", "ButtonMyProfile": "Meu Perfil",
"ButtonMyPreferences": "Minhas Prefer\u00eancias", "ButtonMyPreferences": "Minhas Prefer\u00eancias",
"MessageBrowserDoesNotSupportWebSockets": "Este navegador n\u00e3o suporta web sockets. Para uma melhor experi\u00eancia, tente um navegador mais atual como o Chrome, Firefox, IE10+, Safari (iOS) ou Opera.", "MessageBrowserDoesNotSupportWebSockets": "Este navegador n\u00e3o suporta web sockets. Para uma melhor experi\u00eancia, tente um navegador mais atual como o Chrome, Firefox, IE10+, Safari (iOS) ou Opera.",
@ -542,13 +541,10 @@
"MessageYouHaveVersionInstalled": "Voc\u00ea possui a vers\u00e3o {0} instalada.", "MessageYouHaveVersionInstalled": "Voc\u00ea possui a vers\u00e3o {0} instalada.",
"MessageTrialExpired": "O per\u00edodo de testes terminou", "MessageTrialExpired": "O per\u00edodo de testes terminou",
"MessageTrialWillExpireIn": "O per\u00edodo de testes expirar\u00e1 em {0} dia(s)", "MessageTrialWillExpireIn": "O per\u00edodo de testes expirar\u00e1 em {0} dia(s)",
"MessageInstallPluginFromApp": "Este plugin deve ser instalado de dentro da app em que deseja us\u00e1-lo.", "MessageInstallPluginFromApp": "Este plugin deve ser instalado de dentro do app em que deseja us\u00e1-lo.",
"ValuePriceUSD": "Pre\u00e7o: {0} (USD)", "ValuePriceUSD": "Pre\u00e7o: {0} (USD)",
"MessageFeatureIncludedWithSupporter": "Voc\u00ea est\u00e1 registrado para este recurso e poder\u00e1 continuar usando-o com uma ades\u00e3o ativa de colaborador.", "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
"MessageChangeRecurringPlanConfirm": "Depois de completar esta transa\u00e7\u00e3o voc\u00ea precisar\u00e1 cancelar sua doa\u00e7\u00e3o recorrente anterior dentro da conta do PayPal. Obrigado por colaborar com o Emby.", "MessageChangeRecurringPlanConfirm": "Depois de completar esta transa\u00e7\u00e3o voc\u00ea precisar\u00e1 cancelar sua doa\u00e7\u00e3o recorrente anterior dentro da conta do PayPal. Obrigado por colaborar com o Emby.",
"MessageSupporterMembershipExpiredOn": "Sua ades\u00e3o de colaborador expirou em {0}.",
"MessageYouHaveALifetimeMembership": "Voc\u00ea possui uma ades\u00e3o de colaborador vital\u00edcia. Voc\u00ea pode fazer doa\u00e7\u00f5es adicionais individuais ou de forma recorrente, usando as op\u00e7\u00f5es abaixo. Obrigado por colaborar com o Emby.",
"MessageYouHaveAnActiveRecurringMembership": "Voc\u00ea tem uma ades\u00e3o {0} ativa. Voc\u00ea pode atualizar seu plano usando as op\u00e7\u00f5es abaixo.",
"ButtonDelete": "Excluir", "ButtonDelete": "Excluir",
"HeaderEmbyAccountAdded": "Conta do Emby Adicionada", "HeaderEmbyAccountAdded": "Conta do Emby Adicionada",
"MessageEmbyAccountAdded": "A conta do Emby foi adicionada para este usu\u00e1rio.", "MessageEmbyAccountAdded": "A conta do Emby foi adicionada para este usu\u00e1rio.",
@ -685,16 +681,16 @@
"WebClientTourMetadataManager": "Clique em editar para abrir o gerenciador de metadados", "WebClientTourMetadataManager": "Clique em editar para abrir o gerenciador de metadados",
"WebClientTourPlaylists": "Crie listas de reprodu\u00e7\u00e3o e mixes instant\u00e2neos e reproduza-os em qualquer dispositivo", "WebClientTourPlaylists": "Crie listas de reprodu\u00e7\u00e3o e mixes instant\u00e2neos e reproduza-os em qualquer dispositivo",
"WebClientTourCollections": "Crie cole\u00e7\u00f5es de filmes para agrupar colet\u00e2neas", "WebClientTourCollections": "Crie cole\u00e7\u00f5es de filmes para agrupar colet\u00e2neas",
"WebClientTourUserPreferences1": "As prefer\u00eancias do usu\u00e1rio permitem que voc\u00ea personalize a forma como sua biblioteca \u00e9 apresentada em todas as apps do Emby", "WebClientTourUserPreferences1": "As prefer\u00eancias do usu\u00e1rio permitem que voc\u00ea personalize a forma como sua biblioteca \u00e9 apresentada em todos os apps do Emby",
"WebClientTourUserPreferences2": "Configure o idioma de seu \u00e1udio e legendas uma \u00fanica vez para todas as apps do Emby", "WebClientTourUserPreferences2": "Configure o idioma de seu \u00e1udio e legendas uma \u00fanica vez para todos os apps do Emby",
"WebClientTourUserPreferences3": "Defina a p\u00e1gina de in\u00edcio do cliente web, do seu gosto", "WebClientTourUserPreferences3": "Defina a p\u00e1gina de in\u00edcio do cliente web, do seu gosto",
"WebClientTourUserPreferences4": "Configure imagens de fundo, m\u00fasicas-tema e reprodutores externos", "WebClientTourUserPreferences4": "Configure imagens de fundo, m\u00fasicas-tema e reprodutores externos",
"WebClientTourMobile1": "O cliente web funciona perfeitamente em smartphones e tablets...", "WebClientTourMobile1": "O cliente web funciona perfeitamente em smartphones e tablets...",
"WebClientTourMobile2": "E controle facilmente outros dispositivos e apps do Emby", "WebClientTourMobile2": "e controle facilmente outros dispositivos e apps do Emby",
"WebClientTourMySync": "Sincronize sua m\u00eddia pessoal para seus dispositivos para assistir off-line.", "WebClientTourMySync": "Sincronize sua m\u00eddia pessoal para seus dispositivos para assistir off-line.",
"MessageEnjoyYourStay": "Divirta-se", "MessageEnjoyYourStay": "Divirta-se",
"DashboardTourDashboard": "O painel do servidor permite monitorar seu servidor e seus usu\u00e1rios. Voc\u00ea sempre poder\u00e1 saber quem est\u00e1 fazendo o qu\u00ea e onde est\u00e3o.", "DashboardTourDashboard": "O painel do servidor permite monitorar seu servidor e seus usu\u00e1rios. Voc\u00ea sempre poder\u00e1 saber quem est\u00e1 fazendo o qu\u00ea e onde est\u00e3o.",
"DashboardTourHelp": "A ajuda dentro da app fornece bot\u00f5es para abrir p\u00e1ginas wiki relacionadas ao conte\u00fado na tela.", "DashboardTourHelp": "A ajuda dentro do app fornece bot\u00f5es para abrir p\u00e1ginas wiki relacionadas ao conte\u00fado na tela.",
"DashboardTourUsers": "Crie facilmente contas de usu\u00e1rios para seus amigos e fam\u00edlia, cada um com sua permiss\u00e3o, acesso \u00e0 biblioteca, controle parental e mais.", "DashboardTourUsers": "Crie facilmente contas de usu\u00e1rios para seus amigos e fam\u00edlia, cada um com sua permiss\u00e3o, acesso \u00e0 biblioteca, controle parental e mais.",
"DashboardTourCinemaMode": "O modo cinema traz a experi\u00eancia do cinema para sua sala, permitindo reproduzir trailers e intros personalizadas antes da fun\u00e7\u00e3o principal.", "DashboardTourCinemaMode": "O modo cinema traz a experi\u00eancia do cinema para sua sala, permitindo reproduzir trailers e intros personalizadas antes da fun\u00e7\u00e3o principal.",
"DashboardTourChapters": "Ative a gera\u00e7\u00e3o de imagem dos cap\u00edtulos de seus v\u00eddeos para ter uma apresenta\u00e7\u00e3o mais prazeirosa.", "DashboardTourChapters": "Ative a gera\u00e7\u00e3o de imagem dos cap\u00edtulos de seus v\u00eddeos para ter uma apresenta\u00e7\u00e3o mais prazeirosa.",
@ -707,11 +703,11 @@
"MessageRefreshQueued": "Atualiza\u00e7\u00e3o iniciada", "MessageRefreshQueued": "Atualiza\u00e7\u00e3o iniciada",
"TabDevices": "Dispositivos", "TabDevices": "Dispositivos",
"TabExtras": "Extras", "TabExtras": "Extras",
"HeaderUploadImage": "Subir Imagem", "HeaderUploadImage": "Fazer Upload da Imagem",
"DeviceLastUsedByUserName": "Utilizado por \u00faltimo por {0}", "DeviceLastUsedByUserName": "Utilizado por \u00faltimo por {0}",
"HeaderDeleteDevice": "Excluir Dispositivo", "HeaderDeleteDevice": "Excluir Dispositivo",
"DeleteDeviceConfirmation": "Deseja realmente excluir este dispositivo? Ele reaparecer\u00e1 da pr\u00f3xima vez que um usu\u00e1rio utiliz\u00e1-lo.", "DeleteDeviceConfirmation": "Deseja realmente excluir este dispositivo? Ele reaparecer\u00e1 da pr\u00f3xima vez que um usu\u00e1rio utiliz\u00e1-lo.",
"LabelEnableCameraUploadFor": "Habilitar envio atrav\u00e9s de c\u00e2mera para:", "LabelEnableCameraUploadFor": "Habilitar upload da c\u00e2mera para:",
"HeaderSelectUploadPath": "Selecionar o Caminho para Upload", "HeaderSelectUploadPath": "Selecionar o Caminho para Upload",
"LabelEnableCameraUploadForHelp": "Os uploads ocorrer\u00e3o automaticamente em segundo plano quando entrar no Emby.", "LabelEnableCameraUploadForHelp": "Os uploads ocorrer\u00e3o automaticamente em segundo plano quando entrar no Emby.",
"ErrorMessageStartHourGreaterThanEnd": "A hora final deve ser maior que a hora inicial.", "ErrorMessageStartHourGreaterThanEnd": "A hora final deve ser maior que a hora inicial.",
@ -777,12 +773,11 @@
"TabCast": "Elenco", "TabCast": "Elenco",
"TabScenes": "Cenas", "TabScenes": "Cenas",
"HeaderUnlockApp": "Desbloquear App", "HeaderUnlockApp": "Desbloquear App",
"MessageUnlockAppWithPurchase": "Desbloquear as caracter\u00edsticas completas da app com uma compra f\u00e1cil \u00fanica.", "MessageUnlockAppWithPurchase": "Desbloquear as caracter\u00edsticas completas do app com uma compra f\u00e1cil \u00fanica.",
"MessageUnlockAppWithPurchaseOrSupporter": "Desbloquear as caracter\u00edsticas completas da app com uma compra f\u00e1cil \u00fanica ou entrando com uma Ades\u00e3o ativa de Colaborador do Emby.", "MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or with an active Emby Premiere subscription.",
"MessageUnlockAppWithSupporter": "Desbloquear as caracter\u00edsticas completas da app com uma Conta ativa de Colaborador do Emby.", "MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Premiere subscription.",
"MessageToValidateSupporter": "Se voc\u00ea possui uma Conta ativa de Colaborador do Emby, simplesmente entre na app usando a conex\u00e3o de Wifi de sua rede dom\u00e9stica.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app using your Wifi connection within your home network.",
"MessagePaymentServicesUnavailable": "Servi\u00e7os de pagamento est\u00e3o indispon\u00edveis no momento. Por favor, tente novamente mais tarde.", "MessagePaymentServicesUnavailable": "Servi\u00e7os de pagamento est\u00e3o indispon\u00edveis no momento. Por favor, tente novamente mais tarde.",
"ButtonUnlockWithSupporter": "Entre com a Conta de Colaborador do Emby",
"MessagePleaseSignInLocalNetwork": "Antes de continuar, por favor assegure-se que esteja conectado \u00e0 sua rede local usando Wifi ou uma conex\u00e3o de rede.", "MessagePleaseSignInLocalNetwork": "Antes de continuar, por favor assegure-se que esteja conectado \u00e0 sua rede local usando Wifi ou uma conex\u00e3o de rede.",
"ButtonUnlockWithPurchase": "Desbloquear com Compra", "ButtonUnlockWithPurchase": "Desbloquear com Compra",
"ButtonUnlockPrice": "Desbloquear {0}", "ButtonUnlockPrice": "Desbloquear {0}",
@ -799,7 +794,7 @@
"ButtonTryAgain": "Tente Novamente", "ButtonTryAgain": "Tente Novamente",
"HeaderYouSaid": "Voc\u00ea Disse...", "HeaderYouSaid": "Voc\u00ea Disse...",
"MessageWeDidntRecognizeCommand": "Desculpe, n\u00e3o reconhecemos este comando.", "MessageWeDidntRecognizeCommand": "Desculpe, n\u00e3o reconhecemos este comando.",
"MessageIfYouBlockedVoice": "Se voc\u00ea negou o acesso de voz \u00e0 app, voc\u00ea necessitar\u00e1 reconfigurar antes de tentar novamente.", "MessageIfYouBlockedVoice": "Se voc\u00ea negou o acesso de voz ao app, voc\u00ea necessitar\u00e1 reconfigurar antes de tentar novamente.",
"MessageNoItemsFound": "Nenhum item encontrado.", "MessageNoItemsFound": "Nenhum item encontrado.",
"ButtonManageServer": "Gerenciar Servidor", "ButtonManageServer": "Gerenciar Servidor",
"ButtonEditSubtitles": "Editar legendas", "ButtonEditSubtitles": "Editar legendas",
@ -826,14 +821,14 @@
"MessageCreateAccountAt": "Criar uma conta em {0}", "MessageCreateAccountAt": "Criar uma conta em {0}",
"ErrorPleaseSelectLineup": "Por favor selecione a programa\u00e7\u00e3o e tente novamente. Se n\u00e3o houver programa\u00e7\u00f5es dispon\u00edveis, verifique se o seu nome de usu\u00e1rio, senha e c\u00f3digo postal est\u00e3o corretos.", "ErrorPleaseSelectLineup": "Por favor selecione a programa\u00e7\u00e3o e tente novamente. Se n\u00e3o houver programa\u00e7\u00f5es dispon\u00edveis, verifique se o seu nome de usu\u00e1rio, senha e c\u00f3digo postal est\u00e3o corretos.",
"HeaderTryCinemaMode": "Experimente o Cinema Mode", "HeaderTryCinemaMode": "Experimente o Cinema Mode",
"ButtonBecomeSupporter": "Torne-se um Colaborador do Emby", "ButtonBecomeSupporter": "Get Emby Premiere",
"ButtonClosePlayVideo": "Fechar e reproduzir minha m\u00eddia", "ButtonClosePlayVideo": "Fechar e reproduzir minha m\u00eddia",
"MessageDidYouKnowCinemaMode": "Voc\u00ea sabia que ao se tornar um Colaborador do Emby, voc\u00ea pode melhorar sua experi\u00eancia com funcionalidades como o Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "O Cinema Mode possibilita que voc\u00ea tenha uma experi\u00eancia de cinema com trailers, intros personalizadas, antes do filme principal.", "MessageDidYouKnowCinemaMode2": "O Cinema Mode possibilita que voc\u00ea tenha uma experi\u00eancia de cinema com trailers, intros personalizadas, antes do filme principal.",
"OptionEnableDisplayMirroring": "Ativar espelhamento da tela", "OptionEnableDisplayMirroring": "Ativar espelhamento da tela",
"HeaderSyncRequiresSupporterMembership": "Sincroniza\u00e7\u00e3o requer uma ades\u00e3o de Colaborador do Emby ativa.", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sincroniza\u00e7\u00e3o requer se conectar a um Servidor Emby com uma ades\u00e3o de Colaborador do Emby ativa.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "Ocorreu um erro ao validar a sua informa\u00e7\u00e3o de Colaborador do Emby. Por favor, tente novamente mais tarde.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"HeaderSync": "Sincroniza\u00e7\u00e3o", "HeaderSync": "Sincroniza\u00e7\u00e3o",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
"MessageSyncStarted": "Sincroniza\u00e7\u00e3o iniciada", "MessageSyncStarted": "Sincroniza\u00e7\u00e3o iniciada",
@ -888,10 +883,13 @@
"ButtonLibrary": "Biblioteca", "ButtonLibrary": "Biblioteca",
"ButtonSearch": "Busca", "ButtonSearch": "Busca",
"ButtonNowPlaying": "Reproduzindo Agora", "ButtonNowPlaying": "Reproduzindo Agora",
"ButtonViewNewApp": "View new app", "ButtonViewNewApp": "Ver novo app",
"HeaderEmbyForAndroidHasMoved": "Emby for Android has moved!", "HeaderEmbyForAndroidHasMoved": "Emby para Android mudou!",
"MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", "MessageEmbyForAndroidHasMoved": "O Emby para Android mudou para um novo local na app store. Por favor, confira o novo app. Voc\u00ea pode seguir usando este app at\u00e9 quando quiser.",
"HeaderNextUp": "Pr\u00f3ximo", "HeaderNextUp": "Pr\u00f3ximo",
"HeaderLatestMovies": "Filmes Recentes", "HeaderLatestMovies": "Filmes Recentes",
"HeaderLatestEpisodes": "Epis\u00f3dios Recentes" "HeaderLatestEpisodes": "Epis\u00f3dios Recentes",
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
"HeaderEmailAddress": "E-Mail Address",
"TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address."
} }

View file

@ -33,17 +33,16 @@
"MessageKeyEmailedTo": "Key emailed to {0}.", "MessageKeyEmailedTo": "Key emailed to {0}.",
"MessageKeysLinked": "Keys linked.", "MessageKeysLinked": "Keys linked.",
"HeaderConfirmation": "Confirmation", "HeaderConfirmation": "Confirmation",
"MessageKeyUpdated": "Thank you. Your supporter key has been updated.", "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
"MessageKeyRemoved": "Thank you. Your supporter key has been removed.", "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
"HeaderSupportTheTeam": "Suporte a Equipa do Emby", "HeaderSupportTheTeam": "Suporte a Equipa do Emby",
"TextEnjoyBonusFeatures": "Aproveite os Extras", "TextEnjoyBonusFeatures": "Aproveite os Extras",
"TitleLiveTV": "TV ao Vivo", "TitleLiveTV": "TV ao Vivo",
"ButtonCancelSyncJob": "Cancel sync job", "ButtonCancelSyncJob": "Cancel sync",
"ButtonSelectView": "Select view", "ButtonSelectView": "Select view",
"TitleSync": "Sincronizar", "TitleSync": "Sincronizar",
"OptionAutomatic": "Autom\u00e1tico", "OptionAutomatic": "Autom\u00e1tico",
"HeaderSelectDate": "Selecionar Data", "HeaderSelectDate": "Selecionar Data",
"ButtonDonate": "Donate",
"LabelRecurringDonationCanBeCancelledHelp": "Doa\u00e7\u00f5es recorrentes podem ser canceladas a qualquer momento dentro da sua conta do PayPal.", "LabelRecurringDonationCanBeCancelledHelp": "Doa\u00e7\u00f5es recorrentes podem ser canceladas a qualquer momento dentro da sua conta do PayPal.",
"HeaderMyMedia": "My Media", "HeaderMyMedia": "My Media",
"ButtonRemoveFromCollection": "Remove from Collection", "ButtonRemoveFromCollection": "Remove from Collection",
@ -51,11 +50,11 @@
"LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.",
"MessageErrorLoadingSupporterInfo": "There was an error loading supporter information. Please try again later.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
"MessageLinkYourSupporterKey": "Link your supporter key with up to {0} Emby Connect members to enjoy free access to the following apps:", "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:",
"HeaderConfirmRemoveUser": "Remove User", "HeaderConfirmRemoveUser": "Remove User",
"MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.", "MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.",
"MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional supporter benefits from this user?", "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?",
"ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitSingleHour": "Time limit: 1 hour",
"ValueTimeLimitMultiHour": "Time limit: {0} hours", "ValueTimeLimitMultiHour": "Time limit: {0} hours",
"HeaderUsers": "Utilizadores", "HeaderUsers": "Utilizadores",
@ -544,11 +543,8 @@
"MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)",
"MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.",
"ValuePriceUSD": "Price: {0} (USD)", "ValuePriceUSD": "Price: {0} (USD)",
"MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active supporter membership.", "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
"MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.",
"MessageSupporterMembershipExpiredOn": "Your supporter membership expired on {0}.",
"MessageYouHaveALifetimeMembership": "You have a lifetime supporter membership. You can provide additional donations on a one-time or recurring basis using the options below. Thank you for supporting Emby.",
"MessageYouHaveAnActiveRecurringMembership": "You have an active {0} membership. You can upgrade your plan using the options below.",
"ButtonDelete": "Remover", "ButtonDelete": "Remover",
"HeaderEmbyAccountAdded": "Emby Account Added", "HeaderEmbyAccountAdded": "Emby Account Added",
"MessageEmbyAccountAdded": "The Emby account has been added to this user.", "MessageEmbyAccountAdded": "The Emby account has been added to this user.",
@ -778,11 +774,10 @@
"TabScenes": "Scenes", "TabScenes": "Scenes",
"HeaderUnlockApp": "Unlock App", "HeaderUnlockApp": "Unlock App",
"MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.", "MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.",
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or with an active Emby Premiere subscription.",
"MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Premiere subscription.",
"MessageToValidateSupporter": "If you have an active Emby Supporter Membership, simply sign into the app using your Wifi connection within your home network.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app using your Wifi connection within your home network.",
"MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.",
"ButtonUnlockWithSupporter": "Sign in with Emby Supporter Membership",
"MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.",
"ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase",
"ButtonUnlockPrice": "Unlock {0}", "ButtonUnlockPrice": "Unlock {0}",
@ -826,14 +821,14 @@
"MessageCreateAccountAt": "Create an account at {0}", "MessageCreateAccountAt": "Create an account at {0}",
"ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.",
"HeaderTryCinemaMode": "Try Cinema Mode", "HeaderTryCinemaMode": "Try Cinema Mode",
"ButtonBecomeSupporter": "Become an Emby Supporter", "ButtonBecomeSupporter": "Get Emby Premiere",
"ButtonClosePlayVideo": "Close and play my media", "ButtonClosePlayVideo": "Close and play my media",
"MessageDidYouKnowCinemaMode": "Did you know that by becoming an Emby Supporter, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Supporter membership.", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Supporter membership.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Supporter information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"HeaderSync": "Sincroniza\u00e7\u00e3o", "HeaderSync": "Sincroniza\u00e7\u00e3o",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
"MessageSyncStarted": "Sync started", "MessageSyncStarted": "Sync started",
@ -893,5 +888,8 @@
"MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.",
"HeaderNextUp": "A Seguir", "HeaderNextUp": "A Seguir",
"HeaderLatestMovies": "\u00daltimos Filmes", "HeaderLatestMovies": "\u00daltimos Filmes",
"HeaderLatestEpisodes": "\u00daltimos Epis\u00f3dios" "HeaderLatestEpisodes": "\u00daltimos Epis\u00f3dios",
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
"HeaderEmailAddress": "E-Mail Address",
"TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address."
} }

View file

@ -33,17 +33,16 @@
"MessageKeyEmailedTo": "Key emailed to {0}.", "MessageKeyEmailedTo": "Key emailed to {0}.",
"MessageKeysLinked": "Keys linked.", "MessageKeysLinked": "Keys linked.",
"HeaderConfirmation": "Confirmation", "HeaderConfirmation": "Confirmation",
"MessageKeyUpdated": "Thank you. Your supporter key has been updated.", "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
"MessageKeyRemoved": "Thank you. Your supporter key has been removed.", "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"TextEnjoyBonusFeatures": "Bucura\u021bi-v\u0103 de caracteristicile Bonus", "TextEnjoyBonusFeatures": "Bucura\u021bi-v\u0103 de caracteristicile Bonus",
"TitleLiveTV": "Live TV", "TitleLiveTV": "Live TV",
"ButtonCancelSyncJob": "Cancel sync job", "ButtonCancelSyncJob": "Cancel sync",
"ButtonSelectView": "Select view", "ButtonSelectView": "Select view",
"TitleSync": "Sync", "TitleSync": "Sync",
"OptionAutomatic": "Auto", "OptionAutomatic": "Auto",
"HeaderSelectDate": "Select Date", "HeaderSelectDate": "Select Date",
"ButtonDonate": "Donate",
"LabelRecurringDonationCanBeCancelledHelp": "Dona\u021biile recurente pot fi anulate \u00een orice moment din contul dvs. PayPal.", "LabelRecurringDonationCanBeCancelledHelp": "Dona\u021biile recurente pot fi anulate \u00een orice moment din contul dvs. PayPal.",
"HeaderMyMedia": "My Media", "HeaderMyMedia": "My Media",
"ButtonRemoveFromCollection": "Remove from Collection", "ButtonRemoveFromCollection": "Remove from Collection",
@ -51,11 +50,11 @@
"LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:",
"TitleNotifications": "Notificari", "TitleNotifications": "Notificari",
"ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.",
"MessageErrorLoadingSupporterInfo": "There was an error loading supporter information. Please try again later.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
"MessageLinkYourSupporterKey": "Link your supporter key with up to {0} Emby Connect members to enjoy free access to the following apps:", "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:",
"HeaderConfirmRemoveUser": "Remove User", "HeaderConfirmRemoveUser": "Remove User",
"MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.", "MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.",
"MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional supporter benefits from this user?", "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?",
"ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitSingleHour": "Time limit: 1 hour",
"ValueTimeLimitMultiHour": "Time limit: {0} hours", "ValueTimeLimitMultiHour": "Time limit: {0} hours",
"HeaderUsers": "Utilizatori", "HeaderUsers": "Utilizatori",
@ -544,11 +543,8 @@
"MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)",
"MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.",
"ValuePriceUSD": "Price: {0} (USD)", "ValuePriceUSD": "Price: {0} (USD)",
"MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active supporter membership.", "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
"MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.",
"MessageSupporterMembershipExpiredOn": "Your supporter membership expired on {0}.",
"MessageYouHaveALifetimeMembership": "You have a lifetime supporter membership. You can provide additional donations on a one-time or recurring basis using the options below. Thank you for supporting Emby.",
"MessageYouHaveAnActiveRecurringMembership": "You have an active {0} membership. You can upgrade your plan using the options below.",
"ButtonDelete": "Delete", "ButtonDelete": "Delete",
"HeaderEmbyAccountAdded": "Emby Account Added", "HeaderEmbyAccountAdded": "Emby Account Added",
"MessageEmbyAccountAdded": "The Emby account has been added to this user.", "MessageEmbyAccountAdded": "The Emby account has been added to this user.",
@ -778,11 +774,10 @@
"TabScenes": "Scenes", "TabScenes": "Scenes",
"HeaderUnlockApp": "Unlock App", "HeaderUnlockApp": "Unlock App",
"MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.", "MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.",
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or with an active Emby Premiere subscription.",
"MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Premiere subscription.",
"MessageToValidateSupporter": "If you have an active Emby Supporter Membership, simply sign into the app using your Wifi connection within your home network.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app using your Wifi connection within your home network.",
"MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.",
"ButtonUnlockWithSupporter": "Sign in with Emby Supporter Membership",
"MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.",
"ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase",
"ButtonUnlockPrice": "Unlock {0}", "ButtonUnlockPrice": "Unlock {0}",
@ -826,14 +821,14 @@
"MessageCreateAccountAt": "Create an account at {0}", "MessageCreateAccountAt": "Create an account at {0}",
"ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.",
"HeaderTryCinemaMode": "Try Cinema Mode", "HeaderTryCinemaMode": "Try Cinema Mode",
"ButtonBecomeSupporter": "Become an Emby Supporter", "ButtonBecomeSupporter": "Get Emby Premiere",
"ButtonClosePlayVideo": "Close and play my media", "ButtonClosePlayVideo": "Close and play my media",
"MessageDidYouKnowCinemaMode": "Did you know that by becoming an Emby Supporter, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Supporter membership.", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Supporter membership.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Supporter information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"HeaderSync": "Sincronizeaza", "HeaderSync": "Sincronizeaza",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
"MessageSyncStarted": "Sync started", "MessageSyncStarted": "Sync started",
@ -893,5 +888,8 @@
"MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.",
"HeaderNextUp": "Urmeaza", "HeaderNextUp": "Urmeaza",
"HeaderLatestMovies": "Cele mai noi Filme", "HeaderLatestMovies": "Cele mai noi Filme",
"HeaderLatestEpisodes": "Cele mai noi Episoade" "HeaderLatestEpisodes": "Cele mai noi Episoade",
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
"HeaderEmailAddress": "E-Mail Address",
"TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address."
} }

View file

@ -33,17 +33,16 @@
"MessageKeyEmailedTo": "\u041a\u043b\u044e\u0447 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d \u043d\u0430 {0}.", "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.", "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", "HeaderConfirmation": "\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435",
"MessageKeyUpdated": "\u041a\u043b\u044e\u0447 \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430 \u0431\u044b\u043b \u043e\u0431\u043d\u043e\u0432\u043b\u0451\u043d.", "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
"MessageKeyRemoved": "\u041a\u043b\u044e\u0447 \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430 \u0431\u044b\u043b \u0443\u0434\u0430\u043b\u0451\u043d.", "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
"HeaderSupportTheTeam": "\u041f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0442\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u0443 Emby", "HeaderSupportTheTeam": "\u041f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0442\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u0443 Emby",
"TextEnjoyBonusFeatures": "\u041f\u0440\u0438\u043e\u0431\u0440\u0435\u0442\u0438\u0442\u0435 \u0431\u043e\u043d\u0443\u0441\u043d\u044b\u0435 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", "TextEnjoyBonusFeatures": "\u041f\u0440\u0438\u043e\u0431\u0440\u0435\u0442\u0438\u0442\u0435 \u0431\u043e\u043d\u0443\u0441\u043d\u044b\u0435 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b",
"TitleLiveTV": "\u042d\u0444\u0438\u0440", "TitleLiveTV": "\u042d\u0444\u0438\u0440",
"ButtonCancelSyncJob": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044e", "ButtonCancelSyncJob": "Cancel sync",
"ButtonSelectView": "\u0412\u044b\u0431\u0440\u0430\u0442\u044c \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435", "ButtonSelectView": "\u0412\u044b\u0431\u0440\u0430\u0442\u044c \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435",
"TitleSync": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f", "TitleSync": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f",
"OptionAutomatic": "\u0410\u0432\u0442\u043e", "OptionAutomatic": "\u0410\u0432\u0442\u043e",
"HeaderSelectDate": "\u0412\u044b\u0431\u043e\u0440 \u0434\u0430\u0442\u044b", "HeaderSelectDate": "\u0412\u044b\u0431\u043e\u0440 \u0434\u0430\u0442\u044b",
"ButtonDonate": "\u041f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u0442\u044c",
"LabelRecurringDonationCanBeCancelledHelp": "\u0420\u0435\u0433\u0443\u043b\u044f\u0440\u043d\u044b\u0435 \u043f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0432 \u043b\u044e\u0431\u043e\u0435 \u0432\u0440\u0435\u043c\u044f \u0447\u0435\u0440\u0435\u0437 \u0432\u0430\u0448\u0443 \u0443\u0447\u0451\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c PayPal.", "LabelRecurringDonationCanBeCancelledHelp": "\u0420\u0435\u0433\u0443\u043b\u044f\u0440\u043d\u044b\u0435 \u043f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0432 \u043b\u044e\u0431\u043e\u0435 \u0432\u0440\u0435\u043c\u044f \u0447\u0435\u0440\u0435\u0437 \u0432\u0430\u0448\u0443 \u0443\u0447\u0451\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c PayPal.",
"HeaderMyMedia": "\u041c\u043e\u0438 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435", "HeaderMyMedia": "\u041c\u043e\u0438 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435",
"ButtonRemoveFromCollection": "\u0418\u0437\u044a\u044f\u0442\u044c \u0438\u0437 \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438", "ButtonRemoveFromCollection": "\u0418\u0437\u044a\u044f\u0442\u044c \u0438\u0437 \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438",
@ -51,11 +50,11 @@
"LabelAutomaticUpdateLevelForPlugins": "\u0421\u0442\u0435\u043f\u0435\u043d\u044c \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u043f\u043b\u0430\u0433\u0438\u043d\u043e\u0432:", "LabelAutomaticUpdateLevelForPlugins": "\u0421\u0442\u0435\u043f\u0435\u043d\u044c \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u043f\u043b\u0430\u0433\u0438\u043d\u043e\u0432:",
"TitleNotifications": "\u0423\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f", "TitleNotifications": "\u0423\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f",
"ErrorLaunchingChromecast": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0437\u0430\u043f\u0443\u0441\u043a\u0435 Chromecast. \u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0432\u0430\u0448\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u043e \u043a \u0431\u0435\u0441\u043f\u0440\u043e\u0432\u043e\u0434\u043d\u043e\u0439 \u0441\u0435\u0442\u0438.", "ErrorLaunchingChromecast": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0437\u0430\u043f\u0443\u0441\u043a\u0435 Chromecast. \u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0432\u0430\u0448\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u043e \u043a \u0431\u0435\u0441\u043f\u0440\u043e\u0432\u043e\u0434\u043d\u043e\u0439 \u0441\u0435\u0442\u0438.",
"MessageErrorLoadingSupporterInfo": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u043e \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0435. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443 \u043f\u043e\u0437\u0436\u0435.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
"MessageLinkYourSupporterKey": "\u0421\u0432\u044f\u0436\u0438\u0442\u0435 \u0432\u0430\u0448 \u043a\u043b\u044e\u0447 \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430 \u0441\u043e \u0432\u043f\u043b\u043e\u0442\u044c \u0434\u043e {0} \u0447\u043b\u0435\u043d\u043e\u0432 Emby Connect, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u0431\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u044b\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u043a\u043e \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u043c \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u043c:", "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:",
"HeaderConfirmRemoveUser": "\u0418\u0437\u044a\u044f\u0442\u0438\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f", "HeaderConfirmRemoveUser": "\u0418\u0437\u044a\u044f\u0442\u0438\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f",
"MessageSwipeDownOnRemoteControl": "\u041d\u0430\u0447\u0430\u043b\u043e \u0440\u0430\u0431\u043e\u0442\u044b \u0441 \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u044b\u043c \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435\u043c. \u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0435\u043c\u043e\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e, \u043d\u0430\u0436\u0430\u0432 \u043d\u0430 \u0437\u043d\u0430\u0447\u043e\u043a \u0432\u0435\u0449\u0430\u043d\u0438\u044f \u0432 \u043f\u0440\u0430\u0432\u043e\u043c \u0432\u0435\u0440\u0445\u043d\u0435\u043c \u0443\u0433\u043b\u0443. \u041f\u0440\u043e\u0432\u0435\u0434\u0438\u0442\u0435 \u0432\u043d\u0438\u0437 \u0432 \u043b\u044e\u0431\u043e\u043c \u043c\u0435\u0441\u0442\u0435 \u043d\u0430 \u0434\u0430\u043d\u043d\u043e\u043c \u044d\u043a\u0440\u0430\u043d\u0435, \u0447\u0442\u043e\u0431\u044b \u0432\u0435\u0440\u043d\u0443\u0442\u044c\u0441\u044f \u0442\u0443\u0434\u0430, \u043e\u0442\u043a\u0443\u0434\u0430 \u0432\u044b \u043f\u0440\u0438\u0448\u043b\u0438.", "MessageSwipeDownOnRemoteControl": "\u041d\u0430\u0447\u0430\u043b\u043e \u0440\u0430\u0431\u043e\u0442\u044b \u0441 \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u044b\u043c \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435\u043c. \u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0435\u043c\u043e\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e, \u043d\u0430\u0436\u0430\u0432 \u043d\u0430 \u0437\u043d\u0430\u0447\u043e\u043a \u0432\u0435\u0449\u0430\u043d\u0438\u044f \u0432 \u043f\u0440\u0430\u0432\u043e\u043c \u0432\u0435\u0440\u0445\u043d\u0435\u043c \u0443\u0433\u043b\u0443. \u041f\u0440\u043e\u0432\u0435\u0434\u0438\u0442\u0435 \u0432\u043d\u0438\u0437 \u0432 \u043b\u044e\u0431\u043e\u043c \u043c\u0435\u0441\u0442\u0435 \u043d\u0430 \u0434\u0430\u043d\u043d\u043e\u043c \u044d\u043a\u0440\u0430\u043d\u0435, \u0447\u0442\u043e\u0431\u044b \u0432\u0435\u0440\u043d\u0443\u0442\u044c\u0441\u044f \u0442\u0443\u0434\u0430, \u043e\u0442\u043a\u0443\u0434\u0430 \u0432\u044b \u043f\u0440\u0438\u0448\u043b\u0438.",
"MessageConfirmRemoveConnectSupporter": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0438\u0437\u044a\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u043f\u0440\u0435\u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0430 \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430 \u0443 \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f?", "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?",
"ValueTimeLimitSingleHour": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435 \u043f\u043e \u0432\u0440\u0435\u043c\u0435\u043d\u0438: 1 \u0447\u0430\u0441", "ValueTimeLimitSingleHour": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435 \u043f\u043e \u0432\u0440\u0435\u043c\u0435\u043d\u0438: 1 \u0447\u0430\u0441",
"ValueTimeLimitMultiHour": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435 \u0432\u0440\u0435\u043c\u0435\u043d\u0438: {0} \u0447\u0430\u0441(\u0430\/\u043e\u0432)", "ValueTimeLimitMultiHour": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435 \u0432\u0440\u0435\u043c\u0435\u043d\u0438: {0} \u0447\u0430\u0441(\u0430\/\u043e\u0432)",
"HeaderUsers": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438", "HeaderUsers": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438",
@ -73,7 +72,7 @@
"ValueDateCreated": "\u0414\u0430\u0442\u0430 \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f: {0}", "ValueDateCreated": "\u0414\u0430\u0442\u0430 \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f: {0}",
"LabelArtist": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c", "LabelArtist": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c",
"LabelMovie": "\u0424\u0438\u043b\u044c\u043c", "LabelMovie": "\u0424\u0438\u043b\u044c\u043c",
"LabelMusicVideo": "\u041c\u0443\u0437\u044b\u043a\u0430\u043b\u044c\u043d\u043e\u0435 \u0432\u0438\u0434\u0435\u043e", "LabelMusicVideo": "\u041c\u0443\u0437. \u0432\u0438\u0434\u0435\u043e",
"LabelEpisode": "\u042d\u043f\u0438\u0437\u043e\u0434", "LabelEpisode": "\u042d\u043f\u0438\u0437\u043e\u0434",
"LabelSeries": "\u0421\u0435\u0440\u0438\u0430\u043b", "LabelSeries": "\u0421\u0435\u0440\u0438\u0430\u043b",
"LabelStopping": "\u041e\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430", "LabelStopping": "\u041e\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430",
@ -312,7 +311,7 @@
"HeaderTime": "\u0412\u0440\u0435\u043c\u044f", "HeaderTime": "\u0412\u0440\u0435\u043c\u044f",
"HeaderName": "\u0418\u043c\u044f (\u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435)", "HeaderName": "\u0418\u043c\u044f (\u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435)",
"HeaderAlbum": "\u0410\u043b\u044c\u0431\u043e\u043c", "HeaderAlbum": "\u0410\u043b\u044c\u0431\u043e\u043c",
"HeaderAlbumArtist": "\u0418\u0441\u043f-\u043b\u044c \u0430\u043b\u044c\u0431\u043e\u043c\u0430", "HeaderAlbumArtist": "\u0418\u0441\u043f. \u0430\u043b\u044c\u0431\u043e\u043c\u0430",
"HeaderArtist": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c", "HeaderArtist": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c",
"LabelAddedOnDate": "\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u043e {0}", "LabelAddedOnDate": "\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u043e {0}",
"ButtonStart": "\u0417\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c", "ButtonStart": "\u0417\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c",
@ -393,7 +392,7 @@
"MessagePleaseRefreshPage": "\u041f\u043e\u0434\u043d\u043e\u0432\u0438\u0442\u0435 \u0434\u0430\u043d\u043d\u0443\u044e \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u043d\u043e\u0432\u044b\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f c \u0441\u0435\u0440\u0432\u0435\u0440\u0430.", "MessagePleaseRefreshPage": "\u041f\u043e\u0434\u043d\u043e\u0432\u0438\u0442\u0435 \u0434\u0430\u043d\u043d\u0443\u044e \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u043d\u043e\u0432\u044b\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f c \u0441\u0435\u0440\u0432\u0435\u0440\u0430.",
"ButtonHide": "\u0421\u043a\u0440\u044b\u0442\u044c", "ButtonHide": "\u0421\u043a\u0440\u044b\u0442\u044c",
"MessageSettingsSaved": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u044b.", "MessageSettingsSaved": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u044b.",
"ButtonSignOut": "Sign Out", "ButtonSignOut": "\u0412\u044b\u0439\u0442\u0438",
"ButtonMyProfile": "\u041c\u043e\u0439 \u043f\u0440\u043e\u0444\u0438\u043b\u044c...", "ButtonMyProfile": "\u041c\u043e\u0439 \u043f\u0440\u043e\u0444\u0438\u043b\u044c...",
"ButtonMyPreferences": "\u041c\u043e\u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438...", "ButtonMyPreferences": "\u041c\u043e\u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438...",
"MessageBrowserDoesNotSupportWebSockets": "\u0412 \u0434\u0430\u043d\u043d\u043e\u043c \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0435 \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430 \u0432\u0435\u0431-\u0441\u043e\u043a\u0435\u0442\u043e\u0432. \u0414\u043b\u044f \u043b\u0443\u0447\u0448\u0435\u0433\u043e \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443 \u0441 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u043e\u043c \u043f\u043e\u043d\u043e\u0432\u0435\u0435, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, Chrome, Firefox, IE10+, Safari (iOS) \u0438\u043b\u0438 Opera.", "MessageBrowserDoesNotSupportWebSockets": "\u0412 \u0434\u0430\u043d\u043d\u043e\u043c \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0435 \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430 \u0432\u0435\u0431-\u0441\u043e\u043a\u0435\u0442\u043e\u0432. \u0414\u043b\u044f \u043b\u0443\u0447\u0448\u0435\u0433\u043e \u0432\u0437\u0430\u0438\u043c\u043e\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443 \u0441 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u043e\u043c \u043f\u043e\u043d\u043e\u0432\u0435\u0435, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, Chrome, Firefox, IE10+, Safari (iOS) \u0438\u043b\u0438 Opera.",
@ -462,11 +461,11 @@
"OptionEpisodes": "\u0422\u0412-\u044d\u043f\u0438\u0437\u043e\u0434\u044b", "OptionEpisodes": "\u0422\u0412-\u044d\u043f\u0438\u0437\u043e\u0434\u044b",
"OptionGames": "\u0418\u0433\u0440\u044b", "OptionGames": "\u0418\u0433\u0440\u044b",
"OptionGameSystems": "\u0418\u0433\u0440\u043e\u0432\u044b\u0435 \u0441\u0438\u0441\u0442\u0435\u043c\u044b", "OptionGameSystems": "\u0418\u0433\u0440\u043e\u0432\u044b\u0435 \u0441\u0438\u0441\u0442\u0435\u043c\u044b",
"OptionMusicArtists": "\u041c\u0443\u0437\u044b\u043a\u0430\u043b\u044c\u043d\u044b\u0435 \u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438", "OptionMusicArtists": "\u0418\u0441\u043f-\u043b\u0438 \u043c\u0443\u0437\u044b\u043a\u0438",
"OptionMusicAlbums": "\u041c\u0443\u0437\u044b\u043a\u0430\u043b\u044c\u043d\u044b\u0435 \u0430\u043b\u044c\u0431\u043e\u043c\u044b", "OptionMusicAlbums": "\u041c\u0443\u0437-\u044b\u0435 \u0430\u043b\u044c\u0431\u043e\u043c\u044b",
"OptionMusicVideos": "\u041c\u0443\u0437\u044b\u043a\u0430\u043b\u044c\u043d\u044b\u0435 \u0432\u0438\u0434\u0435\u043e", "OptionMusicVideos": "\u041c\u0443\u0437-\u044b\u0435 \u0432\u0438\u0434\u0435\u043e",
"OptionSongs": "\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438", "OptionSongs": "\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438",
"OptionHomeVideos": "\u0414\u043e\u043c\u0430\u0448\u043d\u0438\u0435 \u0432\u0438\u0434\u0435\u043e", "OptionHomeVideos": "\u0414\u043e\u043c-\u0438\u0435 \u0432\u0438\u0434\u0435\u043e",
"OptionBooks": "\u041a\u043d\u0438\u0433\u0438", "OptionBooks": "\u041a\u043d\u0438\u0433\u0438",
"OptionAdultVideos": "\u0412\u0437\u0440\u043e\u0441\u043b\u044b\u0435 \u0432\u0438\u0434\u0435\u043e", "OptionAdultVideos": "\u0412\u0437\u0440\u043e\u0441\u043b\u044b\u0435 \u0432\u0438\u0434\u0435\u043e",
"ButtonUp": "\u0412\u0432\u0435\u0440\u0445", "ButtonUp": "\u0412\u0432\u0435\u0440\u0445",
@ -519,8 +518,8 @@
"FolderTypeMusic": "\u041c\u0443\u0437\u044b\u043a\u0430", "FolderTypeMusic": "\u041c\u0443\u0437\u044b\u043a\u0430",
"FolderTypeAdultVideos": "\u0412\u0437\u0440\u043e\u0441\u043b\u044b\u0435 \u0432\u0438\u0434\u0435\u043e", "FolderTypeAdultVideos": "\u0412\u0437\u0440\u043e\u0441\u043b\u044b\u0435 \u0432\u0438\u0434\u0435\u043e",
"FolderTypePhotos": "\u0424\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438", "FolderTypePhotos": "\u0424\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438",
"FolderTypeMusicVideos": "\u041c\u0443\u0437\u044b\u043a\u0430\u043b\u044c\u043d\u044b\u0435 \u0432\u0438\u0434\u0435\u043e", "FolderTypeMusicVideos": "\u041c\u0443\u0437-\u044b\u0435 \u0432\u0438\u0434\u0435\u043e",
"FolderTypeHomeVideos": "\u0414\u043e\u043c\u0430\u0448\u043d\u0438\u0435 \u0432\u0438\u0434\u0435\u043e", "FolderTypeHomeVideos": "\u0414\u043e\u043c-\u0438\u0435 \u0432\u0438\u0434\u0435\u043e",
"FolderTypeGames": "\u0418\u0433\u0440\u044b", "FolderTypeGames": "\u0418\u0433\u0440\u044b",
"FolderTypeBooks": "\u041a\u043d\u0438\u0433\u0438", "FolderTypeBooks": "\u041a\u043d\u0438\u0433\u0438",
"FolderTypeTvShows": "\u0422\u0412", "FolderTypeTvShows": "\u0422\u0412",
@ -531,7 +530,7 @@
"TabGames": "\u0418\u0433\u0440\u044b", "TabGames": "\u0418\u0433\u0440\u044b",
"TabAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u044b", "TabAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u044b",
"TabSongs": "\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438", "TabSongs": "\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438",
"TabMusicVideos": "\u041c\u0443\u0437. \u0432\u0438\u0434\u0435\u043e", "TabMusicVideos": "\u041c\u0443\u0437-\u044b\u0435 \u0432\u0438\u0434\u0435\u043e",
"BirthPlaceValue": "\u041c\u0435\u0441\u0442\u043e \u0440\u043e\u0436\u0434\u0435\u043d\u0438\u044f: {0}", "BirthPlaceValue": "\u041c\u0435\u0441\u0442\u043e \u0440\u043e\u0436\u0434\u0435\u043d\u0438\u044f: {0}",
"DeathDateValue": "\u041a\u043e\u043d\u0447\u0438\u043d\u0430: {0}", "DeathDateValue": "\u041a\u043e\u043d\u0447\u0438\u043d\u0430: {0}",
"BirthDateValue": "\u0420\u043e\u0436\u0434\u0435\u043d\u0438\u0435: {0}", "BirthDateValue": "\u0420\u043e\u0436\u0434\u0435\u043d\u0438\u0435: {0}",
@ -544,11 +543,8 @@
"MessageTrialWillExpireIn": "\u041f\u0440\u043e\u0431\u043d\u044b\u0439 \u043f\u0435\u0440\u0438\u043e\u0434 \u0434\u043b\u044f \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430 \u0438\u0441\u0442\u0435\u0447\u0451\u0442 \u0447\u0435\u0440\u0435\u0437 {0} \u0434\u043d(\u044f\/\u0435\u0439)", "MessageTrialWillExpireIn": "\u041f\u0440\u043e\u0431\u043d\u044b\u0439 \u043f\u0435\u0440\u0438\u043e\u0434 \u0434\u043b\u044f \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430 \u0438\u0441\u0442\u0435\u0447\u0451\u0442 \u0447\u0435\u0440\u0435\u0437 {0} \u0434\u043d(\u044f\/\u0435\u0439)",
"MessageInstallPluginFromApp": "\u0414\u0430\u043d\u043d\u044b\u0439 \u043f\u043b\u0430\u0433\u0438\u043d \u0434\u043e\u043b\u0436\u0435\u043d \u0443\u0441\u0442\u0430\u043d\u0430\u0432\u043b\u0438\u0432\u0430\u0442\u044c\u0441\u044f \u0438\u0437\u043d\u0443\u0442\u0440\u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u0434\u043b\u044f \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043e\u043d\u043e \u043f\u0440\u0435\u0434\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043e.", "MessageInstallPluginFromApp": "\u0414\u0430\u043d\u043d\u044b\u0439 \u043f\u043b\u0430\u0433\u0438\u043d \u0434\u043e\u043b\u0436\u0435\u043d \u0443\u0441\u0442\u0430\u043d\u0430\u0432\u043b\u0438\u0432\u0430\u0442\u044c\u0441\u044f \u0438\u0437\u043d\u0443\u0442\u0440\u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u0434\u043b\u044f \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043e\u043d\u043e \u043f\u0440\u0435\u0434\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043e.",
"ValuePriceUSD": "\u0426\u0435\u043d\u0430: {0} USD", "ValuePriceUSD": "\u0426\u0435\u043d\u0430: {0} USD",
"MessageFeatureIncludedWithSupporter": "\u0423 \u0432\u0430\u0441 \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u044f \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430, \u0438 \u0431\u0443\u0434\u0435\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0430\u0442\u044c \u0435\u0451 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u0441 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c \u0447\u043b\u0435\u043d\u0441\u0442\u0432\u043e\u043c \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430.", "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
"MessageChangeRecurringPlanConfirm": "\u041f\u043e\u0441\u043b\u0435 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f \u0434\u0430\u043d\u043d\u043e\u0439 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438, \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0432\u0430\u0448\u0435 \u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0435\u0435 \u0440\u0435\u0433\u0443\u043b\u044f\u0440\u043d\u043e\u0435 \u043f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u0435 \u0438\u0437\u043d\u0443\u0442\u0440\u0438 \u0443\u0447\u0451\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438 PayPal. \u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u0438\u043c \u0432\u0430\u0441 \u0437\u0430 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 Emby.", "MessageChangeRecurringPlanConfirm": "\u041f\u043e\u0441\u043b\u0435 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f \u0434\u0430\u043d\u043d\u043e\u0439 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438, \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0432\u0430\u0448\u0435 \u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0435\u0435 \u0440\u0435\u0433\u0443\u043b\u044f\u0440\u043d\u043e\u0435 \u043f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u0435 \u0438\u0437\u043d\u0443\u0442\u0440\u0438 \u0443\u0447\u0451\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438 PayPal. \u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u0438\u043c \u0432\u0430\u0441 \u0437\u0430 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 Emby.",
"MessageSupporterMembershipExpiredOn": "\u0412\u0430\u0448\u0435 \u0447\u043b\u0435\u043d\u0441\u0442\u0432\u043e \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430 \u0438\u0441\u0442\u0435\u043a\u043b\u043e {0}.",
"MessageYouHaveALifetimeMembership": "\u0423 \u0432\u0430\u0441 \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u043f\u043e\u0436\u0438\u0437\u043d\u0435\u043d\u043d\u043e\u0435 \u0447\u043b\u0435\u043d\u0441\u0442\u0432\u043e \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430. \u0412\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0434\u0435\u043b\u0430\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u043f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u0435\u0434\u0438\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0438\u043b\u0438 \u043d\u0430 \u0440\u0435\u0433\u0443\u043b\u044f\u0440\u043d\u043e\u0439 \u043e\u0441\u043d\u043e\u0432\u0435, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044f \u043d\u0438\u0436\u0435\u0443\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0435 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438. \u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u0438\u043c \u0432\u0430\u0441 \u0437\u0430 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 Emby.",
"MessageYouHaveAnActiveRecurringMembership": "\u0423 \u0432\u0430\u0441 \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 {0} \u0447\u043b\u0435\u043d\u0441\u0442\u0432\u043e. \u0412\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0441\u0442\u0438 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u0432\u043e\u0435\u0433\u043e \u0433\u0440\u0430\u0444\u0438\u043a\u0430 \u043f\u043b\u0430\u0442\u0435\u0436\u0435\u0439 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043d\u0438\u0436\u0435\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0445 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0435\u0439.",
"ButtonDelete": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c", "ButtonDelete": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c",
"HeaderEmbyAccountAdded": "\u0423\u0447\u0451\u0442\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c Emby \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0430", "HeaderEmbyAccountAdded": "\u0423\u0447\u0451\u0442\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c Emby \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0430",
"MessageEmbyAccountAdded": "\u0423\u0447\u0451\u0442\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c Emby \u0431\u044b\u043b\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0430 \u0434\u043b\u044f \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f", "MessageEmbyAccountAdded": "\u0423\u0447\u0451\u0442\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c Emby \u0431\u044b\u043b\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0430 \u0434\u043b\u044f \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f",
@ -778,11 +774,10 @@
"TabScenes": "\u0421\u0446\u0435\u043d\u044b", "TabScenes": "\u0421\u0446\u0435\u043d\u044b",
"HeaderUnlockApp": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435", "HeaderUnlockApp": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435",
"MessageUnlockAppWithPurchase": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u0443\u044e\u0442\u0441\u044f \u043f\u043e\u043b\u043d\u044b\u0435 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u043e\u043c \u043d\u0435\u0431\u043e\u043b\u044c\u0448\u043e\u0439 \u043e\u0434\u043d\u043e\u043a\u0440\u0430\u0442\u043d\u043e\u0439 \u043e\u043f\u043b\u0430\u0442\u044b.", "MessageUnlockAppWithPurchase": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u0443\u044e\u0442\u0441\u044f \u043f\u043e\u043b\u043d\u044b\u0435 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u043e\u043c \u043d\u0435\u0431\u043e\u043b\u044c\u0448\u043e\u0439 \u043e\u0434\u043d\u043e\u043a\u0440\u0430\u0442\u043d\u043e\u0439 \u043e\u043f\u043b\u0430\u0442\u044b.",
"MessageUnlockAppWithPurchaseOrSupporter": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u0443\u044e\u0442\u0441\u044f \u043f\u043e\u043b\u043d\u044b\u0435 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u043e\u043c \u043d\u0435\u0431\u043e\u043b\u044c\u0448\u043e\u0439 \u043e\u0434\u043d\u043e\u043a\u0440\u0430\u0442\u043d\u043e\u0439 \u043e\u043f\u043b\u0430\u0442\u044b \u0438\u043b\u0438 \u043f\u0440\u0438 \u0432\u0445\u043e\u0434\u0435 \u0441 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c \u0447\u043b\u0435\u043d\u0441\u0442\u0432\u043e\u043c \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430.", "MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or with an active Emby Premiere subscription.",
"MessageUnlockAppWithSupporter": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u0443\u044e\u0442\u0441\u044f \u043f\u043e\u043b\u043d\u044b\u0435 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043f\u0440\u0438 \u0432\u0445\u043e\u0434\u0435 \u0441 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c \u0447\u043b\u0435\u043d\u0441\u0442\u0432\u043e\u043c \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430.", "MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Premiere subscription.",
"MessageToValidateSupporter": "\u0415\u0441\u043b\u0438 \u0443 \u0432\u0430\u0441 \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u0447\u043b\u0435\u043d\u0441\u0442\u0432\u043e \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430, \u043f\u0440\u043e\u0441\u0442\u043e \u0432\u043e\u0439\u0434\u0438\u0442\u0435 \u0432 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044f WiFi-\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 \u0432 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0435\u0442\u0438.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app using your Wifi connection within your home network.",
"MessagePaymentServicesUnavailable": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u0441\u043b\u0443\u0436\u0431\u0430 \u043e\u043f\u043b\u0430\u0442\u044b \u043d\u0435\u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443 \u043f\u043e\u0437\u0436\u0435.", "MessagePaymentServicesUnavailable": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u0441\u043b\u0443\u0436\u0431\u0430 \u043e\u043f\u043b\u0430\u0442\u044b \u043d\u0435\u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443 \u043f\u043e\u0437\u0436\u0435.",
"ButtonUnlockWithSupporter": "\u0412\u043e\u0439\u0442\u0438 \u0441 \u0447\u043b\u0435\u043d\u0441\u0442\u0432\u043e\u043c \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430 Emby",
"MessagePleaseSignInLocalNetwork": "\u041f\u0440\u0435\u0436\u0434\u0435 \u0447\u0435\u043c \u043f\u0440\u0438\u0441\u0442\u0443\u043f\u0438\u0442\u044c, \u0443\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0432\u044b \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u044b \u043a \u0432\u0430\u0448\u0435\u0439 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u043e\u0439 \u0441\u0435\u0442\u0438 \u0447\u0435\u0440\u0435\u0437 Wifi- \u0438\u043b\u0438 LAN-\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435.", "MessagePleaseSignInLocalNetwork": "\u041f\u0440\u0435\u0436\u0434\u0435 \u0447\u0435\u043c \u043f\u0440\u0438\u0441\u0442\u0443\u043f\u0438\u0442\u044c, \u0443\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0432\u044b \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u044b \u043a \u0432\u0430\u0448\u0435\u0439 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u043e\u0439 \u0441\u0435\u0442\u0438 \u0447\u0435\u0440\u0435\u0437 Wifi- \u0438\u043b\u0438 LAN-\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435.",
"ButtonUnlockWithPurchase": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u043e\u043c \u043e\u043f\u043b\u0430\u0442\u044b", "ButtonUnlockWithPurchase": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u043e\u043c \u043e\u043f\u043b\u0430\u0442\u044b",
"ButtonUnlockPrice": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c {0}", "ButtonUnlockPrice": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c {0}",
@ -826,14 +821,14 @@
"MessageCreateAccountAt": "\u0421\u043e\u0437\u0434\u0430\u0439\u0442\u0435 \u0443\u0447\u0451\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c \u043d\u0430 {0}", "MessageCreateAccountAt": "\u0421\u043e\u0437\u0434\u0430\u0439\u0442\u0435 \u0443\u0447\u0451\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c \u043d\u0430 {0}",
"ErrorPleaseSelectLineup": "\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0441\u043f\u0438\u0441\u043e\u043a \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443. \u0415\u0441\u043b\u0438 \u0441\u043f\u0438\u0441\u043a\u0438 \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043d\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b, \u0442\u043e \u043f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435, \u0447\u0442\u043e \u0432\u0430\u0448\u0435 \u0438\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f, \u043f\u0430\u0440\u043e\u043b\u044c \u0438 \u043f\u043e\u0447\u0442\u043e\u0432\u044b\u0439 \u043a\u043e\u0434 \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0432\u0435\u0440\u043d\u044b\u043c\u0438.", "ErrorPleaseSelectLineup": "\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0441\u043f\u0438\u0441\u043e\u043a \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443. \u0415\u0441\u043b\u0438 \u0441\u043f\u0438\u0441\u043a\u0438 \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043d\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b, \u0442\u043e \u043f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435, \u0447\u0442\u043e \u0432\u0430\u0448\u0435 \u0438\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f, \u043f\u0430\u0440\u043e\u043b\u044c \u0438 \u043f\u043e\u0447\u0442\u043e\u0432\u044b\u0439 \u043a\u043e\u0434 \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0432\u0435\u0440\u043d\u044b\u043c\u0438.",
"HeaderTryCinemaMode": "\u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0440\u0435\u0436\u0438\u043c \u043a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440\u0430", "HeaderTryCinemaMode": "\u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0440\u0435\u0436\u0438\u043c \u043a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440\u0430",
"ButtonBecomeSupporter": "\u0421\u0442\u0430\u043d\u044c\u0442\u0435 \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u043e\u043c Emby", "ButtonBecomeSupporter": "Get Emby Premiere",
"ButtonClosePlayVideo": "\u0417\u0430\u043a\u0440\u044b\u0442\u044c \u0438 \u0432\u043e\u0441\u043f\u0440. \u043c\u043e\u0438 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435", "ButtonClosePlayVideo": "\u0417\u0430\u043a\u0440\u044b\u0442\u044c \u0438 \u0432\u043e\u0441\u043f\u0440. \u043c\u043e\u0438 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435",
"MessageDidYouKnowCinemaMode": "\u0417\u043d\u0430\u0435\u0442\u0435 \u043b\u0438 \u0432\u044b, \u0447\u0442\u043e \u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0441\u044c \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u043e\u043c Emby, \u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0443\u0441\u0438\u043b\u0438\u0442\u044c \u0441\u0432\u043e\u0438 \u043e\u0449\u0443\u0449\u0435\u043d\u0438\u044f \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044f\u043c\u0438, \u043f\u043e\u0434\u043e\u0431\u043d\u044b\u043c\u0438 \u0440\u0435\u0436\u0438\u043c\u0443 \u043a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440\u0430?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "\u0420\u0435\u0436\u0438\u043c \u043a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440\u0430 \u0434\u0430\u0441\u0442 \u0432\u0430\u043c \u043e\u0449\u0443\u0449\u0435\u043d\u0438\u0435 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0433\u043e \u043a\u0438\u043d\u043e \u0441 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u0430\u043c\u0438 \u0438 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u043c\u0438 \u0437\u0430\u0441\u0442\u0430\u0432\u043a\u0430\u043c\u0438 \u043f\u0435\u0440\u0435\u0434 \u043e\u0441\u043d\u043e\u0432\u043d\u044b\u043c \u0444\u0438\u043b\u044c\u043c\u043e\u043c.", "MessageDidYouKnowCinemaMode2": "\u0420\u0435\u0436\u0438\u043c \u043a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440\u0430 \u0434\u0430\u0441\u0442 \u0432\u0430\u043c \u043e\u0449\u0443\u0449\u0435\u043d\u0438\u0435 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0433\u043e \u043a\u0438\u043d\u043e \u0441 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u0430\u043c\u0438 \u0438 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u043c\u0438 \u0437\u0430\u0441\u0442\u0430\u0432\u043a\u0430\u043c\u0438 \u043f\u0435\u0440\u0435\u0434 \u043e\u0441\u043d\u043e\u0432\u043d\u044b\u043c \u0444\u0438\u043b\u044c\u043c\u043e\u043c.",
"OptionEnableDisplayMirroring": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u0443\u0431\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f", "OptionEnableDisplayMirroring": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u0443\u0431\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f",
"HeaderSyncRequiresSupporterMembership": "\u0414\u043b\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u0447\u043b\u0435\u043d\u0441\u0442\u0432\u043e \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430 Emby", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderSyncRequiresSupporterMembershipAppVersion": "\u0414\u043b\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u043a Emby Server \u0441 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c \u0447\u043b\u0435\u043d\u0441\u0442\u0432\u043e\u043c \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 \u0432\u0430\u0448\u0435\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u043e \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0435 Emby. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443 \u043f\u043e\u0437\u0436\u0435.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"HeaderSync": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f", "HeaderSync": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f",
"LabelLocalSyncStatusValue": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435: {0}", "LabelLocalSyncStatusValue": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435: {0}",
"MessageSyncStarted": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u0430", "MessageSyncStarted": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u0430",
@ -862,7 +857,7 @@
"OptionDateAdded": "\u0414\u0430\u0442\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f", "OptionDateAdded": "\u0414\u0430\u0442\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f",
"OptionPlayCount": "\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0435\u0434\u0435\u043d\u0438\u0439", "OptionPlayCount": "\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0435\u0434\u0435\u043d\u0438\u0439",
"ButtonDisconnect": "\u0420\u0430\u0437\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u044c \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435", "ButtonDisconnect": "\u0420\u0430\u0437\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u044c \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435",
"OptionAlbumArtist": "\u0418\u0441\u043f-\u043b\u044c \u0430\u043b\u044c\u0431\u043e\u043c\u0430", "OptionAlbumArtist": "\u0418\u0441\u043f. \u0430\u043b\u044c\u0431\u043e\u043c\u0430",
"OptionArtist": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c", "OptionArtist": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c",
"OptionAlbum": "\u0410\u043b\u044c\u0431\u043e\u043c", "OptionAlbum": "\u0410\u043b\u044c\u0431\u043e\u043c",
"OptionTrackName": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0434\u043e\u0440\u043e\u0436\u043a\u0438", "OptionTrackName": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0434\u043e\u0440\u043e\u0436\u043a\u0438",
@ -878,7 +873,7 @@
"OptionBudget": "\u0411\u044e\u0434\u0436\u0435\u0442", "OptionBudget": "\u0411\u044e\u0434\u0436\u0435\u0442",
"ForAdditionalLiveTvOptions": "\u0414\u043b\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0445 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u043e\u0432 \u044d\u0444\u0438\u0440\u043d\u043e\u0433\u043e \u0422\u0412, \u043e\u0437\u043d\u0430\u043a\u043e\u043c\u0438\u0442\u0435\u0441\u044c \u0441 \u0438\u043c\u044e\u0449\u0438\u043c\u0438\u0441\u044f \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044f\u043c\u0438, \u0449\u0451\u043b\u043a\u043d\u0443\u0432 \u043f\u043e \u0432\u043a\u043b\u0430\u0434\u043a\u0435 \u0412\u043d\u0435\u0448\u043d\u0438\u0435 \u0441\u043b\u0443\u0436\u0431\u044b.", "ForAdditionalLiveTvOptions": "\u0414\u043b\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0445 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u043e\u0432 \u044d\u0444\u0438\u0440\u043d\u043e\u0433\u043e \u0422\u0412, \u043e\u0437\u043d\u0430\u043a\u043e\u043c\u0438\u0442\u0435\u0441\u044c \u0441 \u0438\u043c\u044e\u0449\u0438\u043c\u0438\u0441\u044f \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044f\u043c\u0438, \u0449\u0451\u043b\u043a\u043d\u0443\u0432 \u043f\u043e \u0432\u043a\u043b\u0430\u0434\u043a\u0435 \u0412\u043d\u0435\u0448\u043d\u0438\u0435 \u0441\u043b\u0443\u0436\u0431\u044b.",
"ButtonGuide": "\u0422\u0435\u043b\u0435\u0433\u0438\u0434", "ButtonGuide": "\u0422\u0435\u043b\u0435\u0433\u0438\u0434",
"ButtonRecordedTv": "\u0417\u0430\u043f\u0438\u0441\u0430\u043d\u043d\u043e\u0435 \u0422\u0412", "ButtonRecordedTv": "\u0422\u0412-\u0437\u0430\u043f\u0438\u0441\u0438",
"HeaderDisconnectFromPlayer": "\u0420\u0430\u0437\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u044c\u0441\u044f \u043e\u0442 \u043f\u0440\u043e\u0438\u0433\u0440\u044b\u0432\u0430\u0442\u0435\u043b\u044f", "HeaderDisconnectFromPlayer": "\u0420\u0430\u0437\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u044c\u0441\u044f \u043e\u0442 \u043f\u0440\u043e\u0438\u0433\u0440\u044b\u0432\u0430\u0442\u0435\u043b\u044f",
"ConfirmEndPlayerSession": "\u0412\u044b \u0445\u043e\u0442\u0438\u0442\u0435 \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0440\u0430\u0431\u043e\u0442\u0443 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043d\u0430 \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u043c \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435?", "ConfirmEndPlayerSession": "\u0412\u044b \u0445\u043e\u0442\u0438\u0442\u0435 \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0440\u0430\u0431\u043e\u0442\u0443 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043d\u0430 \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u043c \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435?",
"ButtonYes": "\u0414\u0430", "ButtonYes": "\u0414\u0430",
@ -888,10 +883,13 @@
"ButtonLibrary": "\u041c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0430...", "ButtonLibrary": "\u041c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0430...",
"ButtonSearch": "\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u043f\u043e\u0438\u0441\u043a", "ButtonSearch": "\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u043f\u043e\u0438\u0441\u043a",
"ButtonNowPlaying": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0441\u044f...", "ButtonNowPlaying": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0441\u044f...",
"ButtonViewNewApp": "View new app", "ButtonViewNewApp": "\u0421\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u043d\u043e\u0432\u043e\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435",
"HeaderEmbyForAndroidHasMoved": "Emby for Android has moved!", "HeaderEmbyForAndroidHasMoved": "Emby \u0434\u043b\u044f Android \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0451\u043d!",
"MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", "MessageEmbyForAndroidHasMoved": "Emby \u0434\u043b\u044f Android \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0451\u043d \u043d\u0430 \u043d\u043e\u0432\u043e\u0435 \u043c\u0435\u0441\u0442\u043e \u0432 App Store. \u041e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0442\u0449\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u043d\u043e\u0432\u043e\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435. \u0412\u044b \u0441\u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0430\u0442\u044c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0434\u0430\u043d\u043d\u043e\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0442\u0430\u043a \u0434\u043e\u043b\u0433\u043e, \u043a\u0430\u043a \u0432\u044b \u0437\u0430\u0445\u043e\u0442\u0438\u0442\u0435.",
"HeaderNextUp": "\u041e\u0447\u0435\u0440\u0435\u0434\u043d\u043e\u0435", "HeaderNextUp": "\u041e\u0447\u0435\u0440\u0435\u0434\u043d\u043e\u0435",
"HeaderLatestMovies": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u0444\u0438\u043b\u044c\u043c\u044b", "HeaderLatestMovies": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u0444\u0438\u043b\u044c\u043c\u044b",
"HeaderLatestEpisodes": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b" "HeaderLatestEpisodes": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b",
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
"HeaderEmailAddress": "E-Mail Address",
"TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address."
} }

View file

@ -33,17 +33,16 @@
"MessageKeyEmailedTo": "Key emailed to {0}.", "MessageKeyEmailedTo": "Key emailed to {0}.",
"MessageKeysLinked": "Keys linked.", "MessageKeysLinked": "Keys linked.",
"HeaderConfirmation": "Confirmation", "HeaderConfirmation": "Confirmation",
"MessageKeyUpdated": "Thank you. Your supporter key has been updated.", "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
"MessageKeyRemoved": "Thank you. Your supporter key has been removed.", "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"TextEnjoyBonusFeatures": "Enjoy Bonus Features", "TextEnjoyBonusFeatures": "Enjoy Bonus Features",
"TitleLiveTV": "Live TV", "TitleLiveTV": "Live TV",
"ButtonCancelSyncJob": "Cancel sync job", "ButtonCancelSyncJob": "Cancel sync",
"ButtonSelectView": "Select view", "ButtonSelectView": "Select view",
"TitleSync": "Sync", "TitleSync": "Sync",
"OptionAutomatic": "Auto", "OptionAutomatic": "Auto",
"HeaderSelectDate": "Select Date", "HeaderSelectDate": "Select Date",
"ButtonDonate": "Donate",
"LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.",
"HeaderMyMedia": "My Media", "HeaderMyMedia": "My Media",
"ButtonRemoveFromCollection": "Remove from Collection", "ButtonRemoveFromCollection": "Remove from Collection",
@ -51,11 +50,11 @@
"LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.",
"MessageErrorLoadingSupporterInfo": "There was an error loading supporter information. Please try again later.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
"MessageLinkYourSupporterKey": "Link your supporter key with up to {0} Emby Connect members to enjoy free access to the following apps:", "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:",
"HeaderConfirmRemoveUser": "Remove User", "HeaderConfirmRemoveUser": "Remove User",
"MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.", "MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.",
"MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional supporter benefits from this user?", "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?",
"ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitSingleHour": "Time limit: 1 hour",
"ValueTimeLimitMultiHour": "Time limit: {0} hours", "ValueTimeLimitMultiHour": "Time limit: {0} hours",
"HeaderUsers": "Users", "HeaderUsers": "Users",
@ -544,11 +543,8 @@
"MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)",
"MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.",
"ValuePriceUSD": "Price: {0} (USD)", "ValuePriceUSD": "Price: {0} (USD)",
"MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active supporter membership.", "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
"MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.",
"MessageSupporterMembershipExpiredOn": "Your supporter membership expired on {0}.",
"MessageYouHaveALifetimeMembership": "You have a lifetime supporter membership. You can provide additional donations on a one-time or recurring basis using the options below. Thank you for supporting Emby.",
"MessageYouHaveAnActiveRecurringMembership": "You have an active {0} membership. You can upgrade your plan using the options below.",
"ButtonDelete": "Delete", "ButtonDelete": "Delete",
"HeaderEmbyAccountAdded": "Emby Account Added", "HeaderEmbyAccountAdded": "Emby Account Added",
"MessageEmbyAccountAdded": "The Emby account has been added to this user.", "MessageEmbyAccountAdded": "The Emby account has been added to this user.",
@ -778,11 +774,10 @@
"TabScenes": "Scenes", "TabScenes": "Scenes",
"HeaderUnlockApp": "Unlock App", "HeaderUnlockApp": "Unlock App",
"MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.", "MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.",
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or with an active Emby Premiere subscription.",
"MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Premiere subscription.",
"MessageToValidateSupporter": "If you have an active Emby Supporter Membership, simply sign into the app using your Wifi connection within your home network.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app using your Wifi connection within your home network.",
"MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.",
"ButtonUnlockWithSupporter": "Sign in with Emby Supporter Membership",
"MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.",
"ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase",
"ButtonUnlockPrice": "Unlock {0}", "ButtonUnlockPrice": "Unlock {0}",
@ -826,14 +821,14 @@
"MessageCreateAccountAt": "Create an account at {0}", "MessageCreateAccountAt": "Create an account at {0}",
"ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.",
"HeaderTryCinemaMode": "Try Cinema Mode", "HeaderTryCinemaMode": "Try Cinema Mode",
"ButtonBecomeSupporter": "Become an Emby Supporter", "ButtonBecomeSupporter": "Get Emby Premiere",
"ButtonClosePlayVideo": "Close and play my media", "ButtonClosePlayVideo": "Close and play my media",
"MessageDidYouKnowCinemaMode": "Did you know that by becoming an Emby Supporter, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Supporter membership.", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Supporter membership.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Supporter information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"HeaderSync": "Sync", "HeaderSync": "Sync",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
"MessageSyncStarted": "Sync started", "MessageSyncStarted": "Sync started",
@ -893,5 +888,8 @@
"MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.",
"HeaderNextUp": "Next Up", "HeaderNextUp": "Next Up",
"HeaderLatestMovies": "Latest Movies", "HeaderLatestMovies": "Latest Movies",
"HeaderLatestEpisodes": "Latest Episodes" "HeaderLatestEpisodes": "Latest Episodes",
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
"HeaderEmailAddress": "E-Mail Address",
"TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address."
} }

View file

@ -33,17 +33,16 @@
"MessageKeyEmailedTo": "Koden har epostats till {0}.", "MessageKeyEmailedTo": "Koden har epostats till {0}.",
"MessageKeysLinked": "Koderna har kopplats.", "MessageKeysLinked": "Koderna har kopplats.",
"HeaderConfirmation": "Bekr\u00e4ftelse", "HeaderConfirmation": "Bekr\u00e4ftelse",
"MessageKeyUpdated": "Tack. Din donationskod har uppdaterats.", "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
"MessageKeyRemoved": "Tack. Din donationskod har raderats.", "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"TextEnjoyBonusFeatures": "Enjoy Bonus Features", "TextEnjoyBonusFeatures": "Enjoy Bonus Features",
"TitleLiveTV": "Live-TV", "TitleLiveTV": "Live-TV",
"ButtonCancelSyncJob": "Cancel sync job", "ButtonCancelSyncJob": "Cancel sync",
"ButtonSelectView": "Select view", "ButtonSelectView": "Select view",
"TitleSync": "Sync", "TitleSync": "Sync",
"OptionAutomatic": "Auto", "OptionAutomatic": "Auto",
"HeaderSelectDate": "Select Date", "HeaderSelectDate": "Select Date",
"ButtonDonate": "Donera",
"LabelRecurringDonationCanBeCancelledHelp": "St\u00e5ende donationer kan avbrytas n\u00e4r som helst via ditt PayPal-konto.", "LabelRecurringDonationCanBeCancelledHelp": "St\u00e5ende donationer kan avbrytas n\u00e4r som helst via ditt PayPal-konto.",
"HeaderMyMedia": "My Media", "HeaderMyMedia": "My Media",
"ButtonRemoveFromCollection": "Remove from Collection", "ButtonRemoveFromCollection": "Remove from Collection",
@ -51,11 +50,11 @@
"LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ErrorLaunchingChromecast": "Det gick inte att starta Chromecast. Kontrollera att enheten \u00e4r ansluten till det tr\u00e5dl\u00f6sa n\u00e4tverket.", "ErrorLaunchingChromecast": "Det gick inte att starta Chromecast. Kontrollera att enheten \u00e4r ansluten till det tr\u00e5dl\u00f6sa n\u00e4tverket.",
"MessageErrorLoadingSupporterInfo": "There was an error loading supporter information. Please try again later.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
"MessageLinkYourSupporterKey": "Link your supporter key with up to {0} Emby Connect members to enjoy free access to the following apps:", "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:",
"HeaderConfirmRemoveUser": "Remove User", "HeaderConfirmRemoveUser": "Remove User",
"MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.", "MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.",
"MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional supporter benefits from this user?", "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?",
"ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitSingleHour": "Time limit: 1 hour",
"ValueTimeLimitMultiHour": "Time limit: {0} hours", "ValueTimeLimitMultiHour": "Time limit: {0} hours",
"HeaderUsers": "Anv\u00e4ndare", "HeaderUsers": "Anv\u00e4ndare",
@ -418,7 +417,7 @@
"ButtonScenes": "Scener", "ButtonScenes": "Scener",
"ButtonQuality": "Kvalitet", "ButtonQuality": "Kvalitet",
"HeaderNotifications": "Meddelanden", "HeaderNotifications": "Meddelanden",
"HeaderSelectPlayer": "V\u00e4lj uppspelare:", "HeaderSelectPlayer": "Select Player",
"ButtonSelect": "V\u00e4lj", "ButtonSelect": "V\u00e4lj",
"ButtonNew": "Nytillkommet", "ButtonNew": "Nytillkommet",
"MessageInternetExplorerWebm": "F\u00f6r b\u00e4sta resultat med Internet Explorer, installera uppspelningstill\u00e4gget WebM.", "MessageInternetExplorerWebm": "F\u00f6r b\u00e4sta resultat med Internet Explorer, installera uppspelningstill\u00e4gget WebM.",
@ -544,11 +543,8 @@
"MessageTrialWillExpireIn": "Provperioden f\u00f6r den h\u00e4r funktionen avslutas om {0} dag(ar)", "MessageTrialWillExpireIn": "Provperioden f\u00f6r den h\u00e4r funktionen avslutas om {0} dag(ar)",
"MessageInstallPluginFromApp": "Detta till\u00e4gg m\u00e5ste installeras inifr\u00e5n den app det skall anv\u00e4ndas i.", "MessageInstallPluginFromApp": "Detta till\u00e4gg m\u00e5ste installeras inifr\u00e5n den app det skall anv\u00e4ndas i.",
"ValuePriceUSD": "Pris: {0} (USD)", "ValuePriceUSD": "Pris: {0} (USD)",
"MessageFeatureIncludedWithSupporter": "Du har registrerat den h\u00e4r funktionen och kan forts\u00e4tta att anv\u00e4nda den om du \u00e4r aktiv supportermedlem.", "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
"MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.",
"MessageSupporterMembershipExpiredOn": "Ditt supportermedlemskap upph\u00f6rde att g\u00e4lla {0}.",
"MessageYouHaveALifetimeMembership": "You have a lifetime supporter membership. You can provide additional donations on a one-time or recurring basis using the options below. Thank you for supporting Emby.",
"MessageYouHaveAnActiveRecurringMembership": "Du har ett aktivt {0} medlemskap. Du kan uppgradera med hj\u00e4lp av valm\u00f6jligheterna nedan.",
"ButtonDelete": "Ta bort", "ButtonDelete": "Ta bort",
"HeaderEmbyAccountAdded": "Emby Account Added", "HeaderEmbyAccountAdded": "Emby Account Added",
"MessageEmbyAccountAdded": "The Emby account has been added to this user.", "MessageEmbyAccountAdded": "The Emby account has been added to this user.",
@ -778,11 +774,10 @@
"TabScenes": "Scenes", "TabScenes": "Scenes",
"HeaderUnlockApp": "Unlock App", "HeaderUnlockApp": "Unlock App",
"MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.", "MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.",
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or with an active Emby Premiere subscription.",
"MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Premiere subscription.",
"MessageToValidateSupporter": "If you have an active Emby Supporter Membership, simply sign into the app using your Wifi connection within your home network.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app using your Wifi connection within your home network.",
"MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.",
"ButtonUnlockWithSupporter": "Sign in with Emby Supporter Membership",
"MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.",
"ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase",
"ButtonUnlockPrice": "Unlock {0}", "ButtonUnlockPrice": "Unlock {0}",
@ -826,14 +821,14 @@
"MessageCreateAccountAt": "Create an account at {0}", "MessageCreateAccountAt": "Create an account at {0}",
"ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.",
"HeaderTryCinemaMode": "Try Cinema Mode", "HeaderTryCinemaMode": "Try Cinema Mode",
"ButtonBecomeSupporter": "Become an Emby Supporter", "ButtonBecomeSupporter": "Get Emby Premiere",
"ButtonClosePlayVideo": "Close and play my media", "ButtonClosePlayVideo": "Close and play my media",
"MessageDidYouKnowCinemaMode": "Did you know that by becoming an Emby Supporter, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Supporter membership.", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Supporter membership.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Supporter information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"HeaderSync": "Sync", "HeaderSync": "Sync",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
"MessageSyncStarted": "Sync started", "MessageSyncStarted": "Sync started",
@ -893,5 +888,8 @@
"MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.",
"HeaderNextUp": "N\u00e4stkommande", "HeaderNextUp": "N\u00e4stkommande",
"HeaderLatestMovies": "Nytillkomna filmer", "HeaderLatestMovies": "Nytillkomna filmer",
"HeaderLatestEpisodes": "Senaste avsnitten" "HeaderLatestEpisodes": "Senaste avsnitten",
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
"HeaderEmailAddress": "E-Mail Address",
"TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address."
} }

View file

@ -33,17 +33,16 @@
"MessageKeyEmailedTo": "Key emailed to {0}.", "MessageKeyEmailedTo": "Key emailed to {0}.",
"MessageKeysLinked": "Keys linked.", "MessageKeysLinked": "Keys linked.",
"HeaderConfirmation": "Confirmation", "HeaderConfirmation": "Confirmation",
"MessageKeyUpdated": "Thank you. Your supporter key has been updated.", "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
"MessageKeyRemoved": "Thank you. Your supporter key has been removed.", "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"TextEnjoyBonusFeatures": "Enjoy Bonus Features", "TextEnjoyBonusFeatures": "Enjoy Bonus Features",
"TitleLiveTV": "Canl\u0131 TV", "TitleLiveTV": "Canl\u0131 TV",
"ButtonCancelSyncJob": "Cancel sync job", "ButtonCancelSyncJob": "Cancel sync",
"ButtonSelectView": "Select view", "ButtonSelectView": "Select view",
"TitleSync": "Sync", "TitleSync": "Sync",
"OptionAutomatic": "Otomatik", "OptionAutomatic": "Otomatik",
"HeaderSelectDate": "Select Date", "HeaderSelectDate": "Select Date",
"ButtonDonate": "Donate",
"LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.",
"HeaderMyMedia": "My Media", "HeaderMyMedia": "My Media",
"ButtonRemoveFromCollection": "Remove from Collection", "ButtonRemoveFromCollection": "Remove from Collection",
@ -51,11 +50,11 @@
"LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.",
"MessageErrorLoadingSupporterInfo": "There was an error loading supporter information. Please try again later.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
"MessageLinkYourSupporterKey": "Link your supporter key with up to {0} Emby Connect members to enjoy free access to the following apps:", "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:",
"HeaderConfirmRemoveUser": "Remove User", "HeaderConfirmRemoveUser": "Remove User",
"MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.", "MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.",
"MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional supporter benefits from this user?", "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?",
"ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitSingleHour": "Time limit: 1 hour",
"ValueTimeLimitMultiHour": "Time limit: {0} hours", "ValueTimeLimitMultiHour": "Time limit: {0} hours",
"HeaderUsers": "Kullan\u0131c\u0131lar", "HeaderUsers": "Kullan\u0131c\u0131lar",
@ -544,11 +543,8 @@
"MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)",
"MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.",
"ValuePriceUSD": "Price: {0} (USD)", "ValuePriceUSD": "Price: {0} (USD)",
"MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active supporter membership.", "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
"MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.",
"MessageSupporterMembershipExpiredOn": "Your supporter membership expired on {0}.",
"MessageYouHaveALifetimeMembership": "You have a lifetime supporter membership. You can provide additional donations on a one-time or recurring basis using the options below. Thank you for supporting Emby.",
"MessageYouHaveAnActiveRecurringMembership": "You have an active {0} membership. You can upgrade your plan using the options below.",
"ButtonDelete": "Sil", "ButtonDelete": "Sil",
"HeaderEmbyAccountAdded": "Emby Account Added", "HeaderEmbyAccountAdded": "Emby Account Added",
"MessageEmbyAccountAdded": "The Emby account has been added to this user.", "MessageEmbyAccountAdded": "The Emby account has been added to this user.",
@ -778,11 +774,10 @@
"TabScenes": "Scenes", "TabScenes": "Scenes",
"HeaderUnlockApp": "Unlock App", "HeaderUnlockApp": "Unlock App",
"MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.", "MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.",
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or with an active Emby Premiere subscription.",
"MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Premiere subscription.",
"MessageToValidateSupporter": "If you have an active Emby Supporter Membership, simply sign into the app using your Wifi connection within your home network.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app using your Wifi connection within your home network.",
"MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.",
"ButtonUnlockWithSupporter": "Sign in with Emby Supporter Membership",
"MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.",
"ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase",
"ButtonUnlockPrice": "Unlock {0}", "ButtonUnlockPrice": "Unlock {0}",
@ -826,14 +821,14 @@
"MessageCreateAccountAt": "Create an account at {0}", "MessageCreateAccountAt": "Create an account at {0}",
"ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.",
"HeaderTryCinemaMode": "Try Cinema Mode", "HeaderTryCinemaMode": "Try Cinema Mode",
"ButtonBecomeSupporter": "Become an Emby Supporter", "ButtonBecomeSupporter": "Get Emby Premiere",
"ButtonClosePlayVideo": "Close and play my media", "ButtonClosePlayVideo": "Close and play my media",
"MessageDidYouKnowCinemaMode": "Did you know that by becoming an Emby Supporter, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Supporter membership.", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Supporter membership.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Supporter information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"HeaderSync": "Sync", "HeaderSync": "Sync",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
"MessageSyncStarted": "Sync started", "MessageSyncStarted": "Sync started",
@ -893,5 +888,8 @@
"MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.",
"HeaderNextUp": "Sonraki hafta", "HeaderNextUp": "Sonraki hafta",
"HeaderLatestMovies": "Son filmler", "HeaderLatestMovies": "Son filmler",
"HeaderLatestEpisodes": "Latest Episodes" "HeaderLatestEpisodes": "Latest Episodes",
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
"HeaderEmailAddress": "E-Mail Address",
"TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address."
} }

View file

@ -33,17 +33,16 @@
"MessageKeyEmailedTo": "Key emailed to {0}.", "MessageKeyEmailedTo": "Key emailed to {0}.",
"MessageKeysLinked": "Keys linked.", "MessageKeysLinked": "Keys linked.",
"HeaderConfirmation": "Confirmation", "HeaderConfirmation": "Confirmation",
"MessageKeyUpdated": "Thank you. Your supporter key has been updated.", "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
"MessageKeyRemoved": "Thank you. Your supporter key has been removed.", "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"TextEnjoyBonusFeatures": "Enjoy Bonus Features", "TextEnjoyBonusFeatures": "Enjoy Bonus Features",
"TitleLiveTV": "Live TV", "TitleLiveTV": "Live TV",
"ButtonCancelSyncJob": "Cancel sync job", "ButtonCancelSyncJob": "Cancel sync",
"ButtonSelectView": "Select view", "ButtonSelectView": "Select view",
"TitleSync": "Sync", "TitleSync": "Sync",
"OptionAutomatic": "Auto", "OptionAutomatic": "Auto",
"HeaderSelectDate": "Select Date", "HeaderSelectDate": "Select Date",
"ButtonDonate": "Donate",
"LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.",
"HeaderMyMedia": "My Media", "HeaderMyMedia": "My Media",
"ButtonRemoveFromCollection": "Remove from Collection", "ButtonRemoveFromCollection": "Remove from Collection",
@ -51,11 +50,11 @@
"LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:",
"TitleNotifications": "\u041f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f", "TitleNotifications": "\u041f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f",
"ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.",
"MessageErrorLoadingSupporterInfo": "There was an error loading supporter information. Please try again later.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
"MessageLinkYourSupporterKey": "Link your supporter key with up to {0} Emby Connect members to enjoy free access to the following apps:", "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:",
"HeaderConfirmRemoveUser": "Remove User", "HeaderConfirmRemoveUser": "Remove User",
"MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.", "MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.",
"MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional supporter benefits from this user?", "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?",
"ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitSingleHour": "Time limit: 1 hour",
"ValueTimeLimitMultiHour": "Time limit: {0} hours", "ValueTimeLimitMultiHour": "Time limit: {0} hours",
"HeaderUsers": "\u041a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0456", "HeaderUsers": "\u041a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0456",
@ -544,11 +543,8 @@
"MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)",
"MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.",
"ValuePriceUSD": "\u0426\u0456\u043d\u0430: {0} (USD)", "ValuePriceUSD": "\u0426\u0456\u043d\u0430: {0} (USD)",
"MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active supporter membership.", "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
"MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.",
"MessageSupporterMembershipExpiredOn": "Your supporter membership expired on {0}.",
"MessageYouHaveALifetimeMembership": "You have a lifetime supporter membership. You can provide additional donations on a one-time or recurring basis using the options below. Thank you for supporting Emby.",
"MessageYouHaveAnActiveRecurringMembership": "You have an active {0} membership. You can upgrade your plan using the options below.",
"ButtonDelete": "Delete", "ButtonDelete": "Delete",
"HeaderEmbyAccountAdded": "Emby Account Added", "HeaderEmbyAccountAdded": "Emby Account Added",
"MessageEmbyAccountAdded": "The Emby account has been added to this user.", "MessageEmbyAccountAdded": "The Emby account has been added to this user.",
@ -778,11 +774,10 @@
"TabScenes": "Scenes", "TabScenes": "Scenes",
"HeaderUnlockApp": "Unlock App", "HeaderUnlockApp": "Unlock App",
"MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.", "MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.",
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or with an active Emby Premiere subscription.",
"MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Premiere subscription.",
"MessageToValidateSupporter": "If you have an active Emby Supporter Membership, simply sign into the app using your Wifi connection within your home network.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app using your Wifi connection within your home network.",
"MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.",
"ButtonUnlockWithSupporter": "Sign in with Emby Supporter Membership",
"MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.",
"ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase",
"ButtonUnlockPrice": "Unlock {0}", "ButtonUnlockPrice": "Unlock {0}",
@ -826,14 +821,14 @@
"MessageCreateAccountAt": "Create an account at {0}", "MessageCreateAccountAt": "Create an account at {0}",
"ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.",
"HeaderTryCinemaMode": "Try Cinema Mode", "HeaderTryCinemaMode": "Try Cinema Mode",
"ButtonBecomeSupporter": "Become an Emby Supporter", "ButtonBecomeSupporter": "Get Emby Premiere",
"ButtonClosePlayVideo": "Close and play my media", "ButtonClosePlayVideo": "Close and play my media",
"MessageDidYouKnowCinemaMode": "Did you know that by becoming an Emby Supporter, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Supporter membership.", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Supporter membership.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Supporter information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"HeaderSync": "Sync", "HeaderSync": "Sync",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
"MessageSyncStarted": "Sync started", "MessageSyncStarted": "Sync started",
@ -893,5 +888,8 @@
"MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.",
"HeaderNextUp": "Next Up", "HeaderNextUp": "Next Up",
"HeaderLatestMovies": "\u041e\u0441\u0442\u0430\u043d\u043d\u0456 \u0444\u0456\u043b\u044c\u043c\u0438", "HeaderLatestMovies": "\u041e\u0441\u0442\u0430\u043d\u043d\u0456 \u0444\u0456\u043b\u044c\u043c\u0438",
"HeaderLatestEpisodes": "\u041e\u0441\u0442\u0430\u043d\u043d\u0456 \u0435\u043f\u0456\u0437\u043e\u0434\u0438" "HeaderLatestEpisodes": "\u041e\u0441\u0442\u0430\u043d\u043d\u0456 \u0435\u043f\u0456\u0437\u043e\u0434\u0438",
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
"HeaderEmailAddress": "E-Mail Address",
"TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address."
} }

View file

@ -33,17 +33,16 @@
"MessageKeyEmailedTo": "Key emailed to {0}.", "MessageKeyEmailedTo": "Key emailed to {0}.",
"MessageKeysLinked": "Keys linked.", "MessageKeysLinked": "Keys linked.",
"HeaderConfirmation": "Confirmation", "HeaderConfirmation": "Confirmation",
"MessageKeyUpdated": "Thank you. Your supporter key has been updated.", "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
"MessageKeyRemoved": "Thank you. Your supporter key has been removed.", "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"TextEnjoyBonusFeatures": "Enjoy Bonus Features", "TextEnjoyBonusFeatures": "Enjoy Bonus Features",
"TitleLiveTV": "Live TV", "TitleLiveTV": "Live TV",
"ButtonCancelSyncJob": "Cancel sync job", "ButtonCancelSyncJob": "Cancel sync",
"ButtonSelectView": "Select view", "ButtonSelectView": "Select view",
"TitleSync": "Sync", "TitleSync": "Sync",
"OptionAutomatic": "T\u1ef1 \u0111\u1ed9ng", "OptionAutomatic": "T\u1ef1 \u0111\u1ed9ng",
"HeaderSelectDate": "Select Date", "HeaderSelectDate": "Select Date",
"ButtonDonate": "Donate",
"LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.",
"HeaderMyMedia": "My Media", "HeaderMyMedia": "My Media",
"ButtonRemoveFromCollection": "Remove from Collection", "ButtonRemoveFromCollection": "Remove from Collection",
@ -51,11 +50,11 @@
"LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.",
"MessageErrorLoadingSupporterInfo": "There was an error loading supporter information. Please try again later.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
"MessageLinkYourSupporterKey": "Link your supporter key with up to {0} Emby Connect members to enjoy free access to the following apps:", "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:",
"HeaderConfirmRemoveUser": "Remove User", "HeaderConfirmRemoveUser": "Remove User",
"MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.", "MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.",
"MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional supporter benefits from this user?", "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?",
"ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitSingleHour": "Time limit: 1 hour",
"ValueTimeLimitMultiHour": "Time limit: {0} hours", "ValueTimeLimitMultiHour": "Time limit: {0} hours",
"HeaderUsers": "d\u00f9ng", "HeaderUsers": "d\u00f9ng",
@ -544,11 +543,8 @@
"MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)",
"MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.",
"ValuePriceUSD": "Price: {0} (USD)", "ValuePriceUSD": "Price: {0} (USD)",
"MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active supporter membership.", "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
"MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.",
"MessageSupporterMembershipExpiredOn": "Your supporter membership expired on {0}.",
"MessageYouHaveALifetimeMembership": "You have a lifetime supporter membership. You can provide additional donations on a one-time or recurring basis using the options below. Thank you for supporting Emby.",
"MessageYouHaveAnActiveRecurringMembership": "You have an active {0} membership. You can upgrade your plan using the options below.",
"ButtonDelete": "Delete", "ButtonDelete": "Delete",
"HeaderEmbyAccountAdded": "Emby Account Added", "HeaderEmbyAccountAdded": "Emby Account Added",
"MessageEmbyAccountAdded": "The Emby account has been added to this user.", "MessageEmbyAccountAdded": "The Emby account has been added to this user.",
@ -778,11 +774,10 @@
"TabScenes": "Scenes", "TabScenes": "Scenes",
"HeaderUnlockApp": "Unlock App", "HeaderUnlockApp": "Unlock App",
"MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.", "MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.",
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or with an active Emby Premiere subscription.",
"MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Premiere subscription.",
"MessageToValidateSupporter": "If you have an active Emby Supporter Membership, simply sign into the app using your Wifi connection within your home network.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app using your Wifi connection within your home network.",
"MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.",
"ButtonUnlockWithSupporter": "Sign in with Emby Supporter Membership",
"MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.",
"ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase",
"ButtonUnlockPrice": "Unlock {0}", "ButtonUnlockPrice": "Unlock {0}",
@ -826,14 +821,14 @@
"MessageCreateAccountAt": "Create an account at {0}", "MessageCreateAccountAt": "Create an account at {0}",
"ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.",
"HeaderTryCinemaMode": "Try Cinema Mode", "HeaderTryCinemaMode": "Try Cinema Mode",
"ButtonBecomeSupporter": "Become an Emby Supporter", "ButtonBecomeSupporter": "Get Emby Premiere",
"ButtonClosePlayVideo": "Close and play my media", "ButtonClosePlayVideo": "Close and play my media",
"MessageDidYouKnowCinemaMode": "Did you know that by becoming an Emby Supporter, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Supporter membership.", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Supporter membership.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Supporter information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"HeaderSync": "Sync", "HeaderSync": "Sync",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
"MessageSyncStarted": "Sync started", "MessageSyncStarted": "Sync started",
@ -893,5 +888,8 @@
"MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.",
"HeaderNextUp": "Next Up", "HeaderNextUp": "Next Up",
"HeaderLatestMovies": "Phim m\u1edbi nh\u1ea5t", "HeaderLatestMovies": "Phim m\u1edbi nh\u1ea5t",
"HeaderLatestEpisodes": "C\u00e1c t\u1eadp phim m\u1edbi nh\u1ea5t" "HeaderLatestEpisodes": "C\u00e1c t\u1eadp phim m\u1edbi nh\u1ea5t",
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
"HeaderEmailAddress": "E-Mail Address",
"TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address."
} }

View file

@ -33,17 +33,16 @@
"MessageKeyEmailedTo": "\u5e8f\u53f7\u901a\u8fc7\u7535\u5b50\u90ae\u4ef6\u53d1\u9001\u7ed9 {0}.", "MessageKeyEmailedTo": "\u5e8f\u53f7\u901a\u8fc7\u7535\u5b50\u90ae\u4ef6\u53d1\u9001\u7ed9 {0}.",
"MessageKeysLinked": "\u5e8f\u53f7\u5df2\u5173\u8054", "MessageKeysLinked": "\u5e8f\u53f7\u5df2\u5173\u8054",
"HeaderConfirmation": "\u786e\u8ba4", "HeaderConfirmation": "\u786e\u8ba4",
"MessageKeyUpdated": "\u8c22\u8c22\u3002\u4f60\u7684\u652f\u6301\u8005\u5e8f\u53f7\u5df2\u66f4\u65b0\u3002", "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
"MessageKeyRemoved": "\u8c22\u8c22\u3002\u4f60\u7684\u652f\u6301\u8005\u5e8f\u53f7\u5df2\u79fb\u9664\u3002", "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"TextEnjoyBonusFeatures": "\u4eab\u53d7\u5956\u52b1\u529f\u80fd", "TextEnjoyBonusFeatures": "\u4eab\u53d7\u5956\u52b1\u529f\u80fd",
"TitleLiveTV": "\u7535\u89c6\u76f4\u64ad", "TitleLiveTV": "\u7535\u89c6\u76f4\u64ad",
"ButtonCancelSyncJob": "Cancel sync job", "ButtonCancelSyncJob": "Cancel sync",
"ButtonSelectView": "Select view", "ButtonSelectView": "Select view",
"TitleSync": "\u540c\u6b65", "TitleSync": "\u540c\u6b65",
"OptionAutomatic": "\u81ea\u52a8", "OptionAutomatic": "\u81ea\u52a8",
"HeaderSelectDate": "Select Date", "HeaderSelectDate": "Select Date",
"ButtonDonate": "\u6350\u8d60",
"LabelRecurringDonationCanBeCancelledHelp": "\u5728\u60a8\u7684PayPal\u8d26\u6237\u5185\u4efb\u4f55\u65f6\u5019\u90fd\u53ef\u4ee5\u53d6\u6d88\u7ecf\u5e38\u6027\u6350\u8d60\u3002", "LabelRecurringDonationCanBeCancelledHelp": "\u5728\u60a8\u7684PayPal\u8d26\u6237\u5185\u4efb\u4f55\u65f6\u5019\u90fd\u53ef\u4ee5\u53d6\u6d88\u7ecf\u5e38\u6027\u6350\u8d60\u3002",
"HeaderMyMedia": "My Media", "HeaderMyMedia": "My Media",
"ButtonRemoveFromCollection": "Remove from Collection", "ButtonRemoveFromCollection": "Remove from Collection",
@ -51,11 +50,11 @@
"LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:",
"TitleNotifications": "\u901a\u77e5", "TitleNotifications": "\u901a\u77e5",
"ErrorLaunchingChromecast": "\u542f\u52a8chromecast\u9047\u5230\u9519\u8bef\uff0c\u8bf7\u786e\u8ba4\u8bbe\u5907\u5df2\u7ecf\u8fde\u63a5\u5230\u4f60\u7684\u65e0\u7ebf\u7f51\u7edc\u3002", "ErrorLaunchingChromecast": "\u542f\u52a8chromecast\u9047\u5230\u9519\u8bef\uff0c\u8bf7\u786e\u8ba4\u8bbe\u5907\u5df2\u7ecf\u8fde\u63a5\u5230\u4f60\u7684\u65e0\u7ebf\u7f51\u7edc\u3002",
"MessageErrorLoadingSupporterInfo": "There was an error loading supporter information. Please try again later.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
"MessageLinkYourSupporterKey": "Link your supporter key with up to {0} Emby Connect members to enjoy free access to the following apps:", "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:",
"HeaderConfirmRemoveUser": "Remove User", "HeaderConfirmRemoveUser": "Remove User",
"MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.", "MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.",
"MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional supporter benefits from this user?", "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?",
"ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitSingleHour": "Time limit: 1 hour",
"ValueTimeLimitMultiHour": "Time limit: {0} hours", "ValueTimeLimitMultiHour": "Time limit: {0} hours",
"HeaderUsers": "\u7528\u6237", "HeaderUsers": "\u7528\u6237",
@ -101,7 +100,7 @@
"MessageItemsAdded": "\u9879\u76ee\u5df2\u6dfb\u52a0", "MessageItemsAdded": "\u9879\u76ee\u5df2\u6dfb\u52a0",
"ButtonAddToCollection": "\u6dfb\u52a0\u5230\u6536\u85cf", "ButtonAddToCollection": "\u6dfb\u52a0\u5230\u6536\u85cf",
"HeaderSelectCertificatePath": "Select Certificate Path", "HeaderSelectCertificatePath": "Select Certificate Path",
"ConfirmMessageScheduledTaskButton": "\u6b64\u64cd\u4f5c\u901a\u5e38\u662f\u901a\u8fc7\u8ba1\u5212\u4efb\u52a1\u81ea\u52a8\u8fd0\u884c\u3002\u5b83\u4e5f\u53ef\u624b\u52a8\u8fd0\u884c\u3002\u8981\u914d\u7f6e\u8ba1\u5212\u4efb\u52a1\uff0c\u8bf7\u53c2\u9605\uff1a", "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:",
"HeaderSupporterBenefit": "A supporter membership provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", "HeaderSupporterBenefit": "A supporter membership provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.",
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.",
"HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard",
@ -418,7 +417,7 @@
"ButtonScenes": "\u573a\u666f", "ButtonScenes": "\u573a\u666f",
"ButtonQuality": "\u8d28\u91cf", "ButtonQuality": "\u8d28\u91cf",
"HeaderNotifications": "\u901a\u77e5", "HeaderNotifications": "\u901a\u77e5",
"HeaderSelectPlayer": "\u9009\u62e9\u64ad\u653e\u5668\uff1a", "HeaderSelectPlayer": "Select Player",
"ButtonSelect": "\u9009\u62e9", "ButtonSelect": "\u9009\u62e9",
"ButtonNew": "\u65b0\u589e", "ButtonNew": "\u65b0\u589e",
"MessageInternetExplorerWebm": "\u4e3a\u5728IE\u6d4f\u89c8\u5668\u4e0a\u8fbe\u5230\u6700\u597d\u7684\u6548\u679c\uff0c\u8bf7\u5b89\u88c5WebM\u64ad\u653e\u63d2\u4ef6\u3002", "MessageInternetExplorerWebm": "\u4e3a\u5728IE\u6d4f\u89c8\u5668\u4e0a\u8fbe\u5230\u6700\u597d\u7684\u6548\u679c\uff0c\u8bf7\u5b89\u88c5WebM\u64ad\u653e\u63d2\u4ef6\u3002",
@ -544,11 +543,8 @@
"MessageTrialWillExpireIn": "\u6b64\u529f\u80fd\u7684\u8bd5\u7528\u671f\u8fd8\u5269 {0} \u5929", "MessageTrialWillExpireIn": "\u6b64\u529f\u80fd\u7684\u8bd5\u7528\u671f\u8fd8\u5269 {0} \u5929",
"MessageInstallPluginFromApp": "\u8fd9\u4e2a\u63d2\u4ef6\u5fc5\u987b\u4ece\u4f60\u6253\u7b97\u4f7f\u7528\u7684\u5e94\u7528\u7a0b\u5e8f\u4e2d\u5b89\u88c5\u3002", "MessageInstallPluginFromApp": "\u8fd9\u4e2a\u63d2\u4ef6\u5fc5\u987b\u4ece\u4f60\u6253\u7b97\u4f7f\u7528\u7684\u5e94\u7528\u7a0b\u5e8f\u4e2d\u5b89\u88c5\u3002",
"ValuePriceUSD": "\u4ef7\u683c\uff1a {0} (\u7f8e\u5143)", "ValuePriceUSD": "\u4ef7\u683c\uff1a {0} (\u7f8e\u5143)",
"MessageFeatureIncludedWithSupporter": "\u60a8\u6ce8\u518c\u4e86\u8be5\u529f\u80fd\uff0c\u6fc0\u6d3b\u7684\u652f\u6301\u8005\u4f1a\u5458\u80fd\u591f\u4e00\u76f4\u4f7f\u7528\u5b83\u3002", "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
"MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.",
"MessageSupporterMembershipExpiredOn": "\u652f\u6301\u8005\u4f1a\u5458\u5230\u671f\u65e5{0}\u3002",
"MessageYouHaveALifetimeMembership": "You have a lifetime supporter membership. You can provide additional donations on a one-time or recurring basis using the options below. Thank you for supporting Emby.",
"MessageYouHaveAnActiveRecurringMembership": "\u60a8\u662f\u6fc0\u6d3b\u7684{0}\u4f1a\u5458\u3002\u60a8\u53ef\u4ee5\u4f7f\u7528\u4e0b\u9762\u7684\u9009\u9879\u5347\u7ea7\u60a8\u7684\u8ba1\u5212\u3002",
"ButtonDelete": "\u5220\u9664", "ButtonDelete": "\u5220\u9664",
"HeaderEmbyAccountAdded": "Emby Account Added", "HeaderEmbyAccountAdded": "Emby Account Added",
"MessageEmbyAccountAdded": "The Emby account has been added to this user.", "MessageEmbyAccountAdded": "The Emby account has been added to this user.",
@ -778,11 +774,10 @@
"TabScenes": "Scenes", "TabScenes": "Scenes",
"HeaderUnlockApp": "Unlock App", "HeaderUnlockApp": "Unlock App",
"MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.", "MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.",
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or with an active Emby Premiere subscription.",
"MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Premiere subscription.",
"MessageToValidateSupporter": "If you have an active Emby Supporter Membership, simply sign into the app using your Wifi connection within your home network.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app using your Wifi connection within your home network.",
"MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.",
"ButtonUnlockWithSupporter": "Sign in with Emby Supporter Membership",
"MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.",
"ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase",
"ButtonUnlockPrice": "Unlock {0}", "ButtonUnlockPrice": "Unlock {0}",
@ -826,14 +821,14 @@
"MessageCreateAccountAt": "Create an account at {0}", "MessageCreateAccountAt": "Create an account at {0}",
"ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.",
"HeaderTryCinemaMode": "Try Cinema Mode", "HeaderTryCinemaMode": "Try Cinema Mode",
"ButtonBecomeSupporter": "Become an Emby Supporter", "ButtonBecomeSupporter": "Get Emby Premiere",
"ButtonClosePlayVideo": "Close and play my media", "ButtonClosePlayVideo": "Close and play my media",
"MessageDidYouKnowCinemaMode": "Did you know that by becoming an Emby Supporter, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Supporter membership.", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Supporter membership.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Supporter information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"HeaderSync": "Sync", "HeaderSync": "Sync",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
"MessageSyncStarted": "Sync started", "MessageSyncStarted": "Sync started",
@ -893,5 +888,8 @@
"MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.",
"HeaderNextUp": "\u4e0b\u4e00\u96c6", "HeaderNextUp": "\u4e0b\u4e00\u96c6",
"HeaderLatestMovies": "\u6700\u65b0\u7535\u5f71", "HeaderLatestMovies": "\u6700\u65b0\u7535\u5f71",
"HeaderLatestEpisodes": "\u6700\u65b0\u5267\u96c6" "HeaderLatestEpisodes": "\u6700\u65b0\u5267\u96c6",
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
"HeaderEmailAddress": "E-Mail Address",
"TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address."
} }

View file

@ -33,17 +33,16 @@
"MessageKeyEmailedTo": "Key emailed to {0}.", "MessageKeyEmailedTo": "Key emailed to {0}.",
"MessageKeysLinked": "Keys linked.", "MessageKeysLinked": "Keys linked.",
"HeaderConfirmation": "Confirmation", "HeaderConfirmation": "Confirmation",
"MessageKeyUpdated": "Thank you. Your supporter key has been updated.", "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
"MessageKeyRemoved": "Thank you. Your supporter key has been removed.", "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
"HeaderSupportTheTeam": "\u8d0a\u52a9 Emby \u5718\u968a", "HeaderSupportTheTeam": "\u8d0a\u52a9 Emby \u5718\u968a",
"TextEnjoyBonusFeatures": "\u4eab\u53d7\u984d\u5916\u529f\u80fd", "TextEnjoyBonusFeatures": "\u4eab\u53d7\u984d\u5916\u529f\u80fd",
"TitleLiveTV": "\u96fb\u8996\u76f4\u64ad", "TitleLiveTV": "\u96fb\u8996\u76f4\u64ad",
"ButtonCancelSyncJob": "Cancel sync job", "ButtonCancelSyncJob": "Cancel sync",
"ButtonSelectView": "Select view", "ButtonSelectView": "Select view",
"TitleSync": "Sync", "TitleSync": "Sync",
"OptionAutomatic": "\u81ea\u52d5", "OptionAutomatic": "\u81ea\u52d5",
"HeaderSelectDate": "\u9078\u64c7\u65e5\u671f", "HeaderSelectDate": "\u9078\u64c7\u65e5\u671f",
"ButtonDonate": "Donate",
"LabelRecurringDonationCanBeCancelledHelp": "\u60a8\u53ef\u4ee5\u5728\u4efb\u4f55\u6642\u9593\u65bc PayPal \u8cec\u6236\u5167\u53d6\u6d88\u5b9a\u671f\u6350\u8d08\u3002", "LabelRecurringDonationCanBeCancelledHelp": "\u60a8\u53ef\u4ee5\u5728\u4efb\u4f55\u6642\u9593\u65bc PayPal \u8cec\u6236\u5167\u53d6\u6d88\u5b9a\u671f\u6350\u8d08\u3002",
"HeaderMyMedia": "My Media", "HeaderMyMedia": "My Media",
"ButtonRemoveFromCollection": "Remove from Collection", "ButtonRemoveFromCollection": "Remove from Collection",
@ -51,11 +50,11 @@
"LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:",
"TitleNotifications": "\u901a\u77e5", "TitleNotifications": "\u901a\u77e5",
"ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.",
"MessageErrorLoadingSupporterInfo": "There was an error loading supporter information. Please try again later.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
"MessageLinkYourSupporterKey": "Link your supporter key with up to {0} Emby Connect members to enjoy free access to the following apps:", "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:",
"HeaderConfirmRemoveUser": "Remove User", "HeaderConfirmRemoveUser": "Remove User",
"MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.", "MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.",
"MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional supporter benefits from this user?", "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?",
"ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitSingleHour": "Time limit: 1 hour",
"ValueTimeLimitMultiHour": "Time limit: {0} hours", "ValueTimeLimitMultiHour": "Time limit: {0} hours",
"HeaderUsers": "\u7528\u6236", "HeaderUsers": "\u7528\u6236",
@ -544,11 +543,8 @@
"MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)",
"MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.",
"ValuePriceUSD": "Price: {0} (USD)", "ValuePriceUSD": "Price: {0} (USD)",
"MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active supporter membership.", "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
"MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.",
"MessageSupporterMembershipExpiredOn": "Your supporter membership expired on {0}.",
"MessageYouHaveALifetimeMembership": "You have a lifetime supporter membership. You can provide additional donations on a one-time or recurring basis using the options below. Thank you for supporting Emby.",
"MessageYouHaveAnActiveRecurringMembership": "You have an active {0} membership. You can upgrade your plan using the options below.",
"ButtonDelete": "\u5220\u9664", "ButtonDelete": "\u5220\u9664",
"HeaderEmbyAccountAdded": "Emby Account Added", "HeaderEmbyAccountAdded": "Emby Account Added",
"MessageEmbyAccountAdded": "The Emby account has been added to this user.", "MessageEmbyAccountAdded": "The Emby account has been added to this user.",
@ -778,11 +774,10 @@
"TabScenes": "Scenes", "TabScenes": "Scenes",
"HeaderUnlockApp": "Unlock App", "HeaderUnlockApp": "Unlock App",
"MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.", "MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.",
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or with an active Emby Premiere subscription.",
"MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Premiere subscription.",
"MessageToValidateSupporter": "If you have an active Emby Supporter Membership, simply sign into the app using your Wifi connection within your home network.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app using your Wifi connection within your home network.",
"MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.",
"ButtonUnlockWithSupporter": "Sign in with Emby Supporter Membership",
"MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.",
"ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase",
"ButtonUnlockPrice": "Unlock {0}", "ButtonUnlockPrice": "Unlock {0}",
@ -826,14 +821,14 @@
"MessageCreateAccountAt": "Create an account at {0}", "MessageCreateAccountAt": "Create an account at {0}",
"ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.",
"HeaderTryCinemaMode": "Try Cinema Mode", "HeaderTryCinemaMode": "Try Cinema Mode",
"ButtonBecomeSupporter": "Become an Emby Supporter", "ButtonBecomeSupporter": "Get Emby Premiere",
"ButtonClosePlayVideo": "Close and play my media", "ButtonClosePlayVideo": "Close and play my media",
"MessageDidYouKnowCinemaMode": "Did you know that by becoming an Emby Supporter, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Supporter membership.", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Supporter membership.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Supporter information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"HeaderSync": "\u540c\u6b65", "HeaderSync": "\u540c\u6b65",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
"MessageSyncStarted": "Sync started", "MessageSyncStarted": "Sync started",
@ -893,5 +888,8 @@
"MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.",
"HeaderNextUp": "\u63a5\u4e0b\u4f86", "HeaderNextUp": "\u63a5\u4e0b\u4f86",
"HeaderLatestMovies": "\u6700\u65b0\u96fb\u5f71", "HeaderLatestMovies": "\u6700\u65b0\u96fb\u5f71",
"HeaderLatestEpisodes": "\u6700\u65b0\u5287\u96c6" "HeaderLatestEpisodes": "\u6700\u65b0\u5287\u96c6",
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
"HeaderEmailAddress": "E-Mail Address",
"TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address."
} }

View file

@ -33,17 +33,16 @@
"MessageKeyEmailedTo": "Key emailed to {0}.", "MessageKeyEmailedTo": "Key emailed to {0}.",
"MessageKeysLinked": "Keys linked.", "MessageKeysLinked": "Keys linked.",
"HeaderConfirmation": "Confirmation", "HeaderConfirmation": "Confirmation",
"MessageKeyUpdated": "Thank you. Your supporter key has been updated.", "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
"MessageKeyRemoved": "Thank you. Your supporter key has been removed.", "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"TextEnjoyBonusFeatures": "Enjoy Bonus Features", "TextEnjoyBonusFeatures": "Enjoy Bonus Features",
"TitleLiveTV": "\u96fb\u8996\u529f\u80fd", "TitleLiveTV": "\u96fb\u8996\u529f\u80fd",
"ButtonCancelSyncJob": "Cancel sync job", "ButtonCancelSyncJob": "Cancel sync",
"ButtonSelectView": "Select view", "ButtonSelectView": "Select view",
"TitleSync": "Sync", "TitleSync": "Sync",
"OptionAutomatic": "\u81ea\u52d5", "OptionAutomatic": "\u81ea\u52d5",
"HeaderSelectDate": "Select Date", "HeaderSelectDate": "Select Date",
"ButtonDonate": "Donate",
"LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.",
"HeaderMyMedia": "My Media", "HeaderMyMedia": "My Media",
"ButtonRemoveFromCollection": "Remove from Collection", "ButtonRemoveFromCollection": "Remove from Collection",
@ -51,11 +50,11 @@
"LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.",
"MessageErrorLoadingSupporterInfo": "There was an error loading supporter information. Please try again later.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
"MessageLinkYourSupporterKey": "Link your supporter key with up to {0} Emby Connect members to enjoy free access to the following apps:", "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:",
"HeaderConfirmRemoveUser": "Remove User", "HeaderConfirmRemoveUser": "Remove User",
"MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.", "MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.",
"MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional supporter benefits from this user?", "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?",
"ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitSingleHour": "Time limit: 1 hour",
"ValueTimeLimitMultiHour": "Time limit: {0} hours", "ValueTimeLimitMultiHour": "Time limit: {0} hours",
"HeaderUsers": "\u7528\u6236", "HeaderUsers": "\u7528\u6236",
@ -544,11 +543,8 @@
"MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)",
"MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.",
"ValuePriceUSD": "Price: {0} (USD)", "ValuePriceUSD": "Price: {0} (USD)",
"MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active supporter membership.", "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
"MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.",
"MessageSupporterMembershipExpiredOn": "Your supporter membership expired on {0}.",
"MessageYouHaveALifetimeMembership": "You have a lifetime supporter membership. You can provide additional donations on a one-time or recurring basis using the options below. Thank you for supporting Emby.",
"MessageYouHaveAnActiveRecurringMembership": "You have an active {0} membership. You can upgrade your plan using the options below.",
"ButtonDelete": "\u522a\u9664", "ButtonDelete": "\u522a\u9664",
"HeaderEmbyAccountAdded": "Emby Account Added", "HeaderEmbyAccountAdded": "Emby Account Added",
"MessageEmbyAccountAdded": "The Emby account has been added to this user.", "MessageEmbyAccountAdded": "The Emby account has been added to this user.",
@ -778,11 +774,10 @@
"TabScenes": "Scenes", "TabScenes": "Scenes",
"HeaderUnlockApp": "Unlock App", "HeaderUnlockApp": "Unlock App",
"MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.", "MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.",
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or with an active Emby Premiere subscription.",
"MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Supporter Membership.", "MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Premiere subscription.",
"MessageToValidateSupporter": "If you have an active Emby Supporter Membership, simply sign into the app using your Wifi connection within your home network.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app using your Wifi connection within your home network.",
"MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.",
"ButtonUnlockWithSupporter": "Sign in with Emby Supporter Membership",
"MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.",
"ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase",
"ButtonUnlockPrice": "Unlock {0}", "ButtonUnlockPrice": "Unlock {0}",
@ -826,14 +821,14 @@
"MessageCreateAccountAt": "Create an account at {0}", "MessageCreateAccountAt": "Create an account at {0}",
"ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.",
"HeaderTryCinemaMode": "Try Cinema Mode", "HeaderTryCinemaMode": "Try Cinema Mode",
"ButtonBecomeSupporter": "Become an Emby Supporter", "ButtonBecomeSupporter": "Get Emby Premiere",
"ButtonClosePlayVideo": "Close and play my media", "ButtonClosePlayVideo": "Close and play my media",
"MessageDidYouKnowCinemaMode": "Did you know that by becoming an Emby Supporter, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Supporter membership.", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Supporter membership.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Supporter information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"HeaderSync": "Sync", "HeaderSync": "Sync",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
"MessageSyncStarted": "Sync started", "MessageSyncStarted": "Sync started",
@ -893,5 +888,8 @@
"MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.",
"HeaderNextUp": "\u4e0b\u4e00\u96c6", "HeaderNextUp": "\u4e0b\u4e00\u96c6",
"HeaderLatestMovies": "\u6700\u65b0\u96fb\u5f71", "HeaderLatestMovies": "\u6700\u65b0\u96fb\u5f71",
"HeaderLatestEpisodes": "\u6700\u65b0\u7bc0\u76ee\u55ae\u5143" "HeaderLatestEpisodes": "\u6700\u65b0\u7bc0\u76ee\u55ae\u5143",
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
"HeaderEmailAddress": "E-Mail Address",
"TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address."
} }

View file

@ -12,8 +12,7 @@
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true"> <div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
<a href="support.html" data-role="button" class="ui-btn-active">${TabGeneral}</a> <a href="support.html" data-role="button" class="ui-btn-active">${TabGeneral}</a>
<a href="log.html" data-role="button">${TabLogs}</a> <a href="log.html" data-role="button">${TabLogs}</a>
<a href="supporter.html" data-role="button" class="tabSupporterMembership">${TabDonate}</a> <a href="supporterkey.html" data-role="button" class="tabSupporterMembership">${TabEmbyPremiere}</a>
<a href="supporterkey.html" data-role="button" class="tabSupporterMembership">${TabSupporterKey}</a>
<a href="about.html" data-role="button">${TabAbout}</a> <a href="about.html" data-role="button">${TabAbout}</a>
</div> </div>
<p>${ProjectHasCommunity}</p> <p>${ProjectHasCommunity}</p>

View file

@ -1,124 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>${TitleSupport}</title>
</head>
<body>
<div id="supporterPage" data-role="page" class="page type-interior" data-require="scripts/supporterpage,scripts/registrationservices,fontawesome">
<div data-role="content">
<div class="content-primary">
<div class="readOnlyContent">
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
<a href="support.html" data-role="button">${TabGeneral}</a>
<a href="log.html" data-role="button">${TabLogs}</a>
<a href="supporter.html" data-role="button" class="ui-btn-active tabSupporterMembership">${TabDonate}</a>
<a href="supporterkey.html" data-role="button" class="tabSupporterMembership">${TabSupporterKey}</a>
<a href="about.html" data-role="button">${TabAbout}</a>
</div>
<h3>${HeaderSupportTheTeam}</h3>
<p>${HeaderSupportTheTeamHelp}</p>
<p class="benefits"></p>
<div class="currentPlanInfo" style="display:none;margin-top:1.5em;">
<p class="planSummary"></p>
</div>
<div class="supporterContainer hide">
<br />
<a class="clearLink" href="http://emby.media/premiere" target="_blank">
<paper-button raised class="block accent"><iron-icon icon="check"></iron-icon><span>${HeaderBecomeProjectSupporter}</span></paper-button>
</a>
</div>
<form style="margin-top:1.5em;display:none;" name="_xclick" class="supporterForm" method="post">
<fieldset data-role="controlgroup">
<legend>${HeaderDonationType}</legend>
<div class="fldLifetime">
<input type="radio" class="radioDonationType" name="radioDonationType" id="radioLifetimeSupporter" value="lifetime" checked="checked">
<label for="radioLifetimeSupporter">
${OptionLifeTimeSupporterMembership}<br />
<span class="lifetimeAmount"></span>
</label>
</div>
<div class="fldYearly">
<input type="radio" class="radioDonationType" name="radioDonationType" id="radioYearlySupporter" value="yearly">
<label for="radioYearlySupporter">
${OptionYearlySupporterMembership}<br />
<span class="yearlyAmount"></span>
</label>
</div>
<div class="fldMonthly">
<input type="radio" class="radioDonationType" name="radioDonationType" id="radioMonthlySupporter" value="monthly">
<label for="radioMonthlySupporter">
${OptionMonthlySupporterMembership}<br />
<span class="monthlyAmount"></span>
</label>
</div>
</fieldset>
<div class="fieldDescription recurringSubscriptionCancellationHelp"></div>
<!--CORDOVA_EXCLUDE_START-->
<fieldset data-role="controlgroup" style="margin-top:1.5em;">
<input type="radio" class="radioDonationType" name="radioDonationType" id="radioOneTimeDonation" value="once">
<label for="radioOneTimeDonation">
${OptionMakeOneTimeDonation}<br />
</label>
</fieldset>
<div id="oneTimeDescription" class="fieldDescription" style="display:none;">${OptionOneTimeDescription}</div>
<div class="fldOneTimeDonationAmount">
<br />
<label for="selectOneTimeDonationAmount">${LabelOneTimeDonationAmount}</label>
<select id="selectOneTimeDonationAmount">
<option value="5">$5</option>
<option value="10" selected="selected">$10</option>
<option value="20">$20</option>
<option value="30">$30</option>
<option value="40">$40</option>
<option value="50">$50</option>
<option value="100">$100</option>
<option value="200">$200</option>
<option value="300">$300</option>
<option value="400">$400</option>
<option value="500">$500</option>
</select>
</div>
<br />
<input type="hidden" name="cmd" id="ppCmd" value="_xclick">
<input type="hidden" name="business" value="donation@mediabrowser.tv">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="item_name" id="ppItemName" value="Emby Supporter">
<input type="hidden" name="item_number" id="ppItemNo" value="MBSupporter">
<input type="hidden" name="notify_url" value="http://mb3admin.com/admin/service/services/ppipn.php">
<input type="hidden" name="return" id="returnUrl" value="#">
<!--CORDOVA_EXCLUDE_END-->
<button type="submit" data-role="none" class="btn" style="background-color:#179BD7">
<!--CORDOVA_REPLACE_SUPPORTER_SUBMIT_START-->
<i class="fa fa-paypal"></i>
<span>${ButtonDonateWithPayPal}</span>
<!--CORDOVA_REPLACE_SUPPORTER_SUBMIT_END-->
</button>
<input type="hidden" id="donateAmt" name="amount" />
</form>
<p>${DonationNextStep}</p>
<p><a href="supporterkey.html">${ButtonEnterSupporterKey}</a></p>
<!-- Used only for instructional message box -->
<input type="hidden" class="hfPlanType" />
<input type="hidden" class="hfIsActive" />
</div>
</div>
</div>
</div>
</body>
</html>

View file

@ -12,22 +12,41 @@
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true"> <div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
<a href="support.html" data-role="button">${TabGeneral}</a> <a href="support.html" data-role="button">${TabGeneral}</a>
<a href="log.html" data-role="button">${TabLogs}</a> <a href="log.html" data-role="button">${TabLogs}</a>
<a href="supporter.html" data-role="button" class="tabSupporterMembership">${TabDonate}</a> <a href="supporterkey.html" data-role="button" class="ui-btn-active tabSupporterMembership">${TabEmbyPremiere}</a>
<a href="supporterkey.html" data-role="button" class="ui-btn-active tabSupporterMembership">${TabSupporterKey}</a>
<a href="about.html" data-role="button">${TabAbout}</a> <a href="about.html" data-role="button">${TabAbout}</a>
</div> </div>
<div>
<h1>${HeaderSupportTheTeam}</h1>
<p>${HeaderSupportTheTeamHelp}</p>
<p class="benefits"></p>
<div class="supporterContainer hide">
<br />
<a class="clearLink" href="http://emby.media/premiere" target="_blank">
<paper-button raised class="block accent"><iron-icon icon="check"></iron-icon><span>${HeaderBecomeProjectSupporter}</span></paper-button>
</a>
</div>
</div>
<form id="supporterKeyForm"> <form id="supporterKeyForm">
<div style="margin: 1em 0;"> <div style="margin: 3em 0 1em;">
<label for="txtSupporterKey">${LabelSupporterKey}</label>
<input type="password" id="txtSupporterKey" name="txtSupporterKey" data-inline="true" /> <h1>${TabSupporterKey}</h1>
<div class="fieldDescription"> <div>
${LabelSupporterKeyHelp} <label for="txtSupporterKey">${LabelSupporterKey}</label>
<input type="password" id="txtSupporterKey" name="txtSupporterKey" data-inline="true" />
<div class="fieldDescription">
${LabelSupporterKeyHelp}
</div>
</div> </div>
<div style="display: none; padding: 1em; margin-top: 1em; font-weight: normal;" class="ui-bar-a notSupporter"> <div style="display: none; padding: 1em; margin-top: 1em; font-weight: normal;" class="ui-bar-a notSupporter">
<p><strong>${MessageInvalidKey}</strong></p> <p>
<strong>${MessageInvalidKey}</strong>
</p>
<p> <p>
${ErrorMessageInvalidKey} ${ErrorMessageInvalidKey}
</p> </p>
@ -35,7 +54,9 @@
</div> </div>
<p> <p>
<button type="submit" id="mbLegacyKeyBtn" data-theme="b" data-icon="check">${ButtonSave}</button> <button type="submit" id="mbLegacyKeyBtn" class="clearButton">
<paper-button raised class="block submit"><iron-icon icon="check"></iron-icon><span>${ButtonSave}</span></paper-button>
</button>
</p> </p>
</form> </form>
<br /> <br />
@ -49,8 +70,9 @@
<div class="fieldDescription">${LabelSupporterEmailAddress}</div> <div class="fieldDescription">${LabelSupporterEmailAddress}</div>
</div> </div>
<p> <p>
<button type="submit" id="mbRetrieveKeyBtn" data-icon="action" data-theme="b">${ButtonRetrieveKey}</button> <button type="submit" id="mbRetrieveKeyBtn" class="clearButton">
<paper-button raised class="block submit"><iron-icon icon="check"></iron-icon><span>${ButtonRetrieveKey}</span></paper-button>
</button>
</p> </p>
</form> </form>
</div> </div>
@ -81,7 +103,9 @@
<input type="password" required="required" id="txtOldKey" name="txtOldKey" /> <input type="password" required="required" id="txtOldKey" name="txtOldKey" />
</p> </p>
<p> <p>
<button type="submit" id="mbLinkKeysBtn" data-icon="check" data-theme="b">${ButtonLinkKeys}</button> <button type="submit" id="mbLinkKeysBtn" class="clearButton">
<paper-button raised class="block submit"><iron-icon icon="check"></iron-icon><span>${ButtonLinkKeys}</span></paper-button>
</button>
</p> </p>
</form> </form>
</div> </div>