mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 11:28:23 -07:00
commit
58ec11522a
@ -14,12 +14,12 @@
|
|||||||
},
|
},
|
||||||
"devDependencies": {},
|
"devDependencies": {},
|
||||||
"ignore": [],
|
"ignore": [],
|
||||||
"version": "1.4.173",
|
"version": "1.4.175",
|
||||||
"_release": "1.4.173",
|
"_release": "1.4.175",
|
||||||
"_resolution": {
|
"_resolution": {
|
||||||
"type": "version",
|
"type": "version",
|
||||||
"tag": "1.4.173",
|
"tag": "1.4.175",
|
||||||
"commit": "8766e295ec13de73c5ef5a61c7357fc30d8c9fa1"
|
"commit": "aa687c378a3252d0679dfb8b16c5e6e0e1350c7a"
|
||||||
},
|
},
|
||||||
"_source": "https://github.com/MediaBrowser/emby-webcomponents.git",
|
"_source": "https://github.com/MediaBrowser/emby-webcomponents.git",
|
||||||
"_target": "^1.2.1",
|
"_target": "^1.2.1",
|
||||||
|
@ -113,7 +113,7 @@
|
|||||||
EmbySelectPrototype.createdCallback = function () {
|
EmbySelectPrototype.createdCallback = function () {
|
||||||
|
|
||||||
var parent = this.parentNode;
|
var parent = this.parentNode;
|
||||||
if (!parent.classList.contains('selectContainer')) {
|
if (parent && !parent.classList.contains('selectContainer')) {
|
||||||
var div = this.ownerDocument.createElement('div');
|
var div = this.ownerDocument.createElement('div');
|
||||||
div.classList.add('selectContainer');
|
div.classList.add('selectContainer');
|
||||||
parent.replaceChild(div, this);
|
parent.replaceChild(div, this);
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
define(['require', 'browser', 'globalize', 'connectionManager', 'serverNotifications', 'loading', 'datetime', 'focusManager', 'imageLoader', 'events', 'layoutManager', 'itemShortcuts', 'registrationservices', 'dom', 'clearButtonStyle', 'css!./guide.css', 'material-icons', 'scrollStyles', 'emby-button'], function (require, browser, globalize, connectionManager, serverNotifications, loading, datetime, focusManager, imageLoader, events, layoutManager, itemShortcuts, registrationServices, dom) {
|
define(['require', 'browser', 'globalize', 'connectionManager', 'serverNotifications', 'loading', 'datetime', 'focusManager', 'imageLoader', 'events', 'layoutManager', 'itemShortcuts', 'registrationservices', 'dom', 'clearButtonStyle', 'css!./guide.css', 'material-icons', 'scrollStyles', 'emby-button', 'paper-icon-button-light'], function (require, browser, globalize, connectionManager, serverNotifications, loading, datetime, focusManager, imageLoader, events, layoutManager, itemShortcuts, registrationServices, dom) {
|
||||||
|
|
||||||
function Guide(options) {
|
function Guide(options) {
|
||||||
|
|
||||||
@ -14,6 +14,8 @@
|
|||||||
var totalRendererdMs = msPerDay;
|
var totalRendererdMs = msPerDay;
|
||||||
|
|
||||||
var currentDate;
|
var currentDate;
|
||||||
|
var currentStartIndex = 0;
|
||||||
|
var currentChannelLimit = 0;
|
||||||
|
|
||||||
var channelQuery = {
|
var channelQuery = {
|
||||||
|
|
||||||
@ -119,7 +121,7 @@
|
|||||||
|
|
||||||
return registrationServices.validateFeature('livetv').then(function () {
|
return registrationServices.validateFeature('livetv').then(function () {
|
||||||
|
|
||||||
var limit = browser.slow ? 100 : 400;
|
var limit = browser.slow ? 100 : 500;
|
||||||
|
|
||||||
context.querySelector('.guideRequiresUnlock').classList.add('hide');
|
context.querySelector('.guideRequiresUnlock').classList.add('hide');
|
||||||
|
|
||||||
@ -144,8 +146,11 @@
|
|||||||
|
|
||||||
getChannelLimit(context).then(function (channelLimit) {
|
getChannelLimit(context).then(function (channelLimit) {
|
||||||
|
|
||||||
|
currentChannelLimit = channelLimit;
|
||||||
|
|
||||||
showLoading();
|
showLoading();
|
||||||
|
|
||||||
|
channelQuery.StartIndex = currentStartIndex;
|
||||||
channelQuery.Limit = channelLimit;
|
channelQuery.Limit = channelLimit;
|
||||||
channelQuery.AddCurrentProgram = false;
|
channelQuery.AddCurrentProgram = false;
|
||||||
channelQuery.EnableUserData = false;
|
channelQuery.EnableUserData = false;
|
||||||
@ -163,6 +168,25 @@
|
|||||||
console.log(nextDay);
|
console.log(nextDay);
|
||||||
channelsPromise.then(function (channelsResult) {
|
channelsPromise.then(function (channelsResult) {
|
||||||
|
|
||||||
|
if (channelsResult.TotalRecordCount > channelLimit) {
|
||||||
|
context.querySelector('.guidePaging').classList.remove('hide');
|
||||||
|
|
||||||
|
if (channelQuery.StartIndex) {
|
||||||
|
context.querySelector('.btnPreviousPage').disabled = false;
|
||||||
|
} else {
|
||||||
|
context.querySelector('.btnPreviousPage').disabled = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((channelQuery.StartIndex + channelLimit) < channelsResult.TotalRecordCount) {
|
||||||
|
context.querySelector('.btnNextPage').disabled = false;
|
||||||
|
} else {
|
||||||
|
context.querySelector('.btnNextPage').disabled = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
} else {
|
||||||
|
context.querySelector('.guidePaging').classList.add('hide');
|
||||||
|
}
|
||||||
|
|
||||||
apiClient.getLiveTvPrograms({
|
apiClient.getLiveTvPrograms({
|
||||||
UserId: apiClient.getCurrentUserId(),
|
UserId: apiClient.getCurrentUserId(),
|
||||||
MaxStartDate: nextDay.toISOString(),
|
MaxStartDate: nextDay.toISOString(),
|
||||||
@ -821,6 +845,20 @@
|
|||||||
});
|
});
|
||||||
|
|
||||||
context.querySelector('.btnUnlockGuide').addEventListener('click', function () {
|
context.querySelector('.btnUnlockGuide').addEventListener('click', function () {
|
||||||
|
currentStartIndex = 0;
|
||||||
|
channelsPromise = null;
|
||||||
|
reloadPage(context);
|
||||||
|
});
|
||||||
|
|
||||||
|
context.querySelector('.btnNextPage').addEventListener('click', function () {
|
||||||
|
currentStartIndex += currentChannelLimit;
|
||||||
|
channelsPromise = null;
|
||||||
|
reloadPage(context);
|
||||||
|
});
|
||||||
|
|
||||||
|
context.querySelector('.btnPreviousPage').addEventListener('click', function () {
|
||||||
|
currentStartIndex = Math.max(currentStartIndex - currentChannelLimit, 0);
|
||||||
|
channelsPromise = null;
|
||||||
reloadPage(context);
|
reloadPage(context);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -12,10 +12,19 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="guideRequiresUnlock readOnlyContent hide" style="margin:1em auto;text-align:center;padding:1em;flex-shrink:0;">
|
<div class="guideRequiresUnlock readOnlyContent hide" style="margin: 1em auto; text-align: center; padding: 1em; flex-shrink: 0;">
|
||||||
<p class="unlockText"></p>
|
<p class="unlockText"></p>
|
||||||
<button is="emby-button" type="button" class="raised secondary block btnUnlockGuide">
|
<button is="emby-button" type="button" class="raised secondary block btnUnlockGuide">
|
||||||
<i class="md-icon">check</i>
|
<i class="md-icon">check</i>
|
||||||
<span>${UnlockGuide}</span>
|
<span>${UnlockGuide}</span>
|
||||||
</button>
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div style="padding:.25em .5em;" class="guidePaging hide">
|
||||||
|
<button is="paper-icon-button-light" type="button" class="btnPreviousPage">
|
||||||
|
<i class="md-icon">arrow_back</i>
|
||||||
|
</button>
|
||||||
|
<button is="paper-icon-button-light" type="button" class="btnNextPage">
|
||||||
|
<i class="md-icon">arrow_forward</i>
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
@ -86,6 +86,10 @@ define(['serverNotifications', 'playbackManager', 'events', 'globalize', 'requir
|
|||||||
|
|
||||||
function showNewItemNotification(item, apiClient) {
|
function showNewItemNotification(item, apiClient) {
|
||||||
|
|
||||||
|
if (playbackManager.isPlayingVideo()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
var notification = {
|
var notification = {
|
||||||
title: "New " + item.Type,
|
title: "New " + item.Type,
|
||||||
body: item.Name,
|
body: item.Name,
|
||||||
@ -116,11 +120,7 @@ define(['serverNotifications', 'playbackManager', 'events', 'globalize', 'requir
|
|||||||
|
|
||||||
var newItems = data.ItemsAdded;
|
var newItems = data.ItemsAdded;
|
||||||
|
|
||||||
if (!newItems.length || !window.Notification || Notification.permission !== "granted") {
|
if (!newItems.length) {
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (playbackManager.isPlayingVideo()) {
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -131,7 +131,6 @@ define(['serverNotifications', 'playbackManager', 'events', 'globalize', 'requir
|
|||||||
IsFolder: false,
|
IsFolder: false,
|
||||||
SortBy: "DateCreated",
|
SortBy: "DateCreated",
|
||||||
SortOrder: "Descending",
|
SortOrder: "Descending",
|
||||||
ImageTypes: "Primary",
|
|
||||||
Ids: newItems.join(',')
|
Ids: newItems.join(',')
|
||||||
|
|
||||||
}).then(function (result) {
|
}).then(function (result) {
|
||||||
|
@ -252,7 +252,7 @@
|
|||||||
"MakeAvailableOffline": "Offline verf\u00fcgbar machen",
|
"MakeAvailableOffline": "Offline verf\u00fcgbar machen",
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} startet neu.",
|
"ServerNameIsRestarting": "Emby Server - {0} startet neu.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} f\u00e4hrt herunter.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} f\u00e4hrt herunter.",
|
||||||
"HeaderDeleteItems": "Delete Items",
|
"HeaderDeleteItems": "Objekte l\u00f6schen",
|
||||||
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItems": "Das L\u00f6schen dieser Objekte l\u00f6scht die Dateien vom Laufwerk und in deiner Medienbibliothek. Bist du wirklich sicher?",
|
||||||
"PleaseRestartServerName": "Bitte starte Emby Server - {0} neu."
|
"PleaseRestartServerName": "Bitte starte Emby Server - {0} neu."
|
||||||
}
|
}
|
@ -252,7 +252,7 @@
|
|||||||
"MakeAvailableOffline": "\u0414\u0435\u0440\u0431\u0435\u0441 \u049b\u043e\u043b\u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0435\u0442\u0443",
|
"MakeAvailableOffline": "\u0414\u0435\u0440\u0431\u0435\u0441 \u049b\u043e\u043b\u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0435\u0442\u0443",
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} \u049b\u0430\u0439\u0442\u0430 \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u044b\u043b\u0443\u0434\u0430.",
|
"ServerNameIsRestarting": "Emby Server - {0} \u049b\u0430\u0439\u0442\u0430 \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u044b\u043b\u0443\u0434\u0430.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} \u0436\u04b1\u043c\u044b\u0441\u0442\u044b \u0430\u044f\u049b\u0442\u0430\u0443\u0434\u0430.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} \u0436\u04b1\u043c\u044b\u0441\u0442\u044b \u0430\u044f\u049b\u0442\u0430\u0443\u0434\u0430.",
|
||||||
"HeaderDeleteItems": "Delete Items",
|
"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?",
|
"ConfirmDeleteItems": "\u041e\u0441\u044b \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440\u0434\u044b \u0436\u043e\u0439\u0493\u0430\u043d\u0434\u0430, \u043e\u043b\u0430\u0440 \u0444\u0430\u0439\u043b\u0434\u044b\u049b \u0436\u04af\u0439\u0435\u0441\u0456\u043d\u0435\u043d \u0434\u0435 \u0436\u04d9\u043d\u0435 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u04a3\u044b\u0437\u0434\u0430\u043d \u0434\u0430 \u0435\u043a\u0435\u0443\u0456\u043d\u0434\u0435 \u0436\u043e\u0439\u044b\u043b\u0430\u0434. \u0421\u0456\u0437 \u0436\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443 \u049b\u0430\u043b\u0430\u0439\u0441\u044b\u0437 \u0431\u0430? \u0428\u044b\u043d\u044b\u043c\u0435\u043d \u0436\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443 \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?",
|
||||||
"PleaseRestartServerName": "Emby Server \u04af\u0448\u0456\u043d \u049b\u0430\u0439\u0442\u0430 \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u044b\u04a3\u044b\u0437 - {0}."
|
"PleaseRestartServerName": "Emby Server \u04af\u0448\u0456\u043d \u049b\u0430\u0439\u0442\u0430 \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u044b\u04a3\u044b\u0437 - {0}."
|
||||||
}
|
}
|
@ -252,7 +252,7 @@
|
|||||||
"MakeAvailableOffline": "\u0421\u0434\u0435\u043b\u0430\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u043c \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u043e",
|
"MakeAvailableOffline": "\u0421\u0434\u0435\u043b\u0430\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u043c \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u043e",
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f.",
|
"ServerNameIsRestarting": "Emby Server - {0} \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} \u0432\u044b\u043a\u043b\u044e\u0447\u0430\u0435\u0442\u0441\u044f.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} \u0432\u044b\u043a\u043b\u044e\u0447\u0430\u0435\u0442\u0441\u044f.",
|
||||||
"HeaderDeleteItems": "Delete Items",
|
"HeaderDeleteItems": "\u0423\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432",
|
||||||
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
"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\u0438 \u0443\u0434\u0430\u043b\u044f\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?",
|
||||||
"PleaseRestartServerName": "\u041f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u0435 Emby Server - {0}."
|
"PleaseRestartServerName": "\u041f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u0435 Emby Server - {0}."
|
||||||
}
|
}
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "hls.js",
|
"name": "hls.js",
|
||||||
"version": "0.5.42",
|
"version": "0.5.44",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"description": "Media Source Extension - HLS library, by/for Dailymotion",
|
"description": "Media Source Extension - HLS library, by/for Dailymotion",
|
||||||
"homepage": "https://github.com/dailymotion/hls.js",
|
"homepage": "https://github.com/dailymotion/hls.js",
|
||||||
@ -16,11 +16,11 @@
|
|||||||
"test",
|
"test",
|
||||||
"tests"
|
"tests"
|
||||||
],
|
],
|
||||||
"_release": "0.5.42",
|
"_release": "0.5.44",
|
||||||
"_resolution": {
|
"_resolution": {
|
||||||
"type": "version",
|
"type": "version",
|
||||||
"tag": "v0.5.42",
|
"tag": "v0.5.44",
|
||||||
"commit": "6d947aa6a7c7dab11aeb72a976a48d8d53bfc38b"
|
"commit": "f3800e9a8b01157c73d5847a9102137a8d73dc8e"
|
||||||
},
|
},
|
||||||
"_source": "git://github.com/dailymotion/hls.js.git",
|
"_source": "git://github.com/dailymotion/hls.js.git",
|
||||||
"_target": "~0.5.7",
|
"_target": "~0.5.7",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "hls.js",
|
"name": "hls.js",
|
||||||
"version": "0.5.42",
|
"version": "0.5.44",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"description": "Media Source Extension - HLS library, by/for Dailymotion",
|
"description": "Media Source Extension - HLS library, by/for Dailymotion",
|
||||||
"homepage": "https://github.com/dailymotion/hls.js",
|
"homepage": "https://github.com/dailymotion/hls.js",
|
||||||
|
File diff suppressed because one or more lines are too long
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "hls.js",
|
"name": "hls.js",
|
||||||
"version": "0.5.42",
|
"version": "0.5.44",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"description": "Media Source Extension - HLS library, by/for Dailymotion",
|
"description": "Media Source Extension - HLS library, by/for Dailymotion",
|
||||||
"homepage": "https://github.com/dailymotion/hls.js",
|
"homepage": "https://github.com/dailymotion/hls.js",
|
||||||
|
@ -32,14 +32,14 @@
|
|||||||
"iron-component-page": "polymerElements/iron-component-page#^1.1.6"
|
"iron-component-page": "polymerElements/iron-component-page#^1.1.6"
|
||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
"homepage": "https://github.com/polymer/polymer",
|
"homepage": "https://github.com/Polymer/polymer",
|
||||||
"_release": "1.6.1",
|
"_release": "1.6.1",
|
||||||
"_resolution": {
|
"_resolution": {
|
||||||
"type": "version",
|
"type": "version",
|
||||||
"tag": "v1.6.1",
|
"tag": "v1.6.1",
|
||||||
"commit": "1f197d9d7874b1e5808b2a5c26f34446a7d912fc"
|
"commit": "1f197d9d7874b1e5808b2a5c26f34446a7d912fc"
|
||||||
},
|
},
|
||||||
"_source": "git://github.com/polymer/polymer.git",
|
"_source": "git://github.com/Polymer/polymer.git",
|
||||||
"_target": "^1.1.0",
|
"_target": "^1.1.0",
|
||||||
"_originalSource": "polymer/polymer"
|
"_originalSource": "Polymer/polymer"
|
||||||
}
|
}
|
@ -359,6 +359,10 @@ video::-webkit-media-text-track-background {
|
|||||||
margin-top: -2.5em;
|
margin-top: -2.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
::cue {
|
||||||
|
background-color: transparent;
|
||||||
|
text-shadow: 2px 2px 2px rgba(0, 0, 0, 1);
|
||||||
|
}
|
||||||
|
|
||||||
.videoSubtitles {
|
.videoSubtitles {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
<form class="dashboardHostingForm">
|
<form class="dashboardHostingForm">
|
||||||
|
|
||||||
<div class="inputContainer">
|
<div class="inputContainer">
|
||||||
<input is="emby-input" type="text" id="txtLocalAddress" label="${LabelBindToLocalNetworkAddress}" pattern="((^|\.)((25[0-5])|(2[0-4]\d)|(1\d\d)|([1-9]?\d))){4}$*" />
|
<input is="emby-input" type="text" id="txtLocalAddress" label="${LabelBindToLocalNetworkAddress}" />
|
||||||
<div class="fieldDescription">${LabelBindToLocalNetworkAddressHelp}</div>
|
<div class="fieldDescription">${LabelBindToLocalNetworkAddressHelp}</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="inputContainer">
|
<div class="inputContainer">
|
||||||
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "None",
|
"OptionNone": "None",
|
||||||
"HeaderLiveTv": "Live TV",
|
"HeaderLiveTv": "Live TV",
|
||||||
"HeaderReports": "Reports",
|
"HeaderReports": "Reports",
|
||||||
"HeaderMetadataManager": "Metadata Manager",
|
|
||||||
"HeaderSettings": "Settings",
|
"HeaderSettings": "Settings",
|
||||||
"OptionDefaultSort": "Default",
|
"OptionDefaultSort": "Default",
|
||||||
"OptionCommunityMostWatchedSort": "Most Watched",
|
"OptionCommunityMostWatchedSort": "Most Watched",
|
||||||
@ -1583,7 +1582,8 @@
|
|||||||
"ButtonTakeTheTour": "Take the tour",
|
"ButtonTakeTheTour": "Take the tour",
|
||||||
"HeaderWelcomeBack": "Welcome back!",
|
"HeaderWelcomeBack": "Welcome back!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.",
|
||||||
|
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||||
"HeaderSelectDevices": "Select Devices",
|
"HeaderSelectDevices": "Select Devices",
|
||||||
"ButtonCancelItem": "Cancel item",
|
"ButtonCancelItem": "Cancel item",
|
||||||
"ButtonQueueForRetry": "Queue for retry",
|
"ButtonQueueForRetry": "Queue for retry",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
||||||
"ButtonDashboard": "Dashboard",
|
"ButtonDashboard": "Dashboard",
|
||||||
"ButtonReports": "Reports",
|
"ButtonReports": "Reports",
|
||||||
"ButtonMetadataManager": "Metadata Manager",
|
"MetadataManager": "Metadata Manager",
|
||||||
"HeaderTime": "Time",
|
"HeaderTime": "Time",
|
||||||
"LabelAddedOnDate": "Added {0}",
|
"LabelAddedOnDate": "Added {0}",
|
||||||
"ButtonStart": "Start",
|
"ButtonStart": "Start",
|
||||||
@ -2314,5 +2314,8 @@
|
|||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Enable photos",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Make available offline",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "Remove download?",
|
||||||
|
"SyncToOtherDevices": "Sync to other devices",
|
||||||
|
"ManageOfflineDownloads": "Manage offline downloads",
|
||||||
|
"MessageDownloadScheduled": "Download scheduled"
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "None",
|
"OptionNone": "None",
|
||||||
"HeaderLiveTv": "Live TV",
|
"HeaderLiveTv": "Live TV",
|
||||||
"HeaderReports": "Reports",
|
"HeaderReports": "Reports",
|
||||||
"HeaderMetadataManager": "Metadata Manager",
|
|
||||||
"HeaderSettings": "Settings",
|
"HeaderSettings": "Settings",
|
||||||
"OptionDefaultSort": "Default",
|
"OptionDefaultSort": "Default",
|
||||||
"OptionCommunityMostWatchedSort": "Most Watched",
|
"OptionCommunityMostWatchedSort": "Most Watched",
|
||||||
@ -1583,7 +1582,8 @@
|
|||||||
"ButtonTakeTheTour": "Take the tour",
|
"ButtonTakeTheTour": "Take the tour",
|
||||||
"HeaderWelcomeBack": "Welcome back!",
|
"HeaderWelcomeBack": "Welcome back!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.",
|
||||||
|
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||||
"HeaderSelectDevices": "Select Devices",
|
"HeaderSelectDevices": "Select Devices",
|
||||||
"ButtonCancelItem": "Cancel item",
|
"ButtonCancelItem": "Cancel item",
|
||||||
"ButtonQueueForRetry": "Queue for retry",
|
"ButtonQueueForRetry": "Queue for retry",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
||||||
"ButtonDashboard": "Dashboard",
|
"ButtonDashboard": "Dashboard",
|
||||||
"ButtonReports": "Reports",
|
"ButtonReports": "Reports",
|
||||||
"ButtonMetadataManager": "Metadata Manager",
|
"MetadataManager": "Metadata Manager",
|
||||||
"HeaderTime": "Time",
|
"HeaderTime": "Time",
|
||||||
"LabelAddedOnDate": "Added {0}",
|
"LabelAddedOnDate": "Added {0}",
|
||||||
"ButtonStart": "Start",
|
"ButtonStart": "Start",
|
||||||
@ -2314,5 +2314,8 @@
|
|||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Enable photos",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Make available offline",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "Remove download?",
|
||||||
|
"SyncToOtherDevices": "Sync to other devices",
|
||||||
|
"ManageOfflineDownloads": "Manage offline downloads",
|
||||||
|
"MessageDownloadScheduled": "Download scheduled"
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "None",
|
"OptionNone": "None",
|
||||||
"HeaderLiveTv": "Live TV",
|
"HeaderLiveTv": "Live TV",
|
||||||
"HeaderReports": "Reports",
|
"HeaderReports": "Reports",
|
||||||
"HeaderMetadataManager": "Metadata Manager",
|
|
||||||
"HeaderSettings": "Settings",
|
"HeaderSettings": "Settings",
|
||||||
"OptionDefaultSort": "Default",
|
"OptionDefaultSort": "Default",
|
||||||
"OptionCommunityMostWatchedSort": "Most Watched",
|
"OptionCommunityMostWatchedSort": "Most Watched",
|
||||||
@ -1583,7 +1582,8 @@
|
|||||||
"ButtonTakeTheTour": "\u0420\u0430\u0437\u0433\u043b\u0435\u0434\u0430\u0439 \u043d\u0430\u043e\u043a\u043e\u043b\u043e",
|
"ButtonTakeTheTour": "\u0420\u0430\u0437\u0433\u043b\u0435\u0434\u0430\u0439 \u043d\u0430\u043e\u043a\u043e\u043b\u043e",
|
||||||
"HeaderWelcomeBack": "Welcome back!",
|
"HeaderWelcomeBack": "Welcome back!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.",
|
||||||
|
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||||
"HeaderSelectDevices": "Select Devices",
|
"HeaderSelectDevices": "Select Devices",
|
||||||
"ButtonCancelItem": "Cancel item",
|
"ButtonCancelItem": "Cancel item",
|
||||||
"ButtonQueueForRetry": "Queue for retry",
|
"ButtonQueueForRetry": "Queue for retry",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
||||||
"ButtonDashboard": "Dashboard",
|
"ButtonDashboard": "Dashboard",
|
||||||
"ButtonReports": "Reports",
|
"ButtonReports": "Reports",
|
||||||
"ButtonMetadataManager": "Metadata Manager",
|
"MetadataManager": "Metadata Manager",
|
||||||
"HeaderTime": "Time",
|
"HeaderTime": "Time",
|
||||||
"LabelAddedOnDate": "Added {0}",
|
"LabelAddedOnDate": "Added {0}",
|
||||||
"ButtonStart": "Start",
|
"ButtonStart": "Start",
|
||||||
@ -2314,5 +2314,8 @@
|
|||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Enable photos",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Make available offline",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "Remove download?",
|
||||||
|
"SyncToOtherDevices": "Sync to other devices",
|
||||||
|
"ManageOfflineDownloads": "Manage offline downloads",
|
||||||
|
"MessageDownloadScheduled": "Download scheduled"
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "Cap",
|
"OptionNone": "Cap",
|
||||||
"HeaderLiveTv": "TV en Directe",
|
"HeaderLiveTv": "TV en Directe",
|
||||||
"HeaderReports": "Reports",
|
"HeaderReports": "Reports",
|
||||||
"HeaderMetadataManager": "Gestor de Metadades",
|
|
||||||
"HeaderSettings": "Prefer\u00e8ncies",
|
"HeaderSettings": "Prefer\u00e8ncies",
|
||||||
"OptionDefaultSort": "Per defecte",
|
"OptionDefaultSort": "Per defecte",
|
||||||
"OptionCommunityMostWatchedSort": "Els M\u00e9s Vistos",
|
"OptionCommunityMostWatchedSort": "Els M\u00e9s Vistos",
|
||||||
@ -1583,7 +1582,8 @@
|
|||||||
"ButtonTakeTheTour": "Fes el tour",
|
"ButtonTakeTheTour": "Fes el tour",
|
||||||
"HeaderWelcomeBack": "Benvingut de nou!",
|
"HeaderWelcomeBack": "Benvingut de nou!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Fes el tour per veure qu\u00e8 hi ha de nou",
|
"ButtonTakeTheTourToSeeWhatsNew": "Fes el tour per veure qu\u00e8 hi ha de nou",
|
||||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.",
|
||||||
|
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||||
"HeaderSelectDevices": "Select Devices",
|
"HeaderSelectDevices": "Select Devices",
|
||||||
"ButtonCancelItem": "Cancel\u00b7la \u00edtem",
|
"ButtonCancelItem": "Cancel\u00b7la \u00edtem",
|
||||||
"ButtonQueueForRetry": "Queue for retry",
|
"ButtonQueueForRetry": "Queue for retry",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
||||||
"ButtonDashboard": "Tauler de Control",
|
"ButtonDashboard": "Tauler de Control",
|
||||||
"ButtonReports": "Reports",
|
"ButtonReports": "Reports",
|
||||||
"ButtonMetadataManager": "Gestor de Metadades",
|
"MetadataManager": "Metadata Manager",
|
||||||
"HeaderTime": "Time",
|
"HeaderTime": "Time",
|
||||||
"LabelAddedOnDate": "Added {0}",
|
"LabelAddedOnDate": "Added {0}",
|
||||||
"ButtonStart": "Start",
|
"ButtonStart": "Start",
|
||||||
@ -2314,5 +2314,8 @@
|
|||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Enable photos",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Make available offline",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "Remove download?",
|
||||||
|
"SyncToOtherDevices": "Sync to other devices",
|
||||||
|
"ManageOfflineDownloads": "Manage offline downloads",
|
||||||
|
"MessageDownloadScheduled": "Download scheduled"
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "\u017d\u00e1dn\u00fd",
|
"OptionNone": "\u017d\u00e1dn\u00fd",
|
||||||
"HeaderLiveTv": "Live TV",
|
"HeaderLiveTv": "Live TV",
|
||||||
"HeaderReports": "Hl\u00e1\u0161en\u00ed",
|
"HeaderReports": "Hl\u00e1\u0161en\u00ed",
|
||||||
"HeaderMetadataManager": "Spr\u00e1vce metadat",
|
|
||||||
"HeaderSettings": "Nastaven\u00ed",
|
"HeaderSettings": "Nastaven\u00ed",
|
||||||
"OptionDefaultSort": "Default",
|
"OptionDefaultSort": "Default",
|
||||||
"OptionCommunityMostWatchedSort": "Nejsledovan\u011bj\u0161\u00ed",
|
"OptionCommunityMostWatchedSort": "Nejsledovan\u011bj\u0161\u00ed",
|
||||||
@ -1584,6 +1583,7 @@
|
|||||||
"HeaderWelcomeBack": "V\u00edtejte zp\u011bt!",
|
"HeaderWelcomeBack": "V\u00edtejte zp\u011bt!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Chci vid\u011bt co je nov\u00e9ho",
|
"ButtonTakeTheTourToSeeWhatsNew": "Chci vid\u011bt co je nov\u00e9ho",
|
||||||
"MessageNoSyncJobsFound": "Nebyly nalezeny \u017e\u00e1dn\u00e9 synchroniza\u010dn\u00ed \u00falohy. Synchroniza\u010dn\u00ed \u00falohy vytvo\u0159\u00edte pomoc\u00ed tla\u010d\u00edtek \"Synchronizace\" kdekoliv ve webov\u00e9m rozhran\u00ed.",
|
"MessageNoSyncJobsFound": "Nebyly nalezeny \u017e\u00e1dn\u00e9 synchroniza\u010dn\u00ed \u00falohy. Synchroniza\u010dn\u00ed \u00falohy vytvo\u0159\u00edte pomoc\u00ed tla\u010d\u00edtek \"Synchronizace\" kdekoliv ve webov\u00e9m rozhran\u00ed.",
|
||||||
|
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||||
"HeaderSelectDevices": "Vyber za\u0159\u00edzen\u00ed",
|
"HeaderSelectDevices": "Vyber za\u0159\u00edzen\u00ed",
|
||||||
"ButtonCancelItem": "Zru\u0161it polo\u017eku",
|
"ButtonCancelItem": "Zru\u0161it polo\u017eku",
|
||||||
"ButtonQueueForRetry": "Za\u0159azeno pro obnoven\u00ed",
|
"ButtonQueueForRetry": "Za\u0159azeno pro obnoven\u00ed",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "Pros\u00edm ujist\u011bte se, \u017ee je otev\u0159en\u00fd tuner dostupn\u00fd.",
|
"MessageEnsureOpenTuner": "Pros\u00edm ujist\u011bte se, \u017ee je otev\u0159en\u00fd tuner dostupn\u00fd.",
|
||||||
"ButtonDashboard": "Hlavn\u00ed nab\u00eddka",
|
"ButtonDashboard": "Hlavn\u00ed nab\u00eddka",
|
||||||
"ButtonReports": "Hl\u00e1\u0161en\u00ed",
|
"ButtonReports": "Hl\u00e1\u0161en\u00ed",
|
||||||
"ButtonMetadataManager": "Spr\u00e1vce metadat",
|
"MetadataManager": "Metadata Manager",
|
||||||
"HeaderTime": "\u010cas",
|
"HeaderTime": "\u010cas",
|
||||||
"LabelAddedOnDate": "P\u0159id\u00e1no {0}",
|
"LabelAddedOnDate": "P\u0159id\u00e1no {0}",
|
||||||
"ButtonStart": "Start",
|
"ButtonStart": "Start",
|
||||||
@ -2314,5 +2314,8 @@
|
|||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Enable photos",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Make available offline",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "Remove download?",
|
||||||
|
"SyncToOtherDevices": "Sync to other devices",
|
||||||
|
"ManageOfflineDownloads": "Manage offline downloads",
|
||||||
|
"MessageDownloadScheduled": "Download scheduled"
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "Ingen",
|
"OptionNone": "Ingen",
|
||||||
"HeaderLiveTv": "Live TV",
|
"HeaderLiveTv": "Live TV",
|
||||||
"HeaderReports": "Rapporter",
|
"HeaderReports": "Rapporter",
|
||||||
"HeaderMetadataManager": "Metadata Manager",
|
|
||||||
"HeaderSettings": "Indstillinger",
|
"HeaderSettings": "Indstillinger",
|
||||||
"OptionDefaultSort": "Standard",
|
"OptionDefaultSort": "Standard",
|
||||||
"OptionCommunityMostWatchedSort": "Mest sete",
|
"OptionCommunityMostWatchedSort": "Mest sete",
|
||||||
@ -1584,6 +1583,7 @@
|
|||||||
"HeaderWelcomeBack": "Velkommen tilbage!",
|
"HeaderWelcomeBack": "Velkommen tilbage!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Tag en rundvisning for at se hvad der er nyt",
|
"ButtonTakeTheTourToSeeWhatsNew": "Tag en rundvisning for at se hvad der er nyt",
|
||||||
"MessageNoSyncJobsFound": "Intet sync job blev fundet. Opret sync jobs ved at benytte Sync knapper som findes gennem web-interfacet.",
|
"MessageNoSyncJobsFound": "Intet sync job blev fundet. Opret sync jobs ved at benytte Sync knapper som findes gennem web-interfacet.",
|
||||||
|
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||||
"HeaderSelectDevices": "V\u00e6lg enheder",
|
"HeaderSelectDevices": "V\u00e6lg enheder",
|
||||||
"ButtonCancelItem": "Annuller genstand",
|
"ButtonCancelItem": "Annuller genstand",
|
||||||
"ButtonQueueForRetry": "S\u00e6t et nyt fors\u00f8g i k\u00f8",
|
"ButtonQueueForRetry": "S\u00e6t et nyt fors\u00f8g i k\u00f8",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "Sikre dig at en \u00e5ben tuner er tilg\u00e6ngelig.",
|
"MessageEnsureOpenTuner": "Sikre dig at en \u00e5ben tuner er tilg\u00e6ngelig.",
|
||||||
"ButtonDashboard": "Betjeningspanel",
|
"ButtonDashboard": "Betjeningspanel",
|
||||||
"ButtonReports": "Rapporter",
|
"ButtonReports": "Rapporter",
|
||||||
"ButtonMetadataManager": "Metadata Manager",
|
"MetadataManager": "Metadata Manager",
|
||||||
"HeaderTime": "Tid",
|
"HeaderTime": "Tid",
|
||||||
"LabelAddedOnDate": "Tilf\u00f8jet {0}",
|
"LabelAddedOnDate": "Tilf\u00f8jet {0}",
|
||||||
"ButtonStart": "Start",
|
"ButtonStart": "Start",
|
||||||
@ -2314,5 +2314,8 @@
|
|||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Enable photos",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Make available offline",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "Remove download?",
|
||||||
|
"SyncToOtherDevices": "Sync to other devices",
|
||||||
|
"ManageOfflineDownloads": "Manage offline downloads",
|
||||||
|
"MessageDownloadScheduled": "Download scheduled"
|
||||||
}
|
}
|
@ -310,7 +310,7 @@
|
|||||||
"OptionAllowRemoteSharedDevices": "Erlaube Fernsteuerung geteilter Ger\u00e4te",
|
"OptionAllowRemoteSharedDevices": "Erlaube Fernsteuerung geteilter Ger\u00e4te",
|
||||||
"OptionAllowRemoteSharedDevicesHelp": "DLNA-Ger\u00e4te werden gemeinsam genutzt, bis ein Benutzer die Steuerung \u00fcbernimmt.",
|
"OptionAllowRemoteSharedDevicesHelp": "DLNA-Ger\u00e4te werden gemeinsam genutzt, bis ein Benutzer die Steuerung \u00fcbernimmt.",
|
||||||
"OptionAllowLinkSharing": "Erlaube das Teilen in sozialen Netzwerken",
|
"OptionAllowLinkSharing": "Erlaube das Teilen in sozialen Netzwerken",
|
||||||
"OptionAllowLinkSharingHelp": "Es werden nur Web-Seiten mit Medieninformationen geteilt. Medien hingenen werden niemals \u00f6ffentlich geteilt. Die geteilten Inhalte sind nur begrenzt zug\u00e4nglich und werden, basierend auf den Servereinstellungen, nach einer Zeit ung\u00fcltig.",
|
"OptionAllowLinkSharingHelp": "Es werden nur Web-Seiten mit Medieninformationen geteilt. Medien hingenen werden niemals \u00f6ffentlich geteilt. Die geteilten Inhalte sind nur begrenzt zug\u00e4nglich werden nach {0} Tagen ung\u00fcltig.",
|
||||||
"HeaderSharing": "Teilen",
|
"HeaderSharing": "Teilen",
|
||||||
"HeaderRemoteControl": "Fernsteuerung",
|
"HeaderRemoteControl": "Fernsteuerung",
|
||||||
"OptionMissingTmdbId": "Fehlende Tmdb Id",
|
"OptionMissingTmdbId": "Fehlende Tmdb Id",
|
||||||
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "Keines",
|
"OptionNone": "Keines",
|
||||||
"HeaderLiveTv": "Live-TV",
|
"HeaderLiveTv": "Live-TV",
|
||||||
"HeaderReports": "Berichte",
|
"HeaderReports": "Berichte",
|
||||||
"HeaderMetadataManager": "Metadaten-Manager",
|
|
||||||
"HeaderSettings": "Einstellungen",
|
"HeaderSettings": "Einstellungen",
|
||||||
"OptionDefaultSort": "Default",
|
"OptionDefaultSort": "Default",
|
||||||
"OptionCommunityMostWatchedSort": "Meistgesehen",
|
"OptionCommunityMostWatchedSort": "Meistgesehen",
|
||||||
@ -1349,7 +1348,7 @@
|
|||||||
"HeaderPlayback": "Medien Wiedergabe",
|
"HeaderPlayback": "Medien Wiedergabe",
|
||||||
"OptionAllowAudioPlaybackTranscoding": "Erlaube Audio-Wiedergabe die Transkodierung ben\u00f6tigt",
|
"OptionAllowAudioPlaybackTranscoding": "Erlaube Audio-Wiedergabe die Transkodierung ben\u00f6tigt",
|
||||||
"OptionAllowVideoPlaybackTranscoding": "Erlaube Video-Wiedergabe die Transkodierung ben\u00f6tigt",
|
"OptionAllowVideoPlaybackTranscoding": "Erlaube Video-Wiedergabe die Transkodierung ben\u00f6tigt",
|
||||||
"OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding",
|
"OptionAllowVideoPlaybackRemuxing": "Erlaube Video-Wiedergabe mittels Konvertierung ohne Neu-Enkodierung",
|
||||||
"OptionAllowMediaPlaybackTranscodingHelp": "Benutzer werden, basierend auf deren Einstellungen, eine aussagekr\u00e4ftige Nachricht erhalten, wenn Inhalte nicht abgespielt werden k\u00f6nnen.",
|
"OptionAllowMediaPlaybackTranscodingHelp": "Benutzer werden, basierend auf deren Einstellungen, eine aussagekr\u00e4ftige Nachricht erhalten, wenn Inhalte nicht abgespielt werden k\u00f6nnen.",
|
||||||
"TabStreaming": "Streaming",
|
"TabStreaming": "Streaming",
|
||||||
"LabelRemoteClientBitrateLimit": "Limit f\u00fcr die Internet Streaming Datenrate (Mbps)",
|
"LabelRemoteClientBitrateLimit": "Limit f\u00fcr die Internet Streaming Datenrate (Mbps)",
|
||||||
@ -1583,7 +1582,8 @@
|
|||||||
"ButtonTakeTheTour": "Mache die Tour",
|
"ButtonTakeTheTour": "Mache die Tour",
|
||||||
"HeaderWelcomeBack": "Willkommen zur\u00fcck!",
|
"HeaderWelcomeBack": "Willkommen zur\u00fcck!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Gehen Sie auf Erkundung und erfahren Sie was neu ist",
|
"ButtonTakeTheTourToSeeWhatsNew": "Gehen Sie auf Erkundung und erfahren Sie was neu ist",
|
||||||
"MessageNoSyncJobsFound": "Keine Synchronisierungs-Aufgaben gefunden. Um Synchronisierungs-Aufgaben zu erstellen verwenden Sie die dazugeh\u00f6rige Funktion im Web-Interface.",
|
"MessageNoSyncJobsFound": "Keine Synchronisationsaufgaben gefunden. Um Synchronisationsaufgaben zu erstellen verwende die Synchronisationsbuttons in der App.",
|
||||||
|
"MessageDownloadsFound": "Keine Offline-Downloads. Mache deine Medien offline verf\u00fcgbar indem du \"Offline verf\u00fcgbar machen\" in der bei bei den Medien anklickst.",
|
||||||
"HeaderSelectDevices": "Ger\u00e4t w\u00e4hlen",
|
"HeaderSelectDevices": "Ger\u00e4t w\u00e4hlen",
|
||||||
"ButtonCancelItem": "Datei abw\u00e4hlen",
|
"ButtonCancelItem": "Datei abw\u00e4hlen",
|
||||||
"ButtonQueueForRetry": "F\u00fcr Wiederholung in die Warteschlange setzen",
|
"ButtonQueueForRetry": "F\u00fcr Wiederholung in die Warteschlange setzen",
|
||||||
@ -1687,7 +1687,7 @@
|
|||||||
"StatusSuccess": "Erfolgreich",
|
"StatusSuccess": "Erfolgreich",
|
||||||
"MessageFileWillBeDeleted": "Die folgende Datei wird gel\u00f6scht:",
|
"MessageFileWillBeDeleted": "Die folgende Datei wird gel\u00f6scht:",
|
||||||
"MessageSureYouWishToProceed": "Bis du dir sicher fortfahren zu wollen?",
|
"MessageSureYouWishToProceed": "Bis du dir sicher fortfahren zu wollen?",
|
||||||
"MessageDuplicatesWillBeDeleted": "Zus\u00e4tzlich werden folgende Duplikate gel\u00f6scht:",
|
"MessageDuplicatesWillBeDeleted": "Zus\u00e4tzlich werden die folgenden Duplikate gel\u00f6scht:",
|
||||||
"MessageFollowingFileWillBeMovedFrom": "Die folgende Datei wird verschoben von:",
|
"MessageFollowingFileWillBeMovedFrom": "Die folgende Datei wird verschoben von:",
|
||||||
"MessageDestinationTo": "nach:",
|
"MessageDestinationTo": "nach:",
|
||||||
"HeaderSelectWatchFolder": "W\u00e4hle \u00dcberwachungsverzeichnis",
|
"HeaderSelectWatchFolder": "W\u00e4hle \u00dcberwachungsverzeichnis",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "Bitte stelle sicher, dass ein freier Empf\u00e4nger verf\u00fcgbar ist.",
|
"MessageEnsureOpenTuner": "Bitte stelle sicher, dass ein freier Empf\u00e4nger verf\u00fcgbar ist.",
|
||||||
"ButtonDashboard": "\u00dcbersicht",
|
"ButtonDashboard": "\u00dcbersicht",
|
||||||
"ButtonReports": "Berichte",
|
"ButtonReports": "Berichte",
|
||||||
"ButtonMetadataManager": "Metadaten Manager",
|
"MetadataManager": "Metadaten-Manager",
|
||||||
"HeaderTime": "Zeit",
|
"HeaderTime": "Zeit",
|
||||||
"LabelAddedOnDate": "Hinzugef\u00fcgt {0}",
|
"LabelAddedOnDate": "Hinzugef\u00fcgt {0}",
|
||||||
"ButtonStart": "Start",
|
"ButtonStart": "Start",
|
||||||
@ -1862,7 +1862,7 @@
|
|||||||
"OptionMusicAlbums": "Musik-Alben",
|
"OptionMusicAlbums": "Musik-Alben",
|
||||||
"OptionMusicVideos": "Musik-Videos",
|
"OptionMusicVideos": "Musik-Videos",
|
||||||
"OptionSongs": "Lieder",
|
"OptionSongs": "Lieder",
|
||||||
"OptionHomeVideos": "Heim-Videos",
|
"OptionHomeVideos": "Heim-Videos und Fotos",
|
||||||
"OptionBooks": "B\u00fccher",
|
"OptionBooks": "B\u00fccher",
|
||||||
"ButtonUp": "Hoch",
|
"ButtonUp": "Hoch",
|
||||||
"ButtonDown": "Runter",
|
"ButtonDown": "Runter",
|
||||||
@ -2136,7 +2136,7 @@
|
|||||||
"HeaderUnlockSync": "Freischaltung Emby Sync",
|
"HeaderUnlockSync": "Freischaltung Emby Sync",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Schalten Sie diese Funktion mit einer kleinen einmaligen Geb\u00fchr oder einem aktiven Emby Premium Abo frei.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "Schalten Sie diese Funktion mit einer kleinen einmaligen Geb\u00fchr oder einem aktiven Emby Premium Abo frei.",
|
||||||
"MessageUnlockAppWithSupporter": "Schalten Sie diese Funktion mit einem aktiven Emby Premium Abo frei.",
|
"MessageUnlockAppWithSupporter": "Schalten Sie diese Funktion mit einem aktiven Emby Premium Abo frei.",
|
||||||
"MessageToValidateSupporter": "Wenn Sie eine aktive Emby Premiere Mitgliedschaft haben, stellen Sie bitte sicher, dass Sie diese im Server Dashboard unter Hilfe -> Emby Premiere eingerichtet haben.",
|
"MessageToValidateSupporter": "Wenn Sie eine aktive Emby Premiere Mitgliedschaft haben, stellen Sie bitte sicher, dass Sie diese \u00fcber das Emby Server Dashboard eingerichtet haben (Hauptmenu -> Emby Premiere).",
|
||||||
"MessagePaymentServicesUnavailable": "Die Zahlungsdienste stehen leider gerade nicht zur Verf\u00fcgung. Bitte versuchen Sie es sp\u00e4ter erneut.",
|
"MessagePaymentServicesUnavailable": "Die Zahlungsdienste stehen leider gerade nicht zur Verf\u00fcgung. Bitte versuchen Sie es sp\u00e4ter erneut.",
|
||||||
"MessagePleaseSignInLocalNetwork": "Bevor Sie fortsetzen sollten Sie sicher sein, dass Sie mit Ihrem Heimnetzwerk verbunden sind.",
|
"MessagePleaseSignInLocalNetwork": "Bevor Sie fortsetzen sollten Sie sicher sein, dass Sie mit Ihrem Heimnetzwerk verbunden sind.",
|
||||||
"ButtonUnlockWithPurchase": "Freischalten durch Kauf",
|
"ButtonUnlockWithPurchase": "Freischalten durch Kauf",
|
||||||
@ -2274,7 +2274,7 @@
|
|||||||
"LabelTitle": "Titel:",
|
"LabelTitle": "Titel:",
|
||||||
"LabelOriginalTitle": "Original Titel:",
|
"LabelOriginalTitle": "Original Titel:",
|
||||||
"LabelSortTitle": "Sortierungs Titel:",
|
"LabelSortTitle": "Sortierungs Titel:",
|
||||||
"OptionConvertRecordingPreserveAudio": "Erh\u00f6he die Audiolautst\u00e4rke beim Heruntermischen. Setzte auf 1 um die original Lautst\u00e4rke zu erhalten.",
|
"OptionConvertRecordingPreserveAudio": "Original-Audio (wenn m\u00f6glich) erhalten bei der Aufnahme-Konvertierung.",
|
||||||
"OptionConvertRecordingPreserveAudioHelp": "Dies liefert eine bessere Audio Qualit\u00e4t, ben\u00f6tigt aber m\u00f6glicherweise eine Transkodierung w\u00e4hrend der Wiedergabe auf einigen Ger\u00e4ten.",
|
"OptionConvertRecordingPreserveAudioHelp": "Dies liefert eine bessere Audio Qualit\u00e4t, ben\u00f6tigt aber m\u00f6glicherweise eine Transkodierung w\u00e4hrend der Wiedergabe auf einigen Ger\u00e4ten.",
|
||||||
"CreateCollectionHelp": "Sammlungen erm\u00f6glichen personallisierte Gruppen von Filmen oder anderen Medien.",
|
"CreateCollectionHelp": "Sammlungen erm\u00f6glichen personallisierte Gruppen von Filmen oder anderen Medien.",
|
||||||
"AddItemToCollectionHelp": "Um Medien Gruppen hinzuzuf\u00fcgen, verwende die Suche und benutze die Rechtsklick oder Tap-Men\u00fcs.",
|
"AddItemToCollectionHelp": "Um Medien Gruppen hinzuzuf\u00fcgen, verwende die Suche und benutze die Rechtsklick oder Tap-Men\u00fcs.",
|
||||||
@ -2307,12 +2307,15 @@
|
|||||||
"UnzipFFmpegFile": "Entpacke den Download in ein Verzeichnis Deiner Wahl.",
|
"UnzipFFmpegFile": "Entpacke den Download in ein Verzeichnis Deiner Wahl.",
|
||||||
"OptionUseSystemInstalledVersion": "Systeminstallierte Version verwenden",
|
"OptionUseSystemInstalledVersion": "Systeminstallierte Version verwenden",
|
||||||
"OptionUseMyCustomVersion": "Eigene Version verwenden",
|
"OptionUseMyCustomVersion": "Eigene Version verwenden",
|
||||||
"FFmpegSavePathNotFound": "Wir konnten kein FFmpeg in dem von Dir erfassten Verzeichnis finden. FFprobe wird ebenso ben\u00f6tigt und muss sich im gleichen Verzeichnis befinden. Diese Komponenten sind normalerweise in einem B\u00fcndel vorhanden um kommen zusammen mit einem Download. Bitte pr\u00fcfe das Verzeichnis und probiere es erneut.",
|
"FFmpegSavePathNotFound": "Wir konnten kein FFmpeg in dem von Dir erfassten Verzeichnis finden. FFprobe wird ebenso ben\u00f6tigt und muss sich im gleichen Verzeichnis befinden. Diese Komponenten sind normalerweise in einem Paket vorhanden um kommen zusammen mit einem Download. Bitte pr\u00fcfe das Verzeichnis und probiere es erneut.",
|
||||||
"XmlTvPremiere": "Grunds\u00e4tzlich wird Emby {0} Stunden des EPGs importieren. Um unendlich Daten zu importieren ist eine aktive Emby Premiere Mitgliedschaft notwendig.",
|
"XmlTvPremiere": "Grunds\u00e4tzlich wird Emby {0} Stunden des EPGs importieren. Um unendlich Daten zu importieren ist eine aktive Emby Premiere Mitgliedschaft notwendig.",
|
||||||
"MoreFromValue": "Mehr von {0}",
|
"MoreFromValue": "Mehr von {0}",
|
||||||
"OptionSaveMetadataAsHiddenHelp": "\u00c4nderungen werden sich auf neue Metadaten angewendet. Bereits existierende Metadaten werden bei der n\u00e4chsten Speicherung des Emby Servers auf den neusten Stand gebracht.",
|
"OptionSaveMetadataAsHiddenHelp": "\u00c4nderungen werden sich auf neue Metadaten angewendet. Bereits existierende Metadaten werden bei der n\u00e4chsten Speicherung des Emby Servers auf den neusten Stand gebracht.",
|
||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Aktiviere Fotos",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Fotos werden erkannt und neben anderen Mediendateien angezeigt.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Offline verf\u00fcgbar machen",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "Download entfernen?",
|
||||||
|
"SyncToOtherDevices": "Mit anderen Ger\u00e4ten synchronisieren",
|
||||||
|
"ManageOfflineDownloads": "Offline-Downloads verwalten",
|
||||||
|
"MessageDownloadScheduled": "Download geplant"
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "None",
|
"OptionNone": "None",
|
||||||
"HeaderLiveTv": "Live TV",
|
"HeaderLiveTv": "Live TV",
|
||||||
"HeaderReports": "Reports",
|
"HeaderReports": "Reports",
|
||||||
"HeaderMetadataManager": "Metadata Manager",
|
|
||||||
"HeaderSettings": "Settings",
|
"HeaderSettings": "Settings",
|
||||||
"OptionDefaultSort": "Default",
|
"OptionDefaultSort": "Default",
|
||||||
"OptionCommunityMostWatchedSort": "Most Watched",
|
"OptionCommunityMostWatchedSort": "Most Watched",
|
||||||
@ -1583,7 +1582,8 @@
|
|||||||
"ButtonTakeTheTour": "\u039a\u03ac\u03bd\u03c4\u03b5 \u03c4\u03b7\u03bd \u039e\u03b5\u03bd\u03ac\u03b3\u03b7\u03c3\u03b7",
|
"ButtonTakeTheTour": "\u039a\u03ac\u03bd\u03c4\u03b5 \u03c4\u03b7\u03bd \u039e\u03b5\u03bd\u03ac\u03b3\u03b7\u03c3\u03b7",
|
||||||
"HeaderWelcomeBack": "Welcome back!",
|
"HeaderWelcomeBack": "Welcome back!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.",
|
||||||
|
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||||
"HeaderSelectDevices": "Select Devices",
|
"HeaderSelectDevices": "Select Devices",
|
||||||
"ButtonCancelItem": "Cancel item",
|
"ButtonCancelItem": "Cancel item",
|
||||||
"ButtonQueueForRetry": "Queue for retry",
|
"ButtonQueueForRetry": "Queue for retry",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
||||||
"ButtonDashboard": "Dashboard",
|
"ButtonDashboard": "Dashboard",
|
||||||
"ButtonReports": "Reports",
|
"ButtonReports": "Reports",
|
||||||
"ButtonMetadataManager": "Metadata Manager",
|
"MetadataManager": "Metadata Manager",
|
||||||
"HeaderTime": "Time",
|
"HeaderTime": "Time",
|
||||||
"LabelAddedOnDate": "Added {0}",
|
"LabelAddedOnDate": "Added {0}",
|
||||||
"ButtonStart": "Start",
|
"ButtonStart": "Start",
|
||||||
@ -2314,5 +2314,8 @@
|
|||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Enable photos",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Make available offline",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "Remove download?",
|
||||||
|
"SyncToOtherDevices": "Sync to other devices",
|
||||||
|
"ManageOfflineDownloads": "Manage offline downloads",
|
||||||
|
"MessageDownloadScheduled": "Download scheduled"
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "None",
|
"OptionNone": "None",
|
||||||
"HeaderLiveTv": "Live TV",
|
"HeaderLiveTv": "Live TV",
|
||||||
"HeaderReports": "Reports",
|
"HeaderReports": "Reports",
|
||||||
"HeaderMetadataManager": "Metadata Manager",
|
|
||||||
"HeaderSettings": "Settings",
|
"HeaderSettings": "Settings",
|
||||||
"OptionDefaultSort": "Default",
|
"OptionDefaultSort": "Default",
|
||||||
"OptionCommunityMostWatchedSort": "Most Watched",
|
"OptionCommunityMostWatchedSort": "Most Watched",
|
||||||
@ -1584,6 +1583,7 @@
|
|||||||
"HeaderWelcomeBack": "Welcome back!",
|
"HeaderWelcomeBack": "Welcome back!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
||||||
|
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||||
"HeaderSelectDevices": "Select Devices",
|
"HeaderSelectDevices": "Select Devices",
|
||||||
"ButtonCancelItem": "Cancel item",
|
"ButtonCancelItem": "Cancel item",
|
||||||
"ButtonQueueForRetry": "Queue for retry",
|
"ButtonQueueForRetry": "Queue for retry",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
||||||
"ButtonDashboard": "Dashboard",
|
"ButtonDashboard": "Dashboard",
|
||||||
"ButtonReports": "Reports",
|
"ButtonReports": "Reports",
|
||||||
"ButtonMetadataManager": "Metadata Manager",
|
"MetadataManager": "Metadata Manager",
|
||||||
"HeaderTime": "Time",
|
"HeaderTime": "Time",
|
||||||
"LabelAddedOnDate": "Added {0}",
|
"LabelAddedOnDate": "Added {0}",
|
||||||
"ButtonStart": "Start",
|
"ButtonStart": "Start",
|
||||||
@ -2314,5 +2314,8 @@
|
|||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Enable photos",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Make available offline",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "Remove download?",
|
||||||
|
"SyncToOtherDevices": "Sync to other devices",
|
||||||
|
"ManageOfflineDownloads": "Manage offline downloads",
|
||||||
|
"MessageDownloadScheduled": "Download scheduled"
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "None",
|
"OptionNone": "None",
|
||||||
"HeaderLiveTv": "Live TV",
|
"HeaderLiveTv": "Live TV",
|
||||||
"HeaderReports": "Reports",
|
"HeaderReports": "Reports",
|
||||||
"HeaderMetadataManager": "Metadata Manager",
|
|
||||||
"HeaderSettings": "Settings",
|
"HeaderSettings": "Settings",
|
||||||
"OptionDefaultSort": "Default",
|
"OptionDefaultSort": "Default",
|
||||||
"OptionCommunityMostWatchedSort": "Most Watched",
|
"OptionCommunityMostWatchedSort": "Most Watched",
|
||||||
@ -1583,7 +1582,8 @@
|
|||||||
"ButtonTakeTheTour": "Take the tour",
|
"ButtonTakeTheTour": "Take the tour",
|
||||||
"HeaderWelcomeBack": "Welcome back!",
|
"HeaderWelcomeBack": "Welcome back!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.",
|
||||||
|
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||||
"HeaderSelectDevices": "Select Devices",
|
"HeaderSelectDevices": "Select Devices",
|
||||||
"ButtonCancelItem": "Cancel item",
|
"ButtonCancelItem": "Cancel item",
|
||||||
"ButtonQueueForRetry": "Queue for retry",
|
"ButtonQueueForRetry": "Queue for retry",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
||||||
"ButtonDashboard": "Dashboard",
|
"ButtonDashboard": "Dashboard",
|
||||||
"ButtonReports": "Reports",
|
"ButtonReports": "Reports",
|
||||||
"ButtonMetadataManager": "Metadata Manager",
|
"MetadataManager": "Metadata Manager",
|
||||||
"HeaderTime": "Time",
|
"HeaderTime": "Time",
|
||||||
"LabelAddedOnDate": "Added {0}",
|
"LabelAddedOnDate": "Added {0}",
|
||||||
"ButtonStart": "Start",
|
"ButtonStart": "Start",
|
||||||
@ -2314,5 +2314,8 @@
|
|||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Enable photos",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Make available offline",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "Remove download?",
|
||||||
|
"SyncToOtherDevices": "Sync to other devices",
|
||||||
|
"ManageOfflineDownloads": "Manage offline downloads",
|
||||||
|
"MessageDownloadScheduled": "Download scheduled"
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "Ninguno",
|
"OptionNone": "Ninguno",
|
||||||
"HeaderLiveTv": "TV en Vivo",
|
"HeaderLiveTv": "TV en Vivo",
|
||||||
"HeaderReports": "Reportes",
|
"HeaderReports": "Reportes",
|
||||||
"HeaderMetadataManager": "Administrador de Metadatos",
|
|
||||||
"HeaderSettings": "Configuraci\u00f3n",
|
"HeaderSettings": "Configuraci\u00f3n",
|
||||||
"OptionDefaultSort": "Por defecto",
|
"OptionDefaultSort": "Por defecto",
|
||||||
"OptionCommunityMostWatchedSort": "M\u00e1s Visto",
|
"OptionCommunityMostWatchedSort": "M\u00e1s Visto",
|
||||||
@ -1114,7 +1113,7 @@
|
|||||||
"ViewTypeLiveTvRecordingGroups": "Grabaciones",
|
"ViewTypeLiveTvRecordingGroups": "Grabaciones",
|
||||||
"ViewTypeLiveTvChannels": "Canales",
|
"ViewTypeLiveTvChannels": "Canales",
|
||||||
"LabelEasyPinCode": "C\u00f3digo pin sencillo:",
|
"LabelEasyPinCode": "C\u00f3digo pin sencillo:",
|
||||||
"EasyPasswordHelp": "Tu c\u00f3digo pin sencillo es usado para el acceso fuera de linea con las aplicaciones Emby soportadas, y tambi\u00e9n puede ser usado para iniciar sesi\u00f3n m\u00e1s f\u00e1cilmente cuando esta conectado dentro de su red.",
|
"EasyPasswordHelp": "Tu c\u00f3digo pin sencillo es usado para el acceso sin conexi\u00f3n con las aplicaciones Emby soportadas, y tambi\u00e9n puede ser usado para iniciar sesi\u00f3n m\u00e1s f\u00e1cilmente cuando esta conectado dentro de su red.",
|
||||||
"LabelInNetworkSignInWithEasyPassword": "Habilitar inicio de sesi\u00f3n con mi c\u00f3digo pin sencillo para conexiones dentro de la red.",
|
"LabelInNetworkSignInWithEasyPassword": "Habilitar inicio de sesi\u00f3n con mi c\u00f3digo pin sencillo para conexiones dentro de la red.",
|
||||||
"LabelInNetworkSignInWithEasyPasswordHelp": "Si se habilita, podr\u00e1 usar su c\u00f3digo pin sencillo para iniciar sesi\u00f3n en las aplicaciones Emby desde su red de hogar. Su contrase\u00f1a regular sera requerida solamente cuando este fuera de casa. Si el c\u00f3digo pin es dejado en blanco, no necesitara una contrase\u00f1a dentro de su red de hogar.",
|
"LabelInNetworkSignInWithEasyPasswordHelp": "Si se habilita, podr\u00e1 usar su c\u00f3digo pin sencillo para iniciar sesi\u00f3n en las aplicaciones Emby desde su red de hogar. Su contrase\u00f1a regular sera requerida solamente cuando este fuera de casa. Si el c\u00f3digo pin es dejado en blanco, no necesitara una contrase\u00f1a dentro de su red de hogar.",
|
||||||
"HeaderPassword": "Contrase\u00f1a",
|
"HeaderPassword": "Contrase\u00f1a",
|
||||||
@ -1349,7 +1348,7 @@
|
|||||||
"HeaderPlayback": "Reproducci\u00f3n de Medios",
|
"HeaderPlayback": "Reproducci\u00f3n de Medios",
|
||||||
"OptionAllowAudioPlaybackTranscoding": "Permitir la reproducci\u00f3n de audio que requiera de transcodificaci\u00f3n",
|
"OptionAllowAudioPlaybackTranscoding": "Permitir la reproducci\u00f3n de audio que requiera de transcodificaci\u00f3n",
|
||||||
"OptionAllowVideoPlaybackTranscoding": "Permitir la reproducci\u00f3n de video que requiera de transcodificaci\u00f3n",
|
"OptionAllowVideoPlaybackTranscoding": "Permitir la reproducci\u00f3n de video que requiera de transcodificaci\u00f3n",
|
||||||
"OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding",
|
"OptionAllowVideoPlaybackRemuxing": "Permitir reproducci\u00f3n de video que requiera conversi\u00f3n sin re-codificar",
|
||||||
"OptionAllowMediaPlaybackTranscodingHelp": "Los usuarios recibir\u00e1n mensajes amigables cuando el contenido no pueda ser reproducido de acuerdo a su pol\u00edtica.",
|
"OptionAllowMediaPlaybackTranscodingHelp": "Los usuarios recibir\u00e1n mensajes amigables cuando el contenido no pueda ser reproducido de acuerdo a su pol\u00edtica.",
|
||||||
"TabStreaming": "Transmisi\u00f3n",
|
"TabStreaming": "Transmisi\u00f3n",
|
||||||
"LabelRemoteClientBitrateLimit": "Limite de tasa de bits para transmisi\u00f3n por Internet (Mbps):",
|
"LabelRemoteClientBitrateLimit": "Limite de tasa de bits para transmisi\u00f3n por Internet (Mbps):",
|
||||||
@ -1583,7 +1582,8 @@
|
|||||||
"ButtonTakeTheTour": "Haga el recorrido",
|
"ButtonTakeTheTour": "Haga el recorrido",
|
||||||
"HeaderWelcomeBack": "\u00a1Bienvenido nuevamente!",
|
"HeaderWelcomeBack": "\u00a1Bienvenido nuevamente!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Inice el tour para ver que hay de nuevo",
|
"ButtonTakeTheTourToSeeWhatsNew": "Inice el tour para ver que hay de nuevo",
|
||||||
"MessageNoSyncJobsFound": "No se han encontrado trabajos de sincronizaci\u00f3n. Cree trabajos de sincronizaci\u00f3n empleando los botones de Sinc que se encuentran en la intergface web.",
|
"MessageNoSyncJobsFound": "No se han encontrado trabajos de sincronizaci\u00f3n. Cree trabajos de sincronizaci\u00f3n empleando los botones de Sinc en la app.",
|
||||||
|
"MessageDownloadsFound": "No hay elementos sin conexi\u00f3n. Haga sus medios disponibles mientras esta desconectado haciendo clic en Hacer Disponible sin Conexi\u00f3n a trav\u00e9s de la app.",
|
||||||
"HeaderSelectDevices": "Seleccionar Dispositivos",
|
"HeaderSelectDevices": "Seleccionar Dispositivos",
|
||||||
"ButtonCancelItem": "Cancelar \u00edtem.",
|
"ButtonCancelItem": "Cancelar \u00edtem.",
|
||||||
"ButtonQueueForRetry": "En cola para reintentar",
|
"ButtonQueueForRetry": "En cola para reintentar",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "Por favor aseg\u00farese de que se encuentre disponible un sintonizador abierto.",
|
"MessageEnsureOpenTuner": "Por favor aseg\u00farese de que se encuentre disponible un sintonizador abierto.",
|
||||||
"ButtonDashboard": "Panel de Control",
|
"ButtonDashboard": "Panel de Control",
|
||||||
"ButtonReports": "Reportes",
|
"ButtonReports": "Reportes",
|
||||||
"ButtonMetadataManager": "Administrador de Metadatos",
|
"MetadataManager": "Administrador de Metadatos",
|
||||||
"HeaderTime": "Hora",
|
"HeaderTime": "Hora",
|
||||||
"LabelAddedOnDate": "Agregado {0}",
|
"LabelAddedOnDate": "Agregado {0}",
|
||||||
"ButtonStart": "Iniciar",
|
"ButtonStart": "Iniciar",
|
||||||
@ -1862,7 +1862,7 @@
|
|||||||
"OptionMusicAlbums": "\u00c1lbumes musicales",
|
"OptionMusicAlbums": "\u00c1lbumes musicales",
|
||||||
"OptionMusicVideos": "Videos musicales",
|
"OptionMusicVideos": "Videos musicales",
|
||||||
"OptionSongs": "Canciones",
|
"OptionSongs": "Canciones",
|
||||||
"OptionHomeVideos": "Videos caseros",
|
"OptionHomeVideos": "Videos caseros y fotograf\u00edas",
|
||||||
"OptionBooks": "Libros",
|
"OptionBooks": "Libros",
|
||||||
"ButtonUp": "Arriba",
|
"ButtonUp": "Arriba",
|
||||||
"ButtonDown": "Abajo",
|
"ButtonDown": "Abajo",
|
||||||
@ -1952,7 +1952,7 @@
|
|||||||
"ValueSongCount": "{0} canciones",
|
"ValueSongCount": "{0} canciones",
|
||||||
"ValueOneMusicVideo": "1 video musical",
|
"ValueOneMusicVideo": "1 video musical",
|
||||||
"ValueMusicVideoCount": "{0} videos musicales",
|
"ValueMusicVideoCount": "{0} videos musicales",
|
||||||
"HeaderOffline": "Fuera de L\u00ednea",
|
"HeaderOffline": "Sin conexi\u00f3n",
|
||||||
"HeaderUnaired": "No Emitido",
|
"HeaderUnaired": "No Emitido",
|
||||||
"HeaderMissing": "Falta",
|
"HeaderMissing": "Falta",
|
||||||
"ButtonWebsite": "Sitio web",
|
"ButtonWebsite": "Sitio web",
|
||||||
@ -2054,7 +2054,7 @@
|
|||||||
"WebClientTourUserPreferences4": "Configure im\u00e1genes de fondo, canciones de tema y reproductores externos",
|
"WebClientTourUserPreferences4": "Configure im\u00e1genes de fondo, canciones de tema y reproductores externos",
|
||||||
"WebClientTourMobile1": "El cliente web funciona de maravilla en tel\u00e9fonos inteligentes y tabletas...",
|
"WebClientTourMobile1": "El cliente web funciona de maravilla en tel\u00e9fonos inteligentes y tabletas...",
|
||||||
"WebClientTourMobile2": "y controla f\u00e1cilmente otros dispositivos y aplicaciones Emby",
|
"WebClientTourMobile2": "y controla f\u00e1cilmente otros dispositivos y aplicaciones Emby",
|
||||||
"WebClientTourMySync": "Sincronice sus medios personales a sus dispositivos para reproducirlos fuera de l\u00ednea.",
|
"WebClientTourMySync": "Sincronice sus medios personales a sus dispositivos para reproducirlos sin conexi\u00f3n.",
|
||||||
"MessageEnjoyYourStay": "Disfrute su visita",
|
"MessageEnjoyYourStay": "Disfrute su visita",
|
||||||
"DashboardTourDashboard": "El panel de control del servidor le permite monitorear su servidor y sus usuarios. Siempre sabr\u00e1 quien est\u00e1 haciendo qu\u00e9 y donde se encuentran.",
|
"DashboardTourDashboard": "El panel de control del servidor le permite monitorear su servidor y sus usuarios. Siempre sabr\u00e1 quien est\u00e1 haciendo qu\u00e9 y donde se encuentran.",
|
||||||
"DashboardTourHelp": "La ayuda dentro de la app proporciona botones simples para abrir p\u00e1ginas de la wiki relacionadas con el contenido en pantalla.",
|
"DashboardTourHelp": "La ayuda dentro de la app proporciona botones simples para abrir p\u00e1ginas de la wiki relacionadas con el contenido en pantalla.",
|
||||||
@ -2066,7 +2066,7 @@
|
|||||||
"DashboardTourNotifications": "Env\u00ede notificaciones automatizadas de eventos del servidor a sus dispositivos m\u00f3viles, correo electr\u00f3nico y m\u00e1s.",
|
"DashboardTourNotifications": "Env\u00ede notificaciones automatizadas de eventos del servidor a sus dispositivos m\u00f3viles, correo electr\u00f3nico y m\u00e1s.",
|
||||||
"DashboardTourScheduledTasks": "Administre f\u00e1cilmente operaciones de larga duraci\u00f3n con tareas programadas. Decida cuando se ejecutar\u00e1n y con que periodicidad.",
|
"DashboardTourScheduledTasks": "Administre f\u00e1cilmente operaciones de larga duraci\u00f3n con tareas programadas. Decida cuando se ejecutar\u00e1n y con que periodicidad.",
|
||||||
"DashboardTourMobile": "El panel de control del Servidor Emby funciona genial en smartphones y tablets. Administre su servidor desde la palma de su mano en cualquier momento y en cualquier lugar.",
|
"DashboardTourMobile": "El panel de control del Servidor Emby funciona genial en smartphones y tablets. Administre su servidor desde la palma de su mano en cualquier momento y en cualquier lugar.",
|
||||||
"DashboardTourSync": "Sincronice sus medios personales a sus dispositivos para reproducirlos fuera de l\u00ednea.",
|
"DashboardTourSync": "Sincronice sus medios personales a sus dispositivos para reproducirlos sin conexi\u00f3n.",
|
||||||
"MessageRefreshQueued": "Actualizaci\u00f3n programada",
|
"MessageRefreshQueued": "Actualizaci\u00f3n programada",
|
||||||
"TabExtras": "Extras",
|
"TabExtras": "Extras",
|
||||||
"HeaderUploadImage": "Subir im\u00e1gen",
|
"HeaderUploadImage": "Subir im\u00e1gen",
|
||||||
@ -2231,7 +2231,7 @@
|
|||||||
"ThankYouForTryingEnjoyOneMinute": "Por favor disfrute un minuto de reproducci\u00f3n. Gracias por probar Emby.",
|
"ThankYouForTryingEnjoyOneMinute": "Por favor disfrute un minuto de reproducci\u00f3n. Gracias por probar Emby.",
|
||||||
"HeaderTryPlayback": "Intente Reproducir",
|
"HeaderTryPlayback": "Intente Reproducir",
|
||||||
"HeaderBenefitsEmbyPremiere": "Emby Premiere",
|
"HeaderBenefitsEmbyPremiere": "Emby Premiere",
|
||||||
"MobileSyncFeatureDescription": "Sincronice sus medios a sus smartphones y tablets para f\u00e1cil acceso fuera de linea.",
|
"MobileSyncFeatureDescription": "Sincronice sus medios a sus smartphones y tablets para f\u00e1cil acceso cuando este sin conexi\u00f3n.",
|
||||||
"CoverArtFeatureDescription": "Cover Art crea divertidas caratulas y da otros tratamientos para ayudar a personalizar las im\u00e1genes de sus medios.",
|
"CoverArtFeatureDescription": "Cover Art crea divertidas caratulas y da otros tratamientos para ayudar a personalizar las im\u00e1genes de sus medios.",
|
||||||
"HeaderMobileSync": "Sincronizaci\u00f3n M\u00f3vil",
|
"HeaderMobileSync": "Sincronizaci\u00f3n M\u00f3vil",
|
||||||
"HeaderCloudSync": "Sinc. en la Nube",
|
"HeaderCloudSync": "Sinc. en la Nube",
|
||||||
@ -2311,8 +2311,11 @@
|
|||||||
"XmlTvPremiere": "Por defecto, Emby importara {0} horas de datos de la gu\u00eda. Para importar datos ilimitados necesita una subscripcion activa de Emby Premiere",
|
"XmlTvPremiere": "Por defecto, Emby importara {0} horas de datos de la gu\u00eda. Para importar datos ilimitados necesita una subscripcion activa de Emby Premiere",
|
||||||
"MoreFromValue": "Mas de {0}",
|
"MoreFromValue": "Mas de {0}",
|
||||||
"OptionSaveMetadataAsHiddenHelp": "Cambiando esto se aplicara a nuevos metadatos en adelante. Los archivos de metadatos existentes ser\u00e1n actualizados la pr\u00f3xima vez que sean guardados por el Servidor Emby",
|
"OptionSaveMetadataAsHiddenHelp": "Cambiando esto se aplicara a nuevos metadatos en adelante. Los archivos de metadatos existentes ser\u00e1n actualizados la pr\u00f3xima vez que sean guardados por el Servidor Emby",
|
||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Habilitar fotograf\u00edas",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Las fotograf\u00edas ser\u00e1n detectadas y mostradas junto con otros archivos de medios.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Hacer disponible sin conexi\u00f3n",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "\u00bfEliminar descarga?",
|
||||||
|
"SyncToOtherDevices": "Sincronizar a otros dispositivos",
|
||||||
|
"ManageOfflineDownloads": "Administrar elementos sin conexi\u00f3n",
|
||||||
|
"MessageDownloadScheduled": "Descarga programada"
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "Nada",
|
"OptionNone": "Nada",
|
||||||
"HeaderLiveTv": "TV en directo",
|
"HeaderLiveTv": "TV en directo",
|
||||||
"HeaderReports": "Informes",
|
"HeaderReports": "Informes",
|
||||||
"HeaderMetadataManager": "Gestor de metadatos",
|
|
||||||
"HeaderSettings": "Ajustes",
|
"HeaderSettings": "Ajustes",
|
||||||
"OptionDefaultSort": "Por defecto",
|
"OptionDefaultSort": "Por defecto",
|
||||||
"OptionCommunityMostWatchedSort": "M\u00e1s visto",
|
"OptionCommunityMostWatchedSort": "M\u00e1s visto",
|
||||||
@ -1584,6 +1583,7 @@
|
|||||||
"HeaderWelcomeBack": "\u00a1Bienvenido de nuevo!",
|
"HeaderWelcomeBack": "\u00a1Bienvenido de nuevo!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Da un paseo para ver que hay nuevo",
|
"ButtonTakeTheTourToSeeWhatsNew": "Da un paseo para ver que hay nuevo",
|
||||||
"MessageNoSyncJobsFound": "No se han encontrado trabajos de sincronizaci\u00f3n. Cr\u00e9alos usando los botones de sincronizaci\u00f3n que se encuentran a trav\u00e9s de la interfaz web.",
|
"MessageNoSyncJobsFound": "No se han encontrado trabajos de sincronizaci\u00f3n. Cr\u00e9alos usando los botones de sincronizaci\u00f3n que se encuentran a trav\u00e9s de la interfaz web.",
|
||||||
|
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||||
"HeaderSelectDevices": "Elegir dispositivos",
|
"HeaderSelectDevices": "Elegir dispositivos",
|
||||||
"ButtonCancelItem": "Cancelar \u00edtem",
|
"ButtonCancelItem": "Cancelar \u00edtem",
|
||||||
"ButtonQueueForRetry": "En cola para reintentar",
|
"ButtonQueueForRetry": "En cola para reintentar",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "Aseg\u00farese que hay un sintonizador disponible.",
|
"MessageEnsureOpenTuner": "Aseg\u00farese que hay un sintonizador disponible.",
|
||||||
"ButtonDashboard": "Panel de control",
|
"ButtonDashboard": "Panel de control",
|
||||||
"ButtonReports": "Informes",
|
"ButtonReports": "Informes",
|
||||||
"ButtonMetadataManager": "Gestor de metadatos",
|
"MetadataManager": "Metadata Manager",
|
||||||
"HeaderTime": "Duraci\u00f3n",
|
"HeaderTime": "Duraci\u00f3n",
|
||||||
"LabelAddedOnDate": "A\u00f1adido {0}",
|
"LabelAddedOnDate": "A\u00f1adido {0}",
|
||||||
"ButtonStart": "Inicio",
|
"ButtonStart": "Inicio",
|
||||||
@ -2314,5 +2314,8 @@
|
|||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Enable photos",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Make available offline",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "Remove download?",
|
||||||
|
"SyncToOtherDevices": "Sync to other devices",
|
||||||
|
"ManageOfflineDownloads": "Manage offline downloads",
|
||||||
|
"MessageDownloadScheduled": "Download scheduled"
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "None",
|
"OptionNone": "None",
|
||||||
"HeaderLiveTv": "Live TV",
|
"HeaderLiveTv": "Live TV",
|
||||||
"HeaderReports": "Reports",
|
"HeaderReports": "Reports",
|
||||||
"HeaderMetadataManager": "Metadata Manager",
|
|
||||||
"HeaderSettings": "Settings",
|
"HeaderSettings": "Settings",
|
||||||
"OptionDefaultSort": "Default",
|
"OptionDefaultSort": "Default",
|
||||||
"OptionCommunityMostWatchedSort": "Most Watched",
|
"OptionCommunityMostWatchedSort": "Most Watched",
|
||||||
@ -1583,7 +1582,8 @@
|
|||||||
"ButtonTakeTheTour": "Take the tour",
|
"ButtonTakeTheTour": "Take the tour",
|
||||||
"HeaderWelcomeBack": "Welcome back!",
|
"HeaderWelcomeBack": "Welcome back!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.",
|
||||||
|
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||||
"HeaderSelectDevices": "Select Devices",
|
"HeaderSelectDevices": "Select Devices",
|
||||||
"ButtonCancelItem": "Cancel item",
|
"ButtonCancelItem": "Cancel item",
|
||||||
"ButtonQueueForRetry": "Queue for retry",
|
"ButtonQueueForRetry": "Queue for retry",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
||||||
"ButtonDashboard": "Dashboard",
|
"ButtonDashboard": "Dashboard",
|
||||||
"ButtonReports": "Reports",
|
"ButtonReports": "Reports",
|
||||||
"ButtonMetadataManager": "Metadata Manager",
|
"MetadataManager": "Metadata Manager",
|
||||||
"HeaderTime": "Time",
|
"HeaderTime": "Time",
|
||||||
"LabelAddedOnDate": "Added {0}",
|
"LabelAddedOnDate": "Added {0}",
|
||||||
"ButtonStart": "Start",
|
"ButtonStart": "Start",
|
||||||
@ -2314,5 +2314,8 @@
|
|||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Enable photos",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Make available offline",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "Remove download?",
|
||||||
|
"SyncToOtherDevices": "Sync to other devices",
|
||||||
|
"ManageOfflineDownloads": "Manage offline downloads",
|
||||||
|
"MessageDownloadScheduled": "Download scheduled"
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "None",
|
"OptionNone": "None",
|
||||||
"HeaderLiveTv": "Live TV",
|
"HeaderLiveTv": "Live TV",
|
||||||
"HeaderReports": "Reports",
|
"HeaderReports": "Reports",
|
||||||
"HeaderMetadataManager": "Metadata Manager",
|
|
||||||
"HeaderSettings": "Settings",
|
"HeaderSettings": "Settings",
|
||||||
"OptionDefaultSort": "Default",
|
"OptionDefaultSort": "Default",
|
||||||
"OptionCommunityMostWatchedSort": "Most Watched",
|
"OptionCommunityMostWatchedSort": "Most Watched",
|
||||||
@ -1583,7 +1582,8 @@
|
|||||||
"ButtonTakeTheTour": "Take the tour",
|
"ButtonTakeTheTour": "Take the tour",
|
||||||
"HeaderWelcomeBack": "Welcome back!",
|
"HeaderWelcomeBack": "Welcome back!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.",
|
||||||
|
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||||
"HeaderSelectDevices": "Select Devices",
|
"HeaderSelectDevices": "Select Devices",
|
||||||
"ButtonCancelItem": "Cancel item",
|
"ButtonCancelItem": "Cancel item",
|
||||||
"ButtonQueueForRetry": "Queue for retry",
|
"ButtonQueueForRetry": "Queue for retry",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
||||||
"ButtonDashboard": "Dashboard",
|
"ButtonDashboard": "Dashboard",
|
||||||
"ButtonReports": "Reports",
|
"ButtonReports": "Reports",
|
||||||
"ButtonMetadataManager": "Metadata Manager",
|
"MetadataManager": "Metadata Manager",
|
||||||
"HeaderTime": "Time",
|
"HeaderTime": "Time",
|
||||||
"LabelAddedOnDate": "Added {0}",
|
"LabelAddedOnDate": "Added {0}",
|
||||||
"ButtonStart": "Start",
|
"ButtonStart": "Start",
|
||||||
@ -2314,5 +2314,8 @@
|
|||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Enable photos",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Make available offline",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "Remove download?",
|
||||||
|
"SyncToOtherDevices": "Sync to other devices",
|
||||||
|
"ManageOfflineDownloads": "Manage offline downloads",
|
||||||
|
"MessageDownloadScheduled": "Download scheduled"
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "None",
|
"OptionNone": "None",
|
||||||
"HeaderLiveTv": "Live TV",
|
"HeaderLiveTv": "Live TV",
|
||||||
"HeaderReports": "Reports",
|
"HeaderReports": "Reports",
|
||||||
"HeaderMetadataManager": "Metadata Manager",
|
|
||||||
"HeaderSettings": "Settings",
|
"HeaderSettings": "Settings",
|
||||||
"OptionDefaultSort": "Default",
|
"OptionDefaultSort": "Default",
|
||||||
"OptionCommunityMostWatchedSort": "Most Watched",
|
"OptionCommunityMostWatchedSort": "Most Watched",
|
||||||
@ -1584,6 +1583,7 @@
|
|||||||
"HeaderWelcomeBack": "Welcome back!",
|
"HeaderWelcomeBack": "Welcome back!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
||||||
|
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||||
"HeaderSelectDevices": "Select Devices",
|
"HeaderSelectDevices": "Select Devices",
|
||||||
"ButtonCancelItem": "Cancel item",
|
"ButtonCancelItem": "Cancel item",
|
||||||
"ButtonQueueForRetry": "Queue for retry",
|
"ButtonQueueForRetry": "Queue for retry",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
||||||
"ButtonDashboard": "Dashboard",
|
"ButtonDashboard": "Dashboard",
|
||||||
"ButtonReports": "Reports",
|
"ButtonReports": "Reports",
|
||||||
"ButtonMetadataManager": "Metadata Manager",
|
"MetadataManager": "Metadata Manager",
|
||||||
"HeaderTime": "Time",
|
"HeaderTime": "Time",
|
||||||
"LabelAddedOnDate": "Added {0}",
|
"LabelAddedOnDate": "Added {0}",
|
||||||
"ButtonStart": "Start",
|
"ButtonStart": "Start",
|
||||||
@ -2314,5 +2314,8 @@
|
|||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Enable photos",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Make available offline",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "Remove download?",
|
||||||
|
"SyncToOtherDevices": "Sync to other devices",
|
||||||
|
"ManageOfflineDownloads": "Manage offline downloads",
|
||||||
|
"MessageDownloadScheduled": "Download scheduled"
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "Aucun",
|
"OptionNone": "Aucun",
|
||||||
"HeaderLiveTv": "TV en direct",
|
"HeaderLiveTv": "TV en direct",
|
||||||
"HeaderReports": "Rapports",
|
"HeaderReports": "Rapports",
|
||||||
"HeaderMetadataManager": "Gestionnaire de m\u00e9tadonn\u00e9es",
|
|
||||||
"HeaderSettings": "Param\u00e8tres",
|
"HeaderSettings": "Param\u00e8tres",
|
||||||
"OptionDefaultSort": "Par d\u00e9faut",
|
"OptionDefaultSort": "Par d\u00e9faut",
|
||||||
"OptionCommunityMostWatchedSort": "Les plus lus",
|
"OptionCommunityMostWatchedSort": "Les plus lus",
|
||||||
@ -1584,6 +1583,7 @@
|
|||||||
"HeaderWelcomeBack": "Bienvenue !",
|
"HeaderWelcomeBack": "Bienvenue !",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Suivez le guide pour d\u00e9couvrir les nouveaut\u00e9s",
|
"ButtonTakeTheTourToSeeWhatsNew": "Suivez le guide pour d\u00e9couvrir les nouveaut\u00e9s",
|
||||||
"MessageNoSyncJobsFound": "Aucune t\u00e2che de synchronisation trouv\u00e9e. Vous pouvez cr\u00e9er des t\u00e2ches de synchronisation gr\u00e2ce aux boutons 'Synchroniser' partout dans l'interface web.",
|
"MessageNoSyncJobsFound": "Aucune t\u00e2che de synchronisation trouv\u00e9e. Vous pouvez cr\u00e9er des t\u00e2ches de synchronisation gr\u00e2ce aux boutons 'Synchroniser' partout dans l'interface web.",
|
||||||
|
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||||
"HeaderSelectDevices": "S\u00e9lectionnez un appareil",
|
"HeaderSelectDevices": "S\u00e9lectionnez un appareil",
|
||||||
"ButtonCancelItem": "Annuler l'\u00e9l\u00e9ment",
|
"ButtonCancelItem": "Annuler l'\u00e9l\u00e9ment",
|
||||||
"ButtonQueueForRetry": "File d'attente pour une nouvelle tentative",
|
"ButtonQueueForRetry": "File d'attente pour une nouvelle tentative",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "Veuillez vous assurer qu'un tuner est bien disponible.",
|
"MessageEnsureOpenTuner": "Veuillez vous assurer qu'un tuner est bien disponible.",
|
||||||
"ButtonDashboard": "Tableau de bord",
|
"ButtonDashboard": "Tableau de bord",
|
||||||
"ButtonReports": "Rapports",
|
"ButtonReports": "Rapports",
|
||||||
"ButtonMetadataManager": "G\u00e9rer les m\u00e9tadonn\u00e9es",
|
"MetadataManager": "Metadata Manager",
|
||||||
"HeaderTime": "Heure",
|
"HeaderTime": "Heure",
|
||||||
"LabelAddedOnDate": "Ajout\u00e9 {0}",
|
"LabelAddedOnDate": "Ajout\u00e9 {0}",
|
||||||
"ButtonStart": "Commencer",
|
"ButtonStart": "Commencer",
|
||||||
@ -2314,5 +2314,8 @@
|
|||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Enable photos",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Make available offline",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "Remove download?",
|
||||||
|
"SyncToOtherDevices": "Sync to other devices",
|
||||||
|
"ManageOfflineDownloads": "Manage offline downloads",
|
||||||
|
"MessageDownloadScheduled": "Download scheduled"
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "None",
|
"OptionNone": "None",
|
||||||
"HeaderLiveTv": "Live TV",
|
"HeaderLiveTv": "Live TV",
|
||||||
"HeaderReports": "Reports",
|
"HeaderReports": "Reports",
|
||||||
"HeaderMetadataManager": "Metadata Manager",
|
|
||||||
"HeaderSettings": "Settings",
|
"HeaderSettings": "Settings",
|
||||||
"OptionDefaultSort": "Default",
|
"OptionDefaultSort": "Default",
|
||||||
"OptionCommunityMostWatchedSort": "Most Watched",
|
"OptionCommunityMostWatchedSort": "Most Watched",
|
||||||
@ -1583,7 +1582,8 @@
|
|||||||
"ButtonTakeTheTour": "Mach d'Tour",
|
"ButtonTakeTheTour": "Mach d'Tour",
|
||||||
"HeaderWelcomeBack": "Welcome back!",
|
"HeaderWelcomeBack": "Welcome back!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.",
|
||||||
|
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||||
"HeaderSelectDevices": "Select Devices",
|
"HeaderSelectDevices": "Select Devices",
|
||||||
"ButtonCancelItem": "Cancel item",
|
"ButtonCancelItem": "Cancel item",
|
||||||
"ButtonQueueForRetry": "Queue for retry",
|
"ButtonQueueForRetry": "Queue for retry",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
||||||
"ButtonDashboard": "Dashboard",
|
"ButtonDashboard": "Dashboard",
|
||||||
"ButtonReports": "Reports",
|
"ButtonReports": "Reports",
|
||||||
"ButtonMetadataManager": "Metadata Manager",
|
"MetadataManager": "Metadata Manager",
|
||||||
"HeaderTime": "Time",
|
"HeaderTime": "Time",
|
||||||
"LabelAddedOnDate": "Added {0}",
|
"LabelAddedOnDate": "Added {0}",
|
||||||
"ButtonStart": "Start",
|
"ButtonStart": "Start",
|
||||||
@ -2314,5 +2314,8 @@
|
|||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Enable photos",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Make available offline",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "Remove download?",
|
||||||
|
"SyncToOtherDevices": "Sync to other devices",
|
||||||
|
"ManageOfflineDownloads": "Manage offline downloads",
|
||||||
|
"MessageDownloadScheduled": "Download scheduled"
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "None",
|
"OptionNone": "None",
|
||||||
"HeaderLiveTv": "Live TV",
|
"HeaderLiveTv": "Live TV",
|
||||||
"HeaderReports": "Reports",
|
"HeaderReports": "Reports",
|
||||||
"HeaderMetadataManager": "Metadata Manager",
|
|
||||||
"HeaderSettings": "Settings",
|
"HeaderSettings": "Settings",
|
||||||
"OptionDefaultSort": "Default",
|
"OptionDefaultSort": "Default",
|
||||||
"OptionCommunityMostWatchedSort": "Most Watched",
|
"OptionCommunityMostWatchedSort": "Most Watched",
|
||||||
@ -1583,7 +1582,8 @@
|
|||||||
"ButtonTakeTheTour": "Take the tour",
|
"ButtonTakeTheTour": "Take the tour",
|
||||||
"HeaderWelcomeBack": "Welcome back!",
|
"HeaderWelcomeBack": "Welcome back!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.",
|
||||||
|
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||||
"HeaderSelectDevices": "Select Devices",
|
"HeaderSelectDevices": "Select Devices",
|
||||||
"ButtonCancelItem": "Cancel item",
|
"ButtonCancelItem": "Cancel item",
|
||||||
"ButtonQueueForRetry": "Queue for retry",
|
"ButtonQueueForRetry": "Queue for retry",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
||||||
"ButtonDashboard": "Dashboard",
|
"ButtonDashboard": "Dashboard",
|
||||||
"ButtonReports": "Reports",
|
"ButtonReports": "Reports",
|
||||||
"ButtonMetadataManager": "Metadata Manager",
|
"MetadataManager": "Metadata Manager",
|
||||||
"HeaderTime": "Time",
|
"HeaderTime": "Time",
|
||||||
"LabelAddedOnDate": "Added {0}",
|
"LabelAddedOnDate": "Added {0}",
|
||||||
"ButtonStart": "Start",
|
"ButtonStart": "Start",
|
||||||
@ -2314,5 +2314,8 @@
|
|||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Enable photos",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Make available offline",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "Remove download?",
|
||||||
|
"SyncToOtherDevices": "Sync to other devices",
|
||||||
|
"ManageOfflineDownloads": "Manage offline downloads",
|
||||||
|
"MessageDownloadScheduled": "Download scheduled"
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "None",
|
"OptionNone": "None",
|
||||||
"HeaderLiveTv": "Live TV",
|
"HeaderLiveTv": "Live TV",
|
||||||
"HeaderReports": "Reports",
|
"HeaderReports": "Reports",
|
||||||
"HeaderMetadataManager": "Metadata Manager",
|
|
||||||
"HeaderSettings": "Settings",
|
"HeaderSettings": "Settings",
|
||||||
"OptionDefaultSort": "Default",
|
"OptionDefaultSort": "Default",
|
||||||
"OptionCommunityMostWatchedSort": "Most Watched",
|
"OptionCommunityMostWatchedSort": "Most Watched",
|
||||||
@ -1583,7 +1582,8 @@
|
|||||||
"ButtonTakeTheTour": "Take the tour",
|
"ButtonTakeTheTour": "Take the tour",
|
||||||
"HeaderWelcomeBack": "Welcome back!",
|
"HeaderWelcomeBack": "Welcome back!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.",
|
||||||
|
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||||
"HeaderSelectDevices": "Select Devices",
|
"HeaderSelectDevices": "Select Devices",
|
||||||
"ButtonCancelItem": "Cancel item",
|
"ButtonCancelItem": "Cancel item",
|
||||||
"ButtonQueueForRetry": "Queue for retry",
|
"ButtonQueueForRetry": "Queue for retry",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
||||||
"ButtonDashboard": "Dashboard",
|
"ButtonDashboard": "Dashboard",
|
||||||
"ButtonReports": "Reports",
|
"ButtonReports": "Reports",
|
||||||
"ButtonMetadataManager": "Metadata Manager",
|
"MetadataManager": "Metadata Manager",
|
||||||
"HeaderTime": "Time",
|
"HeaderTime": "Time",
|
||||||
"LabelAddedOnDate": "Added {0}",
|
"LabelAddedOnDate": "Added {0}",
|
||||||
"ButtonStart": "Start",
|
"ButtonStart": "Start",
|
||||||
@ -2314,5 +2314,8 @@
|
|||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Enable photos",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Make available offline",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "Remove download?",
|
||||||
|
"SyncToOtherDevices": "Sync to other devices",
|
||||||
|
"ManageOfflineDownloads": "Manage offline downloads",
|
||||||
|
"MessageDownloadScheduled": "Download scheduled"
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "None",
|
"OptionNone": "None",
|
||||||
"HeaderLiveTv": "Live TV",
|
"HeaderLiveTv": "Live TV",
|
||||||
"HeaderReports": "Napl\u00f3k",
|
"HeaderReports": "Napl\u00f3k",
|
||||||
"HeaderMetadataManager": "Metaadat Kezel\u0151",
|
|
||||||
"HeaderSettings": "Be\u00e1ll\u00edt\u00e1sok",
|
"HeaderSettings": "Be\u00e1ll\u00edt\u00e1sok",
|
||||||
"OptionDefaultSort": "Alap\u00e9rtelmezett",
|
"OptionDefaultSort": "Alap\u00e9rtelmezett",
|
||||||
"OptionCommunityMostWatchedSort": "Most Watched",
|
"OptionCommunityMostWatchedSort": "Most Watched",
|
||||||
@ -1583,7 +1582,8 @@
|
|||||||
"ButtonTakeTheTour": "Take the tour",
|
"ButtonTakeTheTour": "Take the tour",
|
||||||
"HeaderWelcomeBack": "Welcome back!",
|
"HeaderWelcomeBack": "Welcome back!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.",
|
||||||
|
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||||
"HeaderSelectDevices": "Select Devices",
|
"HeaderSelectDevices": "Select Devices",
|
||||||
"ButtonCancelItem": "Cancel item",
|
"ButtonCancelItem": "Cancel item",
|
||||||
"ButtonQueueForRetry": "Queue for retry",
|
"ButtonQueueForRetry": "Queue for retry",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
||||||
"ButtonDashboard": "Vez\u00e9rl\u0151pult",
|
"ButtonDashboard": "Vez\u00e9rl\u0151pult",
|
||||||
"ButtonReports": "Napl\u00f3k",
|
"ButtonReports": "Napl\u00f3k",
|
||||||
"ButtonMetadataManager": "Metaadat Kezel\u0151",
|
"MetadataManager": "Metadata Manager",
|
||||||
"HeaderTime": "Time",
|
"HeaderTime": "Time",
|
||||||
"LabelAddedOnDate": "Added {0}",
|
"LabelAddedOnDate": "Added {0}",
|
||||||
"ButtonStart": "Start",
|
"ButtonStart": "Start",
|
||||||
@ -2314,5 +2314,8 @@
|
|||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Enable photos",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Make available offline",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "Remove download?",
|
||||||
|
"SyncToOtherDevices": "Sync to other devices",
|
||||||
|
"ManageOfflineDownloads": "Manage offline downloads",
|
||||||
|
"MessageDownloadScheduled": "Download scheduled"
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "None",
|
"OptionNone": "None",
|
||||||
"HeaderLiveTv": "Live TV",
|
"HeaderLiveTv": "Live TV",
|
||||||
"HeaderReports": "Reports",
|
"HeaderReports": "Reports",
|
||||||
"HeaderMetadataManager": "Metadata Manager",
|
|
||||||
"HeaderSettings": "Settings",
|
"HeaderSettings": "Settings",
|
||||||
"OptionDefaultSort": "Default",
|
"OptionDefaultSort": "Default",
|
||||||
"OptionCommunityMostWatchedSort": "Most Watched",
|
"OptionCommunityMostWatchedSort": "Most Watched",
|
||||||
@ -1583,7 +1582,8 @@
|
|||||||
"ButtonTakeTheTour": "Take the tour",
|
"ButtonTakeTheTour": "Take the tour",
|
||||||
"HeaderWelcomeBack": "Welcome back!",
|
"HeaderWelcomeBack": "Welcome back!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.",
|
||||||
|
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||||
"HeaderSelectDevices": "Select Devices",
|
"HeaderSelectDevices": "Select Devices",
|
||||||
"ButtonCancelItem": "Cancel item",
|
"ButtonCancelItem": "Cancel item",
|
||||||
"ButtonQueueForRetry": "Queue for retry",
|
"ButtonQueueForRetry": "Queue for retry",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
||||||
"ButtonDashboard": "Dashboard",
|
"ButtonDashboard": "Dashboard",
|
||||||
"ButtonReports": "Reports",
|
"ButtonReports": "Reports",
|
||||||
"ButtonMetadataManager": "Metadata Manager",
|
"MetadataManager": "Metadata Manager",
|
||||||
"HeaderTime": "Time",
|
"HeaderTime": "Time",
|
||||||
"LabelAddedOnDate": "Added {0}",
|
"LabelAddedOnDate": "Added {0}",
|
||||||
"ButtonStart": "Start",
|
"ButtonStart": "Start",
|
||||||
@ -2314,5 +2314,8 @@
|
|||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Enable photos",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Make available offline",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "Remove download?",
|
||||||
|
"SyncToOtherDevices": "Sync to other devices",
|
||||||
|
"ManageOfflineDownloads": "Manage offline downloads",
|
||||||
|
"MessageDownloadScheduled": "Download scheduled"
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "Nessuno",
|
"OptionNone": "Nessuno",
|
||||||
"HeaderLiveTv": "Diretta TV",
|
"HeaderLiveTv": "Diretta TV",
|
||||||
"HeaderReports": "Rapporti",
|
"HeaderReports": "Rapporti",
|
||||||
"HeaderMetadataManager": "Manager Metadati",
|
|
||||||
"HeaderSettings": "Configurazione",
|
"HeaderSettings": "Configurazione",
|
||||||
"OptionDefaultSort": "Predefinito",
|
"OptionDefaultSort": "Predefinito",
|
||||||
"OptionCommunityMostWatchedSort": "Pi\u00f9 visti",
|
"OptionCommunityMostWatchedSort": "Pi\u00f9 visti",
|
||||||
@ -1584,6 +1583,7 @@
|
|||||||
"HeaderWelcomeBack": "Ben tornato!",
|
"HeaderWelcomeBack": "Ben tornato!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Fai un tour per vedere cosa \u00e8 cambiato",
|
"ButtonTakeTheTourToSeeWhatsNew": "Fai un tour per vedere cosa \u00e8 cambiato",
|
||||||
"MessageNoSyncJobsFound": "Nessuna sincronizzazione pianificata. Creane una utilizzando i pulsanti sull'interfaccia web",
|
"MessageNoSyncJobsFound": "Nessuna sincronizzazione pianificata. Creane una utilizzando i pulsanti sull'interfaccia web",
|
||||||
|
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||||
"HeaderSelectDevices": "Seleziona periferiche",
|
"HeaderSelectDevices": "Seleziona periferiche",
|
||||||
"ButtonCancelItem": "Cancella oggetto",
|
"ButtonCancelItem": "Cancella oggetto",
|
||||||
"ButtonQueueForRetry": "In attesa di riprovare",
|
"ButtonQueueForRetry": "In attesa di riprovare",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "Si prega di assicurarsi che ci sia un sintonizzatore disponibile.",
|
"MessageEnsureOpenTuner": "Si prega di assicurarsi che ci sia un sintonizzatore disponibile.",
|
||||||
"ButtonDashboard": "Pannello",
|
"ButtonDashboard": "Pannello",
|
||||||
"ButtonReports": "Reports",
|
"ButtonReports": "Reports",
|
||||||
"ButtonMetadataManager": "Manager Metadati",
|
"MetadataManager": "Metadata Manager",
|
||||||
"HeaderTime": "Tempo",
|
"HeaderTime": "Tempo",
|
||||||
"LabelAddedOnDate": "Aggiunto {0}",
|
"LabelAddedOnDate": "Aggiunto {0}",
|
||||||
"ButtonStart": "Avvio",
|
"ButtonStart": "Avvio",
|
||||||
@ -2314,5 +2314,8 @@
|
|||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Enable photos",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Make available offline",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "Remove download?",
|
||||||
|
"SyncToOtherDevices": "Sync to other devices",
|
||||||
|
"ManageOfflineDownloads": "Manage offline downloads",
|
||||||
|
"MessageDownloadScheduled": "Download scheduled"
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "\u0415\u0448\u049b\u0430\u043d\u0434\u0430\u0439",
|
"OptionNone": "\u0415\u0448\u049b\u0430\u043d\u0434\u0430\u0439",
|
||||||
"HeaderLiveTv": "\u042d\u0444\u0438\u0440\u043b\u0456\u043a \u0422\u0414",
|
"HeaderLiveTv": "\u042d\u0444\u0438\u0440\u043b\u0456\u043a \u0422\u0414",
|
||||||
"HeaderReports": "\u0411\u0430\u044f\u043d\u0430\u0442\u0442\u0430\u0440",
|
"HeaderReports": "\u0411\u0430\u044f\u043d\u0430\u0442\u0442\u0430\u0440",
|
||||||
"HeaderMetadataManager": "\u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a \u0440\u0435\u0442\u0442\u0435\u0443\u0448\u0456",
|
|
||||||
"HeaderSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440",
|
"HeaderSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440",
|
||||||
"OptionDefaultSort": "\u04d8\u0434\u0435\u043f\u043a\u0456",
|
"OptionDefaultSort": "\u04d8\u0434\u0435\u043f\u043a\u0456",
|
||||||
"OptionCommunityMostWatchedSort": "\u0415\u04a3 \u043a\u04e9\u043f \u049b\u0430\u0440\u0430\u043b\u0493\u0430\u043d\u0434\u0430\u0440",
|
"OptionCommunityMostWatchedSort": "\u0415\u04a3 \u043a\u04e9\u043f \u049b\u0430\u0440\u0430\u043b\u0493\u0430\u043d\u0434\u0430\u0440",
|
||||||
@ -1583,7 +1582,8 @@
|
|||||||
"ButtonTakeTheTour": "\u0410\u0440\u0430\u043b\u0430\u043f \u0448\u044b\u0493\u044b\u04a3\u044b\u0437",
|
"ButtonTakeTheTour": "\u0410\u0440\u0430\u043b\u0430\u043f \u0448\u044b\u0493\u044b\u04a3\u044b\u0437",
|
||||||
"HeaderWelcomeBack": "\u049a\u0430\u0439\u0442\u0430 \u043a\u0435\u043b\u0443\u0456\u04a3\u0456\u0437\u0431\u0435\u043d!",
|
"HeaderWelcomeBack": "\u049a\u0430\u0439\u0442\u0430 \u043a\u0435\u043b\u0443\u0456\u04a3\u0456\u0437\u0431\u0435\u043d!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "\u0411\u043e\u043b\u0493\u0430\u043d \u0436\u0430\u04a3\u0430\u043b\u044b\u049b\u0442\u0430\u0440\u043c\u0435\u043d \u0442\u0430\u043d\u044b\u0441\u0443",
|
"ButtonTakeTheTourToSeeWhatsNew": "\u0411\u043e\u043b\u0493\u0430\u043d \u0436\u0430\u04a3\u0430\u043b\u044b\u049b\u0442\u0430\u0440\u043c\u0435\u043d \u0442\u0430\u043d\u044b\u0441\u0443",
|
||||||
"MessageNoSyncJobsFound": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u0436\u04b1\u043c\u044b\u0441\u044b \u0442\u0430\u0431\u044b\u043b\u043c\u0430\u0434\u044b. \u0412\u0435\u0431-\u0442\u0456\u043b\u0434\u0435\u0441\u0443\u0434\u0435 \u0442\u0430\u0431\u044b\u043b\u0430\u0442\u044b\u043d \u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u043a\u0442\u0435\u0440\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043f \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u0436\u04b1\u043c\u044b\u0441\u0442\u0430\u0440\u044b\u043d \u0436\u0430\u0441\u0430\u04a3\u044b\u0437.",
|
"MessageNoSyncJobsFound": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u0436\u04b1\u043c\u044b\u0441\u0442\u0430\u0440\u044b \u0442\u0430\u0431\u044b\u043b\u043c\u0430\u0434\u044b. \u0411\u04af\u043a\u0456\u043b \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u0434\u0430\u0493\u044b \u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u043a\u0442\u0435\u0440\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043f \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u0436\u04b1\u043c\u044b\u0441\u0442\u0430\u0440\u044b\u043d \u0436\u0430\u0441\u0430\u04a3\u044b\u0437.",
|
||||||
|
"MessageDownloadsFound": "\u0414\u0435\u0440\u0431\u0435\u0441 \u0436\u04af\u043a\u0442\u0435\u0443\u043b\u0435\u0440 \u0442\u0430\u0431\u044b\u043b\u043c\u0430\u0434\u044b. \u0411\u04af\u043a\u0456\u043b \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u0434\u0430\u0493\u044b \u0414\u0435\u0440\u0431\u0435\u0441 \u0440\u0435\u0436\u0456\u043c\u0456\u043d\u0434\u0435 \u049b\u043e\u043b\u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0435\u0442\u0443 \u0434\u0435\u0433\u0435\u043d\u0434\u0456 \u043d\u04b1\u049b\u044b\u043f \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u04a3\u0456\u0437\u0434\u0456 \u0434\u0435\u0440\u0431\u0435\u0441 \u0440\u0435\u0436\u0456\u043c\u0456\u043d\u0434\u0435 \u049b\u043e\u043b\u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0435\u0442\u0456\u04a3\u0456\u0437.",
|
||||||
"HeaderSelectDevices": "\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u0434\u044b \u0442\u0430\u04a3\u0434\u0430\u0443",
|
"HeaderSelectDevices": "\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u0434\u044b \u0442\u0430\u04a3\u0434\u0430\u0443",
|
||||||
"ButtonCancelItem": "\u0422\u0430\u0440\u043c\u0430\u049b\u0442\u044b \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443",
|
"ButtonCancelItem": "\u0422\u0430\u0440\u043c\u0430\u049b\u0442\u044b \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443",
|
||||||
"ButtonQueueForRetry": "\u049a\u0430\u0439\u0442\u0430\u043b\u0430\u0443 \u04af\u0448\u0456\u043d \u043a\u0435\u0437\u0435\u043a\u043a\u0435",
|
"ButtonQueueForRetry": "\u049a\u0430\u0439\u0442\u0430\u043b\u0430\u0443 \u04af\u0448\u0456\u043d \u043a\u0435\u0437\u0435\u043a\u043a\u0435",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "\u0410\u0448\u044b\u043b\u0493\u0430\u043d \u0442\u044e\u043d\u0435\u0440 \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0435\u043a\u0435\u043d\u0456\u043d\u0435 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437.",
|
"MessageEnsureOpenTuner": "\u0410\u0448\u044b\u043b\u0493\u0430\u043d \u0442\u044e\u043d\u0435\u0440 \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0435\u043a\u0435\u043d\u0456\u043d\u0435 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437.",
|
||||||
"ButtonDashboard": "\u0411\u0430\u049b\u044b\u043b\u0430\u0443 \u0442\u0430\u049b\u0442\u0430\u0441\u044b\u043d\u0430",
|
"ButtonDashboard": "\u0411\u0430\u049b\u044b\u043b\u0430\u0443 \u0442\u0430\u049b\u0442\u0430\u0441\u044b\u043d\u0430",
|
||||||
"ButtonReports": "\u0411\u0430\u044f\u043d\u0430\u0442\u0442\u0430\u0440\u0493\u0430",
|
"ButtonReports": "\u0411\u0430\u044f\u043d\u0430\u0442\u0442\u0430\u0440\u0493\u0430",
|
||||||
"ButtonMetadataManager": "\u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a \u0440\u0435\u0442\u0442\u0435\u0443\u0448\u0456\u0433\u0435",
|
"MetadataManager": "\u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a \u0440\u0435\u0442\u0442\u0435\u0443\u0448\u0456",
|
||||||
"HeaderTime": "\u0423\u0430\u049b\u044b\u0442",
|
"HeaderTime": "\u0423\u0430\u049b\u044b\u0442",
|
||||||
"LabelAddedOnDate": "\u04ae\u0441\u0442\u0435\u043b\u0433\u0435\u043d\u0456 {0}",
|
"LabelAddedOnDate": "\u04ae\u0441\u0442\u0435\u043b\u0433\u0435\u043d\u0456 {0}",
|
||||||
"ButtonStart": "\u0411\u0430\u0441\u0442\u0430\u0443",
|
"ButtonStart": "\u0411\u0430\u0441\u0442\u0430\u0443",
|
||||||
@ -2311,8 +2311,11 @@
|
|||||||
"XmlTvPremiere": "\u04d8\u0434\u0435\u043f\u043a\u0456\u0434\u0435, Emby \u0430\u0440\u049b\u044b\u043b\u044b {0} \u0441\u0430\u0493\u0430\u0442 \u049b\u0430\u043c\u0442\u0438\u0442\u044b\u043d \u0442\u0435\u043b\u0435\u0433\u0438\u0434 \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456 \u0448\u0435\u0442\u0442\u0435\u043d \u04d9\u043a\u0435\u043b\u0456\u043d\u0435\u0434\u0456. \u0414\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u0448\u0435\u043a\u0441\u0456\u0437 \u0448\u0435\u0442\u0442\u0435\u043d \u04d9\u043a\u0435\u043b\u0443\u0456 \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby Premiere \u0436\u0430\u0437\u044b\u043b\u044b\u043c\u044b\u043d \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0434\u0456.",
|
"XmlTvPremiere": "\u04d8\u0434\u0435\u043f\u043a\u0456\u0434\u0435, Emby \u0430\u0440\u049b\u044b\u043b\u044b {0} \u0441\u0430\u0493\u0430\u0442 \u049b\u0430\u043c\u0442\u0438\u0442\u044b\u043d \u0442\u0435\u043b\u0435\u0433\u0438\u0434 \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456 \u0448\u0435\u0442\u0442\u0435\u043d \u04d9\u043a\u0435\u043b\u0456\u043d\u0435\u0434\u0456. \u0414\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u0448\u0435\u043a\u0441\u0456\u0437 \u0448\u0435\u0442\u0442\u0435\u043d \u04d9\u043a\u0435\u043b\u0443\u0456 \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby Premiere \u0436\u0430\u0437\u044b\u043b\u044b\u043c\u044b\u043d \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0434\u0456.",
|
||||||
"MoreFromValue": "{0} \u0430\u0440\u049b\u044b\u043b\u044b \u043a\u04e9\u0431\u0456\u0440\u0435\u043a",
|
"MoreFromValue": "{0} \u0430\u0440\u049b\u044b\u043b\u044b \u043a\u04e9\u0431\u0456\u0440\u0435\u043a",
|
||||||
"OptionSaveMetadataAsHiddenHelp": "\u041e\u0441\u044b \u04e9\u0437\u0433\u0435\u0440\u0442\u0443 \u0431\u043e\u043b\u0430\u0448\u0430\u049b\u0442\u0430 \u0441\u0430\u049b\u0442\u0430\u043b\u0430\u0442\u044b\u043d \u0436\u0430\u04a3\u0430 \u043c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u04af\u0448\u0456\u043d \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u043b\u0430\u0434\u044b. \u0411\u0430\u0440 \u043c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a \u0444\u0430\u0439\u043b\u0434\u0430\u0440 \u043e\u043b\u0430\u0440 Emby \u0441\u0435\u0440\u0432\u0435\u0440\u0456 \u0430\u0440\u049b\u044b\u043b\u044b \u0441\u0430\u049b\u0442\u0430\u043b\u0493\u0430\u043d\u0434\u0430 \u043a\u0435\u043b\u0435\u0441\u0456 \u0436\u043e\u043b\u044b \u0436\u0430\u04a3\u0430\u0440\u0442\u044b\u043b\u0430\u0434\u044b.",
|
"OptionSaveMetadataAsHiddenHelp": "\u041e\u0441\u044b \u04e9\u0437\u0433\u0435\u0440\u0442\u0443 \u0431\u043e\u043b\u0430\u0448\u0430\u049b\u0442\u0430 \u0441\u0430\u049b\u0442\u0430\u043b\u0430\u0442\u044b\u043d \u0436\u0430\u04a3\u0430 \u043c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u04af\u0448\u0456\u043d \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u043b\u0430\u0434\u044b. \u0411\u0430\u0440 \u043c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a \u0444\u0430\u0439\u043b\u0434\u0430\u0440 \u043e\u043b\u0430\u0440 Emby \u0441\u0435\u0440\u0432\u0435\u0440\u0456 \u0430\u0440\u049b\u044b\u043b\u044b \u0441\u0430\u049b\u0442\u0430\u043b\u0493\u0430\u043d\u0434\u0430 \u043a\u0435\u043b\u0435\u0441\u0456 \u0436\u043e\u043b\u044b \u0436\u0430\u04a3\u0430\u0440\u0442\u044b\u043b\u0430\u0434\u044b.",
|
||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "\u0424\u043e\u0442\u043e\u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u049b\u043e\u0441\u0443",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "\u0424\u043e\u0442\u043e\u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440 \u0431\u0430\u0441\u049b\u0430 \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b\u043c\u0435\u043d \u049b\u0430\u0442\u0430\u0440 \u0430\u043d\u044b\u049b\u0442\u0430\u043b\u0430\u0434\u044b \u0436\u04d9\u043d\u0435 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u043d\u0435\u0434\u0456.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "\u0414\u0435\u0440\u0431\u0435\u0441 \u0440\u0435\u0436\u0456\u043c\u0456\u043d\u0434\u0435 \u049b\u043e\u043b\u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0435\u0442\u0443",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "\u0416\u04af\u043a\u0442\u0435\u0443\u0434\u0456 \u0430\u043b\u0430\u0441\u0442\u0430\u0439\u043c\u044b\u0437 \u0431\u0430?",
|
||||||
|
"SyncToOtherDevices": "\u0411\u0430\u0441\u049b\u0430 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u043c\u0435\u043d \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443",
|
||||||
|
"ManageOfflineDownloads": "\u0414\u0435\u0440\u0431\u0435\u0441 \u0436\u04af\u043a\u0442\u0435\u0443\u043b\u0435\u0440\u0434\u0456 \u0431\u0430\u0441\u049b\u0430\u0440\u0443",
|
||||||
|
"MessageDownloadScheduled": "\u0416\u04af\u043a\u0442\u0435\u0443 \u0436\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0493\u0430\u043d."
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "\uc5c6\uc74c",
|
"OptionNone": "\uc5c6\uc74c",
|
||||||
"HeaderLiveTv": "TV \ubc29\uc1a1",
|
"HeaderLiveTv": "TV \ubc29\uc1a1",
|
||||||
"HeaderReports": "Reports",
|
"HeaderReports": "Reports",
|
||||||
"HeaderMetadataManager": "\uba54\ud0c0\ub370\uc774\ud130 \ub9e4\ub2c8\uc800",
|
|
||||||
"HeaderSettings": "\uc124\uc815",
|
"HeaderSettings": "\uc124\uc815",
|
||||||
"OptionDefaultSort": "\uae30\ubcf8",
|
"OptionDefaultSort": "\uae30\ubcf8",
|
||||||
"OptionCommunityMostWatchedSort": "Most Watched",
|
"OptionCommunityMostWatchedSort": "Most Watched",
|
||||||
@ -1584,6 +1583,7 @@
|
|||||||
"HeaderWelcomeBack": "Welcome back!",
|
"HeaderWelcomeBack": "Welcome back!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "\uc0c8\ub85c\uc6b4 \ub0b4\uc6a9\uc744 \ub458\ub7ec \ubcf4\uc138\uc694",
|
"ButtonTakeTheTourToSeeWhatsNew": "\uc0c8\ub85c\uc6b4 \ub0b4\uc6a9\uc744 \ub458\ub7ec \ubcf4\uc138\uc694",
|
||||||
"MessageNoSyncJobsFound": "\ub3d9\uae30\ud654 \uc791\uc5c5\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. \uc6f9 \uc778\ud130\ud398\uc774\uc2a4\uc5d0 \uc788\ub294 \ub3d9\uae30\ud654 \ubc84\ud2bc\uc744 \uc0ac\uc6a9\ud558\uc5ec \ub3d9\uae30\ud654 \uc791\uc5c5\uc744 \uc0dd\uc131\ud558\uc138\uc694.",
|
"MessageNoSyncJobsFound": "\ub3d9\uae30\ud654 \uc791\uc5c5\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. \uc6f9 \uc778\ud130\ud398\uc774\uc2a4\uc5d0 \uc788\ub294 \ub3d9\uae30\ud654 \ubc84\ud2bc\uc744 \uc0ac\uc6a9\ud558\uc5ec \ub3d9\uae30\ud654 \uc791\uc5c5\uc744 \uc0dd\uc131\ud558\uc138\uc694.",
|
||||||
|
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||||
"HeaderSelectDevices": "\uc7a5\uce58 \uc120\ud0dd",
|
"HeaderSelectDevices": "\uc7a5\uce58 \uc120\ud0dd",
|
||||||
"ButtonCancelItem": "\ud56d\ubaa9 \ucde8\uc18c",
|
"ButtonCancelItem": "\ud56d\ubaa9 \ucde8\uc18c",
|
||||||
"ButtonQueueForRetry": "Queue for retry",
|
"ButtonQueueForRetry": "Queue for retry",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
||||||
"ButtonDashboard": "\ub300\uc2dc\ubcf4\ub4dc",
|
"ButtonDashboard": "\ub300\uc2dc\ubcf4\ub4dc",
|
||||||
"ButtonReports": "Reports",
|
"ButtonReports": "Reports",
|
||||||
"ButtonMetadataManager": "\uba54\ud0c0\ub370\uc774\ud130 \uad00\ub9ac",
|
"MetadataManager": "Metadata Manager",
|
||||||
"HeaderTime": "\uc2dc\uac01",
|
"HeaderTime": "\uc2dc\uac01",
|
||||||
"LabelAddedOnDate": "Added {0}",
|
"LabelAddedOnDate": "Added {0}",
|
||||||
"ButtonStart": "\uc2dc\uc791",
|
"ButtonStart": "\uc2dc\uc791",
|
||||||
@ -2314,5 +2314,8 @@
|
|||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Enable photos",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Make available offline",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "Remove download?",
|
||||||
|
"SyncToOtherDevices": "Sync to other devices",
|
||||||
|
"ManageOfflineDownloads": "Manage offline downloads",
|
||||||
|
"MessageDownloadScheduled": "Download scheduled"
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "None",
|
"OptionNone": "None",
|
||||||
"HeaderLiveTv": "Live TV",
|
"HeaderLiveTv": "Live TV",
|
||||||
"HeaderReports": "Reports",
|
"HeaderReports": "Reports",
|
||||||
"HeaderMetadataManager": "Metadata Manager",
|
|
||||||
"HeaderSettings": "Settings",
|
"HeaderSettings": "Settings",
|
||||||
"OptionDefaultSort": "Default",
|
"OptionDefaultSort": "Default",
|
||||||
"OptionCommunityMostWatchedSort": "Most Watched",
|
"OptionCommunityMostWatchedSort": "Most Watched",
|
||||||
@ -1583,7 +1582,8 @@
|
|||||||
"ButtonTakeTheTour": "Take the tour",
|
"ButtonTakeTheTour": "Take the tour",
|
||||||
"HeaderWelcomeBack": "Welcome back!",
|
"HeaderWelcomeBack": "Welcome back!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.",
|
||||||
|
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||||
"HeaderSelectDevices": "Select Devices",
|
"HeaderSelectDevices": "Select Devices",
|
||||||
"ButtonCancelItem": "Cancel item",
|
"ButtonCancelItem": "Cancel item",
|
||||||
"ButtonQueueForRetry": "Queue for retry",
|
"ButtonQueueForRetry": "Queue for retry",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
||||||
"ButtonDashboard": "Dashboard",
|
"ButtonDashboard": "Dashboard",
|
||||||
"ButtonReports": "Reports",
|
"ButtonReports": "Reports",
|
||||||
"ButtonMetadataManager": "Metadata Manager",
|
"MetadataManager": "Metadata Manager",
|
||||||
"HeaderTime": "Time",
|
"HeaderTime": "Time",
|
||||||
"LabelAddedOnDate": "Added {0}",
|
"LabelAddedOnDate": "Added {0}",
|
||||||
"ButtonStart": "Start",
|
"ButtonStart": "Start",
|
||||||
@ -2314,5 +2314,8 @@
|
|||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Enable photos",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Make available offline",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "Remove download?",
|
||||||
|
"SyncToOtherDevices": "Sync to other devices",
|
||||||
|
"ManageOfflineDownloads": "Manage offline downloads",
|
||||||
|
"MessageDownloadScheduled": "Download scheduled"
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "Ingen",
|
"OptionNone": "Ingen",
|
||||||
"HeaderLiveTv": "Live TV",
|
"HeaderLiveTv": "Live TV",
|
||||||
"HeaderReports": "Rapporter",
|
"HeaderReports": "Rapporter",
|
||||||
"HeaderMetadataManager": "Metadata Behandler",
|
|
||||||
"HeaderSettings": "Innstillinger",
|
"HeaderSettings": "Innstillinger",
|
||||||
"OptionDefaultSort": "Standard",
|
"OptionDefaultSort": "Standard",
|
||||||
"OptionCommunityMostWatchedSort": "Mest Sett",
|
"OptionCommunityMostWatchedSort": "Mest Sett",
|
||||||
@ -1584,6 +1583,7 @@
|
|||||||
"HeaderWelcomeBack": "Velkommen tilbake!",
|
"HeaderWelcomeBack": "Velkommen tilbake!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Ta en titt p\u00e5 hva som er nytt",
|
"ButtonTakeTheTourToSeeWhatsNew": "Ta en titt p\u00e5 hva som er nytt",
|
||||||
"MessageNoSyncJobsFound": "Ingen synkroniseringsjobber funnet. Opprett en synkroniseringsjobb ved hjelp av Synkroniseringsknappene i biblioteket",
|
"MessageNoSyncJobsFound": "Ingen synkroniseringsjobber funnet. Opprett en synkroniseringsjobb ved hjelp av Synkroniseringsknappene i biblioteket",
|
||||||
|
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||||
"HeaderSelectDevices": "Velg enheter",
|
"HeaderSelectDevices": "Velg enheter",
|
||||||
"ButtonCancelItem": "Avbryt element",
|
"ButtonCancelItem": "Avbryt element",
|
||||||
"ButtonQueueForRetry": "K\u00f8 for \u00e5 pr\u00f8ve igjen",
|
"ButtonQueueForRetry": "K\u00f8 for \u00e5 pr\u00f8ve igjen",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "Vennligst s\u00f8rg for at det minst er \u00e9n \u00e5pen tuner tilgjengelig.",
|
"MessageEnsureOpenTuner": "Vennligst s\u00f8rg for at det minst er \u00e9n \u00e5pen tuner tilgjengelig.",
|
||||||
"ButtonDashboard": "Dashbord",
|
"ButtonDashboard": "Dashbord",
|
||||||
"ButtonReports": "Rapporter",
|
"ButtonReports": "Rapporter",
|
||||||
"ButtonMetadataManager": "Metadata Behandler",
|
"MetadataManager": "Metadata Manager",
|
||||||
"HeaderTime": "Tid",
|
"HeaderTime": "Tid",
|
||||||
"LabelAddedOnDate": "Lagt til {0}",
|
"LabelAddedOnDate": "Lagt til {0}",
|
||||||
"ButtonStart": "Start",
|
"ButtonStart": "Start",
|
||||||
@ -2314,5 +2314,8 @@
|
|||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Enable photos",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Make available offline",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "Remove download?",
|
||||||
|
"SyncToOtherDevices": "Sync to other devices",
|
||||||
|
"ManageOfflineDownloads": "Manage offline downloads",
|
||||||
|
"MessageDownloadScheduled": "Download scheduled"
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "Geen",
|
"OptionNone": "Geen",
|
||||||
"HeaderLiveTv": "Live TV",
|
"HeaderLiveTv": "Live TV",
|
||||||
"HeaderReports": "Rapporten",
|
"HeaderReports": "Rapporten",
|
||||||
"HeaderMetadataManager": "Metadata Manager",
|
|
||||||
"HeaderSettings": "Instellingen",
|
"HeaderSettings": "Instellingen",
|
||||||
"OptionDefaultSort": "Standaard",
|
"OptionDefaultSort": "Standaard",
|
||||||
"OptionCommunityMostWatchedSort": "Meest bekeken",
|
"OptionCommunityMostWatchedSort": "Meest bekeken",
|
||||||
@ -1584,6 +1583,7 @@
|
|||||||
"HeaderWelcomeBack": "Welkom terug!",
|
"HeaderWelcomeBack": "Welkom terug!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Volg de tour om te zien wat nieuw is",
|
"ButtonTakeTheTourToSeeWhatsNew": "Volg de tour om te zien wat nieuw is",
|
||||||
"MessageNoSyncJobsFound": "Geen sync opdrachten gevonden. Maak sync opdrachten via de Synchronisatie knoppen in de web interface.",
|
"MessageNoSyncJobsFound": "Geen sync opdrachten gevonden. Maak sync opdrachten via de Synchronisatie knoppen in de web interface.",
|
||||||
|
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||||
"HeaderSelectDevices": "Selecteer Apparaten",
|
"HeaderSelectDevices": "Selecteer Apparaten",
|
||||||
"ButtonCancelItem": "Annuleren item",
|
"ButtonCancelItem": "Annuleren item",
|
||||||
"ButtonQueueForRetry": "Wachtrij voor opnieuw proberen",
|
"ButtonQueueForRetry": "Wachtrij voor opnieuw proberen",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "Controleer of er een vrije tuner beschikbaar is.",
|
"MessageEnsureOpenTuner": "Controleer of er een vrije tuner beschikbaar is.",
|
||||||
"ButtonDashboard": "Dashboard",
|
"ButtonDashboard": "Dashboard",
|
||||||
"ButtonReports": "Rapporten",
|
"ButtonReports": "Rapporten",
|
||||||
"ButtonMetadataManager": "Metadata Manager",
|
"MetadataManager": "Metadata Manager",
|
||||||
"HeaderTime": "Tijd",
|
"HeaderTime": "Tijd",
|
||||||
"LabelAddedOnDate": "Toegevoegd {0}",
|
"LabelAddedOnDate": "Toegevoegd {0}",
|
||||||
"ButtonStart": "Start",
|
"ButtonStart": "Start",
|
||||||
@ -2314,5 +2314,8 @@
|
|||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Enable photos",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Make available offline",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "Remove download?",
|
||||||
|
"SyncToOtherDevices": "Sync to other devices",
|
||||||
|
"ManageOfflineDownloads": "Manage offline downloads",
|
||||||
|
"MessageDownloadScheduled": "Download scheduled"
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "\u017baden",
|
"OptionNone": "\u017baden",
|
||||||
"HeaderLiveTv": "TV Na \u017bywo",
|
"HeaderLiveTv": "TV Na \u017bywo",
|
||||||
"HeaderReports": "Raporty",
|
"HeaderReports": "Raporty",
|
||||||
"HeaderMetadataManager": "Manager metadanych",
|
|
||||||
"HeaderSettings": "Ustawienia",
|
"HeaderSettings": "Ustawienia",
|
||||||
"OptionDefaultSort": "Domy\u015blny",
|
"OptionDefaultSort": "Domy\u015blny",
|
||||||
"OptionCommunityMostWatchedSort": "Najcz\u0119\u015bciej Ogl\u0105dane",
|
"OptionCommunityMostWatchedSort": "Najcz\u0119\u015bciej Ogl\u0105dane",
|
||||||
@ -1584,6 +1583,7 @@
|
|||||||
"HeaderWelcomeBack": "Witaj ponownie!",
|
"HeaderWelcomeBack": "Witaj ponownie!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Zobacz co nowego dla Ciebie przygotowali\u015bmy",
|
"ButtonTakeTheTourToSeeWhatsNew": "Zobacz co nowego dla Ciebie przygotowali\u015bmy",
|
||||||
"MessageNoSyncJobsFound": "Brak zada\u0144 synchronizacji. Stw\u00f3rz nowe u\u017cywaj\u0105c odno\u015bnik\u00f3w Sync w interfejsie webowym Emby.",
|
"MessageNoSyncJobsFound": "Brak zada\u0144 synchronizacji. Stw\u00f3rz nowe u\u017cywaj\u0105c odno\u015bnik\u00f3w Sync w interfejsie webowym Emby.",
|
||||||
|
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||||
"HeaderSelectDevices": "Wybierz urz\u0105dzenie",
|
"HeaderSelectDevices": "Wybierz urz\u0105dzenie",
|
||||||
"ButtonCancelItem": "Anuluj obiekt",
|
"ButtonCancelItem": "Anuluj obiekt",
|
||||||
"ButtonQueueForRetry": "Zapisz aby spr\u00f3bowa\u0107 p\u00f3\u017aniej",
|
"ButtonQueueForRetry": "Zapisz aby spr\u00f3bowa\u0107 p\u00f3\u017aniej",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "Prosz\u0119 upewnij si\u0119 \u017ce otwarty tuner jest dost\u0119pny.",
|
"MessageEnsureOpenTuner": "Prosz\u0119 upewnij si\u0119 \u017ce otwarty tuner jest dost\u0119pny.",
|
||||||
"ButtonDashboard": "Panel G\u0142\u00f3wny",
|
"ButtonDashboard": "Panel G\u0142\u00f3wny",
|
||||||
"ButtonReports": "Raporty",
|
"ButtonReports": "Raporty",
|
||||||
"ButtonMetadataManager": "Manager metadanych",
|
"MetadataManager": "Metadata Manager",
|
||||||
"HeaderTime": "Czas",
|
"HeaderTime": "Czas",
|
||||||
"LabelAddedOnDate": "Dodano {0}",
|
"LabelAddedOnDate": "Dodano {0}",
|
||||||
"ButtonStart": "Start",
|
"ButtonStart": "Start",
|
||||||
@ -2314,5 +2314,8 @@
|
|||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Enable photos",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Make available offline",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "Remove download?",
|
||||||
|
"SyncToOtherDevices": "Sync to other devices",
|
||||||
|
"ManageOfflineDownloads": "Manage offline downloads",
|
||||||
|
"MessageDownloadScheduled": "Download scheduled"
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "Nenhum",
|
"OptionNone": "Nenhum",
|
||||||
"HeaderLiveTv": "TV ao Vivo",
|
"HeaderLiveTv": "TV ao Vivo",
|
||||||
"HeaderReports": "Relat\u00f3rios",
|
"HeaderReports": "Relat\u00f3rios",
|
||||||
"HeaderMetadataManager": "Gerenciador de Metadados",
|
|
||||||
"HeaderSettings": "Ajustes",
|
"HeaderSettings": "Ajustes",
|
||||||
"OptionDefaultSort": "Padr\u00e3o",
|
"OptionDefaultSort": "Padr\u00e3o",
|
||||||
"OptionCommunityMostWatchedSort": "Mais Assistidos",
|
"OptionCommunityMostWatchedSort": "Mais Assistidos",
|
||||||
@ -1584,6 +1583,7 @@
|
|||||||
"HeaderWelcomeBack": "Bem-vindo novamente!",
|
"HeaderWelcomeBack": "Bem-vindo novamente!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Fa\u00e7a o tour para ver as novidades",
|
"ButtonTakeTheTourToSeeWhatsNew": "Fa\u00e7a o tour para ver as novidades",
|
||||||
"MessageNoSyncJobsFound": "Nenhuma tarefa de sincroniza\u00e7\u00e3o encontrada. Crie uma tarefa de sincroniza\u00e7\u00e3o usando os bot\u00f5es Sincroniza\u00e7\u00e3o encontrados na interface web.",
|
"MessageNoSyncJobsFound": "Nenhuma tarefa de sincroniza\u00e7\u00e3o encontrada. Crie uma tarefa de sincroniza\u00e7\u00e3o usando os bot\u00f5es Sincroniza\u00e7\u00e3o encontrados na interface web.",
|
||||||
|
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||||
"HeaderSelectDevices": "Selecionar Dispositivos",
|
"HeaderSelectDevices": "Selecionar Dispositivos",
|
||||||
"ButtonCancelItem": "Cancelar item",
|
"ButtonCancelItem": "Cancelar item",
|
||||||
"ButtonQueueForRetry": "Enfileirar para tentar novamente",
|
"ButtonQueueForRetry": "Enfileirar para tentar novamente",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "Por favor, cetifique-se que existe um sintonizador aberto.",
|
"MessageEnsureOpenTuner": "Por favor, cetifique-se que existe um sintonizador aberto.",
|
||||||
"ButtonDashboard": "Painel",
|
"ButtonDashboard": "Painel",
|
||||||
"ButtonReports": "Relat\u00f3rios",
|
"ButtonReports": "Relat\u00f3rios",
|
||||||
"ButtonMetadataManager": "Gerenciador de Metadados",
|
"MetadataManager": "Metadata Manager",
|
||||||
"HeaderTime": "Tempo",
|
"HeaderTime": "Tempo",
|
||||||
"LabelAddedOnDate": "Adicionado {0}",
|
"LabelAddedOnDate": "Adicionado {0}",
|
||||||
"ButtonStart": "Iniciar",
|
"ButtonStart": "Iniciar",
|
||||||
@ -2314,5 +2314,8 @@
|
|||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Enable photos",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Make available offline",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "Remove download?",
|
||||||
|
"SyncToOtherDevices": "Sync to other devices",
|
||||||
|
"ManageOfflineDownloads": "Manage offline downloads",
|
||||||
|
"MessageDownloadScheduled": "Download scheduled"
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "Nenhum",
|
"OptionNone": "Nenhum",
|
||||||
"HeaderLiveTv": "TV ao Vivo",
|
"HeaderLiveTv": "TV ao Vivo",
|
||||||
"HeaderReports": "Relat\u00f3rios",
|
"HeaderReports": "Relat\u00f3rios",
|
||||||
"HeaderMetadataManager": "Gestor de Metadados",
|
|
||||||
"HeaderSettings": "Ajustes",
|
"HeaderSettings": "Ajustes",
|
||||||
"OptionDefaultSort": "Padr\u00e3o",
|
"OptionDefaultSort": "Padr\u00e3o",
|
||||||
"OptionCommunityMostWatchedSort": "Mais Assistidos",
|
"OptionCommunityMostWatchedSort": "Mais Assistidos",
|
||||||
@ -1584,6 +1583,7 @@
|
|||||||
"HeaderWelcomeBack": "Bem-vindo!",
|
"HeaderWelcomeBack": "Bem-vindo!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Fa\u00e7a o tour para ver as novidades",
|
"ButtonTakeTheTourToSeeWhatsNew": "Fa\u00e7a o tour para ver as novidades",
|
||||||
"MessageNoSyncJobsFound": "Nenhuma tarefa de sincroniza\u00e7\u00e3o encontrada. Crie uma tarefa de sincroniza\u00e7\u00e3o usando os bot\u00f5es Sincroniza\u00e7\u00e3o encontrados na interface web.",
|
"MessageNoSyncJobsFound": "Nenhuma tarefa de sincroniza\u00e7\u00e3o encontrada. Crie uma tarefa de sincroniza\u00e7\u00e3o usando os bot\u00f5es Sincroniza\u00e7\u00e3o encontrados na interface web.",
|
||||||
|
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||||
"HeaderSelectDevices": "Selecionar Dispositivos",
|
"HeaderSelectDevices": "Selecionar Dispositivos",
|
||||||
"ButtonCancelItem": "Cancelar item",
|
"ButtonCancelItem": "Cancelar item",
|
||||||
"ButtonQueueForRetry": "Listar para tentar novamente",
|
"ButtonQueueForRetry": "Listar para tentar novamente",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "Por favor, cetifique-se que existe um sintonizador aberto.",
|
"MessageEnsureOpenTuner": "Por favor, cetifique-se que existe um sintonizador aberto.",
|
||||||
"ButtonDashboard": "Painel Principal",
|
"ButtonDashboard": "Painel Principal",
|
||||||
"ButtonReports": "Relat\u00f3rios",
|
"ButtonReports": "Relat\u00f3rios",
|
||||||
"ButtonMetadataManager": "Gestor de Metadados",
|
"MetadataManager": "Metadata Manager",
|
||||||
"HeaderTime": "Tempo",
|
"HeaderTime": "Tempo",
|
||||||
"LabelAddedOnDate": "Adicionado {0}",
|
"LabelAddedOnDate": "Adicionado {0}",
|
||||||
"ButtonStart": "Iniciar",
|
"ButtonStart": "Iniciar",
|
||||||
@ -2314,5 +2314,8 @@
|
|||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Enable photos",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Make available offline",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "Remove download?",
|
||||||
|
"SyncToOtherDevices": "Sync to other devices",
|
||||||
|
"ManageOfflineDownloads": "Manage offline downloads",
|
||||||
|
"MessageDownloadScheduled": "Download scheduled"
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "None",
|
"OptionNone": "None",
|
||||||
"HeaderLiveTv": "Live TV",
|
"HeaderLiveTv": "Live TV",
|
||||||
"HeaderReports": "Reports",
|
"HeaderReports": "Reports",
|
||||||
"HeaderMetadataManager": "Metadata Manager",
|
|
||||||
"HeaderSettings": "Settings",
|
"HeaderSettings": "Settings",
|
||||||
"OptionDefaultSort": "Default",
|
"OptionDefaultSort": "Default",
|
||||||
"OptionCommunityMostWatchedSort": "Most Watched",
|
"OptionCommunityMostWatchedSort": "Most Watched",
|
||||||
@ -1583,7 +1582,8 @@
|
|||||||
"ButtonTakeTheTour": "Fa turul",
|
"ButtonTakeTheTour": "Fa turul",
|
||||||
"HeaderWelcomeBack": "Welcome back!",
|
"HeaderWelcomeBack": "Welcome back!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.",
|
||||||
|
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||||
"HeaderSelectDevices": "Select Devices",
|
"HeaderSelectDevices": "Select Devices",
|
||||||
"ButtonCancelItem": "Cancel item",
|
"ButtonCancelItem": "Cancel item",
|
||||||
"ButtonQueueForRetry": "Queue for retry",
|
"ButtonQueueForRetry": "Queue for retry",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
||||||
"ButtonDashboard": "Dashboard",
|
"ButtonDashboard": "Dashboard",
|
||||||
"ButtonReports": "Reports",
|
"ButtonReports": "Reports",
|
||||||
"ButtonMetadataManager": "Metadata Manager",
|
"MetadataManager": "Metadata Manager",
|
||||||
"HeaderTime": "Time",
|
"HeaderTime": "Time",
|
||||||
"LabelAddedOnDate": "Added {0}",
|
"LabelAddedOnDate": "Added {0}",
|
||||||
"ButtonStart": "Start",
|
"ButtonStart": "Start",
|
||||||
@ -2314,5 +2314,8 @@
|
|||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Enable photos",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Make available offline",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "Remove download?",
|
||||||
|
"SyncToOtherDevices": "Sync to other devices",
|
||||||
|
"ManageOfflineDownloads": "Manage offline downloads",
|
||||||
|
"MessageDownloadScheduled": "Download scheduled"
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "\u041d\u0438\u0447\u0435\u0433\u043e",
|
"OptionNone": "\u041d\u0438\u0447\u0435\u0433\u043e",
|
||||||
"HeaderLiveTv": "\u0422\u0412-\u044d\u0444\u0438\u0440",
|
"HeaderLiveTv": "\u0422\u0412-\u044d\u0444\u0438\u0440",
|
||||||
"HeaderReports": "\u041e\u0442\u0447\u0451\u0442\u044b",
|
"HeaderReports": "\u041e\u0442\u0447\u0451\u0442\u044b",
|
||||||
"HeaderMetadataManager": "\u0414\u0438\u0441\u043f\u0435\u0442\u0447\u0435\u0440 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445",
|
|
||||||
"HeaderSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b",
|
"HeaderSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b",
|
||||||
"OptionDefaultSort": "\u0423\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u0435",
|
"OptionDefaultSort": "\u0423\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u0435",
|
||||||
"OptionCommunityMostWatchedSort": "\u0427\u0430\u0449\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u0435\u043c\u044b\u0435",
|
"OptionCommunityMostWatchedSort": "\u0427\u0430\u0449\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u0435\u043c\u044b\u0435",
|
||||||
@ -1583,7 +1582,8 @@
|
|||||||
"ButtonTakeTheTour": "\u041e\u0437\u043d\u0430\u043a\u043e\u043c\u0438\u0442\u044c\u0441\u044f",
|
"ButtonTakeTheTour": "\u041e\u0437\u043d\u0430\u043a\u043e\u043c\u0438\u0442\u044c\u0441\u044f",
|
||||||
"HeaderWelcomeBack": "\u0417\u0430\u0445\u043e\u0434\u0438\u0442\u0435 \u0435\u0449\u0451!",
|
"HeaderWelcomeBack": "\u0417\u0430\u0445\u043e\u0434\u0438\u0442\u0435 \u0435\u0449\u0451!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "\u041e\u0437\u043d\u0430\u043a\u043e\u043c\u0438\u0442\u044c\u0441\u044f \u0441 \u043d\u043e\u0432\u0430\u0446\u0438\u044f\u043c\u0438",
|
"ButtonTakeTheTourToSeeWhatsNew": "\u041e\u0437\u043d\u0430\u043a\u043e\u043c\u0438\u0442\u044c\u0441\u044f \u0441 \u043d\u043e\u0432\u0430\u0446\u0438\u044f\u043c\u0438",
|
||||||
"MessageNoSyncJobsFound": "\u0417\u0430\u0434\u0430\u043d\u0438\u0439 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e. \u0421\u043e\u0437\u0434\u0430\u0439\u0442\u0435 \u0437\u0430\u0434\u0430\u043d\u0438\u0435 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043a\u043d\u043e\u043f\u043e\u043a \u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c, \u043d\u0430\u0445\u043e\u0434\u044f\u0449\u0438\u0445\u0441\u044f \u043f\u043e \u0432\u0441\u0435\u043c\u0443 \u0432\u0435\u0431-\u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0443.",
|
"MessageNoSyncJobsFound": "\u0417\u0430\u0434\u0430\u043d\u0438\u0439 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e. \u0421\u043e\u0437\u0434\u0430\u0439\u0442\u0435 \u0437\u0430\u0434\u0430\u043d\u0438\u0435 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043a\u043d\u043e\u043f\u043e\u043a \u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c, \u043d\u0430\u0445\u043e\u0434\u044f\u0449\u0438\u0445\u0441\u044f \u043f\u043e \u0432\u0441\u0435\u043c\u0443 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044e.",
|
||||||
|
"MessageDownloadsFound": "\u0410\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u044b\u0445 \u0437\u0430\u0433\u0440\u0443\u0437\u043e\u043a \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e. \u0421\u0434\u0435\u043b\u0430\u0439\u0442\u0435 \u0432\u0430\u0448\u0438 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u043c\u0438 \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u043e, \u043d\u0430\u0436\u0430\u0432 \u043d\u0430 \u0421\u0434\u0435\u043b\u0430\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u043c\u0438 \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u043e \u043f\u043e \u0432\u0441\u0435\u043c\u0443 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044e.",
|
||||||
"HeaderSelectDevices": "\u0412\u044b\u0431\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430",
|
"HeaderSelectDevices": "\u0412\u044b\u0431\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430",
|
||||||
"ButtonCancelItem": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u044d\u043b\u0435\u043c\u0435\u043d\u0442",
|
"ButtonCancelItem": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u044d\u043b\u0435\u043c\u0435\u043d\u0442",
|
||||||
"ButtonQueueForRetry": "\u0412 \u043e\u0447\u0435\u0440\u0435\u0434\u044c \u0434\u043b\u044f \u043f\u043e\u0432\u0442\u043e\u0440\u0430",
|
"ButtonQueueForRetry": "\u0412 \u043e\u0447\u0435\u0440\u0435\u0434\u044c \u0434\u043b\u044f \u043f\u043e\u0432\u0442\u043e\u0440\u0430",
|
||||||
@ -1629,7 +1629,7 @@
|
|||||||
"HeaderConfirmRecordingCancellation": "\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435 \u043e\u0442\u043c\u0435\u043d\u044b \u0437\u0430\u043f\u0438\u0441\u0438",
|
"HeaderConfirmRecordingCancellation": "\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435 \u043e\u0442\u043c\u0435\u043d\u044b \u0437\u0430\u043f\u0438\u0441\u0438",
|
||||||
"MessageConfirmRecordingCancellation": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c?",
|
"MessageConfirmRecordingCancellation": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c?",
|
||||||
"MessageRecordingCancelled": "\u0417\u0430\u043f\u0438\u0441\u044c \u043e\u0442\u043c\u0435\u043d\u0435\u043d\u0430.",
|
"MessageRecordingCancelled": "\u0417\u0430\u043f\u0438\u0441\u044c \u043e\u0442\u043c\u0435\u043d\u0435\u043d\u0430.",
|
||||||
"MessageRecordingScheduled": "\u0437\u0430\u043f\u0438\u0441\u044c \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0430.",
|
"MessageRecordingScheduled": "\u0417\u0430\u043f\u0438\u0441\u044c \u043f\u043e \u0440\u0430\u0441\u043f\u0438\u0441\u0430\u043d\u0438\u044e.",
|
||||||
"HeaderConfirmSeriesCancellation": "\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435 \u043e\u0442\u043c\u0435\u043d\u044b \u0441\u0435\u0440\u0438\u0438",
|
"HeaderConfirmSeriesCancellation": "\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435 \u043e\u0442\u043c\u0435\u043d\u044b \u0441\u0435\u0440\u0438\u0438",
|
||||||
"MessageConfirmSeriesCancellation": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0439 \u0441\u0435\u0440\u0438\u0430\u043b?",
|
"MessageConfirmSeriesCancellation": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0439 \u0441\u0435\u0440\u0438\u0430\u043b?",
|
||||||
"MessageSeriesCancelled": "\u0421\u0435\u0440\u0438\u0430\u043b \u043e\u0442\u043c\u0435\u043d\u0451\u043d.",
|
"MessageSeriesCancelled": "\u0421\u0435\u0440\u0438\u0430\u043b \u043e\u0442\u043c\u0435\u043d\u0451\u043d.",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "\u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0437\u0434\u0435\u0441\u044c \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u0432 \u043d\u0430\u043b\u0438\u0447\u0438\u0438 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u0439 \u0442\u044e\u043d\u0435\u0440.",
|
"MessageEnsureOpenTuner": "\u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0437\u0434\u0435\u0441\u044c \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u0432 \u043d\u0430\u043b\u0438\u0447\u0438\u0438 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u0439 \u0442\u044e\u043d\u0435\u0440.",
|
||||||
"ButtonDashboard": "\u0418\u043d\u0444\u043e\u043f\u0430\u043d\u0435\u043b\u044c...",
|
"ButtonDashboard": "\u0418\u043d\u0444\u043e\u043f\u0430\u043d\u0435\u043b\u044c...",
|
||||||
"ButtonReports": "\u041e\u0442\u0447\u0451\u0442\u044b...",
|
"ButtonReports": "\u041e\u0442\u0447\u0451\u0442\u044b...",
|
||||||
"ButtonMetadataManager": "\u0414\u0438\u0441\u043f. \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445...",
|
"MetadataManager": "\u0414\u0438\u0441\u043f\u0435\u0442\u0447\u0435\u0440 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445",
|
||||||
"HeaderTime": "\u0412\u0440\u0435\u043c\u044f",
|
"HeaderTime": "\u0412\u0440\u0435\u043c\u044f",
|
||||||
"LabelAddedOnDate": "\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u043e {0}",
|
"LabelAddedOnDate": "\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u043e {0}",
|
||||||
"ButtonStart": "\u0417\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c",
|
"ButtonStart": "\u0417\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c",
|
||||||
@ -2311,8 +2311,11 @@
|
|||||||
"XmlTvPremiere": "\u041f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e, \u0432 Emby \u0438\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u0443\u044e\u0442\u0441\u044f {0} \u0447\u0430\u0441(\u0430\/\u043e\u0432) \u0434\u0430\u043d\u043d\u044b\u0445 \u0442\u0435\u043b\u0435\u0433\u0438\u0434\u0430. \u0414\u043b\u044f \u043d\u0435\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u043d\u043e\u0433\u043e \u0438\u043c\u043f\u043e\u0440\u0442\u0430 \u0434\u0430\u043d\u043d\u044b\u0445 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u0430\u044f \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u0430 Emby Premiere.",
|
"XmlTvPremiere": "\u041f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e, \u0432 Emby \u0438\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u0443\u044e\u0442\u0441\u044f {0} \u0447\u0430\u0441(\u0430\/\u043e\u0432) \u0434\u0430\u043d\u043d\u044b\u0445 \u0442\u0435\u043b\u0435\u0433\u0438\u0434\u0430. \u0414\u043b\u044f \u043d\u0435\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u043d\u043e\u0433\u043e \u0438\u043c\u043f\u043e\u0440\u0442\u0430 \u0434\u0430\u043d\u043d\u044b\u0445 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u0430\u044f \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u0430 Emby Premiere.",
|
||||||
"MoreFromValue": "\u0415\u0449\u0451 \u0441 {0}",
|
"MoreFromValue": "\u0415\u0449\u0451 \u0441 {0}",
|
||||||
"OptionSaveMetadataAsHiddenHelp": "\u042d\u0442\u043e \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u0431\u0443\u0434\u0435\u0442 \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u043e \u043a \u043d\u043e\u0432\u044b\u043c \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u043c \u0441\u043e\u0445\u0440\u0430\u043d\u044f\u0435\u043c\u044b\u043c \u0432 \u0431\u0443\u0434\u0443\u0449\u0435\u043c. \u0421\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u0444\u0430\u0439\u043b\u044b \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0431\u0443\u0434\u0443\u0442 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u044b \u0432 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u0440\u0430\u0437, \u043a\u043e\u0433\u0434\u0430 \u043e\u043d\u0438 \u0431\u0443\u0434\u0443\u0442 \u0441\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c\u0441\u044f \u043d\u0430 Emby Server.",
|
"OptionSaveMetadataAsHiddenHelp": "\u042d\u0442\u043e \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u0431\u0443\u0434\u0435\u0442 \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u043e \u043a \u043d\u043e\u0432\u044b\u043c \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u043c \u0441\u043e\u0445\u0440\u0430\u043d\u044f\u0435\u043c\u044b\u043c \u0432 \u0431\u0443\u0434\u0443\u0449\u0435\u043c. \u0421\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u0444\u0430\u0439\u043b\u044b \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0431\u0443\u0434\u0443\u0442 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u044b \u0432 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u0440\u0430\u0437, \u043a\u043e\u0433\u0434\u0430 \u043e\u043d\u0438 \u0431\u0443\u0434\u0443\u0442 \u0441\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c\u0441\u044f \u043d\u0430 Emby Server.",
|
||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "\u0424\u043e\u0442\u043e \u0431\u0443\u0434\u0443\u0442 \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0438\u0432\u0430\u0442\u044c\u0441\u044f \u0438 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u0440\u044f\u0434\u043e\u043c \u0441 \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u043c\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043b\u0430\u043c\u0438.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "\u0421\u0434\u0435\u043b\u0430\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u043c\u0438 \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u043e",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "\u0418\u0437\u044a\u044f\u0442\u044c \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0443?",
|
||||||
|
"SyncToOtherDevices": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f \u0441 \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u043c\u0438",
|
||||||
|
"ManageOfflineDownloads": "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u044b\u043c\u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0430\u043c\u0438",
|
||||||
|
"MessageDownloadScheduled": "\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u043f\u043e \u0440\u0430\u0441\u043f\u0438\u0441\u0430\u043d\u0438\u044e"
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "None",
|
"OptionNone": "None",
|
||||||
"HeaderLiveTv": "Live TV",
|
"HeaderLiveTv": "Live TV",
|
||||||
"HeaderReports": "Reports",
|
"HeaderReports": "Reports",
|
||||||
"HeaderMetadataManager": "Metadata Manager",
|
|
||||||
"HeaderSettings": "Settings",
|
"HeaderSettings": "Settings",
|
||||||
"OptionDefaultSort": "Default",
|
"OptionDefaultSort": "Default",
|
||||||
"OptionCommunityMostWatchedSort": "Most Watched",
|
"OptionCommunityMostWatchedSort": "Most Watched",
|
||||||
@ -1583,7 +1582,8 @@
|
|||||||
"ButtonTakeTheTour": "Take the tour",
|
"ButtonTakeTheTour": "Take the tour",
|
||||||
"HeaderWelcomeBack": "Welcome back!",
|
"HeaderWelcomeBack": "Welcome back!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.",
|
||||||
|
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||||
"HeaderSelectDevices": "Select Devices",
|
"HeaderSelectDevices": "Select Devices",
|
||||||
"ButtonCancelItem": "Cancel item",
|
"ButtonCancelItem": "Cancel item",
|
||||||
"ButtonQueueForRetry": "Queue for retry",
|
"ButtonQueueForRetry": "Queue for retry",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
||||||
"ButtonDashboard": "Dashboard",
|
"ButtonDashboard": "Dashboard",
|
||||||
"ButtonReports": "Reports",
|
"ButtonReports": "Reports",
|
||||||
"ButtonMetadataManager": "Metadata Manager",
|
"MetadataManager": "Metadata Manager",
|
||||||
"HeaderTime": "Time",
|
"HeaderTime": "Time",
|
||||||
"LabelAddedOnDate": "Added {0}",
|
"LabelAddedOnDate": "Added {0}",
|
||||||
"ButtonStart": "Start",
|
"ButtonStart": "Start",
|
||||||
@ -2314,5 +2314,8 @@
|
|||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Enable photos",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Make available offline",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "Remove download?",
|
||||||
|
"SyncToOtherDevices": "Sync to other devices",
|
||||||
|
"ManageOfflineDownloads": "Manage offline downloads",
|
||||||
|
"MessageDownloadScheduled": "Download scheduled"
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "None",
|
"OptionNone": "None",
|
||||||
"HeaderLiveTv": "Live TV",
|
"HeaderLiveTv": "Live TV",
|
||||||
"HeaderReports": "Reports",
|
"HeaderReports": "Reports",
|
||||||
"HeaderMetadataManager": "Metadata Manager",
|
|
||||||
"HeaderSettings": "Nastavitve",
|
"HeaderSettings": "Nastavitve",
|
||||||
"OptionDefaultSort": "Default",
|
"OptionDefaultSort": "Default",
|
||||||
"OptionCommunityMostWatchedSort": "Most Watched",
|
"OptionCommunityMostWatchedSort": "Most Watched",
|
||||||
@ -1583,7 +1582,8 @@
|
|||||||
"ButtonTakeTheTour": "Take the tour",
|
"ButtonTakeTheTour": "Take the tour",
|
||||||
"HeaderWelcomeBack": "Welcome back!",
|
"HeaderWelcomeBack": "Welcome back!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.",
|
||||||
|
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||||
"HeaderSelectDevices": "Select Devices",
|
"HeaderSelectDevices": "Select Devices",
|
||||||
"ButtonCancelItem": "Cancel item",
|
"ButtonCancelItem": "Cancel item",
|
||||||
"ButtonQueueForRetry": "Queue for retry",
|
"ButtonQueueForRetry": "Queue for retry",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
||||||
"ButtonDashboard": "Dashboard",
|
"ButtonDashboard": "Dashboard",
|
||||||
"ButtonReports": "Reports",
|
"ButtonReports": "Reports",
|
||||||
"ButtonMetadataManager": "Metadata Manager",
|
"MetadataManager": "Metadata Manager",
|
||||||
"HeaderTime": "Time",
|
"HeaderTime": "Time",
|
||||||
"LabelAddedOnDate": "Added {0}",
|
"LabelAddedOnDate": "Added {0}",
|
||||||
"ButtonStart": "Start",
|
"ButtonStart": "Start",
|
||||||
@ -2314,5 +2314,8 @@
|
|||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Enable photos",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Make available offline",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "Remove download?",
|
||||||
|
"SyncToOtherDevices": "Sync to other devices",
|
||||||
|
"ManageOfflineDownloads": "Manage offline downloads",
|
||||||
|
"MessageDownloadScheduled": "Download scheduled"
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "Inga",
|
"OptionNone": "Inga",
|
||||||
"HeaderLiveTv": "Live-TV",
|
"HeaderLiveTv": "Live-TV",
|
||||||
"HeaderReports": "Rapporter",
|
"HeaderReports": "Rapporter",
|
||||||
"HeaderMetadataManager": "Metadatahanteraren",
|
|
||||||
"HeaderSettings": "Inst\u00e4llningar",
|
"HeaderSettings": "Inst\u00e4llningar",
|
||||||
"OptionDefaultSort": "F\u00f6rval",
|
"OptionDefaultSort": "F\u00f6rval",
|
||||||
"OptionCommunityMostWatchedSort": "Oftast visade",
|
"OptionCommunityMostWatchedSort": "Oftast visade",
|
||||||
@ -1584,6 +1583,7 @@
|
|||||||
"HeaderWelcomeBack": "V\u00e4lkommen tillbaka!",
|
"HeaderWelcomeBack": "V\u00e4lkommen tillbaka!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Ta en rundtur och se vad som \u00e4r nytt",
|
"ButtonTakeTheTourToSeeWhatsNew": "Ta en rundtur och se vad som \u00e4r nytt",
|
||||||
"MessageNoSyncJobsFound": "Inga synkroniseringsjobb hittades. Skapa synkroniseringsjobb med hj\u00e4lp av Synkronisera-knapparna som finns i hela gr\u00e4nssnittet.",
|
"MessageNoSyncJobsFound": "Inga synkroniseringsjobb hittades. Skapa synkroniseringsjobb med hj\u00e4lp av Synkronisera-knapparna som finns i hela gr\u00e4nssnittet.",
|
||||||
|
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||||
"HeaderSelectDevices": "V\u00e4lj Enheter",
|
"HeaderSelectDevices": "V\u00e4lj Enheter",
|
||||||
"ButtonCancelItem": "Avbryt objekt",
|
"ButtonCancelItem": "Avbryt objekt",
|
||||||
"ButtonQueueForRetry": "K\u00f6a f\u00f6r nytt f\u00f6rs\u00f6k",
|
"ButtonQueueForRetry": "K\u00f6a f\u00f6r nytt f\u00f6rs\u00f6k",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "V\u00e4nligen kontrollera att det finns en ledig TV-mottagare.",
|
"MessageEnsureOpenTuner": "V\u00e4nligen kontrollera att det finns en ledig TV-mottagare.",
|
||||||
"ButtonDashboard": "Kontrollpanel",
|
"ButtonDashboard": "Kontrollpanel",
|
||||||
"ButtonReports": "Rapporter",
|
"ButtonReports": "Rapporter",
|
||||||
"ButtonMetadataManager": "Metadatahanteraren",
|
"MetadataManager": "Metadata Manager",
|
||||||
"HeaderTime": "Tid",
|
"HeaderTime": "Tid",
|
||||||
"LabelAddedOnDate": "{0} tillagd",
|
"LabelAddedOnDate": "{0} tillagd",
|
||||||
"ButtonStart": "Start",
|
"ButtonStart": "Start",
|
||||||
@ -2314,5 +2314,8 @@
|
|||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Enable photos",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Make available offline",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "Remove download?",
|
||||||
|
"SyncToOtherDevices": "Sync to other devices",
|
||||||
|
"ManageOfflineDownloads": "Manage offline downloads",
|
||||||
|
"MessageDownloadScheduled": "Download scheduled"
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "None",
|
"OptionNone": "None",
|
||||||
"HeaderLiveTv": "Live TV",
|
"HeaderLiveTv": "Live TV",
|
||||||
"HeaderReports": "Reports",
|
"HeaderReports": "Reports",
|
||||||
"HeaderMetadataManager": "Metadata Manager",
|
|
||||||
"HeaderSettings": "Settings",
|
"HeaderSettings": "Settings",
|
||||||
"OptionDefaultSort": "Default",
|
"OptionDefaultSort": "Default",
|
||||||
"OptionCommunityMostWatchedSort": "Most Watched",
|
"OptionCommunityMostWatchedSort": "Most Watched",
|
||||||
@ -1583,7 +1582,8 @@
|
|||||||
"ButtonTakeTheTour": "Take the tour",
|
"ButtonTakeTheTour": "Take the tour",
|
||||||
"HeaderWelcomeBack": "Welcome back!",
|
"HeaderWelcomeBack": "Welcome back!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.",
|
||||||
|
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||||
"HeaderSelectDevices": "Select Devices",
|
"HeaderSelectDevices": "Select Devices",
|
||||||
"ButtonCancelItem": "Cancel item",
|
"ButtonCancelItem": "Cancel item",
|
||||||
"ButtonQueueForRetry": "Queue for retry",
|
"ButtonQueueForRetry": "Queue for retry",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
||||||
"ButtonDashboard": "Dashboard",
|
"ButtonDashboard": "Dashboard",
|
||||||
"ButtonReports": "Reports",
|
"ButtonReports": "Reports",
|
||||||
"ButtonMetadataManager": "Metadata Manager",
|
"MetadataManager": "Metadata Manager",
|
||||||
"HeaderTime": "Time",
|
"HeaderTime": "Time",
|
||||||
"LabelAddedOnDate": "Added {0}",
|
"LabelAddedOnDate": "Added {0}",
|
||||||
"ButtonStart": "Start",
|
"ButtonStart": "Start",
|
||||||
@ -2314,5 +2314,8 @@
|
|||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Enable photos",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Make available offline",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "Remove download?",
|
||||||
|
"SyncToOtherDevices": "Sync to other devices",
|
||||||
|
"ManageOfflineDownloads": "Manage offline downloads",
|
||||||
|
"MessageDownloadScheduled": "Download scheduled"
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "None",
|
"OptionNone": "None",
|
||||||
"HeaderLiveTv": "Live TV",
|
"HeaderLiveTv": "Live TV",
|
||||||
"HeaderReports": "Reports",
|
"HeaderReports": "Reports",
|
||||||
"HeaderMetadataManager": "Metadata Manager",
|
|
||||||
"HeaderSettings": "\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f",
|
"HeaderSettings": "\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f",
|
||||||
"OptionDefaultSort": "Default",
|
"OptionDefaultSort": "Default",
|
||||||
"OptionCommunityMostWatchedSort": "Most Watched",
|
"OptionCommunityMostWatchedSort": "Most Watched",
|
||||||
@ -1583,7 +1582,8 @@
|
|||||||
"ButtonTakeTheTour": "Take the tour",
|
"ButtonTakeTheTour": "Take the tour",
|
||||||
"HeaderWelcomeBack": "Welcome back!",
|
"HeaderWelcomeBack": "Welcome back!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.",
|
||||||
|
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||||
"HeaderSelectDevices": "Select Devices",
|
"HeaderSelectDevices": "Select Devices",
|
||||||
"ButtonCancelItem": "Cancel item",
|
"ButtonCancelItem": "Cancel item",
|
||||||
"ButtonQueueForRetry": "Queue for retry",
|
"ButtonQueueForRetry": "Queue for retry",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
||||||
"ButtonDashboard": "Dashboard",
|
"ButtonDashboard": "Dashboard",
|
||||||
"ButtonReports": "Reports",
|
"ButtonReports": "Reports",
|
||||||
"ButtonMetadataManager": "Metadata Manager",
|
"MetadataManager": "Metadata Manager",
|
||||||
"HeaderTime": "Time",
|
"HeaderTime": "Time",
|
||||||
"LabelAddedOnDate": "Added {0}",
|
"LabelAddedOnDate": "Added {0}",
|
||||||
"ButtonStart": "Start",
|
"ButtonStart": "Start",
|
||||||
@ -2314,5 +2314,8 @@
|
|||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Enable photos",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Make available offline",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "Remove download?",
|
||||||
|
"SyncToOtherDevices": "Sync to other devices",
|
||||||
|
"ManageOfflineDownloads": "Manage offline downloads",
|
||||||
|
"MessageDownloadScheduled": "Download scheduled"
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "None",
|
"OptionNone": "None",
|
||||||
"HeaderLiveTv": "Live TV",
|
"HeaderLiveTv": "Live TV",
|
||||||
"HeaderReports": "Reports",
|
"HeaderReports": "Reports",
|
||||||
"HeaderMetadataManager": "Metadata Manager",
|
|
||||||
"HeaderSettings": "Settings",
|
"HeaderSettings": "Settings",
|
||||||
"OptionDefaultSort": "Default",
|
"OptionDefaultSort": "Default",
|
||||||
"OptionCommunityMostWatchedSort": "Most Watched",
|
"OptionCommunityMostWatchedSort": "Most Watched",
|
||||||
@ -1583,7 +1582,8 @@
|
|||||||
"ButtonTakeTheTour": "Take the tour",
|
"ButtonTakeTheTour": "Take the tour",
|
||||||
"HeaderWelcomeBack": "Welcome back!",
|
"HeaderWelcomeBack": "Welcome back!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.",
|
||||||
|
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||||
"HeaderSelectDevices": "Select Devices",
|
"HeaderSelectDevices": "Select Devices",
|
||||||
"ButtonCancelItem": "Cancel item",
|
"ButtonCancelItem": "Cancel item",
|
||||||
"ButtonQueueForRetry": "Queue for retry",
|
"ButtonQueueForRetry": "Queue for retry",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
||||||
"ButtonDashboard": "Dashboard",
|
"ButtonDashboard": "Dashboard",
|
||||||
"ButtonReports": "Reports",
|
"ButtonReports": "Reports",
|
||||||
"ButtonMetadataManager": "Metadata Manager",
|
"MetadataManager": "Metadata Manager",
|
||||||
"HeaderTime": "Time",
|
"HeaderTime": "Time",
|
||||||
"LabelAddedOnDate": "Added {0}",
|
"LabelAddedOnDate": "Added {0}",
|
||||||
"ButtonStart": "Start",
|
"ButtonStart": "Start",
|
||||||
@ -2314,5 +2314,8 @@
|
|||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Enable photos",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Make available offline",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "Remove download?",
|
||||||
|
"SyncToOtherDevices": "Sync to other devices",
|
||||||
|
"ManageOfflineDownloads": "Manage offline downloads",
|
||||||
|
"MessageDownloadScheduled": "Download scheduled"
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "\u6ca1\u6709",
|
"OptionNone": "\u6ca1\u6709",
|
||||||
"HeaderLiveTv": "\u7535\u89c6\u76f4\u64ad",
|
"HeaderLiveTv": "\u7535\u89c6\u76f4\u64ad",
|
||||||
"HeaderReports": "\u62a5\u544a",
|
"HeaderReports": "\u62a5\u544a",
|
||||||
"HeaderMetadataManager": "\u5a92\u4f53\u8d44\u6599\u7ba1\u7406",
|
|
||||||
"HeaderSettings": "Settings",
|
"HeaderSettings": "Settings",
|
||||||
"OptionDefaultSort": "\u9ed8\u8ba4",
|
"OptionDefaultSort": "\u9ed8\u8ba4",
|
||||||
"OptionCommunityMostWatchedSort": "\u6700\u53d7\u77a9\u76ee",
|
"OptionCommunityMostWatchedSort": "\u6700\u53d7\u77a9\u76ee",
|
||||||
@ -1584,6 +1583,7 @@
|
|||||||
"HeaderWelcomeBack": "\u6b22\u8fce\u56de\u6765\uff01",
|
"HeaderWelcomeBack": "\u6b22\u8fce\u56de\u6765\uff01",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "\u8fdb\u884c\u53c2\u89c2\uff0c\u770b\u770b\u6709\u4ec0\u4e48\u65b0\u4e1c\u897f",
|
"ButtonTakeTheTourToSeeWhatsNew": "\u8fdb\u884c\u53c2\u89c2\uff0c\u770b\u770b\u6709\u4ec0\u4e48\u65b0\u4e1c\u897f",
|
||||||
"MessageNoSyncJobsFound": "\u6ca1\u6709\u53d1\u73b0\u540c\u6b65\u4f5c\u4e1a\u3002\u4f7f\u7528Web\u754c\u9762\u4e2d\u7684\u540c\u6b65\u6309\u94ae\u6765\u521b\u5efa\u540c\u6b65\u4f5c\u4e1a\u3002",
|
"MessageNoSyncJobsFound": "\u6ca1\u6709\u53d1\u73b0\u540c\u6b65\u4f5c\u4e1a\u3002\u4f7f\u7528Web\u754c\u9762\u4e2d\u7684\u540c\u6b65\u6309\u94ae\u6765\u521b\u5efa\u540c\u6b65\u4f5c\u4e1a\u3002",
|
||||||
|
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||||
"HeaderSelectDevices": "\u9009\u62e9\u8bbe\u5907",
|
"HeaderSelectDevices": "\u9009\u62e9\u8bbe\u5907",
|
||||||
"ButtonCancelItem": "\u53d6\u6d88\u9879\u76ee",
|
"ButtonCancelItem": "\u53d6\u6d88\u9879\u76ee",
|
||||||
"ButtonQueueForRetry": "\u91cd\u8bd5\u961f\u5217",
|
"ButtonQueueForRetry": "\u91cd\u8bd5\u961f\u5217",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "\u8bf7\u786e\u4fdd\u6709\u4e00\u4e2a\u6253\u5f00\u7684\u53ef\u7528\u8c03\u8c10\u5668",
|
"MessageEnsureOpenTuner": "\u8bf7\u786e\u4fdd\u6709\u4e00\u4e2a\u6253\u5f00\u7684\u53ef\u7528\u8c03\u8c10\u5668",
|
||||||
"ButtonDashboard": "\u63a7\u5236\u53f0",
|
"ButtonDashboard": "\u63a7\u5236\u53f0",
|
||||||
"ButtonReports": "\u62a5\u544a",
|
"ButtonReports": "\u62a5\u544a",
|
||||||
"ButtonMetadataManager": "\u5a92\u4f53\u8d44\u6599\u7ba1\u7406",
|
"MetadataManager": "Metadata Manager",
|
||||||
"HeaderTime": "\u65f6\u95f4",
|
"HeaderTime": "\u65f6\u95f4",
|
||||||
"LabelAddedOnDate": "\u6dfb\u52a0 {0}",
|
"LabelAddedOnDate": "\u6dfb\u52a0 {0}",
|
||||||
"ButtonStart": "\u5f00\u59cb",
|
"ButtonStart": "\u5f00\u59cb",
|
||||||
@ -2314,5 +2314,8 @@
|
|||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Enable photos",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Make available offline",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "Remove download?",
|
||||||
|
"SyncToOtherDevices": "Sync to other devices",
|
||||||
|
"ManageOfflineDownloads": "Manage offline downloads",
|
||||||
|
"MessageDownloadScheduled": "Download scheduled"
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "None",
|
"OptionNone": "None",
|
||||||
"HeaderLiveTv": "Live TV",
|
"HeaderLiveTv": "Live TV",
|
||||||
"HeaderReports": "Reports",
|
"HeaderReports": "Reports",
|
||||||
"HeaderMetadataManager": "Metadata Manager",
|
|
||||||
"HeaderSettings": "Settings",
|
"HeaderSettings": "Settings",
|
||||||
"OptionDefaultSort": "Default",
|
"OptionDefaultSort": "Default",
|
||||||
"OptionCommunityMostWatchedSort": "Most Watched",
|
"OptionCommunityMostWatchedSort": "Most Watched",
|
||||||
@ -1583,7 +1582,8 @@
|
|||||||
"ButtonTakeTheTour": "\u6559\u5b78",
|
"ButtonTakeTheTour": "\u6559\u5b78",
|
||||||
"HeaderWelcomeBack": "Welcome back!",
|
"HeaderWelcomeBack": "Welcome back!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.",
|
||||||
|
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||||
"HeaderSelectDevices": "Select Devices",
|
"HeaderSelectDevices": "Select Devices",
|
||||||
"ButtonCancelItem": "Cancel item",
|
"ButtonCancelItem": "Cancel item",
|
||||||
"ButtonQueueForRetry": "Queue for retry",
|
"ButtonQueueForRetry": "Queue for retry",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
||||||
"ButtonDashboard": "\u72c0\u614b",
|
"ButtonDashboard": "\u72c0\u614b",
|
||||||
"ButtonReports": "Reports",
|
"ButtonReports": "Reports",
|
||||||
"ButtonMetadataManager": "Metadata Manager",
|
"MetadataManager": "Metadata Manager",
|
||||||
"HeaderTime": "Time",
|
"HeaderTime": "Time",
|
||||||
"LabelAddedOnDate": "Added {0}",
|
"LabelAddedOnDate": "Added {0}",
|
||||||
"ButtonStart": "Start",
|
"ButtonStart": "Start",
|
||||||
@ -2314,5 +2314,8 @@
|
|||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Enable photos",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Make available offline",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "Remove download?",
|
||||||
|
"SyncToOtherDevices": "Sync to other devices",
|
||||||
|
"ManageOfflineDownloads": "Manage offline downloads",
|
||||||
|
"MessageDownloadScheduled": "Download scheduled"
|
||||||
}
|
}
|
@ -880,7 +880,6 @@
|
|||||||
"OptionNone": "None",
|
"OptionNone": "None",
|
||||||
"HeaderLiveTv": "\u96fb\u8996",
|
"HeaderLiveTv": "\u96fb\u8996",
|
||||||
"HeaderReports": "Reports",
|
"HeaderReports": "Reports",
|
||||||
"HeaderMetadataManager": "Metadata Manager",
|
|
||||||
"HeaderSettings": "Settings",
|
"HeaderSettings": "Settings",
|
||||||
"OptionDefaultSort": "Default",
|
"OptionDefaultSort": "Default",
|
||||||
"OptionCommunityMostWatchedSort": "Most Watched",
|
"OptionCommunityMostWatchedSort": "Most Watched",
|
||||||
@ -1583,7 +1582,8 @@
|
|||||||
"ButtonTakeTheTour": "Take the tour",
|
"ButtonTakeTheTour": "Take the tour",
|
||||||
"HeaderWelcomeBack": "Welcome back!",
|
"HeaderWelcomeBack": "Welcome back!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.",
|
||||||
|
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
||||||
"HeaderSelectDevices": "Select Devices",
|
"HeaderSelectDevices": "Select Devices",
|
||||||
"ButtonCancelItem": "Cancel item",
|
"ButtonCancelItem": "Cancel item",
|
||||||
"ButtonQueueForRetry": "Queue for retry",
|
"ButtonQueueForRetry": "Queue for retry",
|
||||||
@ -1739,7 +1739,7 @@
|
|||||||
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
||||||
"ButtonDashboard": "Dashboard",
|
"ButtonDashboard": "Dashboard",
|
||||||
"ButtonReports": "Reports",
|
"ButtonReports": "Reports",
|
||||||
"ButtonMetadataManager": "Metadata Manager",
|
"MetadataManager": "Metadata Manager",
|
||||||
"HeaderTime": "Time",
|
"HeaderTime": "Time",
|
||||||
"LabelAddedOnDate": "Added {0}",
|
"LabelAddedOnDate": "Added {0}",
|
||||||
"ButtonStart": "Start",
|
"ButtonStart": "Start",
|
||||||
@ -2314,5 +2314,8 @@
|
|||||||
"EnablePhotos": "Enable photos",
|
"EnablePhotos": "Enable photos",
|
||||||
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
"EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Make available offline",
|
||||||
"ConfirmRemoveDownload": "Remove download?"
|
"ConfirmRemoveDownload": "Remove download?",
|
||||||
|
"SyncToOtherDevices": "Sync to other devices",
|
||||||
|
"ManageOfflineDownloads": "Manage offline downloads",
|
||||||
|
"MessageDownloadScheduled": "Download scheduled"
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user