mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 19:38:20 -07:00
commit
f29a2b4bfd
@ -12,6 +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="#" data-role="button" class="ui-btn-active">${TabGeneral}</a>
|
<a href="#" data-role="button" class="ui-btn-active">${TabGeneral}</a>
|
||||||
<a href="dashboardhosting.html" data-role="button">${TabHosting}</a>
|
<a href="dashboardhosting.html" data-role="button">${TabHosting}</a>
|
||||||
|
<a href="serversecurity.html" data-role="button">${TabSecurity}</a>
|
||||||
</div>
|
</div>
|
||||||
<form class="advancedConfigurationForm">
|
<form class="advancedConfigurationForm">
|
||||||
|
|
||||||
|
@ -16,12 +16,12 @@
|
|||||||
},
|
},
|
||||||
"devDependencies": {},
|
"devDependencies": {},
|
||||||
"ignore": [],
|
"ignore": [],
|
||||||
"version": "1.0.26",
|
"version": "1.0.27",
|
||||||
"_release": "1.0.26",
|
"_release": "1.0.27",
|
||||||
"_resolution": {
|
"_resolution": {
|
||||||
"type": "version",
|
"type": "version",
|
||||||
"tag": "1.0.26",
|
"tag": "1.0.27",
|
||||||
"commit": "6fe8727397b13e87e3afaeee600f600269e0ee18"
|
"commit": "c8758fe411230a36326a0bd72e8d4d5971f506f7"
|
||||||
},
|
},
|
||||||
"_source": "git://github.com/MediaBrowser/Emby.ApiClient.Javascript.git",
|
"_source": "git://github.com/MediaBrowser/Emby.ApiClient.Javascript.git",
|
||||||
"_target": "~1.0.3",
|
"_target": "~1.0.3",
|
||||||
|
@ -510,7 +510,12 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
self.isWebSocketSupported = function () {
|
self.isWebSocketSupported = function () {
|
||||||
|
try {
|
||||||
return WebSocket != null;
|
return WebSocket != null;
|
||||||
|
}
|
||||||
|
catch (err) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
self.openWebSocket = function () {
|
self.openWebSocket = function () {
|
||||||
|
@ -12,6 +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="advanced.html" data-role="button">${TabGeneral}</a>
|
<a href="advanced.html" data-role="button">${TabGeneral}</a>
|
||||||
<a href="#" data-role="button" class="ui-btn-active">${TabHosting}</a>
|
<a href="#" data-role="button" class="ui-btn-active">${TabHosting}</a>
|
||||||
|
<a href="serversecurity.html" data-role="button">${TabSecurity}</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<form class="dashboardHostingForm">
|
<form class="dashboardHostingForm">
|
||||||
|
@ -22,6 +22,7 @@
|
|||||||
return new Promise(function (resolve, reject) {
|
return new Promise(function (resolve, reject) {
|
||||||
|
|
||||||
if (getDictionary(name, culture)) {
|
if (getDictionary(name, culture)) {
|
||||||
|
console.log('Globalize loadDictionary resolved: ' + name);
|
||||||
resolve();
|
resolve();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -45,6 +46,7 @@
|
|||||||
|
|
||||||
xhr2.onload = function (e) {
|
xhr2.onload = function (e) {
|
||||||
dictionaries[url] = JSON.parse(this.response);
|
dictionaries[url] = JSON.parse(this.response);
|
||||||
|
console.log('Globalize loadDictionary resolved: ' + name);
|
||||||
resolve();
|
resolve();
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -58,6 +60,7 @@
|
|||||||
if (this.status < 400) {
|
if (this.status < 400) {
|
||||||
|
|
||||||
dictionaries[url] = JSON.parse(this.response);
|
dictionaries[url] = JSON.parse(this.response);
|
||||||
|
console.log('Globalize loadDictionary resolved: ' + name);
|
||||||
resolve();
|
resolve();
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
(function ($, document, LibraryBrowser) {
|
(function ($, document) {
|
||||||
|
|
||||||
function renderItems(page, item) {
|
function renderItems(page, item) {
|
||||||
|
|
||||||
@ -337,4 +337,4 @@
|
|||||||
renderItems: renderItems
|
renderItems: renderItems
|
||||||
};
|
};
|
||||||
|
|
||||||
})(jQuery, document, LibraryBrowser);
|
})(jQuery, document);
|
@ -1,4 +1,4 @@
|
|||||||
(function ($, document, LibraryBrowser, window) {
|
(function ($, document, window) {
|
||||||
|
|
||||||
var currentItem;
|
var currentItem;
|
||||||
|
|
||||||
@ -2092,4 +2092,4 @@
|
|||||||
|
|
||||||
window.ItemDetailPage = new itemDetailPage();
|
window.ItemDetailPage = new itemDetailPage();
|
||||||
|
|
||||||
})(jQuery, document, LibraryBrowser, window);
|
})(jQuery, document, window);
|
@ -1028,6 +1028,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
MediaController.init = function () {
|
MediaController.init = function () {
|
||||||
|
|
||||||
|
console.log('Beginning MediaController.init');
|
||||||
if (window.ApiClient) {
|
if (window.ApiClient) {
|
||||||
initializeApiClient(window.ApiClient);
|
initializeApiClient(window.ApiClient);
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
(function ($, document, Dashboard, LibraryBrowser) {
|
(function ($, document, Dashboard) {
|
||||||
|
|
||||||
function notifications() {
|
function notifications() {
|
||||||
|
|
||||||
@ -205,4 +205,4 @@
|
|||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
})(jQuery, document, Dashboard, LibraryBrowser);
|
})(jQuery, document, Dashboard);
|
144
dashboard-ui/scripts/serversecurity.js
Normal file
144
dashboard-ui/scripts/serversecurity.js
Normal file
@ -0,0 +1,144 @@
|
|||||||
|
(function ($, document) {
|
||||||
|
|
||||||
|
function revoke(page, key) {
|
||||||
|
|
||||||
|
Dashboard.confirm(Globalize.translate('MessageConfirmRevokeApiKey'), Globalize.translate('HeaderConfirmRevokeApiKey'), function (result) {
|
||||||
|
|
||||||
|
if (result) {
|
||||||
|
|
||||||
|
Dashboard.showLoadingMsg();
|
||||||
|
|
||||||
|
ApiClient.ajax({
|
||||||
|
type: "DELETE",
|
||||||
|
url: ApiClient.getUrl('Auth/Keys/' + key)
|
||||||
|
|
||||||
|
}).then(function () {
|
||||||
|
|
||||||
|
loadData(page);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderKeys(page, keys, users) {
|
||||||
|
|
||||||
|
var rows = keys.map(function (item) {
|
||||||
|
|
||||||
|
var html = '';
|
||||||
|
|
||||||
|
html += '<tr>';
|
||||||
|
|
||||||
|
html += '<td>';
|
||||||
|
html += '<button data-token="' + item.AccessToken + '" class="btnRevoke" data-mini="true" title="' + Globalize.translate('ButtonRevoke') + '" style="margin:0;">' + Globalize.translate('ButtonRevoke') + '</button>';
|
||||||
|
html += '</td>';
|
||||||
|
|
||||||
|
html += '<td style="vertical-align:middle;">';
|
||||||
|
html += (item.AccessToken);
|
||||||
|
html += '</td>';
|
||||||
|
|
||||||
|
html += '<td style="vertical-align:middle;">';
|
||||||
|
html += (item.AppName || '');
|
||||||
|
html += '</td>';
|
||||||
|
|
||||||
|
html += '<td style="vertical-align:middle;">';
|
||||||
|
html += (item.DeviceName || '');
|
||||||
|
html += '</td>';
|
||||||
|
|
||||||
|
html += '<td style="vertical-align:middle;">';
|
||||||
|
|
||||||
|
var user = users.filter(function (u) {
|
||||||
|
|
||||||
|
return u.Id == item.UserId;
|
||||||
|
})[0];
|
||||||
|
|
||||||
|
if (user) {
|
||||||
|
html += user.Name;
|
||||||
|
}
|
||||||
|
|
||||||
|
html += '</td>';
|
||||||
|
|
||||||
|
html += '<td style="vertical-align:middle;">';
|
||||||
|
|
||||||
|
var date = parseISO8601Date(item.DateCreated, { toLocal: true });
|
||||||
|
|
||||||
|
html += date.toLocaleDateString() + ' ' + LibraryBrowser.getDisplayTime(date);
|
||||||
|
|
||||||
|
html += '</td>';
|
||||||
|
|
||||||
|
html += '</tr>';
|
||||||
|
|
||||||
|
return html;
|
||||||
|
|
||||||
|
}).join('');
|
||||||
|
|
||||||
|
var elem = $('.resultBody', page).html(rows).parents('.tblApiKeys').table("refresh").trigger('create');
|
||||||
|
|
||||||
|
$('.btnRevoke', elem).on('click', function () {
|
||||||
|
|
||||||
|
revoke(page, this.getAttribute('data-token'));
|
||||||
|
});
|
||||||
|
|
||||||
|
Dashboard.hideLoadingMsg();
|
||||||
|
}
|
||||||
|
|
||||||
|
function loadData(page) {
|
||||||
|
|
||||||
|
Dashboard.showLoadingMsg();
|
||||||
|
|
||||||
|
ApiClient.getUsers().then(function (users) {
|
||||||
|
|
||||||
|
ApiClient.getJSON(ApiClient.getUrl('Auth/Keys')).then(function (result) {
|
||||||
|
|
||||||
|
renderKeys(page, result.Items, users);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function onSubmit() {
|
||||||
|
var form = this;
|
||||||
|
var page = $(form).parents('.page');
|
||||||
|
|
||||||
|
Dashboard.showLoadingMsg();
|
||||||
|
|
||||||
|
ApiClient.ajax({
|
||||||
|
type: "POST",
|
||||||
|
url: ApiClient.getUrl('Auth/Keys', {
|
||||||
|
|
||||||
|
App: $('#txtAppName', form).val()
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
}).then(function () {
|
||||||
|
|
||||||
|
$('.newKeyPanel', page).panel('close');
|
||||||
|
|
||||||
|
loadData(page);
|
||||||
|
});
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
pageIdOn('pageinit', "serverSecurityPage", function () {
|
||||||
|
|
||||||
|
var page = this;
|
||||||
|
|
||||||
|
$('.btnNewKey', page).on('click', function () {
|
||||||
|
|
||||||
|
$('.newKeyPanel', page).panel('toggle');
|
||||||
|
|
||||||
|
$('#txtAppName', page).val('').focus();
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
$('.newKeyForm').off('submit', onSubmit).on('submit', onSubmit);
|
||||||
|
|
||||||
|
});
|
||||||
|
pageIdOn('pagebeforeshow', "serverSecurityPage", function () {
|
||||||
|
|
||||||
|
var page = this;
|
||||||
|
|
||||||
|
loadData(page);
|
||||||
|
});
|
||||||
|
|
||||||
|
})(jQuery, document);
|
@ -1,4 +1,4 @@
|
|||||||
(function ($, document, LibraryBrowser, window) {
|
(function ($, document, window) {
|
||||||
|
|
||||||
var currentItem;
|
var currentItem;
|
||||||
|
|
||||||
@ -87,4 +87,4 @@
|
|||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
})(jQuery, document, LibraryBrowser, window);
|
})(jQuery, document, window);
|
@ -1680,6 +1680,7 @@ var AppInfo = {};
|
|||||||
window.ConnectionManager.clearData();
|
window.ConnectionManager.clearData();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
console.log('binding to apiclientcreated');
|
||||||
Events.on(ConnectionManager, 'apiclientcreated', onApiClientCreated);
|
Events.on(ConnectionManager, 'apiclientcreated', onApiClientCreated);
|
||||||
|
|
||||||
if (Dashboard.isConnectMode()) {
|
if (Dashboard.isConnectMode()) {
|
||||||
@ -1702,12 +1703,19 @@ var AppInfo = {};
|
|||||||
}
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
|
console.log('loading ApiClient singleton');
|
||||||
|
|
||||||
return getRequirePromise(['apiclient']).then(function (apiClientFactory) {
|
return getRequirePromise(['apiclient']).then(function (apiClientFactory) {
|
||||||
|
|
||||||
|
console.log('creating ApiClient singleton');
|
||||||
|
|
||||||
var apiClient = new apiClientFactory(Dashboard.serverAddress(), AppInfo.appName, AppInfo.appVersion, AppInfo.deviceName, AppInfo.deviceId, window.devicePixelRatio);
|
var apiClient = new apiClientFactory(Dashboard.serverAddress(), AppInfo.appName, AppInfo.appVersion, AppInfo.deviceName, AppInfo.deviceId, window.devicePixelRatio);
|
||||||
apiClient.enableAutomaticNetworking = false;
|
apiClient.enableAutomaticNetworking = false;
|
||||||
ConnectionManager.addApiClient(apiClient);
|
ConnectionManager.addApiClient(apiClient);
|
||||||
Dashboard.importCss(apiClient.getUrl('Branding/Css'));
|
Dashboard.importCss(apiClient.getUrl('Branding/Css'));
|
||||||
window.ApiClient = apiClient;
|
window.ApiClient = apiClient;
|
||||||
|
console.log('loaded ApiClient singleton');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@ -1846,7 +1854,8 @@ var AppInfo = {};
|
|||||||
browserdeviceprofile: embyWebComponentsBowerPath + "/browserdeviceprofile",
|
browserdeviceprofile: embyWebComponentsBowerPath + "/browserdeviceprofile",
|
||||||
browser: embyWebComponentsBowerPath + "/browser",
|
browser: embyWebComponentsBowerPath + "/browser",
|
||||||
qualityoptions: embyWebComponentsBowerPath + "/qualityoptions",
|
qualityoptions: embyWebComponentsBowerPath + "/qualityoptions",
|
||||||
connectservice: apiClientBowerPath + '/connectservice'
|
connectservice: apiClientBowerPath + '/connectservice',
|
||||||
|
hammer: bowerPath + "/hammerjs/hammer.min"
|
||||||
};
|
};
|
||||||
|
|
||||||
if (navigator.webkitPersistentStorage) {
|
if (navigator.webkitPersistentStorage) {
|
||||||
@ -1957,10 +1966,6 @@ var AppInfo = {};
|
|||||||
|
|
||||||
define("jqmpanel", ["thirdparty/jquerymobile-1.4.5/jqm.panel", 'css!thirdparty/jquerymobile-1.4.5/jqm.panel.css']);
|
define("jqmpanel", ["thirdparty/jquerymobile-1.4.5/jqm.panel", 'css!thirdparty/jquerymobile-1.4.5/jqm.panel.css']);
|
||||||
|
|
||||||
define("hammer", [bowerPath + "/hammerjs/hammer.min"], function (Hammer) {
|
|
||||||
return Hammer;
|
|
||||||
});
|
|
||||||
|
|
||||||
define("swipebox", [bowerPath + '/swipebox/src/js/jquery.swipebox.min', "css!" + bowerPath + "/swipebox/src/css/swipebox.min.css"]);
|
define("swipebox", [bowerPath + '/swipebox/src/js/jquery.swipebox.min', "css!" + bowerPath + "/swipebox/src/css/swipebox.min.css"]);
|
||||||
|
|
||||||
define('fetch', [bowerPath + '/fetch/fetch']);
|
define('fetch', [bowerPath + '/fetch/fetch']);
|
||||||
@ -2008,7 +2013,11 @@ var AppInfo = {};
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (Dashboard.isRunningInCordova() && browserInfo.android) {
|
if (Dashboard.isRunningInCordova() && browserInfo.android) {
|
||||||
|
if (MainActivity.getChromeVersion() >= 48) {
|
||||||
define("audiorenderer", ["scripts/htmlmediarenderer"]);
|
define("audiorenderer", ["scripts/htmlmediarenderer"]);
|
||||||
|
} else {
|
||||||
|
define("audiorenderer", ["cordova/android/vlcplayer"]);
|
||||||
|
}
|
||||||
define("videorenderer", ["cordova/android/vlcplayer"]);
|
define("videorenderer", ["cordova/android/vlcplayer"]);
|
||||||
}
|
}
|
||||||
else if (Dashboard.isRunningInCordova() && browserInfo.safari) {
|
else if (Dashboard.isRunningInCordova() && browserInfo.safari) {
|
||||||
@ -2148,7 +2157,6 @@ var AppInfo = {};
|
|||||||
deps.push('paper-icon-button');
|
deps.push('paper-icon-button');
|
||||||
deps.push('paper-button');
|
deps.push('paper-button');
|
||||||
deps.push('thirdparty/jquerymobile-1.4.5/jquery.mobile.custom.js');
|
deps.push('thirdparty/jquerymobile-1.4.5/jquery.mobile.custom.js');
|
||||||
deps.push('scripts/librarybrowser');
|
|
||||||
promises.push(getRequirePromise(deps));
|
promises.push(getRequirePromise(deps));
|
||||||
|
|
||||||
promises.push(Globalize.ensure());
|
promises.push(Globalize.ensure());
|
||||||
@ -2156,6 +2164,7 @@ var AppInfo = {};
|
|||||||
|
|
||||||
Promise.all(promises).then(function () {
|
Promise.all(promises).then(function () {
|
||||||
|
|
||||||
|
console.log('initAfterDependencies promises resolved');
|
||||||
MediaController.init();
|
MediaController.init();
|
||||||
|
|
||||||
document.title = Globalize.translateDocument(document.title, 'html');
|
document.title = Globalize.translateDocument(document.title, 'html');
|
||||||
@ -2206,6 +2215,8 @@ var AppInfo = {};
|
|||||||
|
|
||||||
function onAppReady() {
|
function onAppReady() {
|
||||||
|
|
||||||
|
console.log('Begin onAppReady');
|
||||||
|
|
||||||
var deps = [];
|
var deps = [];
|
||||||
|
|
||||||
if (!(AppInfo.isNativeApp && browserInfo.android)) {
|
if (!(AppInfo.isNativeApp && browserInfo.android)) {
|
||||||
@ -2248,6 +2259,7 @@ var AppInfo = {};
|
|||||||
deps.push('scripts/sync');
|
deps.push('scripts/sync');
|
||||||
deps.push('scripts/backdrops');
|
deps.push('scripts/backdrops');
|
||||||
deps.push('scripts/librarymenu');
|
deps.push('scripts/librarymenu');
|
||||||
|
deps.push('scripts/librarybrowser');
|
||||||
|
|
||||||
deps.push('css!css/card.css');
|
deps.push('css!css/card.css');
|
||||||
|
|
||||||
|
58
dashboard-ui/serversecurity.html
Normal file
58
dashboard-ui/serversecurity.html
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>${TitleAdvanced}</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="serverSecurityPage" data-role="page" class="page type-interior advancedConfigurationPage" data-require="jqmpanel,jqmtable,scripts/serversecurity,detailtablecss">
|
||||||
|
<div data-role="content">
|
||||||
|
<div class="content-primary">
|
||||||
|
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
|
||||||
|
<a href="advanced.html" data-role="button">${TabGeneral}</a>
|
||||||
|
<a href="dashboardhosting.html" data-role="button">${TabHosting}</a>
|
||||||
|
<a href="#" data-role="button" class="ui-btn-active">${TabSecurity}</a>
|
||||||
|
</div>
|
||||||
|
<div class="detailSectionHeader" style="margin-top:2.5em;">
|
||||||
|
<h3 style="margin:.6em 0;vertical-align:middle;display:inline-block;">
|
||||||
|
${HeaderApiKeys}
|
||||||
|
</h3>
|
||||||
|
<paper-button raised class="btnNewKey submit mini" style="margin-left:1em;" title="${ButtonNew}">
|
||||||
|
<iron-icon icon="add"></iron-icon>
|
||||||
|
<span>${ButtonAdd}</span>
|
||||||
|
</paper-button>
|
||||||
|
</div>
|
||||||
|
<p>${HeaderApiKeysHelp}</p>
|
||||||
|
<br />
|
||||||
|
<table data-role="table" data-mode="reflow" class="tblApiKeys stripedTable ui-responsive table-stroke" style="display: table;">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th></th>
|
||||||
|
<th>${HeaderApiKey}</th>
|
||||||
|
<th>${HeaderApp}</th>
|
||||||
|
<th>${HeaderDevice}</th>
|
||||||
|
<th>${HeaderUser}</th>
|
||||||
|
<th>${HeaderDateIssued}</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody class="resultBody"></tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div data-role="panel" class="newKeyPanel" data-position="right" data-display="overlay" data-position-fixed="true">
|
||||||
|
<form class="newKeyForm">
|
||||||
|
<h3>${HeaderNewApiKey}</h3>
|
||||||
|
<p>${HeaderNewApiKeyHelp}</p>
|
||||||
|
<div>
|
||||||
|
<label for="txtAppName">${LabelAppName}</label>
|
||||||
|
<input type="text" id="txtAppName" required="required" />
|
||||||
|
<div class="fieldDescription">${LabelAppNameExample}</div>
|
||||||
|
</div>
|
||||||
|
<br />
|
||||||
|
<p>
|
||||||
|
<button type="submit" data-icon="plus" data-mini="true" data-theme="b">${ButtonCreate}</button>
|
||||||
|
</p>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -25,7 +25,7 @@
|
|||||||
"LabelWindowsService": "\u062e\u062f\u0645\u0629 \u0627\u0644\u0648\u0646\u062f\u0648\u0632",
|
"LabelWindowsService": "\u062e\u062f\u0645\u0629 \u0627\u0644\u0648\u0646\u062f\u0648\u0632",
|
||||||
"AWindowsServiceHasBeenInstalled": "\u062a\u0645 \u062a\u062b\u0628\u064a\u062a \u062e\u062f\u0645\u0629 \u0627\u0644\u0648\u0646\u062f\u0648\u0632",
|
"AWindowsServiceHasBeenInstalled": "\u062a\u0645 \u062a\u062b\u0628\u064a\u062a \u062e\u062f\u0645\u0629 \u0627\u0644\u0648\u0646\u062f\u0648\u0632",
|
||||||
"WindowsServiceIntro1": "Emby Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.",
|
"WindowsServiceIntro1": "Emby Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.",
|
||||||
"WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. Please note that at this time the service is unable to self-update, so new versions will require manual interaction.",
|
"WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. When running as a service, you will need to ensure that the service account has access to your media folders.",
|
||||||
"WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click <b>Finish<\/b> to view the <b>Server Dashboard<\/b>.",
|
"WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click <b>Finish<\/b> to view the <b>Server Dashboard<\/b>.",
|
||||||
"LabelConfigureSettings": "\u0636\u0628\u0637 \u0627\u0644\u0627\u0639\u062f\u0627\u062f\u0627\u062a",
|
"LabelConfigureSettings": "\u0636\u0628\u0637 \u0627\u0644\u0627\u0639\u062f\u0627\u062f\u0627\u062a",
|
||||||
"LabelEnableVideoImageExtraction": "\u062a\u0641\u0639\u064a\u0644 \u0627\u0633\u062a\u062e\u0631\u0627\u062c \u0635\u0648\u0631 \u0627\u0644\u0641\u064a\u062f\u064a\u0648",
|
"LabelEnableVideoImageExtraction": "\u062a\u0641\u0639\u064a\u0644 \u0627\u0633\u062a\u062e\u0631\u0627\u062c \u0635\u0648\u0631 \u0627\u0644\u0641\u064a\u062f\u064a\u0648",
|
||||||
@ -675,7 +675,7 @@
|
|||||||
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
||||||
"OptionOtherApps": "Other apps",
|
"OptionOtherApps": "Other apps",
|
||||||
"OptionMobileApps": "Mobile apps",
|
"OptionMobileApps": "Mobile apps",
|
||||||
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
|
"HeaderNotificationList": "Click on a notification to configure sending options.",
|
||||||
"NotificationOptionApplicationUpdateAvailable": "Application update available",
|
"NotificationOptionApplicationUpdateAvailable": "Application update available",
|
||||||
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
|
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
|
||||||
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
|
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
|
||||||
|
@ -675,7 +675,7 @@
|
|||||||
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
||||||
"OptionOtherApps": "Other apps",
|
"OptionOtherApps": "Other apps",
|
||||||
"OptionMobileApps": "Mobile apps",
|
"OptionMobileApps": "Mobile apps",
|
||||||
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
|
"HeaderNotificationList": "Click on a notification to configure sending options.",
|
||||||
"NotificationOptionApplicationUpdateAvailable": "Application update available",
|
"NotificationOptionApplicationUpdateAvailable": "Application update available",
|
||||||
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
|
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
|
||||||
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
|
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
|
||||||
|
@ -675,7 +675,7 @@
|
|||||||
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
||||||
"OptionOtherApps": "Altres apps",
|
"OptionOtherApps": "Altres apps",
|
||||||
"OptionMobileApps": "Apps per a m\u00f2bils",
|
"OptionMobileApps": "Apps per a m\u00f2bils",
|
||||||
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
|
"HeaderNotificationList": "Click on a notification to configure sending options.",
|
||||||
"NotificationOptionApplicationUpdateAvailable": "Actualitzaci\u00f3 d'aplicaci\u00f3 disponible",
|
"NotificationOptionApplicationUpdateAvailable": "Actualitzaci\u00f3 d'aplicaci\u00f3 disponible",
|
||||||
"NotificationOptionApplicationUpdateInstalled": "Actualitzaci\u00f3 d'aplicaci\u00f3 instal\u00b7lada",
|
"NotificationOptionApplicationUpdateInstalled": "Actualitzaci\u00f3 d'aplicaci\u00f3 instal\u00b7lada",
|
||||||
"NotificationOptionPluginUpdateInstalled": "Actualitzaci\u00f3 de complement instal\u00b7lada",
|
"NotificationOptionPluginUpdateInstalled": "Actualitzaci\u00f3 de complement instal\u00b7lada",
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
"LabelWindowsService": "\u03a5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b1 Windows",
|
"LabelWindowsService": "\u03a5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b1 Windows",
|
||||||
"AWindowsServiceHasBeenInstalled": "\u039c\u03b9\u03b1 \u03c5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b1 Windows \u03ad\u03c7\u03b5\u03b9 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03b1\u03b8\u03b5\u03af",
|
"AWindowsServiceHasBeenInstalled": "\u039c\u03b9\u03b1 \u03c5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b1 Windows \u03ad\u03c7\u03b5\u03b9 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03b1\u03b8\u03b5\u03af",
|
||||||
"WindowsServiceIntro1": "\u039f \u0394\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ae\u03c2 Emby \u03ba\u03b1\u03bd\u03bf\u03bd\u03b9\u03ba\u03ac \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03b5\u03af \u03c3\u03b1\u03bd \u03bc\u03b9\u03b1 \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03bc\u03b5 \u03b5\u03b9\u03ba\u03bf\u03bd\u03af\u03b4\u03b9\u03bf, \u03b1\u03bb\u03bb\u03ac \u03b1\u03bd \u03c0\u03c1\u03bf\u03c4\u03b9\u03bc\u03ac\u03c4\u03b5 \u03bd\u03b1 \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03b5\u03af \u03c3\u03b1\u03bd \u03bc\u03b9\u03b1 \u03c5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b1 \u03c3\u03c4\u03bf \u03b2\u03ac\u03b8\u03bf\u03c2, \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b5\u03ba\u03ba\u03b9\u03bd\u03b7\u03b8\u03b5\u03af \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u03c0\u03af\u03bd\u03b1\u03ba\u03b1 \u03b5\u03bb\u03ad\u03b3\u03c7\u03bf\u03c5 \u03c4\u03c9\u03bd \u03c5\u03c0\u03b7\u03c1\u03b5\u03c3\u03b9\u03ce\u03bd \u03c4\u03c9\u03bd Windows",
|
"WindowsServiceIntro1": "\u039f \u0394\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ae\u03c2 Emby \u03ba\u03b1\u03bd\u03bf\u03bd\u03b9\u03ba\u03ac \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03b5\u03af \u03c3\u03b1\u03bd \u03bc\u03b9\u03b1 \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03bc\u03b5 \u03b5\u03b9\u03ba\u03bf\u03bd\u03af\u03b4\u03b9\u03bf, \u03b1\u03bb\u03bb\u03ac \u03b1\u03bd \u03c0\u03c1\u03bf\u03c4\u03b9\u03bc\u03ac\u03c4\u03b5 \u03bd\u03b1 \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03b5\u03af \u03c3\u03b1\u03bd \u03bc\u03b9\u03b1 \u03c5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b1 \u03c3\u03c4\u03bf \u03b2\u03ac\u03b8\u03bf\u03c2, \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b5\u03ba\u03ba\u03b9\u03bd\u03b7\u03b8\u03b5\u03af \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u03c0\u03af\u03bd\u03b1\u03ba\u03b1 \u03b5\u03bb\u03ad\u03b3\u03c7\u03bf\u03c5 \u03c4\u03c9\u03bd \u03c5\u03c0\u03b7\u03c1\u03b5\u03c3\u03b9\u03ce\u03bd \u03c4\u03c9\u03bd Windows",
|
||||||
"WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. Please note that at this time the service is unable to self-update, so new versions will require manual interaction.",
|
"WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. When running as a service, you will need to ensure that the service account has access to your media folders.",
|
||||||
"WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click <b>Finish<\/b> to view the <b>Server Dashboard<\/b>.",
|
"WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click <b>Finish<\/b> to view the <b>Server Dashboard<\/b>.",
|
||||||
"LabelConfigureSettings": "\u0394\u03b9\u03b1\u03bc\u03bf\u03c1\u03c6\u03ce\u03c3\u03b5\u03c4\u03b5 \u03c4\u03b9\u03c2 \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2",
|
"LabelConfigureSettings": "\u0394\u03b9\u03b1\u03bc\u03bf\u03c1\u03c6\u03ce\u03c3\u03b5\u03c4\u03b5 \u03c4\u03b9\u03c2 \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2",
|
||||||
"LabelEnableVideoImageExtraction": "\u0395\u03be\u03b1\u03b3\u03c9\u03b3\u03ae \u0395\u03b9\u03ba\u03cc\u03bd\u03b1\u03c2 \u03b1\u03c0\u03cc \u0392\u03af\u03bd\u03c4\u03b5\u03bf",
|
"LabelEnableVideoImageExtraction": "\u0395\u03be\u03b1\u03b3\u03c9\u03b3\u03ae \u0395\u03b9\u03ba\u03cc\u03bd\u03b1\u03c2 \u03b1\u03c0\u03cc \u0392\u03af\u03bd\u03c4\u03b5\u03bf",
|
||||||
@ -675,7 +675,7 @@
|
|||||||
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
||||||
"OptionOtherApps": "Other apps",
|
"OptionOtherApps": "Other apps",
|
||||||
"OptionMobileApps": "Mobile apps",
|
"OptionMobileApps": "Mobile apps",
|
||||||
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
|
"HeaderNotificationList": "Click on a notification to configure sending options.",
|
||||||
"NotificationOptionApplicationUpdateAvailable": "Application update available",
|
"NotificationOptionApplicationUpdateAvailable": "Application update available",
|
||||||
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
|
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
|
||||||
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
|
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
|
||||||
|
@ -675,7 +675,7 @@
|
|||||||
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
||||||
"OptionOtherApps": "Other apps",
|
"OptionOtherApps": "Other apps",
|
||||||
"OptionMobileApps": "Mobile apps",
|
"OptionMobileApps": "Mobile apps",
|
||||||
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
|
"HeaderNotificationList": "Click on a notification to configure sending options.",
|
||||||
"NotificationOptionApplicationUpdateAvailable": "Application update available",
|
"NotificationOptionApplicationUpdateAvailable": "Application update available",
|
||||||
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
|
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
|
||||||
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
|
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
"LabelWindowsService": "Windows Service",
|
"LabelWindowsService": "Windows Service",
|
||||||
"AWindowsServiceHasBeenInstalled": "A Windows Service has been installed.",
|
"AWindowsServiceHasBeenInstalled": "A Windows Service has been installed.",
|
||||||
"WindowsServiceIntro1": "Emby Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.",
|
"WindowsServiceIntro1": "Emby Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.",
|
||||||
"WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. Please note that at this time the service is unable to self-update, so new versions will require manual interaction.",
|
"WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. When running as a service, you will need to ensure that the service account has access to your media folders.",
|
||||||
"WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click <b>Finish<\/b> to view the <b>Server Dashboard<\/b>.",
|
"WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click <b>Finish<\/b> to view the <b>Server Dashboard<\/b>.",
|
||||||
"LabelConfigureSettings": "Configure settings",
|
"LabelConfigureSettings": "Configure settings",
|
||||||
"LabelEnableVideoImageExtraction": "Enable video image extraction",
|
"LabelEnableVideoImageExtraction": "Enable video image extraction",
|
||||||
@ -675,7 +675,7 @@
|
|||||||
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
||||||
"OptionOtherApps": "Other apps",
|
"OptionOtherApps": "Other apps",
|
||||||
"OptionMobileApps": "Mobile apps",
|
"OptionMobileApps": "Mobile apps",
|
||||||
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
|
"HeaderNotificationList": "Click on a notification to configure sending options.",
|
||||||
"NotificationOptionApplicationUpdateAvailable": "Application update available",
|
"NotificationOptionApplicationUpdateAvailable": "Application update available",
|
||||||
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
|
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
|
||||||
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
|
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
"LabelWindowsService": "Windows Service",
|
"LabelWindowsService": "Windows Service",
|
||||||
"AWindowsServiceHasBeenInstalled": "A Windows Service has been installed.",
|
"AWindowsServiceHasBeenInstalled": "A Windows Service has been installed.",
|
||||||
"WindowsServiceIntro1": "Emby Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.",
|
"WindowsServiceIntro1": "Emby Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.",
|
||||||
"WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. Please note that at this time the service is unable to self-update, so new versions will require manual interaction.",
|
"WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. When running as a service, you will need to ensure that the service account has access to your media folders.",
|
||||||
"WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click <b>Finish<\/b> to view the <b>Server Dashboard<\/b>.",
|
"WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click <b>Finish<\/b> to view the <b>Server Dashboard<\/b>.",
|
||||||
"LabelConfigureSettings": "Configure settings",
|
"LabelConfigureSettings": "Configure settings",
|
||||||
"LabelEnableVideoImageExtraction": "Enable video image extraction",
|
"LabelEnableVideoImageExtraction": "Enable video image extraction",
|
||||||
@ -675,7 +675,7 @@
|
|||||||
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
||||||
"OptionOtherApps": "Other apps",
|
"OptionOtherApps": "Other apps",
|
||||||
"OptionMobileApps": "Mobile apps",
|
"OptionMobileApps": "Mobile apps",
|
||||||
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
|
"HeaderNotificationList": "Click on a notification to configure sending options.",
|
||||||
"NotificationOptionApplicationUpdateAvailable": "Application update available",
|
"NotificationOptionApplicationUpdateAvailable": "Application update available",
|
||||||
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
|
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
|
||||||
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
|
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
|
||||||
|
@ -675,7 +675,7 @@
|
|||||||
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
||||||
"OptionOtherApps": "Other apps",
|
"OptionOtherApps": "Other apps",
|
||||||
"OptionMobileApps": "Mobile apps",
|
"OptionMobileApps": "Mobile apps",
|
||||||
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
|
"HeaderNotificationList": "Click on a notification to configure sending options.",
|
||||||
"NotificationOptionApplicationUpdateAvailable": "Application update available",
|
"NotificationOptionApplicationUpdateAvailable": "Application update available",
|
||||||
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
|
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
|
||||||
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
|
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
|
||||||
|
@ -675,7 +675,7 @@
|
|||||||
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
||||||
"OptionOtherApps": "Other apps",
|
"OptionOtherApps": "Other apps",
|
||||||
"OptionMobileApps": "Mobile apps",
|
"OptionMobileApps": "Mobile apps",
|
||||||
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
|
"HeaderNotificationList": "Click on a notification to configure sending options.",
|
||||||
"NotificationOptionApplicationUpdateAvailable": "Application update available",
|
"NotificationOptionApplicationUpdateAvailable": "Application update available",
|
||||||
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
|
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
|
||||||
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
|
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
"LabelWindowsService": "Windows szolg\u00e1ltat\u00e1s",
|
"LabelWindowsService": "Windows szolg\u00e1ltat\u00e1s",
|
||||||
"AWindowsServiceHasBeenInstalled": "A Windows szolg\u00e1ltat\u00e1s telep\u00edtve lett.",
|
"AWindowsServiceHasBeenInstalled": "A Windows szolg\u00e1ltat\u00e1s telep\u00edtve lett.",
|
||||||
"WindowsServiceIntro1": "Emby Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.",
|
"WindowsServiceIntro1": "Emby Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.",
|
||||||
"WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. Please note that at this time the service is unable to self-update, so new versions will require manual interaction.",
|
"WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. When running as a service, you will need to ensure that the service account has access to your media folders.",
|
||||||
"WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click <b>Finish<\/b> to view the <b>Server Dashboard<\/b>.",
|
"WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click <b>Finish<\/b> to view the <b>Server Dashboard<\/b>.",
|
||||||
"LabelConfigureSettings": "Be\u00e1ll\u00edt\u00e1sok szerkeszt\u00e9se",
|
"LabelConfigureSettings": "Be\u00e1ll\u00edt\u00e1sok szerkeszt\u00e9se",
|
||||||
"LabelEnableVideoImageExtraction": "Vide\u00f3 el\u0151n\u00e9zeti k\u00e9p enged\u00e9lyez\u00e9se",
|
"LabelEnableVideoImageExtraction": "Vide\u00f3 el\u0151n\u00e9zeti k\u00e9p enged\u00e9lyez\u00e9se",
|
||||||
@ -675,7 +675,7 @@
|
|||||||
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
||||||
"OptionOtherApps": "Other apps",
|
"OptionOtherApps": "Other apps",
|
||||||
"OptionMobileApps": "Mobile apps",
|
"OptionMobileApps": "Mobile apps",
|
||||||
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
|
"HeaderNotificationList": "Click on a notification to configure sending options.",
|
||||||
"NotificationOptionApplicationUpdateAvailable": "Application update available",
|
"NotificationOptionApplicationUpdateAvailable": "Application update available",
|
||||||
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
|
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
|
||||||
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
|
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
|
||||||
|
@ -675,7 +675,7 @@
|
|||||||
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
||||||
"OptionOtherApps": "Other apps",
|
"OptionOtherApps": "Other apps",
|
||||||
"OptionMobileApps": "Mobile apps",
|
"OptionMobileApps": "Mobile apps",
|
||||||
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
|
"HeaderNotificationList": "Click on a notification to configure sending options.",
|
||||||
"NotificationOptionApplicationUpdateAvailable": "Application update available",
|
"NotificationOptionApplicationUpdateAvailable": "Application update available",
|
||||||
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
|
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
|
||||||
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
|
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
"LabelWindowsService": "Windows \u049b\u044b\u0437\u043c\u0435\u0442\u0456",
|
"LabelWindowsService": "Windows \u049b\u044b\u0437\u043c\u0435\u0442\u0456",
|
||||||
"AWindowsServiceHasBeenInstalled": "Windows \u049b\u044b\u0437\u043c\u0435\u0442\u0456 \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0434\u044b.",
|
"AWindowsServiceHasBeenInstalled": "Windows \u049b\u044b\u0437\u043c\u0435\u0442\u0456 \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0434\u044b.",
|
||||||
"WindowsServiceIntro1": "Emby Server \u04d9\u0434\u0435\u0442\u0442\u0435 \u0436\u04af\u0439\u0435\u043b\u0456\u043a \u0442\u0430\u049b\u0442\u0430\u0434\u0430\u0493\u044b \u0431\u0435\u043b\u0433\u0456\u0448\u0435\u0441\u0456\u043c\u0435\u043d \u0436\u04b1\u043c\u044b\u0441 \u04af\u0441\u0442\u0435\u043b\u0456\u043d\u0456\u04a3 \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u0441\u044b \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u0439\u0434\u0456, \u0431\u0456\u0440\u0430\u049b \u0435\u0433\u0435\u0440 \u043e\u043d\u044b\u04a3 \u0436\u04b1\u043c\u044b\u0441\u044b\u043d \u04e9\u04a3\u0434\u0456\u043a \u049b\u044b\u0437\u043c\u0435\u0442\u0456 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u04b1\u043d\u0430\u0442\u0441\u0430\u04a3\u044b\u0437, \u043e\u0441\u044b\u043d\u044b\u04a3 \u043e\u0440\u043d\u044b\u043d\u0430 \u0431\u04b1\u043b Windows \u049a\u044b\u0437\u043c\u0435\u0442\u0442\u0435\u0440 \u0440\u0435\u0442\u0442\u0435\u0443\u0456\u0448\u0456 \u0430\u0440\u049b\u044b\u043b\u044b \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u044b\u043b\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d.",
|
"WindowsServiceIntro1": "Emby Server \u04d9\u0434\u0435\u0442\u0442\u0435 \u0436\u04af\u0439\u0435\u043b\u0456\u043a \u0442\u0430\u049b\u0442\u0430\u0434\u0430\u0493\u044b \u0431\u0435\u043b\u0433\u0456\u0448\u0435\u0441\u0456\u043c\u0435\u043d \u0436\u04b1\u043c\u044b\u0441 \u04af\u0441\u0442\u0435\u043b\u0456\u043d\u0456\u04a3 \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u0441\u044b \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u0439\u0434\u0456, \u0431\u0456\u0440\u0430\u049b \u0435\u0433\u0435\u0440 \u043e\u043d\u044b\u04a3 \u0436\u04b1\u043c\u044b\u0441\u044b\u043d \u04e9\u04a3\u0434\u0456\u043a \u049b\u044b\u0437\u043c\u0435\u0442\u0456 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u04b1\u043d\u0430\u0442\u0441\u0430\u04a3\u044b\u0437, \u043e\u0441\u044b\u043d\u044b\u04a3 \u043e\u0440\u043d\u044b\u043d\u0430 \u0431\u04b1\u043b Windows \u049a\u044b\u0437\u043c\u0435\u0442\u0442\u0435\u0440 \u0440\u0435\u0442\u0442\u0435\u0443\u0456\u0448\u0456 \u0430\u0440\u049b\u044b\u043b\u044b \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u044b\u043b\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d.",
|
||||||
"WindowsServiceIntro2": "\u0415\u0433\u0435\u0440 Windows \u049b\u044b\u0437\u043c\u0435\u0442\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0434\u0430 \u0431\u043e\u043b\u0441\u0430, \u0435\u0441\u043a\u0435\u0440\u0456\u04a3\u0456\u0437, \u0431\u04b1\u043b \u0441\u043e\u043b \u043c\u0435\u0437\u0433\u0456\u043b\u0434\u0435 \u0436\u04af\u0439\u0435\u043b\u0456\u043a \u0442\u0430\u049b\u0442\u0430\u0434\u0430\u0493\u044b \u0431\u0435\u043b\u0433\u0456\u0448\u0435\u0434\u0435\u0439 \u0436\u04af\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u0443\u0456 \u043c\u04af\u043c\u043a\u0456\u043d \u0435\u043c\u0435\u0441, \u0441\u043e\u043d\u044b\u043c\u0435\u043d \u049b\u044b\u0437\u043c\u0435\u0442\u0442\u0456 \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u0443 \u04af\u0448\u0456\u043d \u0436\u04af\u0439\u0435\u043b\u0456\u043a \u0442\u0430\u049b\u0442\u0430\u0434\u0430\u043d \u0448\u044b\u0493\u0443\u044b\u04a3\u044b\u0437 \u049b\u0430\u0436\u0435\u0442. \u0421\u043e\u0493\u0430\u043d \u049b\u0430\u0442\u0430\u0440, \u049b\u044b\u0437\u043c\u0435\u0442\u0442\u0456 \u04d9\u043a\u0456\u043c\u0448\u0456 \u049b\u04b1\u049b\u044b\u049b\u0442\u0430\u0440\u044b\u043d\u0430 \u0438\u0435 \u0431\u043e\u043b\u044b\u043f \u049a\u044b\u0437\u043c\u0435\u0442\u0442\u0435\u0440 \u0440\u0435\u0442\u0442\u0435\u0443\u0456\u0448\u0456 \u0430\u0440\u049b\u044b\u043b\u044b \u0442\u0435\u04a3\u0448\u0435\u0443 \u049b\u0430\u0436\u0435\u0442. \u041d\u0430\u0437\u0430\u0440 \u0430\u0443\u0434\u0430\u0440\u044b\u04a3\u044b\u0437! \u049a\u0430\u0437\u0456\u0440\u0433\u0456 \u0443\u0430\u049b\u044b\u0442\u0442\u0430 \u0431\u04b1\u043b \u049b\u044b\u0437\u043c\u0435\u0442 \u04e9\u0437\u0456\u043d\u0435\u043d-\u04e9\u0437\u0456 \u0436\u0430\u04a3\u0430\u0440\u0442\u044b\u043b\u043c\u0430\u0439\u0434\u044b, \u0441\u043e\u043d\u0434\u044b\u049b\u0442\u0430\u043d \u0436\u0430\u04a3\u0430 \u043d\u04b1\u0441\u049b\u0430\u043b\u0430\u0440 \u049b\u043e\u043b\u043c\u0435\u043d \u04e9\u0437\u0430\u0440\u0430 \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0435\u0441\u0443\u0434\u0456 \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0434\u0456.",
|
"WindowsServiceIntro2": "\u0415\u0433\u0435\u0440 Windows \u049b\u044b\u0437\u043c\u0435\u0442\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0434\u0430 \u0431\u043e\u043b\u0441\u0430, \u0435\u0441\u043a\u0435\u0440\u0456\u04a3\u0456\u0437, \u0431\u04b1\u043b \u0441\u043e\u043b \u043c\u0435\u0437\u0433\u0456\u043b\u0434\u0435 \u0436\u04af\u0439\u0435\u043b\u0456\u043a \u0442\u0430\u049b\u0442\u0430\u0434\u0430\u0493\u044b \u0431\u0435\u043b\u0433\u0456\u0448\u0435\u0434\u0435\u0439 \u0436\u04af\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u0443\u0456 \u043c\u04af\u043c\u043a\u0456\u043d \u0435\u043c\u0435\u0441, \u0441\u043e\u043d\u044b\u043c\u0435\u043d \u049b\u044b\u0437\u043c\u0435\u0442\u0442\u0456 \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u0443 \u04af\u0448\u0456\u043d \u0436\u04af\u0439\u0435\u043b\u0456\u043a \u0442\u0430\u049b\u0442\u0430\u0434\u0430\u043d \u0448\u044b\u0493\u0443\u044b\u04a3\u044b\u0437 \u049b\u0430\u0436\u0435\u0442. \u0421\u043e\u0493\u0430\u043d \u049b\u0430\u0442\u0430\u0440, \u049b\u044b\u0437\u043c\u0435\u0442\u0442\u0456 \u04d9\u043a\u0456\u043c\u0448\u0456 \u049b\u04b1\u049b\u044b\u049b\u0442\u0430\u0440\u044b\u043d\u0430 \u0438\u0435 \u0431\u043e\u043b\u044b\u043f \u049a\u044b\u0437\u043c\u0435\u0442\u0442\u0435\u0440 \u0440\u0435\u0442\u0442\u0435\u0443\u0456\u0448\u0456 \u0430\u0440\u049b\u044b\u043b\u044b \u0442\u0435\u04a3\u0448\u0435\u0443 \u049b\u0430\u0436\u0435\u0442. \u049a\u044b\u0437\u043c\u0435\u0442 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u049b\u0430\u043d\u0434\u0430, \u049b\u044b\u0437\u043c\u0435\u0442 \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456 \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u044b\u043d\u0430 \u049b\u0430\u0442\u044b\u043d\u0430\u0439 \u0430\u043b\u0430\u0442\u044b\u043d \u0435\u043a\u0435\u043d\u0456\u043d \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0443 \u049b\u0430\u0436\u0435\u0442 \u0431\u043e\u043b\u0430\u0434\u044b.",
|
||||||
"WizardCompleted": "\u04d8\u0437\u0456\u0440\u0448\u0435 \u0431\u04b1\u043b \u0431\u0456\u0437\u0433\u0435 \u043a\u0435\u0440\u0435\u0433\u0456\u043d\u0456\u04a3 \u0431\u04d9\u0440\u0456 \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b. Emby \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u04a3\u044b\u0437 \u0442\u0443\u0440\u0430\u043b\u044b \u043c\u04d9\u043b\u0456\u043c\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u0436\u0438\u043d\u0430\u0439 \u0431\u0430\u0441\u0442\u0430\u0434\u044b. \u0415\u043d\u0434\u0456 \u043a\u0435\u0439\u0431\u0456\u0440 \u0431\u0456\u0437\u0434\u0456\u04a3 \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b\u043c\u044b\u0437\u0431\u0435\u043d \u0442\u0430\u043d\u044b\u0441\u044b\u04a3\u044b\u0437, \u0436\u04d9\u043d\u0435 \u043a\u0435\u0439\u0456\u043d <b>\u0414\u0430\u0439\u044b\u043d<\/b> \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u0456\u043d \u0431\u0430\u0441\u044b\u04a3\u044b\u0437, \u0441\u043e\u043d\u0434\u0430 <b>\u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0456\u04a3 \u0411\u0430\u049b\u044b\u043b\u0430\u0443 \u0442\u0430\u049b\u0442\u0430\u0441\u044b<\/b> \u049b\u0430\u0440\u0430\u0443\u0493\u0430 \u0448\u044b\u0493\u044b \u043a\u0435\u043b\u0435\u0434\u0456.",
|
"WizardCompleted": "\u04d8\u0437\u0456\u0440\u0448\u0435 \u0431\u04b1\u043b \u0431\u0456\u0437\u0433\u0435 \u043a\u0435\u0440\u0435\u0433\u0456\u043d\u0456\u04a3 \u0431\u04d9\u0440\u0456 \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b. Emby \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u04a3\u044b\u0437 \u0442\u0443\u0440\u0430\u043b\u044b \u043c\u04d9\u043b\u0456\u043c\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u0436\u0438\u043d\u0430\u0439 \u0431\u0430\u0441\u0442\u0430\u0434\u044b. \u0415\u043d\u0434\u0456 \u043a\u0435\u0439\u0431\u0456\u0440 \u0431\u0456\u0437\u0434\u0456\u04a3 \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b\u043c\u044b\u0437\u0431\u0435\u043d \u0442\u0430\u043d\u044b\u0441\u044b\u04a3\u044b\u0437, \u0436\u04d9\u043d\u0435 \u043a\u0435\u0439\u0456\u043d <b>\u0414\u0430\u0439\u044b\u043d<\/b> \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u0456\u043d \u0431\u0430\u0441\u044b\u04a3\u044b\u0437, \u0441\u043e\u043d\u0434\u0430 <b>\u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0456\u04a3 \u0411\u0430\u049b\u044b\u043b\u0430\u0443 \u0442\u0430\u049b\u0442\u0430\u0441\u044b<\/b> \u049b\u0430\u0440\u0430\u0443\u0493\u0430 \u0448\u044b\u0493\u044b \u043a\u0435\u043b\u0435\u0434\u0456.",
|
||||||
"LabelConfigureSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0434\u0456 \u0442\u0435\u04a3\u0448\u0435\u0443",
|
"LabelConfigureSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0434\u0456 \u0442\u0435\u04a3\u0448\u0435\u0443",
|
||||||
"LabelEnableVideoImageExtraction": "\u0411\u0435\u0439\u043d\u0435 \u0441\u0443\u0440\u0435\u0442\u0456\u043d \u0431\u04e9\u043b\u0456\u043f \u0430\u043b\u0443\u0434\u044b \u049b\u043e\u0441\u0443",
|
"LabelEnableVideoImageExtraction": "\u0411\u0435\u0439\u043d\u0435 \u0441\u0443\u0440\u0435\u0442\u0456\u043d \u0431\u04e9\u043b\u0456\u043f \u0430\u043b\u0443\u0434\u044b \u049b\u043e\u0441\u0443",
|
||||||
@ -675,7 +675,7 @@
|
|||||||
"HeaderRequireManualLoginHelp": "\u0410\u0436\u044b\u0440\u0430\u0442\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u043a\u043b\u0438\u0435\u043d\u0442\u0442\u0435\u0440 \u043f\u0430\u0439\u0434\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440\u0434\u044b \u043a\u04e9\u0440\u043d\u0435\u043a\u0456 \u0442\u0430\u04a3\u0434\u0430\u0443\u044b \u0431\u0430\u0440 \u043a\u0456\u0440\u0443 \u044d\u043a\u0440\u0430\u043d\u044b\u043d \u043a\u04e9\u0440\u0441\u0435\u0442\u0443\u0456 \u043c\u04af\u043c\u043a\u0456\u043d.",
|
"HeaderRequireManualLoginHelp": "\u0410\u0436\u044b\u0440\u0430\u0442\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u043a\u043b\u0438\u0435\u043d\u0442\u0442\u0435\u0440 \u043f\u0430\u0439\u0434\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440\u0434\u044b \u043a\u04e9\u0440\u043d\u0435\u043a\u0456 \u0442\u0430\u04a3\u0434\u0430\u0443\u044b \u0431\u0430\u0440 \u043a\u0456\u0440\u0443 \u044d\u043a\u0440\u0430\u043d\u044b\u043d \u043a\u04e9\u0440\u0441\u0435\u0442\u0443\u0456 \u043c\u04af\u043c\u043a\u0456\u043d.",
|
||||||
"OptionOtherApps": "\u0411\u0430\u0441\u049b\u0430 \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440",
|
"OptionOtherApps": "\u0411\u0430\u0441\u049b\u0430 \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440",
|
||||||
"OptionMobileApps": "\u04b0\u0442\u049b\u044b\u0440 \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440",
|
"OptionMobileApps": "\u04b0\u0442\u049b\u044b\u0440 \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440",
|
||||||
"HeaderNotificationList": "\u0416\u0456\u0431\u0435\u0440\u0443 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456\u043d \u0442\u0435\u04a3\u0448\u0435\u0443 \u04af\u0448\u0456\u043d \u0445\u0430\u0431\u0430\u0440\u043b\u0430\u043d\u0434\u044b\u0440\u043c\u0430\u043d\u044b \u043d\u04b1\u049b\u044b\u04a3\u044b\u0437.",
|
"HeaderNotificationList": "\u0416\u0456\u0431\u0435\u0440\u0443 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0434\u0456 \u0442\u0435\u04a3\u0448\u0435\u0443 \u04af\u0448\u0456\u043d \u0445\u0430\u0431\u0430\u0440\u043b\u0430\u043d\u0434\u044b\u0440\u043c\u0430\u043d\u044b \u043d\u04b1\u049b\u044b\u04a3\u044b\u0437.",
|
||||||
"NotificationOptionApplicationUpdateAvailable": "\u049a\u043e\u043b\u0434\u0430\u043d\u0431\u0430 \u0436\u0430\u04a3\u0430\u0440\u0442\u0443\u044b \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456",
|
"NotificationOptionApplicationUpdateAvailable": "\u049a\u043e\u043b\u0434\u0430\u043d\u0431\u0430 \u0436\u0430\u04a3\u0430\u0440\u0442\u0443\u044b \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456",
|
||||||
"NotificationOptionApplicationUpdateInstalled": "\u049a\u043e\u043b\u0434\u0430\u043d\u0431\u0430 \u0436\u0430\u04a3\u0430\u0440\u0442\u0443\u044b \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0434\u044b",
|
"NotificationOptionApplicationUpdateInstalled": "\u049a\u043e\u043b\u0434\u0430\u043d\u0431\u0430 \u0436\u0430\u04a3\u0430\u0440\u0442\u0443\u044b \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0434\u044b",
|
||||||
"NotificationOptionPluginUpdateInstalled": "\u041f\u043b\u0430\u0433\u0438\u043d \u0436\u0430\u04a3\u0430\u0440\u0442\u0443\u044b \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0434\u044b",
|
"NotificationOptionPluginUpdateInstalled": "\u041f\u043b\u0430\u0433\u0438\u043d \u0436\u0430\u04a3\u0430\u0440\u0442\u0443\u044b \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0434\u044b",
|
||||||
|
@ -675,7 +675,7 @@
|
|||||||
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
||||||
"OptionOtherApps": "\ub2e4\ub978 \uc571",
|
"OptionOtherApps": "\ub2e4\ub978 \uc571",
|
||||||
"OptionMobileApps": "\ubaa8\ubc14\uc77c \uc571",
|
"OptionMobileApps": "\ubaa8\ubc14\uc77c \uc571",
|
||||||
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
|
"HeaderNotificationList": "Click on a notification to configure sending options.",
|
||||||
"NotificationOptionApplicationUpdateAvailable": "\uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uc5c5\ub370\uc774\ud2b8 \uc0ac\uc6a9 \uac00\ub2a5",
|
"NotificationOptionApplicationUpdateAvailable": "\uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uc5c5\ub370\uc774\ud2b8 \uc0ac\uc6a9 \uac00\ub2a5",
|
||||||
"NotificationOptionApplicationUpdateInstalled": "\uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uc5c5\ub370\uc774\ud2b8 \uc124\uce58\ub428",
|
"NotificationOptionApplicationUpdateInstalled": "\uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uc5c5\ub370\uc774\ud2b8 \uc124\uce58\ub428",
|
||||||
"NotificationOptionPluginUpdateInstalled": "\ud50c\ub7ec\uadf8\uc778 \uc5c5\ub370\uc774\ud2b8 \uc124\uce58\ub428",
|
"NotificationOptionPluginUpdateInstalled": "\ud50c\ub7ec\uadf8\uc778 \uc5c5\ub370\uc774\ud2b8 \uc124\uce58\ub428",
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
"LabelWindowsService": "Windows Service",
|
"LabelWindowsService": "Windows Service",
|
||||||
"AWindowsServiceHasBeenInstalled": "A Windows Service has been installed.",
|
"AWindowsServiceHasBeenInstalled": "A Windows Service has been installed.",
|
||||||
"WindowsServiceIntro1": "Emby Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.",
|
"WindowsServiceIntro1": "Emby Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.",
|
||||||
"WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. Please note that at this time the service is unable to self-update, so new versions will require manual interaction.",
|
"WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. When running as a service, you will need to ensure that the service account has access to your media folders.",
|
||||||
"WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click <b>Finish<\/b> to view the <b>Server Dashboard<\/b>.",
|
"WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click <b>Finish<\/b> to view the <b>Server Dashboard<\/b>.",
|
||||||
"LabelConfigureSettings": "Configure settings",
|
"LabelConfigureSettings": "Configure settings",
|
||||||
"LabelEnableVideoImageExtraction": "Enable video image extraction",
|
"LabelEnableVideoImageExtraction": "Enable video image extraction",
|
||||||
@ -675,7 +675,7 @@
|
|||||||
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
||||||
"OptionOtherApps": "Other apps",
|
"OptionOtherApps": "Other apps",
|
||||||
"OptionMobileApps": "Mobile apps",
|
"OptionMobileApps": "Mobile apps",
|
||||||
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
|
"HeaderNotificationList": "Click on a notification to configure sending options.",
|
||||||
"NotificationOptionApplicationUpdateAvailable": "Application update available",
|
"NotificationOptionApplicationUpdateAvailable": "Application update available",
|
||||||
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
|
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
|
||||||
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
|
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
|
||||||
|
@ -675,7 +675,7 @@
|
|||||||
"HeaderRequireManualLoginHelp": "Quando desativados, os clientes podem mostrar a tela de login com uma sele\u00e7\u00e3o visual de utilizadores.",
|
"HeaderRequireManualLoginHelp": "Quando desativados, os clientes podem mostrar a tela de login com uma sele\u00e7\u00e3o visual de utilizadores.",
|
||||||
"OptionOtherApps": "Outras apps",
|
"OptionOtherApps": "Outras apps",
|
||||||
"OptionMobileApps": "Apps m\u00f3veis",
|
"OptionMobileApps": "Apps m\u00f3veis",
|
||||||
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
|
"HeaderNotificationList": "Click on a notification to configure sending options.",
|
||||||
"NotificationOptionApplicationUpdateAvailable": "Dispon\u00edvel atualiza\u00e7\u00e3o da aplica\u00e7\u00e3o",
|
"NotificationOptionApplicationUpdateAvailable": "Dispon\u00edvel atualiza\u00e7\u00e3o da aplica\u00e7\u00e3o",
|
||||||
"NotificationOptionApplicationUpdateInstalled": "Instalada atualiza\u00e7\u00e3o da aplica\u00e7\u00e3o",
|
"NotificationOptionApplicationUpdateInstalled": "Instalada atualiza\u00e7\u00e3o da aplica\u00e7\u00e3o",
|
||||||
"NotificationOptionPluginUpdateInstalled": "Instalada atualiza\u00e7\u00e3o da extens\u00e3o",
|
"NotificationOptionPluginUpdateInstalled": "Instalada atualiza\u00e7\u00e3o da extens\u00e3o",
|
||||||
|
@ -675,7 +675,7 @@
|
|||||||
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
||||||
"OptionOtherApps": "Other apps",
|
"OptionOtherApps": "Other apps",
|
||||||
"OptionMobileApps": "Mobile apps",
|
"OptionMobileApps": "Mobile apps",
|
||||||
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
|
"HeaderNotificationList": "Click on a notification to configure sending options.",
|
||||||
"NotificationOptionApplicationUpdateAvailable": "Application update available",
|
"NotificationOptionApplicationUpdateAvailable": "Application update available",
|
||||||
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
|
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
|
||||||
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
|
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
"LabelWindowsService": "\u0421\u043b\u0443\u0436\u0431\u0430 Windows",
|
"LabelWindowsService": "\u0421\u043b\u0443\u0436\u0431\u0430 Windows",
|
||||||
"AWindowsServiceHasBeenInstalled": "\u0421\u043b\u0443\u0436\u0431\u0430 Windows \u0431\u044b\u043b\u0430 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0430.",
|
"AWindowsServiceHasBeenInstalled": "\u0421\u043b\u0443\u0436\u0431\u0430 Windows \u0431\u044b\u043b\u0430 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0430.",
|
||||||
"WindowsServiceIntro1": "Emby Server \u043e\u0431\u044b\u0447\u043d\u043e \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u043a\u0430\u043a \u043d\u0430\u0441\u0442\u043e\u043b\u044c\u043d\u043e\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0441\u043e \u0437\u043d\u0430\u0447\u043a\u043e\u043c \u0432 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e\u043c \u043b\u043e\u0442\u043a\u0435, \u043d\u043e \u0435\u0441\u043b\u0438 \u043f\u0440\u0435\u0434\u043f\u043e\u0447\u0442\u0438\u0442\u0435\u043b\u044c\u043d\u0430 \u0440\u0430\u0431\u043e\u0442\u0430 \u043a\u0430\u043a \u0444\u043e\u043d\u043e\u0432\u043e\u0439 \u0441\u043b\u0443\u0436\u0431\u044b, \u0432\u043c\u0435\u0441\u0442\u043e \u044d\u0442\u043e\u0433\u043e \u0435\u0433\u043e \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u0447\u0435\u0440\u0435\u0437 \u0434\u0438\u0441\u043f\u0435\u0442\u0447\u0435\u0440 \u0441\u043b\u0443\u0436\u0431 Windows.",
|
"WindowsServiceIntro1": "Emby Server \u043e\u0431\u044b\u0447\u043d\u043e \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u043a\u0430\u043a \u043d\u0430\u0441\u0442\u043e\u043b\u044c\u043d\u043e\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0441\u043e \u0437\u043d\u0430\u0447\u043a\u043e\u043c \u0432 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e\u043c \u043b\u043e\u0442\u043a\u0435, \u043d\u043e \u0435\u0441\u043b\u0438 \u043f\u0440\u0435\u0434\u043f\u043e\u0447\u0442\u0438\u0442\u0435\u043b\u044c\u043d\u0430 \u0440\u0430\u0431\u043e\u0442\u0430 \u043a\u0430\u043a \u0444\u043e\u043d\u043e\u0432\u043e\u0439 \u0441\u043b\u0443\u0436\u0431\u044b, \u0432\u043c\u0435\u0441\u0442\u043e \u044d\u0442\u043e\u0433\u043e \u0435\u0433\u043e \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u0447\u0435\u0440\u0435\u0437 \u0434\u0438\u0441\u043f\u0435\u0442\u0447\u0435\u0440 \u0441\u043b\u0443\u0436\u0431 Windows.",
|
||||||
"WindowsServiceIntro2": "\u041f\u0440\u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0438 \u0441\u043b\u0443\u0436\u0431\u044b Windows, \u043f\u043e\u043c\u043d\u0438\u0442\u0435, \u0447\u0442\u043e \u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u0430 \u0435\u0451 \u043e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u0430\u044f \u0440\u0430\u0431\u043e\u0442\u0430 \u0441\u043e \u0437\u043d\u0430\u0447\u043a\u043e\u043c \u0432 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e\u043c \u043b\u043e\u0442\u043a\u0435, \u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0432\u044b\u0439\u0442\u0438 \u0438\u0437 \u0437\u043d\u0430\u0447\u043a\u0430 \u0432 \u043b\u043e\u0442\u043a\u0435 \u0434\u043b\u044f \u0442\u043e\u0433\u043e, \u0447\u0442\u043e\u0431\u044b \u0441\u043b\u0443\u0436\u0431\u0430 \u0437\u0430\u0440\u0430\u0431\u043e\u0442\u0430\u043b\u0430. \u0421\u043b\u0443\u0436\u0431\u0443 \u0442\u0430\u043a\u0436\u0435 \u043d\u0443\u0436\u043d\u043e \u0431\u0443\u0434\u0435\u0442 \u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c, \u0432\u043e\u0439\u0434\u044f \u0441 \u043f\u0440\u0430\u0432\u0430\u043c\u0438 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u0430 \u0432 \u043a\u043e\u043d\u0441\u043e\u043b\u044c \u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u043e\u043c. \u041f\u043e\u043c\u043d\u0438\u0442\u0435, \u0447\u0442\u043e \u043d\u0430 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0441\u043b\u0443\u0436\u0431\u0430 \u043d\u0435 \u0432 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0438 \u0441\u0430\u043c\u043e\u043e\u0431\u043d\u043e\u0432\u043b\u044f\u0442\u044c\u0441\u044f, \u0442\u0430\u043a \u0447\u0442\u043e \u0434\u043b\u044f \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0432\u0435\u0440\u0441\u0438\u0439 \u043f\u043e\u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0432\u043c\u0435\u0448\u0430\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e \u0432\u0440\u0443\u0447\u043d\u0443\u044e.",
|
"WindowsServiceIntro2": "\u041f\u0440\u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0438 \u0441\u043b\u0443\u0436\u0431\u044b Windows, \u043f\u043e\u043c\u043d\u0438\u0442\u0435, \u0447\u0442\u043e \u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u0430 \u0435\u0451 \u043e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u0430\u044f \u0440\u0430\u0431\u043e\u0442\u0430 \u0441\u043e \u0437\u043d\u0430\u0447\u043a\u043e\u043c \u0432 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e\u043c \u043b\u043e\u0442\u043a\u0435, \u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0432\u044b\u0439\u0442\u0438 \u0438\u0437 \u0437\u043d\u0430\u0447\u043a\u0430 \u0432 \u043b\u043e\u0442\u043a\u0435 \u0434\u043b\u044f \u0442\u043e\u0433\u043e, \u0447\u0442\u043e\u0431\u044b \u0441\u043b\u0443\u0436\u0431\u0430 \u0437\u0430\u0440\u0430\u0431\u043e\u0442\u0430\u043b\u0430. \u0421\u043b\u0443\u0436\u0431\u0443 \u0442\u0430\u043a\u0436\u0435 \u043d\u0443\u0436\u043d\u043e \u0431\u0443\u0434\u0435\u0442 \u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c, \u0432\u043e\u0439\u0434\u044f \u0441 \u043f\u0440\u0430\u0432\u0430\u043c\u0438 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u0430 \u0432 \u043a\u043e\u043d\u0441\u043e\u043b\u044c \u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u043e\u043c. \u041f\u0440\u0438 \u0437\u0430\u043f\u0443\u0441\u043a\u0435 \u043a\u0430\u043a \u0441\u043b\u0443\u0436\u0431\u044b, \u0432\u044b \u0434\u043e\u043b\u0436\u043d\u044b \u0443\u0431\u0435\u0434\u0438\u0442\u044c\u0441\u044f, \u0447\u0442\u043e \u0443\u0447\u0451\u0442\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c \u0441\u043b\u0443\u0436\u0431\u044b \u0438\u043c\u0435\u0435\u0442 \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u0432\u0430\u0448\u0438\u043c \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0430\u043c.",
|
||||||
"WizardCompleted": "\u042d\u0442\u043e \u0432\u0441\u0451, \u0447\u0442\u043e \u043d\u0430\u043c \u043d\u0443\u0436\u043d\u043e \u0441\u0435\u0439\u0447\u0430\u0441. Emby \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442 \u0441\u043e\u0431\u0438\u0440\u0430\u0442\u044c \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e \u0432\u0430\u0448\u0435\u0439 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0435. \u041e\u0437\u043d\u0430\u043a\u043e\u043c\u044c\u0442\u0435\u0441\u044c \u043f\u043e\u043a\u0430 \u0441 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u043d\u0430\u0448\u0438\u043c\u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u043c\u0438, \u0430 \u0437\u0430\u0442\u0435\u043c \u043d\u0430\u0436\u043c\u0438\u0442\u0435 <b>\u0413\u043e\u0442\u043e\u0432\u043e<\/b>, \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c <b>\u0418\u043d\u0444\u043e\u043f\u0430\u043d\u0435\u043b\u044c \u0441\u0435\u0440\u0432\u0435\u0440\u0430<\/b>.",
|
"WizardCompleted": "\u042d\u0442\u043e \u0432\u0441\u0451, \u0447\u0442\u043e \u043d\u0430\u043c \u043d\u0443\u0436\u043d\u043e \u0441\u0435\u0439\u0447\u0430\u0441. Emby \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442 \u0441\u043e\u0431\u0438\u0440\u0430\u0442\u044c \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e \u0432\u0430\u0448\u0435\u0439 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0435. \u041e\u0437\u043d\u0430\u043a\u043e\u043c\u044c\u0442\u0435\u0441\u044c \u043f\u043e\u043a\u0430 \u0441 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u043d\u0430\u0448\u0438\u043c\u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u043c\u0438, \u0430 \u0437\u0430\u0442\u0435\u043c \u043d\u0430\u0436\u043c\u0438\u0442\u0435 <b>\u0413\u043e\u0442\u043e\u0432\u043e<\/b>, \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c <b>\u0418\u043d\u0444\u043e\u043f\u0430\u043d\u0435\u043b\u044c \u0441\u0435\u0440\u0432\u0435\u0440\u0430<\/b>.",
|
||||||
"LabelConfigureSettings": "\u041d\u0430\u0437\u043d\u0430\u0447\u0438\u0442\u044c \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b",
|
"LabelConfigureSettings": "\u041d\u0430\u0437\u043d\u0430\u0447\u0438\u0442\u044c \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b",
|
||||||
"LabelEnableVideoImageExtraction": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0438\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0438\u0435 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u0438\u0437 \u0432\u0438\u0434\u0435\u043e",
|
"LabelEnableVideoImageExtraction": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0438\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0438\u0435 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u0438\u0437 \u0432\u0438\u0434\u0435\u043e",
|
||||||
@ -361,7 +361,7 @@
|
|||||||
"TabOthers": "\u0414\u0440\u0443\u0433\u0438\u0435",
|
"TabOthers": "\u0414\u0440\u0443\u0433\u0438\u0435",
|
||||||
"HeaderExtractChapterImagesFor": "\u0418\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0438\u0435 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u0441\u0446\u0435\u043d \u0434\u043b\u044f:",
|
"HeaderExtractChapterImagesFor": "\u0418\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0438\u0435 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u0441\u0446\u0435\u043d \u0434\u043b\u044f:",
|
||||||
"OptionMovies": "\u0424\u0438\u043b\u044c\u043c\u044b",
|
"OptionMovies": "\u0424\u0438\u043b\u044c\u043c\u044b",
|
||||||
"OptionEpisodes": "\u042d\u043f\u0438\u0437\u043e\u0434\u044b",
|
"OptionEpisodes": "\u0422\u0412-\u044d\u043f\u0438\u0437\u043e\u0434\u044b",
|
||||||
"OptionOtherVideos": "\u0414\u0440\u0443\u0433\u043e\u0435 \u0432\u0438\u0434\u0435\u043e",
|
"OptionOtherVideos": "\u0414\u0440\u0443\u0433\u043e\u0435 \u0432\u0438\u0434\u0435\u043e",
|
||||||
"TitleMetadata": "\u041c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435",
|
"TitleMetadata": "\u041c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435",
|
||||||
"LabelAutomaticUpdates": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f",
|
"LabelAutomaticUpdates": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f",
|
||||||
@ -675,7 +675,7 @@
|
|||||||
"HeaderRequireManualLoginHelp": "\u041f\u0440\u0438 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0434\u043b\u044f \u043a\u043b\u0438\u0435\u043d\u0442\u043e\u0432 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0440\u0435\u0434\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u044d\u043a\u0440\u0430\u043d\u0430 \u0432\u0445\u043e\u0434\u0430 \u0441 \u0432\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u044b\u043c \u0432\u044b\u0431\u043e\u0440\u043e\u043c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439.",
|
"HeaderRequireManualLoginHelp": "\u041f\u0440\u0438 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0434\u043b\u044f \u043a\u043b\u0438\u0435\u043d\u0442\u043e\u0432 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0440\u0435\u0434\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u044d\u043a\u0440\u0430\u043d\u0430 \u0432\u0445\u043e\u0434\u0430 \u0441 \u0432\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u044b\u043c \u0432\u044b\u0431\u043e\u0440\u043e\u043c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439.",
|
||||||
"OptionOtherApps": "\u0414\u0440\u0443\u0433\u0438\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f",
|
"OptionOtherApps": "\u0414\u0440\u0443\u0433\u0438\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f",
|
||||||
"OptionMobileApps": "\u041c\u043e\u0431\u0438\u043b\u044c\u043d\u044b\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f",
|
"OptionMobileApps": "\u041c\u043e\u0431\u0438\u043b\u044c\u043d\u044b\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f",
|
||||||
"HeaderNotificationList": "\u0429\u0451\u043b\u043a\u043d\u0438\u0442\u0435 \u043f\u043e \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044e, \u0447\u0442\u043e\u0431\u044b \u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0435\u0433\u043e \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438.",
|
"HeaderNotificationList": "\u0429\u0451\u043b\u043a\u043d\u0438\u0442\u0435 \u043f\u043e \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044e, \u0447\u0442\u043e\u0431\u044b \u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438.",
|
||||||
"NotificationOptionApplicationUpdateAvailable": "\u0418\u043c\u0435\u0435\u0442\u0441\u044f \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f",
|
"NotificationOptionApplicationUpdateAvailable": "\u0418\u043c\u0435\u0435\u0442\u0441\u044f \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f",
|
||||||
"NotificationOptionApplicationUpdateInstalled": "\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e",
|
"NotificationOptionApplicationUpdateInstalled": "\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e",
|
||||||
"NotificationOptionPluginUpdateInstalled": "\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043b\u0430\u0433\u0438\u043d\u0430 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e",
|
"NotificationOptionPluginUpdateInstalled": "\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043b\u0430\u0433\u0438\u043d\u0430 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e",
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
"LabelWindowsService": "Windows Service",
|
"LabelWindowsService": "Windows Service",
|
||||||
"AWindowsServiceHasBeenInstalled": "A Windows Service has been installed.",
|
"AWindowsServiceHasBeenInstalled": "A Windows Service has been installed.",
|
||||||
"WindowsServiceIntro1": "Emby Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.",
|
"WindowsServiceIntro1": "Emby Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.",
|
||||||
"WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. Please note that at this time the service is unable to self-update, so new versions will require manual interaction.",
|
"WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. When running as a service, you will need to ensure that the service account has access to your media folders.",
|
||||||
"WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click <b>Finish</b> to view the <b>Server Dashboard</b>.",
|
"WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click <b>Finish</b> to view the <b>Server Dashboard</b>.",
|
||||||
"LabelConfigureSettings": "Configure settings",
|
"LabelConfigureSettings": "Configure settings",
|
||||||
"LabelEnableVideoImageExtraction": "Enable video image extraction",
|
"LabelEnableVideoImageExtraction": "Enable video image extraction",
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
"LabelWindowsService": "Windows Service",
|
"LabelWindowsService": "Windows Service",
|
||||||
"AWindowsServiceHasBeenInstalled": "A Windows Service has been installed.",
|
"AWindowsServiceHasBeenInstalled": "A Windows Service has been installed.",
|
||||||
"WindowsServiceIntro1": "Emby Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.",
|
"WindowsServiceIntro1": "Emby Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.",
|
||||||
"WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. Please note that at this time the service is unable to self-update, so new versions will require manual interaction.",
|
"WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. When running as a service, you will need to ensure that the service account has access to your media folders.",
|
||||||
"WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click <b>Finish<\/b> to view the <b>Server Dashboard<\/b>.",
|
"WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click <b>Finish<\/b> to view the <b>Server Dashboard<\/b>.",
|
||||||
"LabelConfigureSettings": "Configure settings",
|
"LabelConfigureSettings": "Configure settings",
|
||||||
"LabelEnableVideoImageExtraction": "Enable video image extraction",
|
"LabelEnableVideoImageExtraction": "Enable video image extraction",
|
||||||
@ -675,7 +675,7 @@
|
|||||||
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
||||||
"OptionOtherApps": "Other apps",
|
"OptionOtherApps": "Other apps",
|
||||||
"OptionMobileApps": "Mobile apps",
|
"OptionMobileApps": "Mobile apps",
|
||||||
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
|
"HeaderNotificationList": "Click on a notification to configure sending options.",
|
||||||
"NotificationOptionApplicationUpdateAvailable": "Application update available",
|
"NotificationOptionApplicationUpdateAvailable": "Application update available",
|
||||||
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
|
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
|
||||||
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
|
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
|
||||||
|
@ -675,7 +675,7 @@
|
|||||||
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
||||||
"OptionOtherApps": "Other apps",
|
"OptionOtherApps": "Other apps",
|
||||||
"OptionMobileApps": "Mobile apps",
|
"OptionMobileApps": "Mobile apps",
|
||||||
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
|
"HeaderNotificationList": "Click on a notification to configure sending options.",
|
||||||
"NotificationOptionApplicationUpdateAvailable": "Application update available",
|
"NotificationOptionApplicationUpdateAvailable": "Application update available",
|
||||||
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
|
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
|
||||||
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
|
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
"LabelWindowsService": "Windows Service",
|
"LabelWindowsService": "Windows Service",
|
||||||
"AWindowsServiceHasBeenInstalled": "A Windows Service has been installed.",
|
"AWindowsServiceHasBeenInstalled": "A Windows Service has been installed.",
|
||||||
"WindowsServiceIntro1": "Emby Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.",
|
"WindowsServiceIntro1": "Emby Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.",
|
||||||
"WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. Please note that at this time the service is unable to self-update, so new versions will require manual interaction.",
|
"WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. When running as a service, you will need to ensure that the service account has access to your media folders.",
|
||||||
"WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click <b>Finish<\/b> to view the <b>Server Dashboard<\/b>.",
|
"WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click <b>Finish<\/b> to view the <b>Server Dashboard<\/b>.",
|
||||||
"LabelConfigureSettings": "Configure settings",
|
"LabelConfigureSettings": "Configure settings",
|
||||||
"LabelEnableVideoImageExtraction": "Enable video image extraction",
|
"LabelEnableVideoImageExtraction": "Enable video image extraction",
|
||||||
@ -675,7 +675,7 @@
|
|||||||
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
||||||
"OptionOtherApps": "Other apps",
|
"OptionOtherApps": "Other apps",
|
||||||
"OptionMobileApps": "Mobile apps",
|
"OptionMobileApps": "Mobile apps",
|
||||||
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
|
"HeaderNotificationList": "Click on a notification to configure sending options.",
|
||||||
"NotificationOptionApplicationUpdateAvailable": "Application update available",
|
"NotificationOptionApplicationUpdateAvailable": "Application update available",
|
||||||
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
|
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
|
||||||
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
|
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
"LabelWindowsService": "D\u1ecbch v\u1ee5 c\u1ee7a Windows",
|
"LabelWindowsService": "D\u1ecbch v\u1ee5 c\u1ee7a Windows",
|
||||||
"AWindowsServiceHasBeenInstalled": "M\u1ed9t d\u1ecbch v\u1ee5 c\u1ee7a Windows \u0111\u00e3 \u0111\u01b0\u1ee3c c\u00e0i \u0111\u1eb7t",
|
"AWindowsServiceHasBeenInstalled": "M\u1ed9t d\u1ecbch v\u1ee5 c\u1ee7a Windows \u0111\u00e3 \u0111\u01b0\u1ee3c c\u00e0i \u0111\u1eb7t",
|
||||||
"WindowsServiceIntro1": "Emby Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.",
|
"WindowsServiceIntro1": "Emby Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.",
|
||||||
"WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. Please note that at this time the service is unable to self-update, so new versions will require manual interaction.",
|
"WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. When running as a service, you will need to ensure that the service account has access to your media folders.",
|
||||||
"WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click <b>Finish<\/b> to view the <b>Server Dashboard<\/b>.",
|
"WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click <b>Finish<\/b> to view the <b>Server Dashboard<\/b>.",
|
||||||
"LabelConfigureSettings": "C\u00e0i \u0111\u1eb7t c\u1ea5u h\u00ecnh",
|
"LabelConfigureSettings": "C\u00e0i \u0111\u1eb7t c\u1ea5u h\u00ecnh",
|
||||||
"LabelEnableVideoImageExtraction": "Enable video image extraction",
|
"LabelEnableVideoImageExtraction": "Enable video image extraction",
|
||||||
@ -675,7 +675,7 @@
|
|||||||
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
||||||
"OptionOtherApps": "Other apps",
|
"OptionOtherApps": "Other apps",
|
||||||
"OptionMobileApps": "Mobile apps",
|
"OptionMobileApps": "Mobile apps",
|
||||||
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
|
"HeaderNotificationList": "Click on a notification to configure sending options.",
|
||||||
"NotificationOptionApplicationUpdateAvailable": "Application update available",
|
"NotificationOptionApplicationUpdateAvailable": "Application update available",
|
||||||
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
|
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
|
||||||
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
|
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
|
||||||
|
@ -675,7 +675,7 @@
|
|||||||
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
||||||
"OptionOtherApps": "Other apps",
|
"OptionOtherApps": "Other apps",
|
||||||
"OptionMobileApps": "Mobile apps",
|
"OptionMobileApps": "Mobile apps",
|
||||||
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
|
"HeaderNotificationList": "Click on a notification to configure sending options.",
|
||||||
"NotificationOptionApplicationUpdateAvailable": "Application update available",
|
"NotificationOptionApplicationUpdateAvailable": "Application update available",
|
||||||
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
|
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
|
||||||
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
|
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
|
||||||
|
@ -675,7 +675,7 @@
|
|||||||
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
|
||||||
"OptionOtherApps": "Other apps",
|
"OptionOtherApps": "Other apps",
|
||||||
"OptionMobileApps": "Mobile apps",
|
"OptionMobileApps": "Mobile apps",
|
||||||
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
|
"HeaderNotificationList": "Click on a notification to configure sending options.",
|
||||||
"NotificationOptionApplicationUpdateAvailable": "Application update available",
|
"NotificationOptionApplicationUpdateAvailable": "Application update available",
|
||||||
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
|
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
|
||||||
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
|
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"LabelFromHelp": "Example: {0} (on the server)",
|
|
||||||
"SettingsSaved": "\u062a\u0645 \u062d\u0641\u0638 \u0627\u0644\u0627\u0639\u062f\u0627\u062f\u0627\u062a.",
|
"SettingsSaved": "\u062a\u0645 \u062d\u0641\u0638 \u0627\u0644\u0627\u0639\u062f\u0627\u062f\u0627\u062a.",
|
||||||
"AddUser": "\u0627\u0636\u0627\u0641\u0629 \u0645\u0633\u062a\u062e\u062f\u0645",
|
"AddUser": "\u0627\u0636\u0627\u0641\u0629 \u0645\u0633\u062a\u062e\u062f\u0645",
|
||||||
"Users": "\u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646",
|
"Users": "\u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646",
|
||||||
@ -49,6 +48,7 @@
|
|||||||
"ButtonIdentify": "Identify",
|
"ButtonIdentify": "Identify",
|
||||||
"HeaderIdentifyItem": "Identify Item",
|
"HeaderIdentifyItem": "Identify Item",
|
||||||
"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.",
|
||||||
|
"LabelFromHelp": "Example: {0} (on the server)",
|
||||||
"HeaderMyMedia": "My Media",
|
"HeaderMyMedia": "My Media",
|
||||||
"ButtonRemoveFromCollection": "Remove from Collection",
|
"ButtonRemoveFromCollection": "Remove from Collection",
|
||||||
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
||||||
@ -355,6 +355,8 @@
|
|||||||
"ButtonBrowseOnlineImages": "Browse online images",
|
"ButtonBrowseOnlineImages": "Browse online images",
|
||||||
"HeaderDeleteItem": "Delete Item",
|
"HeaderDeleteItem": "Delete Item",
|
||||||
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
|
"HeaderDeleteItems": "Delete Items",
|
||||||
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"LabelFromHelp": "Example: {0} (on the server)",
|
|
||||||
"SettingsSaved": "Settings saved.",
|
"SettingsSaved": "Settings saved.",
|
||||||
"AddUser": "Add User",
|
"AddUser": "Add User",
|
||||||
"Users": "Users",
|
"Users": "Users",
|
||||||
@ -49,6 +48,7 @@
|
|||||||
"ButtonIdentify": "Identify",
|
"ButtonIdentify": "Identify",
|
||||||
"HeaderIdentifyItem": "Identify Item",
|
"HeaderIdentifyItem": "Identify Item",
|
||||||
"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.",
|
||||||
|
"LabelFromHelp": "Example: {0} (on the server)",
|
||||||
"HeaderMyMedia": "My Media",
|
"HeaderMyMedia": "My Media",
|
||||||
"ButtonRemoveFromCollection": "Remove from Collection",
|
"ButtonRemoveFromCollection": "Remove from Collection",
|
||||||
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
||||||
@ -355,6 +355,8 @@
|
|||||||
"ButtonBrowseOnlineImages": "Browse online images",
|
"ButtonBrowseOnlineImages": "Browse online images",
|
||||||
"HeaderDeleteItem": "Delete Item",
|
"HeaderDeleteItem": "Delete Item",
|
||||||
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
|
"HeaderDeleteItems": "Delete Items",
|
||||||
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"LabelFromHelp": "Example: {0} (on the server)",
|
|
||||||
"SettingsSaved": "Configuraci\u00f3 guardada.",
|
"SettingsSaved": "Configuraci\u00f3 guardada.",
|
||||||
"AddUser": "Afegir Usuari",
|
"AddUser": "Afegir Usuari",
|
||||||
"Users": "Usuaris",
|
"Users": "Usuaris",
|
||||||
@ -49,6 +48,7 @@
|
|||||||
"ButtonIdentify": "Identify",
|
"ButtonIdentify": "Identify",
|
||||||
"HeaderIdentifyItem": "Identify Item",
|
"HeaderIdentifyItem": "Identify Item",
|
||||||
"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.",
|
||||||
|
"LabelFromHelp": "Example: {0} (on the server)",
|
||||||
"HeaderMyMedia": "Els Meus Multim\u00e8dia",
|
"HeaderMyMedia": "Els Meus Multim\u00e8dia",
|
||||||
"ButtonRemoveFromCollection": "Remove from Collection",
|
"ButtonRemoveFromCollection": "Remove from Collection",
|
||||||
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
||||||
@ -355,6 +355,8 @@
|
|||||||
"ButtonBrowseOnlineImages": "Browse online images",
|
"ButtonBrowseOnlineImages": "Browse online images",
|
||||||
"HeaderDeleteItem": "Esborrar \u00cdtem",
|
"HeaderDeleteItem": "Esborrar \u00cdtem",
|
||||||
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
|
"HeaderDeleteItems": "Delete Items",
|
||||||
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
||||||
"MessageItemSaved": "\u00cdtem desat.",
|
"MessageItemSaved": "\u00cdtem desat.",
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"LabelFromHelp": "Example: {0} (on the server)",
|
|
||||||
"SettingsSaved": "Nastaven\u00ed ulo\u017eeno.",
|
"SettingsSaved": "Nastaven\u00ed ulo\u017eeno.",
|
||||||
"AddUser": "P\u0159idat u\u017eivatele",
|
"AddUser": "P\u0159idat u\u017eivatele",
|
||||||
"Users": "U\u017eivatel\u00e9",
|
"Users": "U\u017eivatel\u00e9",
|
||||||
@ -49,6 +48,7 @@
|
|||||||
"ButtonIdentify": "Identifikuj",
|
"ButtonIdentify": "Identifikuj",
|
||||||
"HeaderIdentifyItem": "Identifikuj polo\u017eku",
|
"HeaderIdentifyItem": "Identifikuj polo\u017eku",
|
||||||
"LabelRecurringDonationCanBeCancelledHelp": "Opakuj\u00edc\u00ed se dary lze kdykoli zru\u0161it pomoc\u00ed sv\u00e9ho \u00fa\u010dtu PayPal.",
|
"LabelRecurringDonationCanBeCancelledHelp": "Opakuj\u00edc\u00ed se dary lze kdykoli zru\u0161it pomoc\u00ed sv\u00e9ho \u00fa\u010dtu PayPal.",
|
||||||
|
"LabelFromHelp": "Example: {0} (on the server)",
|
||||||
"HeaderMyMedia": "Moje m\u00e9dia",
|
"HeaderMyMedia": "Moje m\u00e9dia",
|
||||||
"ButtonRemoveFromCollection": "Odebrat z kolekce",
|
"ButtonRemoveFromCollection": "Odebrat z kolekce",
|
||||||
"LabelAutomaticUpdateLevel": "\u00darove\u0148 automatick\u00e9 aktualizace:",
|
"LabelAutomaticUpdateLevel": "\u00darove\u0148 automatick\u00e9 aktualizace:",
|
||||||
@ -355,6 +355,8 @@
|
|||||||
"ButtonBrowseOnlineImages": "Proch\u00e1zet obr\u00e1zky online",
|
"ButtonBrowseOnlineImages": "Proch\u00e1zet obr\u00e1zky online",
|
||||||
"HeaderDeleteItem": "Smazat polo\u017eku",
|
"HeaderDeleteItem": "Smazat polo\u017eku",
|
||||||
"ConfirmDeleteItem": "Smaz\u00e1n\u00edm polo\u017eky odstran\u00edte soubor jak z knihovny m\u00e9di\u00ed tak ze souborov\u00e9ho syst\u00e9mu. Jste si jisti, \u017ee chcete pokra\u010dovat?",
|
"ConfirmDeleteItem": "Smaz\u00e1n\u00edm polo\u017eky odstran\u00edte soubor jak z knihovny m\u00e9di\u00ed tak ze souborov\u00e9ho syst\u00e9mu. Jste si jisti, \u017ee chcete pokra\u010dovat?",
|
||||||
|
"HeaderDeleteItems": "Delete Items",
|
||||||
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Pros\u00edm, zadejte n\u00e1zev nebo extern\u00ed Id.",
|
"MessagePleaseEnterNameOrId": "Pros\u00edm, zadejte n\u00e1zev nebo extern\u00ed Id.",
|
||||||
"MessageValueNotCorrect": "Zadan\u00e1 hodnota nen\u00ed spr\u00e1vn\u00e1. Pros\u00edm zkuste to znovu.",
|
"MessageValueNotCorrect": "Zadan\u00e1 hodnota nen\u00ed spr\u00e1vn\u00e1. Pros\u00edm zkuste to znovu.",
|
||||||
"MessageItemSaved": "Polo\u017eka ulo\u017eena.",
|
"MessageItemSaved": "Polo\u017eka ulo\u017eena.",
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"LabelFromHelp": "Example: {0} (on the server)",
|
|
||||||
"SettingsSaved": "Indstillinger er gemt",
|
"SettingsSaved": "Indstillinger er gemt",
|
||||||
"AddUser": "Tilf\u00f8j bruger",
|
"AddUser": "Tilf\u00f8j bruger",
|
||||||
"Users": "Brugere",
|
"Users": "Brugere",
|
||||||
@ -49,6 +48,7 @@
|
|||||||
"ButtonIdentify": "Identificer",
|
"ButtonIdentify": "Identificer",
|
||||||
"HeaderIdentifyItem": "Identificer genstand",
|
"HeaderIdentifyItem": "Identificer genstand",
|
||||||
"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.",
|
||||||
|
"LabelFromHelp": "Example: {0} (on the server)",
|
||||||
"HeaderMyMedia": "Mine medier",
|
"HeaderMyMedia": "Mine medier",
|
||||||
"ButtonRemoveFromCollection": "Remove from Collection",
|
"ButtonRemoveFromCollection": "Remove from Collection",
|
||||||
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
||||||
@ -355,6 +355,8 @@
|
|||||||
"ButtonBrowseOnlineImages": "Gennemse online billeder",
|
"ButtonBrowseOnlineImages": "Gennemse online billeder",
|
||||||
"HeaderDeleteItem": "Slet element",
|
"HeaderDeleteItem": "Slet element",
|
||||||
"ConfirmDeleteItem": "Hvis dette element slettes, fjernes det b\u00e5de fra dit filsystem samt din mediebibliotek. Er du sikker p\u00e5 du \u00f8nsker at forts\u00e6tte?",
|
"ConfirmDeleteItem": "Hvis dette element slettes, fjernes det b\u00e5de fra dit filsystem samt din mediebibliotek. Er du sikker p\u00e5 du \u00f8nsker at forts\u00e6tte?",
|
||||||
|
"HeaderDeleteItems": "Delete Items",
|
||||||
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Indtast venligst et navn eller eksternt Id.",
|
"MessagePleaseEnterNameOrId": "Indtast venligst et navn eller eksternt Id.",
|
||||||
"MessageValueNotCorrect": "Det indtastede v\u00e6rdi er ikke korrekt. Pr\u00f8v igen.",
|
"MessageValueNotCorrect": "Det indtastede v\u00e6rdi er ikke korrekt. Pr\u00f8v igen.",
|
||||||
"MessageItemSaved": "Element gemt.",
|
"MessageItemSaved": "Element gemt.",
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"LabelFromHelp": "Beispiel: {0} (auf dem Server)",
|
|
||||||
"SettingsSaved": "Einstellungen gespeichert.",
|
"SettingsSaved": "Einstellungen gespeichert.",
|
||||||
"AddUser": "Benutzer anlegen",
|
"AddUser": "Benutzer anlegen",
|
||||||
"Users": "Benutzer",
|
"Users": "Benutzer",
|
||||||
@ -49,6 +48,7 @@
|
|||||||
"ButtonIdentify": "Identifizieren",
|
"ButtonIdentify": "Identifizieren",
|
||||||
"HeaderIdentifyItem": "Identifiziere Element",
|
"HeaderIdentifyItem": "Identifiziere Element",
|
||||||
"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.",
|
||||||
|
"LabelFromHelp": "Beispiel: {0} (auf dem Server)",
|
||||||
"HeaderMyMedia": "Meine Medien",
|
"HeaderMyMedia": "Meine Medien",
|
||||||
"ButtonRemoveFromCollection": "Aus Sammlung entfernen",
|
"ButtonRemoveFromCollection": "Aus Sammlung entfernen",
|
||||||
"LabelAutomaticUpdateLevel": "Automatische Updates f\u00fcr:",
|
"LabelAutomaticUpdateLevel": "Automatische Updates f\u00fcr:",
|
||||||
@ -355,6 +355,8 @@
|
|||||||
"ButtonBrowseOnlineImages": "Durchsuche Onlinebilder",
|
"ButtonBrowseOnlineImages": "Durchsuche Onlinebilder",
|
||||||
"HeaderDeleteItem": "L\u00f6sche Element",
|
"HeaderDeleteItem": "L\u00f6sche Element",
|
||||||
"ConfirmDeleteItem": "L\u00f6schen dieses Eintrages bedeutet das L\u00f6schen der Datei und das Entfernen aus der Medien-Bibliothek. M\u00f6chten Sie wirklich fortfahren?",
|
"ConfirmDeleteItem": "L\u00f6schen dieses Eintrages bedeutet das L\u00f6schen der Datei und das Entfernen aus der Medien-Bibliothek. M\u00f6chten Sie wirklich fortfahren?",
|
||||||
|
"HeaderDeleteItems": "Delete Items",
|
||||||
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Bitte gib einen Namen oder eine externe Id an.",
|
"MessagePleaseEnterNameOrId": "Bitte gib einen Namen oder eine externe Id an.",
|
||||||
"MessageValueNotCorrect": "Der eingegeben Wert ist nicht korrekt. Bitte versuche es noch einmal.",
|
"MessageValueNotCorrect": "Der eingegeben Wert ist nicht korrekt. Bitte versuche es noch einmal.",
|
||||||
"MessageItemSaved": "Element gespeichert",
|
"MessageItemSaved": "Element gespeichert",
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"LabelFromHelp": "Example: {0} (on the server)",
|
|
||||||
"SettingsSaved": "\u039f\u03b9 \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c4\u03b7\u03ba\u03b1\u03bd",
|
"SettingsSaved": "\u039f\u03b9 \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c4\u03b7\u03ba\u03b1\u03bd",
|
||||||
"AddUser": "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7",
|
"AddUser": "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7",
|
||||||
"Users": "\u039f\u03b9 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2",
|
"Users": "\u039f\u03b9 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2",
|
||||||
@ -49,6 +48,7 @@
|
|||||||
"ButtonIdentify": "Identify",
|
"ButtonIdentify": "Identify",
|
||||||
"HeaderIdentifyItem": "Identify Item",
|
"HeaderIdentifyItem": "Identify Item",
|
||||||
"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.",
|
||||||
|
"LabelFromHelp": "Example: {0} (on the server)",
|
||||||
"HeaderMyMedia": "My Media",
|
"HeaderMyMedia": "My Media",
|
||||||
"ButtonRemoveFromCollection": "Remove from Collection",
|
"ButtonRemoveFromCollection": "Remove from Collection",
|
||||||
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
||||||
@ -355,6 +355,8 @@
|
|||||||
"ButtonBrowseOnlineImages": "Browse online images",
|
"ButtonBrowseOnlineImages": "Browse online images",
|
||||||
"HeaderDeleteItem": "Delete Item",
|
"HeaderDeleteItem": "Delete Item",
|
||||||
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
|
"HeaderDeleteItems": "Delete Items",
|
||||||
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"LabelFromHelp": "Example: {0} (on the server)",
|
|
||||||
"SettingsSaved": "Settings saved.",
|
"SettingsSaved": "Settings saved.",
|
||||||
"AddUser": "Add User",
|
"AddUser": "Add User",
|
||||||
"Users": "Users",
|
"Users": "Users",
|
||||||
@ -49,6 +48,7 @@
|
|||||||
"ButtonIdentify": "Identify",
|
"ButtonIdentify": "Identify",
|
||||||
"HeaderIdentifyItem": "Identify Item",
|
"HeaderIdentifyItem": "Identify Item",
|
||||||
"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.",
|
||||||
|
"LabelFromHelp": "Example: {0} (on the server)",
|
||||||
"HeaderMyMedia": "My Media",
|
"HeaderMyMedia": "My Media",
|
||||||
"ButtonRemoveFromCollection": "Remove from Collection",
|
"ButtonRemoveFromCollection": "Remove from Collection",
|
||||||
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
||||||
@ -355,6 +355,8 @@
|
|||||||
"ButtonBrowseOnlineImages": "Browse online images",
|
"ButtonBrowseOnlineImages": "Browse online images",
|
||||||
"HeaderDeleteItem": "Delete Item",
|
"HeaderDeleteItem": "Delete Item",
|
||||||
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
|
"HeaderDeleteItems": "Delete Items",
|
||||||
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"LabelFromHelp": "Example: {0} (on the server)",
|
|
||||||
"SettingsSaved": "Settings saved.",
|
"SettingsSaved": "Settings saved.",
|
||||||
"AddUser": "Add User",
|
"AddUser": "Add User",
|
||||||
"Users": "Users",
|
"Users": "Users",
|
||||||
@ -49,6 +48,7 @@
|
|||||||
"ButtonIdentify": "Identify",
|
"ButtonIdentify": "Identify",
|
||||||
"HeaderIdentifyItem": "Identify Item",
|
"HeaderIdentifyItem": "Identify Item",
|
||||||
"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.",
|
||||||
|
"LabelFromHelp": "Example: {0} (on the server)",
|
||||||
"HeaderMyMedia": "My Media",
|
"HeaderMyMedia": "My Media",
|
||||||
"ButtonRemoveFromCollection": "Remove from Collection",
|
"ButtonRemoveFromCollection": "Remove from Collection",
|
||||||
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"LabelFromHelp": "Example: {0} (on the server)",
|
|
||||||
"SettingsSaved": "Settings saved.",
|
"SettingsSaved": "Settings saved.",
|
||||||
"AddUser": "Add User",
|
"AddUser": "Add User",
|
||||||
"Users": "Users",
|
"Users": "Users",
|
||||||
@ -49,6 +48,7 @@
|
|||||||
"ButtonIdentify": "Identify",
|
"ButtonIdentify": "Identify",
|
||||||
"HeaderIdentifyItem": "Identify Item",
|
"HeaderIdentifyItem": "Identify Item",
|
||||||
"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.",
|
||||||
|
"LabelFromHelp": "Example: {0} (on the server)",
|
||||||
"HeaderMyMedia": "My Media",
|
"HeaderMyMedia": "My Media",
|
||||||
"ButtonRemoveFromCollection": "Remove from Collection",
|
"ButtonRemoveFromCollection": "Remove from Collection",
|
||||||
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
||||||
@ -355,6 +355,8 @@
|
|||||||
"ButtonBrowseOnlineImages": "Browse online images",
|
"ButtonBrowseOnlineImages": "Browse online images",
|
||||||
"HeaderDeleteItem": "Delete Item",
|
"HeaderDeleteItem": "Delete Item",
|
||||||
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
|
"HeaderDeleteItems": "Delete Items",
|
||||||
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"LabelFromHelp": "Ejemplo: {0} (en el servidor)",
|
|
||||||
"SettingsSaved": "Configuraci\u00f3n guardada.",
|
"SettingsSaved": "Configuraci\u00f3n guardada.",
|
||||||
"AddUser": "Agregar usuario",
|
"AddUser": "Agregar usuario",
|
||||||
"Users": "Usuarios",
|
"Users": "Usuarios",
|
||||||
@ -49,6 +48,7 @@
|
|||||||
"ButtonIdentify": "Identificar",
|
"ButtonIdentify": "Identificar",
|
||||||
"HeaderIdentifyItem": "Identificar \u00cdtem",
|
"HeaderIdentifyItem": "Identificar \u00cdtem",
|
||||||
"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.",
|
||||||
|
"LabelFromHelp": "Ejemplo: {0} (en el servidor)",
|
||||||
"HeaderMyMedia": "Mis Medios",
|
"HeaderMyMedia": "Mis Medios",
|
||||||
"ButtonRemoveFromCollection": "Remover de la Colecci\u00f3n",
|
"ButtonRemoveFromCollection": "Remover de la Colecci\u00f3n",
|
||||||
"LabelAutomaticUpdateLevel": "Nivel de actualizaci\u00f3n autom\u00e1tico:",
|
"LabelAutomaticUpdateLevel": "Nivel de actualizaci\u00f3n autom\u00e1tico:",
|
||||||
@ -355,6 +355,8 @@
|
|||||||
"ButtonBrowseOnlineImages": "Buscar im\u00e1genes en l\u00ednea",
|
"ButtonBrowseOnlineImages": "Buscar im\u00e1genes en l\u00ednea",
|
||||||
"HeaderDeleteItem": "Eliminar \u00cdtem",
|
"HeaderDeleteItem": "Eliminar \u00cdtem",
|
||||||
"ConfirmDeleteItem": "Al eliminar este \u00edtem se eliminar\u00e1 tanto del sistema de archivos como de su biblioteca de medios. \u00bfEsta seguro de querer continuar?",
|
"ConfirmDeleteItem": "Al eliminar este \u00edtem se eliminar\u00e1 tanto del sistema de archivos como de su biblioteca de medios. \u00bfEsta seguro de querer continuar?",
|
||||||
|
"HeaderDeleteItems": "Delete Items",
|
||||||
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Por favor introduzca un nombre o id externo.",
|
"MessagePleaseEnterNameOrId": "Por favor introduzca un nombre o id externo.",
|
||||||
"MessageValueNotCorrect": "El valor introducido no es correcto. Intente nuevamente por favor.",
|
"MessageValueNotCorrect": "El valor introducido no es correcto. Intente nuevamente por favor.",
|
||||||
"MessageItemSaved": "\u00cdtem guardado.",
|
"MessageItemSaved": "\u00cdtem guardado.",
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"LabelFromHelp": "Example: {0} (on the server)",
|
|
||||||
"SettingsSaved": "Configuraci\u00f3n guardada",
|
"SettingsSaved": "Configuraci\u00f3n guardada",
|
||||||
"AddUser": "Agregar usuario",
|
"AddUser": "Agregar usuario",
|
||||||
"Users": "Usuarios",
|
"Users": "Usuarios",
|
||||||
@ -49,6 +48,7 @@
|
|||||||
"ButtonIdentify": "Identify",
|
"ButtonIdentify": "Identify",
|
||||||
"HeaderIdentifyItem": "Identify Item",
|
"HeaderIdentifyItem": "Identify Item",
|
||||||
"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.",
|
||||||
|
"LabelFromHelp": "Example: {0} (on the server)",
|
||||||
"HeaderMyMedia": "My Media",
|
"HeaderMyMedia": "My Media",
|
||||||
"ButtonRemoveFromCollection": "Remove from Collection",
|
"ButtonRemoveFromCollection": "Remove from Collection",
|
||||||
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
||||||
@ -355,6 +355,8 @@
|
|||||||
"ButtonBrowseOnlineImages": "Navegar im\u00e1genes online",
|
"ButtonBrowseOnlineImages": "Navegar im\u00e1genes online",
|
||||||
"HeaderDeleteItem": "Borrar elemento",
|
"HeaderDeleteItem": "Borrar elemento",
|
||||||
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
|
"HeaderDeleteItems": "Delete Items",
|
||||||
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Introduzca un nombre o un identificador externo.",
|
"MessagePleaseEnterNameOrId": "Introduzca un nombre o un identificador externo.",
|
||||||
"MessageValueNotCorrect": "El valor introducido no es correcto. Intentelo de nuevo.",
|
"MessageValueNotCorrect": "El valor introducido no es correcto. Intentelo de nuevo.",
|
||||||
"MessageItemSaved": "Elemento grabado.",
|
"MessageItemSaved": "Elemento grabado.",
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"LabelFromHelp": "Example: {0} (on the server)",
|
|
||||||
"SettingsSaved": "Asetukset tallennettu.",
|
"SettingsSaved": "Asetukset tallennettu.",
|
||||||
"AddUser": "Lis\u00e4\u00e4 K\u00e4ytt\u00e4j\u00e4",
|
"AddUser": "Lis\u00e4\u00e4 K\u00e4ytt\u00e4j\u00e4",
|
||||||
"Users": "K\u00e4ytt\u00e4j\u00e4t",
|
"Users": "K\u00e4ytt\u00e4j\u00e4t",
|
||||||
@ -49,6 +48,7 @@
|
|||||||
"ButtonIdentify": "Identify",
|
"ButtonIdentify": "Identify",
|
||||||
"HeaderIdentifyItem": "Identify Item",
|
"HeaderIdentifyItem": "Identify Item",
|
||||||
"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.",
|
||||||
|
"LabelFromHelp": "Example: {0} (on the server)",
|
||||||
"HeaderMyMedia": "My Media",
|
"HeaderMyMedia": "My Media",
|
||||||
"ButtonRemoveFromCollection": "Remove from Collection",
|
"ButtonRemoveFromCollection": "Remove from Collection",
|
||||||
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
||||||
@ -355,6 +355,8 @@
|
|||||||
"ButtonBrowseOnlineImages": "Browse online images",
|
"ButtonBrowseOnlineImages": "Browse online images",
|
||||||
"HeaderDeleteItem": "Delete Item",
|
"HeaderDeleteItem": "Delete Item",
|
||||||
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
|
"HeaderDeleteItems": "Delete Items",
|
||||||
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"LabelFromHelp": "Exemple: {0} (sur le serveur)",
|
|
||||||
"SettingsSaved": "Param\u00e8tres sauvegard\u00e9s.",
|
"SettingsSaved": "Param\u00e8tres sauvegard\u00e9s.",
|
||||||
"AddUser": "Ajouter un utilisateur",
|
"AddUser": "Ajouter un utilisateur",
|
||||||
"Users": "Utilisateurs",
|
"Users": "Utilisateurs",
|
||||||
@ -49,6 +48,7 @@
|
|||||||
"ButtonIdentify": "Identifier",
|
"ButtonIdentify": "Identifier",
|
||||||
"HeaderIdentifyItem": "Identification de l'\u00e9l\u00e9ment",
|
"HeaderIdentifyItem": "Identification de l'\u00e9l\u00e9ment",
|
||||||
"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.",
|
||||||
|
"LabelFromHelp": "Exemple: {0} (sur le serveur)",
|
||||||
"HeaderMyMedia": "Mes medias",
|
"HeaderMyMedia": "Mes medias",
|
||||||
"ButtonRemoveFromCollection": "Supprimer de la collection",
|
"ButtonRemoveFromCollection": "Supprimer de la collection",
|
||||||
"LabelAutomaticUpdateLevel": "Niveau de mise \u00e0 jour automatique :",
|
"LabelAutomaticUpdateLevel": "Niveau de mise \u00e0 jour automatique :",
|
||||||
@ -355,6 +355,8 @@
|
|||||||
"ButtonBrowseOnlineImages": "Parcourir les images en ligne",
|
"ButtonBrowseOnlineImages": "Parcourir les images en ligne",
|
||||||
"HeaderDeleteItem": "Supprimer l'\u00e9l\u00e9ment",
|
"HeaderDeleteItem": "Supprimer l'\u00e9l\u00e9ment",
|
||||||
"ConfirmDeleteItem": "Supprimer cet \u00e9l\u00e9ment l'effacera \u00e0 la fois du syst\u00e8me de fichiers et de votre biblioth\u00e8que de medias. Etes-vous s\u00fbr de vouloir continuer ?",
|
"ConfirmDeleteItem": "Supprimer cet \u00e9l\u00e9ment l'effacera \u00e0 la fois du syst\u00e8me de fichiers et de votre biblioth\u00e8que de medias. Etes-vous s\u00fbr de vouloir continuer ?",
|
||||||
|
"HeaderDeleteItems": "Delete Items",
|
||||||
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Veuillez saisir un nom ou un identifiant externe.",
|
"MessagePleaseEnterNameOrId": "Veuillez saisir un nom ou un identifiant externe.",
|
||||||
"MessageValueNotCorrect": "La valeur saisie est incorrecte. Veuillez r\u00e9essayer.",
|
"MessageValueNotCorrect": "La valeur saisie est incorrecte. Veuillez r\u00e9essayer.",
|
||||||
"MessageItemSaved": "Item sauvegard\u00e9.",
|
"MessageItemSaved": "Item sauvegard\u00e9.",
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"LabelFromHelp": "Example: {0} (on the server)",
|
|
||||||
"SettingsSaved": "Settings saved.",
|
"SettingsSaved": "Settings saved.",
|
||||||
"AddUser": "Add User",
|
"AddUser": "Add User",
|
||||||
"Users": "Users",
|
"Users": "Users",
|
||||||
@ -49,6 +48,7 @@
|
|||||||
"ButtonIdentify": "Identify",
|
"ButtonIdentify": "Identify",
|
||||||
"HeaderIdentifyItem": "Identify Item",
|
"HeaderIdentifyItem": "Identify Item",
|
||||||
"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.",
|
||||||
|
"LabelFromHelp": "Example: {0} (on the server)",
|
||||||
"HeaderMyMedia": "My Media",
|
"HeaderMyMedia": "My Media",
|
||||||
"ButtonRemoveFromCollection": "Remove from Collection",
|
"ButtonRemoveFromCollection": "Remove from Collection",
|
||||||
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
||||||
@ -355,6 +355,8 @@
|
|||||||
"ButtonBrowseOnlineImages": "Browse online images",
|
"ButtonBrowseOnlineImages": "Browse online images",
|
||||||
"HeaderDeleteItem": "Delete Item",
|
"HeaderDeleteItem": "Delete Item",
|
||||||
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
|
"HeaderDeleteItems": "Delete Items",
|
||||||
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"LabelFromHelp": "Example: {0} (on the server)",
|
|
||||||
"SettingsSaved": "\u05d4\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05e0\u05e9\u05de\u05e8\u05d5.",
|
"SettingsSaved": "\u05d4\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05e0\u05e9\u05de\u05e8\u05d5.",
|
||||||
"AddUser": "\u05d4\u05d5\u05e1\u05e3 \u05de\u05e9\u05ea\u05de\u05e9",
|
"AddUser": "\u05d4\u05d5\u05e1\u05e3 \u05de\u05e9\u05ea\u05de\u05e9",
|
||||||
"Users": "\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd",
|
"Users": "\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd",
|
||||||
@ -49,6 +48,7 @@
|
|||||||
"ButtonIdentify": "Identify",
|
"ButtonIdentify": "Identify",
|
||||||
"HeaderIdentifyItem": "Identify Item",
|
"HeaderIdentifyItem": "Identify Item",
|
||||||
"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.",
|
||||||
|
"LabelFromHelp": "Example: {0} (on the server)",
|
||||||
"HeaderMyMedia": "My Media",
|
"HeaderMyMedia": "My Media",
|
||||||
"ButtonRemoveFromCollection": "Remove from Collection",
|
"ButtonRemoveFromCollection": "Remove from Collection",
|
||||||
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
||||||
@ -355,6 +355,8 @@
|
|||||||
"ButtonBrowseOnlineImages": "Browse online images",
|
"ButtonBrowseOnlineImages": "Browse online images",
|
||||||
"HeaderDeleteItem": "Delete Item",
|
"HeaderDeleteItem": "Delete Item",
|
||||||
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
|
"HeaderDeleteItems": "Delete Items",
|
||||||
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"LabelFromHelp": "Example: {0} (on the server)",
|
|
||||||
"SettingsSaved": "Postavke snimljene",
|
"SettingsSaved": "Postavke snimljene",
|
||||||
"AddUser": "Dodaj korisnika",
|
"AddUser": "Dodaj korisnika",
|
||||||
"Users": "Korisnici",
|
"Users": "Korisnici",
|
||||||
@ -49,6 +48,7 @@
|
|||||||
"ButtonIdentify": "Identify",
|
"ButtonIdentify": "Identify",
|
||||||
"HeaderIdentifyItem": "Identify Item",
|
"HeaderIdentifyItem": "Identify Item",
|
||||||
"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.",
|
||||||
|
"LabelFromHelp": "Example: {0} (on the server)",
|
||||||
"HeaderMyMedia": "My Media",
|
"HeaderMyMedia": "My Media",
|
||||||
"ButtonRemoveFromCollection": "Remove from Collection",
|
"ButtonRemoveFromCollection": "Remove from Collection",
|
||||||
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
||||||
@ -355,6 +355,8 @@
|
|||||||
"ButtonBrowseOnlineImages": "Browse online images",
|
"ButtonBrowseOnlineImages": "Browse online images",
|
||||||
"HeaderDeleteItem": "Delete Item",
|
"HeaderDeleteItem": "Delete Item",
|
||||||
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
|
"HeaderDeleteItems": "Delete Items",
|
||||||
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"LabelFromHelp": "Example: {0} (on the server)",
|
|
||||||
"SettingsSaved": "Settaggi salvati.",
|
"SettingsSaved": "Settaggi salvati.",
|
||||||
"AddUser": "Aggiungi utente",
|
"AddUser": "Aggiungi utente",
|
||||||
"Users": "Utenti",
|
"Users": "Utenti",
|
||||||
@ -49,6 +48,7 @@
|
|||||||
"ButtonIdentify": "Identifica",
|
"ButtonIdentify": "Identifica",
|
||||||
"HeaderIdentifyItem": "Identifica elemento",
|
"HeaderIdentifyItem": "Identifica elemento",
|
||||||
"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.",
|
||||||
|
"LabelFromHelp": "Example: {0} (on the server)",
|
||||||
"HeaderMyMedia": "I miei media",
|
"HeaderMyMedia": "I miei media",
|
||||||
"ButtonRemoveFromCollection": "Rimuovi da Collezione",
|
"ButtonRemoveFromCollection": "Rimuovi da Collezione",
|
||||||
"LabelAutomaticUpdateLevel": "Livello di aggiornamento automatico:",
|
"LabelAutomaticUpdateLevel": "Livello di aggiornamento automatico:",
|
||||||
@ -355,6 +355,8 @@
|
|||||||
"ButtonBrowseOnlineImages": "Sfoglia le immagini Online",
|
"ButtonBrowseOnlineImages": "Sfoglia le immagini Online",
|
||||||
"HeaderDeleteItem": "Elimina elemento",
|
"HeaderDeleteItem": "Elimina elemento",
|
||||||
"ConfirmDeleteItem": "L'eliminazione di questo articolo sar\u00e0 eliminarlo sia dal file system e la vostra libreria multimediale. Sei sicuro di voler continuare?",
|
"ConfirmDeleteItem": "L'eliminazione di questo articolo sar\u00e0 eliminarlo sia dal file system e la vostra libreria multimediale. Sei sicuro di voler continuare?",
|
||||||
|
"HeaderDeleteItems": "Delete Items",
|
||||||
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Inserisci il nome o id esterno.",
|
"MessagePleaseEnterNameOrId": "Inserisci il nome o id esterno.",
|
||||||
"MessageValueNotCorrect": "Il valore inserito non \u00e8 corretto.Riprova di nuovo.",
|
"MessageValueNotCorrect": "Il valore inserito non \u00e8 corretto.Riprova di nuovo.",
|
||||||
"MessageItemSaved": "Elemento salvato.",
|
"MessageItemSaved": "Elemento salvato.",
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"LabelFromHelp": "\u041c\u044b\u0441\u0430\u043b: {0} (\u0441\u0435\u0440\u0432\u0435\u0440\u0434\u0435)",
|
|
||||||
"SettingsSaved": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440 \u0441\u0430\u049b\u0442\u0430\u043b\u0434\u044b.",
|
"SettingsSaved": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440 \u0441\u0430\u049b\u0442\u0430\u043b\u0434\u044b.",
|
||||||
"AddUser": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043d\u044b \u04af\u0441\u0442\u0435\u0443",
|
"AddUser": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043d\u044b \u04af\u0441\u0442\u0435\u0443",
|
||||||
"Users": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440",
|
"Users": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440",
|
||||||
@ -49,6 +48,7 @@
|
|||||||
"ButtonIdentify": "\u0410\u043d\u044b\u049b\u0442\u0430\u0443",
|
"ButtonIdentify": "\u0410\u043d\u044b\u049b\u0442\u0430\u0443",
|
||||||
"HeaderIdentifyItem": "\u0422\u0430\u0440\u043c\u0430\u049b\u0442\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u0443",
|
"HeaderIdentifyItem": "\u0422\u0430\u0440\u043c\u0430\u049b\u0442\u044b \u0430\u043d\u044b\u049b\u0442\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.",
|
||||||
|
"LabelFromHelp": "\u041c\u044b\u0441\u0430\u043b: {0} (\u0441\u0435\u0440\u0432\u0435\u0440\u0434\u0435)",
|
||||||
"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",
|
||||||
"LabelAutomaticUpdateLevel": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0436\u0430\u04a3\u0430\u0440\u0442\u0443 \u0434\u0435\u04a3\u0433\u0435\u0439\u0456:",
|
"LabelAutomaticUpdateLevel": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0436\u0430\u04a3\u0430\u0440\u0442\u0443 \u0434\u0435\u04a3\u0433\u0435\u0439\u0456:",
|
||||||
@ -355,6 +355,8 @@
|
|||||||
"ButtonBrowseOnlineImages": "\u0416\u0435\u043b\u0456\u0434\u0435\u0433\u0456 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u0448\u043e\u043b\u0443",
|
"ButtonBrowseOnlineImages": "\u0416\u0435\u043b\u0456\u0434\u0435\u0433\u0456 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u0448\u043e\u043b\u0443",
|
||||||
"HeaderDeleteItem": "\u0422\u0430\u0440\u043c\u0430\u049b\u0442\u044b \u0436\u043e\u044e",
|
"HeaderDeleteItem": "\u0422\u0430\u0440\u043c\u0430\u049b\u0442\u044b \u0436\u043e\u044e",
|
||||||
"ConfirmDeleteItem": "\u041e\u0441\u044b \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u044b \u0436\u043e\u0439\u0493\u0430\u043d\u0434\u0430, \u043e\u043b \u0444\u0430\u0439\u043b \u0436\u04af\u0439\u0435\u0441\u0456\u043d\u0435\u043d \u0434\u0435, \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u04a3\u044b\u0437\u0434\u0430\u043d \u0434\u0430 \u0436\u043e\u0439\u044b\u043b\u0430\u0434\u044b. \u0428\u044b\u043d\u044b\u043c\u0435\u043d \u0436\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443 \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?",
|
"ConfirmDeleteItem": "\u041e\u0441\u044b \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u044b \u0436\u043e\u0439\u0493\u0430\u043d\u0434\u0430, \u043e\u043b \u0444\u0430\u0439\u043b \u0436\u04af\u0439\u0435\u0441\u0456\u043d\u0435\u043d \u0434\u0435, \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u04a3\u044b\u0437\u0434\u0430\u043d \u0434\u0430 \u0436\u043e\u0439\u044b\u043b\u0430\u0434\u044b. \u0428\u044b\u043d\u044b\u043c\u0435\u043d \u0436\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443 \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?",
|
||||||
|
"HeaderDeleteItems": "\u0422\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440\u0434\u044b \u0436\u043e\u044e",
|
||||||
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "\u0410\u0442\u044b\u043d \u043d\u0435\u043c\u0435\u0441\u0435 \u0441\u044b\u0440\u0442\u049b\u044b ID \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437.",
|
"MessagePleaseEnterNameOrId": "\u0410\u0442\u044b\u043d \u043d\u0435\u043c\u0435\u0441\u0435 \u0441\u044b\u0440\u0442\u049b\u044b ID \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437.",
|
||||||
"MessageValueNotCorrect": "\u0415\u043d\u0433\u0456\u0437\u0456\u043b\u0433\u0435\u043d \u043c\u04d9\u043d \u0434\u04b1\u0440\u044b\u0441 \u0435\u043c\u0435\u0441. \u04d8\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.",
|
"MessageValueNotCorrect": "\u0415\u043d\u0433\u0456\u0437\u0456\u043b\u0433\u0435\u043d \u043c\u04d9\u043d \u0434\u04b1\u0440\u044b\u0441 \u0435\u043c\u0435\u0441. \u04d8\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.",
|
||||||
"MessageItemSaved": "\u0422\u0430\u0440\u043c\u0430\u049b \u0441\u0430\u049b\u0442\u0430\u043b\u0434\u044b.",
|
"MessageItemSaved": "\u0422\u0430\u0440\u043c\u0430\u049b \u0441\u0430\u049b\u0442\u0430\u043b\u0434\u044b.",
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"LabelFromHelp": "Example: {0} (on the server)",
|
|
||||||
"SettingsSaved": "\uc124\uc815\uc774 \uc800\uc7a5\ub418\uc5c8\uc2b5\ub2c8\ub2e4.",
|
"SettingsSaved": "\uc124\uc815\uc774 \uc800\uc7a5\ub418\uc5c8\uc2b5\ub2c8\ub2e4.",
|
||||||
"AddUser": "\uc0ac\uc6a9\uc790 \ucd94\uac00",
|
"AddUser": "\uc0ac\uc6a9\uc790 \ucd94\uac00",
|
||||||
"Users": "\uc0ac\uc6a9\uc790",
|
"Users": "\uc0ac\uc6a9\uc790",
|
||||||
@ -49,6 +48,7 @@
|
|||||||
"ButtonIdentify": "Identify",
|
"ButtonIdentify": "Identify",
|
||||||
"HeaderIdentifyItem": "Identify Item",
|
"HeaderIdentifyItem": "Identify Item",
|
||||||
"LabelRecurringDonationCanBeCancelledHelp": "\uc815\uae30 \ud6c4\uc6d0\uc740 \uc5b8\uc81c\ub4e0\uc9c0 \uadc0\ud558\uc758 PayPal \uacc4\uc815\uc5d0\uc11c \ucde8\uc18c\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.",
|
"LabelRecurringDonationCanBeCancelledHelp": "\uc815\uae30 \ud6c4\uc6d0\uc740 \uc5b8\uc81c\ub4e0\uc9c0 \uadc0\ud558\uc758 PayPal \uacc4\uc815\uc5d0\uc11c \ucde8\uc18c\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.",
|
||||||
|
"LabelFromHelp": "Example: {0} (on the server)",
|
||||||
"HeaderMyMedia": "\ub0b4 \ubbf8\ub514\uc5b4",
|
"HeaderMyMedia": "\ub0b4 \ubbf8\ub514\uc5b4",
|
||||||
"ButtonRemoveFromCollection": "\uceec\ub809\uc158\uc5d0\uc11c \uc0ad\uc81c",
|
"ButtonRemoveFromCollection": "\uceec\ub809\uc158\uc5d0\uc11c \uc0ad\uc81c",
|
||||||
"LabelAutomaticUpdateLevel": "\uc790\ub3d9 \uc5c5\ub370\uc774\ud2b8 \uc218\uc900:",
|
"LabelAutomaticUpdateLevel": "\uc790\ub3d9 \uc5c5\ub370\uc774\ud2b8 \uc218\uc900:",
|
||||||
@ -355,6 +355,8 @@
|
|||||||
"ButtonBrowseOnlineImages": "\uc628\ub77c\uc778 \uc774\ubbf8\uc9c0 \ud0d0\uc0c9",
|
"ButtonBrowseOnlineImages": "\uc628\ub77c\uc778 \uc774\ubbf8\uc9c0 \ud0d0\uc0c9",
|
||||||
"HeaderDeleteItem": "\ud56d\ubaa9 \uc0ad\uc81c",
|
"HeaderDeleteItem": "\ud56d\ubaa9 \uc0ad\uc81c",
|
||||||
"ConfirmDeleteItem": "\uc774 \ud56d\ubaa9\uc744 \uc0ad\uc81c\ud558\uba74 \ud30c\uc77c \uc2dc\uc2a4\ud15c\uacfc \ub77c\uc774\ube0c\ub7ec\ub9ac \ubaa8\ub450\uc5d0\uc11c \uc0ad\uc81c\ub429\ub2c8\ub2e4. \uacc4\uc18d\ud558\uaca0\uc2b5\ub2c8\uae4c?",
|
"ConfirmDeleteItem": "\uc774 \ud56d\ubaa9\uc744 \uc0ad\uc81c\ud558\uba74 \ud30c\uc77c \uc2dc\uc2a4\ud15c\uacfc \ub77c\uc774\ube0c\ub7ec\ub9ac \ubaa8\ub450\uc5d0\uc11c \uc0ad\uc81c\ub429\ub2c8\ub2e4. \uacc4\uc18d\ud558\uaca0\uc2b5\ub2c8\uae4c?",
|
||||||
|
"HeaderDeleteItems": "Delete Items",
|
||||||
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageValueNotCorrect": "\uc785\ub825\ud55c \uac12\uc774 \uc62c\ubc14\ub974\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. \ub2e4\uc2dc \uc2dc\ub3c4\ud558\uc138\uc694.",
|
"MessageValueNotCorrect": "\uc785\ub825\ud55c \uac12\uc774 \uc62c\ubc14\ub974\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. \ub2e4\uc2dc \uc2dc\ub3c4\ud558\uc138\uc694.",
|
||||||
"MessageItemSaved": "\ud56d\ubaa9\uc774 \uc800\uc7a5\ub418\uc5c8\uc2b5\ub2c8\ub2e4.",
|
"MessageItemSaved": "\ud56d\ubaa9\uc774 \uc800\uc7a5\ub418\uc5c8\uc2b5\ub2c8\ub2e4.",
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"LabelFromHelp": "Example: {0} (on the server)",
|
|
||||||
"SettingsSaved": "Seting Disimpan",
|
"SettingsSaved": "Seting Disimpan",
|
||||||
"AddUser": "Tambah Pengguna",
|
"AddUser": "Tambah Pengguna",
|
||||||
"Users": "Para Pengguna",
|
"Users": "Para Pengguna",
|
||||||
@ -49,6 +48,7 @@
|
|||||||
"ButtonIdentify": "Identify",
|
"ButtonIdentify": "Identify",
|
||||||
"HeaderIdentifyItem": "Identify Item",
|
"HeaderIdentifyItem": "Identify Item",
|
||||||
"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.",
|
||||||
|
"LabelFromHelp": "Example: {0} (on the server)",
|
||||||
"HeaderMyMedia": "My Media",
|
"HeaderMyMedia": "My Media",
|
||||||
"ButtonRemoveFromCollection": "Remove from Collection",
|
"ButtonRemoveFromCollection": "Remove from Collection",
|
||||||
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
||||||
@ -355,6 +355,8 @@
|
|||||||
"ButtonBrowseOnlineImages": "Browse online images",
|
"ButtonBrowseOnlineImages": "Browse online images",
|
||||||
"HeaderDeleteItem": "Delete Item",
|
"HeaderDeleteItem": "Delete Item",
|
||||||
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
|
"HeaderDeleteItems": "Delete Items",
|
||||||
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"LabelFromHelp": "Example: {0} (on the server)",
|
|
||||||
"SettingsSaved": "Innstillinger lagret",
|
"SettingsSaved": "Innstillinger lagret",
|
||||||
"AddUser": "Legg til bruker",
|
"AddUser": "Legg til bruker",
|
||||||
"Users": "Brukere",
|
"Users": "Brukere",
|
||||||
@ -49,6 +48,7 @@
|
|||||||
"ButtonIdentify": "Identifiser",
|
"ButtonIdentify": "Identifiser",
|
||||||
"HeaderIdentifyItem": "Identifiser Element",
|
"HeaderIdentifyItem": "Identifiser Element",
|
||||||
"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.",
|
||||||
|
"LabelFromHelp": "Example: {0} (on the server)",
|
||||||
"HeaderMyMedia": "Mine media",
|
"HeaderMyMedia": "Mine media",
|
||||||
"ButtonRemoveFromCollection": "Remove from Collection",
|
"ButtonRemoveFromCollection": "Remove from Collection",
|
||||||
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
||||||
@ -355,6 +355,8 @@
|
|||||||
"ButtonBrowseOnlineImages": "Bla igjennom bilder online",
|
"ButtonBrowseOnlineImages": "Bla igjennom bilder online",
|
||||||
"HeaderDeleteItem": "Slett element",
|
"HeaderDeleteItem": "Slett element",
|
||||||
"ConfirmDeleteItem": "Sletter elementet fra b\u00e5de filsystemet og biblioteket. Er du sikker p\u00e5 at du vil fortsette?",
|
"ConfirmDeleteItem": "Sletter elementet fra b\u00e5de filsystemet og biblioteket. Er du sikker p\u00e5 at du vil fortsette?",
|
||||||
|
"HeaderDeleteItems": "Delete Items",
|
||||||
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Vennligst skriv ett navn eller en ekstern id.",
|
"MessagePleaseEnterNameOrId": "Vennligst skriv ett navn eller en ekstern id.",
|
||||||
"MessageValueNotCorrect": "Verdien som ble skrevet er ikke korrekt. Vennligst pr\u00f8v igjen.",
|
"MessageValueNotCorrect": "Verdien som ble skrevet er ikke korrekt. Vennligst pr\u00f8v igjen.",
|
||||||
"MessageItemSaved": "Element lagret.",
|
"MessageItemSaved": "Element lagret.",
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"LabelFromHelp": "Voorbeeld: {0} (op de server)",
|
|
||||||
"SettingsSaved": "Instellingen opgeslagen.",
|
"SettingsSaved": "Instellingen opgeslagen.",
|
||||||
"AddUser": "Gebruiker toevoegen",
|
"AddUser": "Gebruiker toevoegen",
|
||||||
"Users": "Gebruikers",
|
"Users": "Gebruikers",
|
||||||
@ -49,6 +48,7 @@
|
|||||||
"ButtonIdentify": "Identificeer",
|
"ButtonIdentify": "Identificeer",
|
||||||
"HeaderIdentifyItem": "Identificeer item",
|
"HeaderIdentifyItem": "Identificeer item",
|
||||||
"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.",
|
||||||
|
"LabelFromHelp": "Voorbeeld: {0} (op de server)",
|
||||||
"HeaderMyMedia": "Mijn media",
|
"HeaderMyMedia": "Mijn media",
|
||||||
"ButtonRemoveFromCollection": "Verwijder uit collectie",
|
"ButtonRemoveFromCollection": "Verwijder uit collectie",
|
||||||
"LabelAutomaticUpdateLevel": "Niveau automatische update:",
|
"LabelAutomaticUpdateLevel": "Niveau automatische update:",
|
||||||
@ -355,6 +355,8 @@
|
|||||||
"ButtonBrowseOnlineImages": "Blader door online afbeeldingen",
|
"ButtonBrowseOnlineImages": "Blader door online afbeeldingen",
|
||||||
"HeaderDeleteItem": "Item verwijderen",
|
"HeaderDeleteItem": "Item verwijderen",
|
||||||
"ConfirmDeleteItem": "Verwijderen van dit item zal het verwijderen uit zowel het bestandssysteem als de Media Bibliotheek. Weet u zeker dat u wilt doorgaan?",
|
"ConfirmDeleteItem": "Verwijderen van dit item zal het verwijderen uit zowel het bestandssysteem als de Media Bibliotheek. Weet u zeker dat u wilt doorgaan?",
|
||||||
|
"HeaderDeleteItems": "Delete Items",
|
||||||
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Voer een naam of een externe Id in",
|
"MessagePleaseEnterNameOrId": "Voer een naam of een externe Id in",
|
||||||
"MessageValueNotCorrect": "De ingevoerde waarde is niet correct. Probeer het opnieuw.",
|
"MessageValueNotCorrect": "De ingevoerde waarde is niet correct. Probeer het opnieuw.",
|
||||||
"MessageItemSaved": "Item opgeslagen.",
|
"MessageItemSaved": "Item opgeslagen.",
|
||||||
@ -889,7 +891,7 @@
|
|||||||
"ButtonNo": "Nee",
|
"ButtonNo": "Nee",
|
||||||
"ButtonRestorePreviousPurchase": "Herstel aankoop",
|
"ButtonRestorePreviousPurchase": "Herstel aankoop",
|
||||||
"AlreadyPaid": "Al betaald?",
|
"AlreadyPaid": "Al betaald?",
|
||||||
"AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.",
|
"AlreadyPaidHelp1": "Als je een oudere versie van Media Browser voor Android aangeschaft hebt hoef je niet opnieuw te betalen om de deze app te activeren. Klik op OK om on een email op {0} te sturen en wij activeren hem voor je.",
|
||||||
"AlreadyPaidHelp2": "Heb je Emby Premiere? Annuleer dan gewoon deze dialoog en meld je aan in de app vanop je draaloos thuisnetwerk en deze zal automatische ontgrendeld worden.",
|
"AlreadyPaidHelp2": "Heb je Emby Premiere? Annuleer dan gewoon deze dialoog en meld je aan in de app vanop je draaloos thuisnetwerk en deze zal automatische ontgrendeld worden.",
|
||||||
"ButtonForYou": "Voor U",
|
"ButtonForYou": "Voor U",
|
||||||
"ButtonLibrary": "Bibliotheek",
|
"ButtonLibrary": "Bibliotheek",
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"LabelFromHelp": "Example: {0} (on the server)",
|
|
||||||
"SettingsSaved": "Ustawienia zapisane.",
|
"SettingsSaved": "Ustawienia zapisane.",
|
||||||
"AddUser": "Dodaj u\u017cytkownika",
|
"AddUser": "Dodaj u\u017cytkownika",
|
||||||
"Users": "U\u017cytkownicy",
|
"Users": "U\u017cytkownicy",
|
||||||
@ -49,6 +48,7 @@
|
|||||||
"ButtonIdentify": "Identyfikuj",
|
"ButtonIdentify": "Identyfikuj",
|
||||||
"HeaderIdentifyItem": "Identyfikuj obiekt",
|
"HeaderIdentifyItem": "Identyfikuj obiekt",
|
||||||
"LabelRecurringDonationCanBeCancelledHelp": "Okresowe dotacje mog\u0105 zosta\u0107 anulowane w dowolnym momencie poprzez swoje konto PayPal.",
|
"LabelRecurringDonationCanBeCancelledHelp": "Okresowe dotacje mog\u0105 zosta\u0107 anulowane w dowolnym momencie poprzez swoje konto PayPal.",
|
||||||
|
"LabelFromHelp": "Example: {0} (on the server)",
|
||||||
"HeaderMyMedia": "Moje Media",
|
"HeaderMyMedia": "Moje Media",
|
||||||
"ButtonRemoveFromCollection": "Usu\u0144 z Kolekcji",
|
"ButtonRemoveFromCollection": "Usu\u0144 z Kolekcji",
|
||||||
"LabelAutomaticUpdateLevel": "Automatyczne poziom aktualizacji:",
|
"LabelAutomaticUpdateLevel": "Automatyczne poziom aktualizacji:",
|
||||||
@ -355,6 +355,8 @@
|
|||||||
"ButtonBrowseOnlineImages": "Przegl\u0105daj obrazy online",
|
"ButtonBrowseOnlineImages": "Przegl\u0105daj obrazy online",
|
||||||
"HeaderDeleteItem": "Usu\u0144 pozycje",
|
"HeaderDeleteItem": "Usu\u0144 pozycje",
|
||||||
"ConfirmDeleteItem": "Usuni\u0119cie tej pozycji usunie j\u0105 zar\u00f3wno z systemu plik\u00f3w jak i z biblioteki medi\u00f3w. Czy chcesz kontynuowa\u0107?",
|
"ConfirmDeleteItem": "Usuni\u0119cie tej pozycji usunie j\u0105 zar\u00f3wno z systemu plik\u00f3w jak i z biblioteki medi\u00f3w. Czy chcesz kontynuowa\u0107?",
|
||||||
|
"HeaderDeleteItems": "Delete Items",
|
||||||
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Prosz\u0119 wprowad\u017a nazw\u0119 lub zewn\u0119trzne Id.",
|
"MessagePleaseEnterNameOrId": "Prosz\u0119 wprowad\u017a nazw\u0119 lub zewn\u0119trzne Id.",
|
||||||
"MessageValueNotCorrect": "Wprowadzona warto\u015b\u0107 nie jest prawid\u0142owa. Spr\u00f3buj ponownie.",
|
"MessageValueNotCorrect": "Wprowadzona warto\u015b\u0107 nie jest prawid\u0142owa. Spr\u00f3buj ponownie.",
|
||||||
"MessageItemSaved": "Obiekt zapisany.",
|
"MessageItemSaved": "Obiekt zapisany.",
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"LabelFromHelp": "Exemplo: {0} (no servidor)",
|
|
||||||
"SettingsSaved": "Ajustes salvos.",
|
"SettingsSaved": "Ajustes salvos.",
|
||||||
"AddUser": "Adicionar Usu\u00e1rio",
|
"AddUser": "Adicionar Usu\u00e1rio",
|
||||||
"Users": "Usu\u00e1rios",
|
"Users": "Usu\u00e1rios",
|
||||||
@ -49,6 +48,7 @@
|
|||||||
"ButtonIdentify": "Identificar",
|
"ButtonIdentify": "Identificar",
|
||||||
"HeaderIdentifyItem": "Identificar Item",
|
"HeaderIdentifyItem": "Identificar Item",
|
||||||
"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.",
|
||||||
|
"LabelFromHelp": "Exemplo: {0} (no servidor)",
|
||||||
"HeaderMyMedia": "Minha M\u00eddia",
|
"HeaderMyMedia": "Minha M\u00eddia",
|
||||||
"ButtonRemoveFromCollection": "Remover da Cole\u00e7\u00e3o",
|
"ButtonRemoveFromCollection": "Remover da Cole\u00e7\u00e3o",
|
||||||
"LabelAutomaticUpdateLevel": "N\u00edvel de atualiza\u00e7\u00e3o autom\u00e1tica:",
|
"LabelAutomaticUpdateLevel": "N\u00edvel de atualiza\u00e7\u00e3o autom\u00e1tica:",
|
||||||
@ -355,6 +355,8 @@
|
|||||||
"ButtonBrowseOnlineImages": "Procurar imagens online",
|
"ButtonBrowseOnlineImages": "Procurar imagens online",
|
||||||
"HeaderDeleteItem": "Excluir item",
|
"HeaderDeleteItem": "Excluir item",
|
||||||
"ConfirmDeleteItem": "Excluir este item o excluir\u00e1 do sistema de arquivos e tamb\u00e9m da biblioteca de m\u00eddias. Deseja realmente continuar?",
|
"ConfirmDeleteItem": "Excluir este item o excluir\u00e1 do sistema de arquivos e tamb\u00e9m da biblioteca de m\u00eddias. Deseja realmente continuar?",
|
||||||
|
"HeaderDeleteItems": "Delete Items",
|
||||||
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Por favor, digite um nome ou Id externo.",
|
"MessagePleaseEnterNameOrId": "Por favor, digite um nome ou Id externo.",
|
||||||
"MessageValueNotCorrect": "O valor digitado n\u00e3o est\u00e1 correto. Por favor, tente novamente.",
|
"MessageValueNotCorrect": "O valor digitado n\u00e3o est\u00e1 correto. Por favor, tente novamente.",
|
||||||
"MessageItemSaved": "Item salvo.",
|
"MessageItemSaved": "Item salvo.",
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"LabelFromHelp": "Example: {0} (on the server)",
|
|
||||||
"SettingsSaved": "Configura\u00e7\u00f5es guardadas.",
|
"SettingsSaved": "Configura\u00e7\u00f5es guardadas.",
|
||||||
"AddUser": "Adicionar Utilizador",
|
"AddUser": "Adicionar Utilizador",
|
||||||
"Users": "Utilizadores",
|
"Users": "Utilizadores",
|
||||||
@ -49,6 +48,7 @@
|
|||||||
"ButtonIdentify": "Identify",
|
"ButtonIdentify": "Identify",
|
||||||
"HeaderIdentifyItem": "Identify Item",
|
"HeaderIdentifyItem": "Identify Item",
|
||||||
"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.",
|
||||||
|
"LabelFromHelp": "Example: {0} (on the server)",
|
||||||
"HeaderMyMedia": "My Media",
|
"HeaderMyMedia": "My Media",
|
||||||
"ButtonRemoveFromCollection": "Remove from Collection",
|
"ButtonRemoveFromCollection": "Remove from Collection",
|
||||||
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
||||||
@ -355,6 +355,8 @@
|
|||||||
"ButtonBrowseOnlineImages": "Browse online images",
|
"ButtonBrowseOnlineImages": "Browse online images",
|
||||||
"HeaderDeleteItem": "Delete Item",
|
"HeaderDeleteItem": "Delete Item",
|
||||||
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
|
"HeaderDeleteItems": "Delete Items",
|
||||||
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"LabelFromHelp": "Example: {0} (on the server)",
|
|
||||||
"SettingsSaved": "Settings saved.",
|
"SettingsSaved": "Settings saved.",
|
||||||
"AddUser": "Add User",
|
"AddUser": "Add User",
|
||||||
"Users": "Users",
|
"Users": "Users",
|
||||||
@ -49,6 +48,7 @@
|
|||||||
"ButtonIdentify": "Identify",
|
"ButtonIdentify": "Identify",
|
||||||
"HeaderIdentifyItem": "Identify Item",
|
"HeaderIdentifyItem": "Identify Item",
|
||||||
"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.",
|
||||||
|
"LabelFromHelp": "Example: {0} (on the server)",
|
||||||
"HeaderMyMedia": "My Media",
|
"HeaderMyMedia": "My Media",
|
||||||
"ButtonRemoveFromCollection": "Remove from Collection",
|
"ButtonRemoveFromCollection": "Remove from Collection",
|
||||||
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
||||||
@ -355,6 +355,8 @@
|
|||||||
"ButtonBrowseOnlineImages": "Browse online images",
|
"ButtonBrowseOnlineImages": "Browse online images",
|
||||||
"HeaderDeleteItem": "Delete Item",
|
"HeaderDeleteItem": "Delete Item",
|
||||||
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
|
"HeaderDeleteItems": "Delete Items",
|
||||||
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"LabelFromHelp": "\u041f\u0440\u0438\u043c\u0435\u0440: {0} (\u043d\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435)",
|
|
||||||
"SettingsSaved": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u044b.",
|
"SettingsSaved": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u044b.",
|
||||||
"AddUser": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f",
|
"AddUser": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f",
|
||||||
"Users": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438",
|
"Users": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438",
|
||||||
@ -49,6 +48,7 @@
|
|||||||
"ButtonIdentify": "\u0420\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u0442\u044c",
|
"ButtonIdentify": "\u0420\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u0442\u044c",
|
||||||
"HeaderIdentifyItem": "\u0420\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430",
|
"HeaderIdentifyItem": "\u0420\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430",
|
||||||
"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.",
|
||||||
|
"LabelFromHelp": "\u041f\u0440\u0438\u043c\u0435\u0440: {0} (\u043d\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435)",
|
||||||
"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",
|
||||||
"LabelAutomaticUpdateLevel": "\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:",
|
"LabelAutomaticUpdateLevel": "\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:",
|
||||||
@ -355,6 +355,8 @@
|
|||||||
"ButtonBrowseOnlineImages": "\u0421\u043c. \u0440\u0438\u0441\u0443\u043d\u043a\u0438 \u0432 \u0441\u0435\u0442\u0438",
|
"ButtonBrowseOnlineImages": "\u0421\u043c. \u0440\u0438\u0441\u0443\u043d\u043a\u0438 \u0432 \u0441\u0435\u0442\u0438",
|
||||||
"HeaderDeleteItem": "\u0423\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430",
|
"HeaderDeleteItem": "\u0423\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430",
|
||||||
"ConfirmDeleteItem": "\u041f\u0440\u0438 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0438 \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430, \u043e\u043d \u0443\u0434\u0430\u043b\u0438\u0442\u0441\u044f \u0438 \u0438\u0437 \u0444\u0430\u0439\u043b\u043e\u0432\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b, \u0438 \u0438\u0437 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438. \u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c?",
|
"ConfirmDeleteItem": "\u041f\u0440\u0438 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0438 \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430, \u043e\u043d \u0443\u0434\u0430\u043b\u0438\u0442\u0441\u044f \u0438 \u0438\u0437 \u0444\u0430\u0439\u043b\u043e\u0432\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b, \u0438 \u0438\u0437 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438. \u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c?",
|
||||||
|
"HeaderDeleteItems": "\u0423\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432",
|
||||||
|
"ConfirmDeleteItems": "\u041f\u0440\u0438 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0438 \u0434\u0430\u043d\u043d\u044b\u0445 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432, \u043e\u043d \u0443\u0434\u0430\u043b\u0438\u0442\u0441\u044f \u0438 \u0438\u0437 \u0444\u0430\u0439\u043b\u043e\u0432\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b, \u0438 \u0438\u0437 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438. \u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c?",
|
||||||
"MessagePleaseEnterNameOrId": "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0438\u043b\u0438 \u0432\u043d\u0435\u0448\u043d\u0438\u0439 ID.",
|
"MessagePleaseEnterNameOrId": "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0438\u043b\u0438 \u0432\u043d\u0435\u0448\u043d\u0438\u0439 ID.",
|
||||||
"MessageValueNotCorrect": "\u0412\u0432\u0435\u0434\u0451\u043d\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043d\u0435 \u0432\u0435\u0440\u043d\u043e. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443.",
|
"MessageValueNotCorrect": "\u0412\u0432\u0435\u0434\u0451\u043d\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043d\u0435 \u0432\u0435\u0440\u043d\u043e. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443.",
|
||||||
"MessageItemSaved": "\u042d\u043b\u0435\u043c\u0435\u043d\u0442 \u0441\u043e\u0445\u0440\u0430\u043d\u0451\u043d.",
|
"MessageItemSaved": "\u042d\u043b\u0435\u043c\u0435\u043d\u0442 \u0441\u043e\u0445\u0440\u0430\u043d\u0451\u043d.",
|
||||||
@ -466,7 +468,7 @@
|
|||||||
"OptionCollections": "\u041a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438",
|
"OptionCollections": "\u041a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438",
|
||||||
"OptionSeries": "\u0422\u0412-\u0441\u0435\u0440\u0438\u0430\u043b\u044b",
|
"OptionSeries": "\u0422\u0412-\u0441\u0435\u0440\u0438\u0430\u043b\u044b",
|
||||||
"OptionSeasons": "\u0422\u0412-\u0441\u0435\u0437\u043e\u043d\u044b",
|
"OptionSeasons": "\u0422\u0412-\u0441\u0435\u0437\u043e\u043d\u044b",
|
||||||
"OptionEpisodes": "\u042d\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": "\u0418\u0441\u043f-\u043b\u0438 \u043c\u0443\u0437\u044b\u043a\u0438",
|
"OptionMusicArtists": "\u0418\u0441\u043f-\u043b\u0438 \u043c\u0443\u0437\u044b\u043a\u0438",
|
||||||
@ -889,7 +891,7 @@
|
|||||||
"ButtonNo": "\u041d\u0435\u0442",
|
"ButtonNo": "\u041d\u0435\u0442",
|
||||||
"ButtonRestorePreviousPurchase": "\u0412\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u043f\u0440\u0438\u043e\u0431\u0440\u0435\u0442\u0435\u043d\u0438\u0435",
|
"ButtonRestorePreviousPurchase": "\u0412\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u043f\u0440\u0438\u043e\u0431\u0440\u0435\u0442\u0435\u043d\u0438\u0435",
|
||||||
"AlreadyPaid": "\u0423\u0436\u0435 \u043e\u043f\u043b\u0430\u0442\u0438\u043b\u0438?",
|
"AlreadyPaid": "\u0423\u0436\u0435 \u043e\u043f\u043b\u0430\u0442\u0438\u043b\u0438?",
|
||||||
"AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.",
|
"AlreadyPaidHelp1": "\u0415\u0441\u043b\u0438 \u0432\u044b \u0443\u0436\u0435 \u0437\u0430\u043f\u043b\u0430\u0442\u0438\u043b\u0438 \u0437\u0430 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0443 \u0441\u0442\u0430\u0440\u0448\u0435\u0439 \u0432\u0435\u0440\u0441\u0438\u0438 Media Browser for Android, \u0432\u0430\u043c \u043d\u0435 \u043d\u0443\u0436\u043d\u043e \u043f\u043b\u0430\u0442\u0438\u0442\u044c \u0441\u043d\u043e\u0432\u0430, \u0447\u0442\u043e\u0431\u044b \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0434\u0430\u043d\u043d\u043e\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435. \u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u043a\u043d\u043e\u043f\u043a\u0443 \u041e\u041a, \u0447\u0442\u043e\u0431\u044b \u043e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u043d\u0430\u043c \u044d-\u043f\u043e\u0447\u0442\u0443 \u043d\u0430 {0}, \u0438 \u043c\u044b \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u0443\u0435\u043c \u044d\u0442\u043e \u0434\u043b\u044f \u0432\u0430\u0441.",
|
||||||
"AlreadyPaidHelp2": "\u041f\u0440\u0438\u043e\u0431\u0440\u0435\u043b\u0438 Emby Premiere? \u041f\u0440\u043e\u0441\u0442\u043e \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u0435 \u0434\u0430\u043d\u043d\u044b\u0439 \u0434\u0438\u0430\u043b\u043e\u0433, \u0432\u043e\u0439\u0434\u0438\u0442\u0435 \u0432 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0438\u0437\u043d\u0443\u0442\u0440\u0438 \u0432\u0430\u0448\u0435\u0439 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 WiF-\u0441\u0435\u0442\u0438, \u0438 \u044d\u0442\u043e \u0431\u0443\u0434\u0435\u0442 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0440\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043e.",
|
"AlreadyPaidHelp2": "\u041f\u0440\u0438\u043e\u0431\u0440\u0435\u043b\u0438 Emby Premiere? \u041f\u0440\u043e\u0441\u0442\u043e \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u0435 \u0434\u0430\u043d\u043d\u044b\u0439 \u0434\u0438\u0430\u043b\u043e\u0433, \u0432\u043e\u0439\u0434\u0438\u0442\u0435 \u0432 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0438\u0437\u043d\u0443\u0442\u0440\u0438 \u0432\u0430\u0448\u0435\u0439 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 WiF-\u0441\u0435\u0442\u0438, \u0438 \u044d\u0442\u043e \u0431\u0443\u0434\u0435\u0442 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0440\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043e.",
|
||||||
"ButtonForYou": "\u0414\u043b\u044f \u0432\u0430\u0441...",
|
"ButtonForYou": "\u0414\u043b\u044f \u0432\u0430\u0441...",
|
||||||
"ButtonLibrary": "\u041c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0430...",
|
"ButtonLibrary": "\u041c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0430...",
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"LabelFromHelp": "Example: {0} (on the server)",
|
|
||||||
"SettingsSaved": "Settings saved.",
|
"SettingsSaved": "Settings saved.",
|
||||||
"AddUser": "Add User",
|
"AddUser": "Add User",
|
||||||
"Users": "Users",
|
"Users": "Users",
|
||||||
@ -49,6 +48,7 @@
|
|||||||
"ButtonIdentify": "Identify",
|
"ButtonIdentify": "Identify",
|
||||||
"HeaderIdentifyItem": "Identify Item",
|
"HeaderIdentifyItem": "Identify Item",
|
||||||
"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.",
|
||||||
|
"LabelFromHelp": "Example: {0} (on the server)",
|
||||||
"HeaderMyMedia": "My Media",
|
"HeaderMyMedia": "My Media",
|
||||||
"ButtonRemoveFromCollection": "Remove from Collection",
|
"ButtonRemoveFromCollection": "Remove from Collection",
|
||||||
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
||||||
@ -355,6 +355,8 @@
|
|||||||
"ButtonBrowseOnlineImages": "Browse online images",
|
"ButtonBrowseOnlineImages": "Browse online images",
|
||||||
"HeaderDeleteItem": "Delete Item",
|
"HeaderDeleteItem": "Delete Item",
|
||||||
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
|
"HeaderDeleteItems": "Delete Items",
|
||||||
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"LabelFromHelp": "Example: {0} (on the server)",
|
|
||||||
"SettingsSaved": "Inst\u00e4llningarna sparade.",
|
"SettingsSaved": "Inst\u00e4llningarna sparade.",
|
||||||
"AddUser": "Skapa anv\u00e4ndare",
|
"AddUser": "Skapa anv\u00e4ndare",
|
||||||
"Users": "Anv\u00e4ndare",
|
"Users": "Anv\u00e4ndare",
|
||||||
@ -49,6 +48,7 @@
|
|||||||
"ButtonIdentify": "Identifiera",
|
"ButtonIdentify": "Identifiera",
|
||||||
"HeaderIdentifyItem": "Identifiera objekt",
|
"HeaderIdentifyItem": "Identifiera objekt",
|
||||||
"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.",
|
||||||
|
"LabelFromHelp": "Example: {0} (on the server)",
|
||||||
"HeaderMyMedia": "My Media",
|
"HeaderMyMedia": "My Media",
|
||||||
"ButtonRemoveFromCollection": "Remove from Collection",
|
"ButtonRemoveFromCollection": "Remove from Collection",
|
||||||
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
||||||
@ -355,6 +355,8 @@
|
|||||||
"ButtonBrowseOnlineImages": "Bl\u00e4ddra bland bilder online",
|
"ButtonBrowseOnlineImages": "Bl\u00e4ddra bland bilder online",
|
||||||
"HeaderDeleteItem": "Radera objekt",
|
"HeaderDeleteItem": "Radera objekt",
|
||||||
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
|
"HeaderDeleteItems": "Delete Items",
|
||||||
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Ange ett namn eller externt id.",
|
"MessagePleaseEnterNameOrId": "Ange ett namn eller externt id.",
|
||||||
"MessageValueNotCorrect": "Det angivna v\u00e4rdet \u00e4r felaktigt. Var god f\u00f6rs\u00f6k igen.",
|
"MessageValueNotCorrect": "Det angivna v\u00e4rdet \u00e4r felaktigt. Var god f\u00f6rs\u00f6k igen.",
|
||||||
"MessageItemSaved": "Objektet har sparats.",
|
"MessageItemSaved": "Objektet har sparats.",
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"LabelFromHelp": "Example: {0} (on the server)",
|
|
||||||
"SettingsSaved": "Ayarlar Kaydedildi",
|
"SettingsSaved": "Ayarlar Kaydedildi",
|
||||||
"AddUser": "Kullan\u0131c\u0131 Ekle",
|
"AddUser": "Kullan\u0131c\u0131 Ekle",
|
||||||
"Users": "Kullan\u0131c\u0131lar",
|
"Users": "Kullan\u0131c\u0131lar",
|
||||||
@ -49,6 +48,7 @@
|
|||||||
"ButtonIdentify": "Identify",
|
"ButtonIdentify": "Identify",
|
||||||
"HeaderIdentifyItem": "Identify Item",
|
"HeaderIdentifyItem": "Identify Item",
|
||||||
"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.",
|
||||||
|
"LabelFromHelp": "Example: {0} (on the server)",
|
||||||
"HeaderMyMedia": "My Media",
|
"HeaderMyMedia": "My Media",
|
||||||
"ButtonRemoveFromCollection": "Remove from Collection",
|
"ButtonRemoveFromCollection": "Remove from Collection",
|
||||||
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
||||||
@ -355,6 +355,8 @@
|
|||||||
"ButtonBrowseOnlineImages": "Browse online images",
|
"ButtonBrowseOnlineImages": "Browse online images",
|
||||||
"HeaderDeleteItem": "Delete Item",
|
"HeaderDeleteItem": "Delete Item",
|
||||||
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
|
"HeaderDeleteItems": "Delete Items",
|
||||||
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"LabelFromHelp": "Example: {0} (on the server)",
|
|
||||||
"SettingsSaved": "Settings saved.",
|
"SettingsSaved": "Settings saved.",
|
||||||
"AddUser": "Add User",
|
"AddUser": "Add User",
|
||||||
"Users": "Users",
|
"Users": "Users",
|
||||||
@ -49,6 +48,7 @@
|
|||||||
"ButtonIdentify": "Identify",
|
"ButtonIdentify": "Identify",
|
||||||
"HeaderIdentifyItem": "Identify Item",
|
"HeaderIdentifyItem": "Identify Item",
|
||||||
"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.",
|
||||||
|
"LabelFromHelp": "Example: {0} (on the server)",
|
||||||
"HeaderMyMedia": "My Media",
|
"HeaderMyMedia": "My Media",
|
||||||
"ButtonRemoveFromCollection": "Remove from Collection",
|
"ButtonRemoveFromCollection": "Remove from Collection",
|
||||||
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
||||||
@ -355,6 +355,8 @@
|
|||||||
"ButtonBrowseOnlineImages": "Browse online images",
|
"ButtonBrowseOnlineImages": "Browse online images",
|
||||||
"HeaderDeleteItem": "Delete Item",
|
"HeaderDeleteItem": "Delete Item",
|
||||||
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
|
"HeaderDeleteItems": "Delete Items",
|
||||||
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"LabelFromHelp": "Example: {0} (on the server)",
|
|
||||||
"SettingsSaved": "L\u01b0u c\u00e1c c\u00e0i \u0111\u1eb7t.",
|
"SettingsSaved": "L\u01b0u c\u00e1c c\u00e0i \u0111\u1eb7t.",
|
||||||
"AddUser": "Th\u00eam ng\u01b0\u1eddi d\u00f9ng",
|
"AddUser": "Th\u00eam ng\u01b0\u1eddi d\u00f9ng",
|
||||||
"Users": "Ng\u01b0\u1eddi d\u00f9ng",
|
"Users": "Ng\u01b0\u1eddi d\u00f9ng",
|
||||||
@ -49,6 +48,7 @@
|
|||||||
"ButtonIdentify": "Identify",
|
"ButtonIdentify": "Identify",
|
||||||
"HeaderIdentifyItem": "Identify Item",
|
"HeaderIdentifyItem": "Identify Item",
|
||||||
"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.",
|
||||||
|
"LabelFromHelp": "Example: {0} (on the server)",
|
||||||
"HeaderMyMedia": "My Media",
|
"HeaderMyMedia": "My Media",
|
||||||
"ButtonRemoveFromCollection": "Remove from Collection",
|
"ButtonRemoveFromCollection": "Remove from Collection",
|
||||||
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
||||||
@ -355,6 +355,8 @@
|
|||||||
"ButtonBrowseOnlineImages": "Browse online images",
|
"ButtonBrowseOnlineImages": "Browse online images",
|
||||||
"HeaderDeleteItem": "Delete Item",
|
"HeaderDeleteItem": "Delete Item",
|
||||||
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
|
"HeaderDeleteItems": "Delete Items",
|
||||||
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"LabelFromHelp": "Example: {0} (on the server)",
|
|
||||||
"SettingsSaved": "\u8bbe\u7f6e\u5df2\u4fdd\u5b58",
|
"SettingsSaved": "\u8bbe\u7f6e\u5df2\u4fdd\u5b58",
|
||||||
"AddUser": "\u6dfb\u52a0\u7528\u6237",
|
"AddUser": "\u6dfb\u52a0\u7528\u6237",
|
||||||
"Users": "\u7528\u6237",
|
"Users": "\u7528\u6237",
|
||||||
@ -49,6 +48,7 @@
|
|||||||
"ButtonIdentify": "\u8bc6\u522b",
|
"ButtonIdentify": "\u8bc6\u522b",
|
||||||
"HeaderIdentifyItem": "\u8bc6\u522b\u9879",
|
"HeaderIdentifyItem": "\u8bc6\u522b\u9879",
|
||||||
"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",
|
||||||
|
"LabelFromHelp": "Example: {0} (on the server)",
|
||||||
"HeaderMyMedia": "My Media",
|
"HeaderMyMedia": "My Media",
|
||||||
"ButtonRemoveFromCollection": "Remove from Collection",
|
"ButtonRemoveFromCollection": "Remove from Collection",
|
||||||
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
||||||
@ -355,6 +355,8 @@
|
|||||||
"ButtonBrowseOnlineImages": "\u6d4f\u89c8\u5728\u7ebf\u56fe\u7247",
|
"ButtonBrowseOnlineImages": "\u6d4f\u89c8\u5728\u7ebf\u56fe\u7247",
|
||||||
"HeaderDeleteItem": "\u5220\u9664\u9879\u76ee",
|
"HeaderDeleteItem": "\u5220\u9664\u9879\u76ee",
|
||||||
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
|
"HeaderDeleteItems": "Delete Items",
|
||||||
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "\u8bf7\u8f93\u5165\u4e00\u4e2a\u540d\u79f0\u6216\u4e00\u4e2a\u5916\u90e8ID\u3002",
|
"MessagePleaseEnterNameOrId": "\u8bf7\u8f93\u5165\u4e00\u4e2a\u540d\u79f0\u6216\u4e00\u4e2a\u5916\u90e8ID\u3002",
|
||||||
"MessageValueNotCorrect": "\u8f93\u5165\u7684\u503c\u4e0d\u6b63\u786e\u3002\u8bf7\u91cd\u8bd5\u3002",
|
"MessageValueNotCorrect": "\u8f93\u5165\u7684\u503c\u4e0d\u6b63\u786e\u3002\u8bf7\u91cd\u8bd5\u3002",
|
||||||
"MessageItemSaved": "\u9879\u76ee\u5df2\u4fdd\u5b58\u3002",
|
"MessageItemSaved": "\u9879\u76ee\u5df2\u4fdd\u5b58\u3002",
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"LabelFromHelp": "Example: {0} (on the server)",
|
|
||||||
"SettingsSaved": "Settings saved.",
|
"SettingsSaved": "Settings saved.",
|
||||||
"AddUser": "Add User",
|
"AddUser": "Add User",
|
||||||
"Users": "\u7528\u6236",
|
"Users": "\u7528\u6236",
|
||||||
@ -49,6 +48,7 @@
|
|||||||
"ButtonIdentify": "Identify",
|
"ButtonIdentify": "Identify",
|
||||||
"HeaderIdentifyItem": "Identify Item",
|
"HeaderIdentifyItem": "Identify Item",
|
||||||
"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",
|
||||||
|
"LabelFromHelp": "Example: {0} (on the server)",
|
||||||
"HeaderMyMedia": "My Media",
|
"HeaderMyMedia": "My Media",
|
||||||
"ButtonRemoveFromCollection": "Remove from Collection",
|
"ButtonRemoveFromCollection": "Remove from Collection",
|
||||||
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
||||||
@ -355,6 +355,8 @@
|
|||||||
"ButtonBrowseOnlineImages": "Browse online images",
|
"ButtonBrowseOnlineImages": "Browse online images",
|
||||||
"HeaderDeleteItem": "Delete Item",
|
"HeaderDeleteItem": "Delete Item",
|
||||||
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
|
"HeaderDeleteItems": "Delete Items",
|
||||||
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"LabelFromHelp": "Example: {0} (on the server)",
|
|
||||||
"SettingsSaved": "\u8a2d\u7f6e\u5df2\u4fdd\u5b58\u3002",
|
"SettingsSaved": "\u8a2d\u7f6e\u5df2\u4fdd\u5b58\u3002",
|
||||||
"AddUser": "\u6dfb\u52a0\u7528\u6236",
|
"AddUser": "\u6dfb\u52a0\u7528\u6236",
|
||||||
"Users": "\u7528\u6236",
|
"Users": "\u7528\u6236",
|
||||||
@ -49,6 +48,7 @@
|
|||||||
"ButtonIdentify": "Identify",
|
"ButtonIdentify": "Identify",
|
||||||
"HeaderIdentifyItem": "Identify Item",
|
"HeaderIdentifyItem": "Identify Item",
|
||||||
"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.",
|
||||||
|
"LabelFromHelp": "Example: {0} (on the server)",
|
||||||
"HeaderMyMedia": "My Media",
|
"HeaderMyMedia": "My Media",
|
||||||
"ButtonRemoveFromCollection": "Remove from Collection",
|
"ButtonRemoveFromCollection": "Remove from Collection",
|
||||||
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
||||||
@ -355,6 +355,8 @@
|
|||||||
"ButtonBrowseOnlineImages": "Browse online images",
|
"ButtonBrowseOnlineImages": "Browse online images",
|
||||||
"HeaderDeleteItem": "Delete Item",
|
"HeaderDeleteItem": "Delete Item",
|
||||||
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
|
"HeaderDeleteItems": "Delete Items",
|
||||||
|
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
|
Loading…
Reference in New Issue
Block a user