mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update components
This commit is contained in:
parent
ce58a73714
commit
893b492cbb
89 changed files with 1116 additions and 587 deletions
|
@ -16,12 +16,12 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {},
|
"devDependencies": {},
|
||||||
"ignore": [],
|
"ignore": [],
|
||||||
"version": "1.1.114",
|
"version": "1.1.117",
|
||||||
"_release": "1.1.114",
|
"_release": "1.1.117",
|
||||||
"_resolution": {
|
"_resolution": {
|
||||||
"type": "version",
|
"type": "version",
|
||||||
"tag": "1.1.114",
|
"tag": "1.1.117",
|
||||||
"commit": "48c97330f32bf96d488c71e922fd7258916b82cb"
|
"commit": "96f1537d9200dd5450fc75665edbc3563be4bef7"
|
||||||
},
|
},
|
||||||
"_source": "https://github.com/MediaBrowser/Emby.ApiClient.Javascript.git",
|
"_source": "https://github.com/MediaBrowser/Emby.ApiClient.Javascript.git",
|
||||||
"_target": "^1.1.51",
|
"_target": "^1.1.51",
|
||||||
|
|
|
@ -14,12 +14,12 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {},
|
"devDependencies": {},
|
||||||
"ignore": [],
|
"ignore": [],
|
||||||
"version": "1.4.468",
|
"version": "1.4.469",
|
||||||
"_release": "1.4.468",
|
"_release": "1.4.469",
|
||||||
"_resolution": {
|
"_resolution": {
|
||||||
"type": "version",
|
"type": "version",
|
||||||
"tag": "1.4.468",
|
"tag": "1.4.469",
|
||||||
"commit": "3f10ed5f1938f5c1c9eb84f1f36e3b8606f03b88"
|
"commit": "ade3d09c95421b54adf28a69b7cfd3a57d759103"
|
||||||
},
|
},
|
||||||
"_source": "https://github.com/MediaBrowser/emby-webcomponents.git",
|
"_source": "https://github.com/MediaBrowser/emby-webcomponents.git",
|
||||||
"_target": "^1.2.1",
|
"_target": "^1.2.1",
|
||||||
|
|
|
@ -69,13 +69,13 @@
|
||||||
|
|
||||||
html += '<div class="formDialogFooter">';
|
html += '<div class="formDialogFooter">';
|
||||||
|
|
||||||
html += '<div class="formDialogFooterItem">';
|
html += '<button is="emby-button" type="button" class="raised button-submit block btnGetPremiere block formDialogFooterItem" autoFocus><span>' + globalize.translate('sharedcomponents#HeaderBecomeProjectSupporter') + '</span></button>';
|
||||||
html += '<button is="emby-button" type="button" class="raised button-submit block btnGetPremiere block" autoFocus><span>' + globalize.translate('sharedcomponents#HeaderBecomeProjectSupporter') + '</span></button>';
|
|
||||||
|
|
||||||
var seconds = 9;
|
var seconds = 12;
|
||||||
|
|
||||||
html += '<p class="continueTimeText" style="margin: 1.5em 0 .5em;">' + globalize.translate('sharedcomponents#ContinuingInSecondsValue', seconds) + '</p>';
|
html += '<div class="continueTimeText formDialogFooterItem" style="margin: 1.5em 0 .5em;">' + globalize.translate('sharedcomponents#ContinueInSecondsValue', seconds) + '</div>';
|
||||||
html += '</div>';
|
|
||||||
|
html += '<button is="emby-button" type="button" class="raised button-cancel block btnContinue block formDialogFooterItem hide"><span>' + globalize.translate('sharedcomponents#Continue') + '</span></button>';
|
||||||
|
|
||||||
html += '</div>';
|
html += '</div>';
|
||||||
|
|
||||||
|
@ -90,10 +90,10 @@
|
||||||
|
|
||||||
seconds -= 1;
|
seconds -= 1;
|
||||||
if (seconds <= 0) {
|
if (seconds <= 0) {
|
||||||
isRejected = false;
|
dlg.querySelector('.continueTimeText').classList.add('hide');
|
||||||
dialogHelper.close(dlg);
|
dlg.querySelector('.btnContinue').classList.remove('hide');
|
||||||
} else {
|
} else {
|
||||||
dlg.querySelector('.continueTimeText').innerHTML = globalize.translate('sharedcomponents#ContinuingInSecondsValue', seconds);
|
dlg.querySelector('.continueTimeText').innerHTML = globalize.translate('sharedcomponents#ContinueInSecondsValue', seconds);
|
||||||
}
|
}
|
||||||
|
|
||||||
}, 1000);
|
}, 1000);
|
||||||
|
@ -125,6 +125,11 @@
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
dlg.querySelector('.btnContinue').addEventListener('click', function () {
|
||||||
|
isRejected = false;
|
||||||
|
dialogHelper.close(dlg);
|
||||||
|
});
|
||||||
|
|
||||||
dlg.querySelector('.btnGetPremiere').addEventListener('click', showPremiereInfo);
|
dlg.querySelector('.btnGetPremiere').addEventListener('click', showPremiereInfo);
|
||||||
|
|
||||||
dialogHelper.open(dlg);
|
dialogHelper.open(dlg);
|
||||||
|
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "Retry",
|
"Retry": "Retry",
|
||||||
"HeaderMyDevice": "My Device",
|
"HeaderMyDevice": "My Device",
|
||||||
"MediaQueued": "Media queued.",
|
"MediaQueued": "Media queued.",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Continue",
|
||||||
|
"ContinueInSecondsValue": "Continue in {0} seconds."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "Retry",
|
"Retry": "Retry",
|
||||||
"HeaderMyDevice": "My Device",
|
"HeaderMyDevice": "My Device",
|
||||||
"MediaQueued": "Media queued.",
|
"MediaQueued": "Media queued.",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Continue",
|
||||||
|
"ContinueInSecondsValue": "Continue in {0} seconds."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "Retry",
|
"Retry": "Retry",
|
||||||
"HeaderMyDevice": "My Device",
|
"HeaderMyDevice": "My Device",
|
||||||
"MediaQueued": "Media queued.",
|
"MediaQueued": "Media queued.",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Continue",
|
||||||
|
"ContinueInSecondsValue": "Continue in {0} seconds."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "Retry",
|
"Retry": "Retry",
|
||||||
"HeaderMyDevice": "My Device",
|
"HeaderMyDevice": "My Device",
|
||||||
"MediaQueued": "Media queued.",
|
"MediaQueued": "Media queued.",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Continue",
|
||||||
|
"ContinueInSecondsValue": "Continue in {0} seconds."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "Pr\u00f8v igen",
|
"Retry": "Pr\u00f8v igen",
|
||||||
"HeaderMyDevice": "Min Enhed",
|
"HeaderMyDevice": "Min Enhed",
|
||||||
"MediaQueued": "Medie sat i k\u00f8",
|
"MediaQueued": "Medie sat i k\u00f8",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Continue",
|
||||||
|
"ContinueInSecondsValue": "Continue in {0} seconds."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "Wiederholen",
|
"Retry": "Wiederholen",
|
||||||
"HeaderMyDevice": "Mein Ger\u00e4t",
|
"HeaderMyDevice": "Mein Ger\u00e4t",
|
||||||
"MediaQueued": "Medien in Warteschlange",
|
"MediaQueued": "Medien in Warteschlange",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Fortfahren",
|
||||||
|
"ContinueInSecondsValue": "Fortfahren in {0} Sekunden."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "Retry",
|
"Retry": "Retry",
|
||||||
"HeaderMyDevice": "My Device",
|
"HeaderMyDevice": "My Device",
|
||||||
"MediaQueued": "Media queued.",
|
"MediaQueued": "Media queued.",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Continue",
|
||||||
|
"ContinueInSecondsValue": "Continue in {0} seconds."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "Retry",
|
"Retry": "Retry",
|
||||||
"HeaderMyDevice": "My Device",
|
"HeaderMyDevice": "My Device",
|
||||||
"MediaQueued": "Media queued.",
|
"MediaQueued": "Media queued.",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Continue",
|
||||||
|
"ContinueInSecondsValue": "Continue in {0} seconds."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "Retry",
|
"Retry": "Retry",
|
||||||
"HeaderMyDevice": "My Device",
|
"HeaderMyDevice": "My Device",
|
||||||
"MediaQueued": "Media queued.",
|
"MediaQueued": "Media queued.",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Continue",
|
||||||
|
"ContinueInSecondsValue": "Continue in {0} seconds."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "Retry",
|
"Retry": "Retry",
|
||||||
"HeaderMyDevice": "My Device",
|
"HeaderMyDevice": "My Device",
|
||||||
"MediaQueued": "Media queued.",
|
"MediaQueued": "Media queued.",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Continue",
|
||||||
|
"ContinueInSecondsValue": "Continue in {0} seconds."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "Volver a intentar",
|
"Retry": "Volver a intentar",
|
||||||
"HeaderMyDevice": "Mi Dispositivo",
|
"HeaderMyDevice": "Mi Dispositivo",
|
||||||
"MediaQueued": "Medios en cola.",
|
"MediaQueued": "Medios en cola.",
|
||||||
"ContinuingInSecondsValue": "Continuando en {0} segundos."
|
"Continue": "Continue",
|
||||||
|
"ContinueInSecondsValue": "Continue in {0} seconds."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "Retry",
|
"Retry": "Retry",
|
||||||
"HeaderMyDevice": "My Device",
|
"HeaderMyDevice": "My Device",
|
||||||
"MediaQueued": "Media queued.",
|
"MediaQueued": "Media queued.",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Continue",
|
||||||
|
"ContinueInSecondsValue": "Continue in {0} seconds."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "Retry",
|
"Retry": "Retry",
|
||||||
"HeaderMyDevice": "My Device",
|
"HeaderMyDevice": "My Device",
|
||||||
"MediaQueued": "Media queued.",
|
"MediaQueued": "Media queued.",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Continue",
|
||||||
|
"ContinueInSecondsValue": "Continue in {0} seconds."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "Retry",
|
"Retry": "Retry",
|
||||||
"HeaderMyDevice": "My Device",
|
"HeaderMyDevice": "My Device",
|
||||||
"MediaQueued": "Media queued.",
|
"MediaQueued": "Media queued.",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Continue",
|
||||||
|
"ContinueInSecondsValue": "Continue in {0} seconds."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "R\u00e9essayer",
|
"Retry": "R\u00e9essayer",
|
||||||
"HeaderMyDevice": "Mon appareil",
|
"HeaderMyDevice": "Mon appareil",
|
||||||
"MediaQueued": "Media queued.",
|
"MediaQueued": "Media queued.",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Continue",
|
||||||
|
"ContinueInSecondsValue": "Continue in {0} seconds."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "Retry",
|
"Retry": "Retry",
|
||||||
"HeaderMyDevice": "My Device",
|
"HeaderMyDevice": "My Device",
|
||||||
"MediaQueued": "Media queued.",
|
"MediaQueued": "Media queued.",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Continue",
|
||||||
|
"ContinueInSecondsValue": "Continue in {0} seconds."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "Retry",
|
"Retry": "Retry",
|
||||||
"HeaderMyDevice": "My Device",
|
"HeaderMyDevice": "My Device",
|
||||||
"MediaQueued": "Media queued.",
|
"MediaQueued": "Media queued.",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Continue",
|
||||||
|
"ContinueInSecondsValue": "Continue in {0} seconds."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "Retry",
|
"Retry": "Retry",
|
||||||
"HeaderMyDevice": "My Device",
|
"HeaderMyDevice": "My Device",
|
||||||
"MediaQueued": "Media queued.",
|
"MediaQueued": "Media queued.",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Continue",
|
||||||
|
"ContinueInSecondsValue": "Continue in {0} seconds."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "Retry",
|
"Retry": "Retry",
|
||||||
"HeaderMyDevice": "My Device",
|
"HeaderMyDevice": "My Device",
|
||||||
"MediaQueued": "Media queued.",
|
"MediaQueued": "Media queued.",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Continue",
|
||||||
|
"ContinueInSecondsValue": "Continue in {0} seconds."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "Retry",
|
"Retry": "Retry",
|
||||||
"HeaderMyDevice": "My Device",
|
"HeaderMyDevice": "My Device",
|
||||||
"MediaQueued": "Media queued.",
|
"MediaQueued": "Media queued.",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Continue",
|
||||||
|
"ContinueInSecondsValue": "Continue in {0} seconds."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "Riprova",
|
"Retry": "Riprova",
|
||||||
"HeaderMyDevice": "Il Mio Dispositivo",
|
"HeaderMyDevice": "Il Mio Dispositivo",
|
||||||
"MediaQueued": "Media aggiunto in coda.",
|
"MediaQueued": "Media aggiunto in coda.",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Continua",
|
||||||
|
"ContinueInSecondsValue": "Continua tra {0} secondi."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "\u049a\u0430\u0439\u0442\u0430\u043b\u0430\u0443",
|
"Retry": "\u049a\u0430\u0439\u0442\u0430\u043b\u0430\u0443",
|
||||||
"HeaderMyDevice": "\u041c\u0435\u043d\u0456\u04a3 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043c",
|
"HeaderMyDevice": "\u041c\u0435\u043d\u0456\u04a3 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043c",
|
||||||
"MediaQueued": "Media queued.",
|
"MediaQueued": "Media queued.",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Continue",
|
||||||
|
"ContinueInSecondsValue": "Continue in {0} seconds."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "Retry",
|
"Retry": "Retry",
|
||||||
"HeaderMyDevice": "My Device",
|
"HeaderMyDevice": "My Device",
|
||||||
"MediaQueued": "Media queued.",
|
"MediaQueued": "Media queued.",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Continue",
|
||||||
|
"ContinueInSecondsValue": "Continue in {0} seconds."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "Retry",
|
"Retry": "Retry",
|
||||||
"HeaderMyDevice": "My Device",
|
"HeaderMyDevice": "My Device",
|
||||||
"MediaQueued": "Media queued.",
|
"MediaQueued": "Media queued.",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Continue",
|
||||||
|
"ContinueInSecondsValue": "Continue in {0} seconds."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "Retry",
|
"Retry": "Retry",
|
||||||
"HeaderMyDevice": "My Device",
|
"HeaderMyDevice": "My Device",
|
||||||
"MediaQueued": "Media queued.",
|
"MediaQueued": "Media queued.",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Continue",
|
||||||
|
"ContinueInSecondsValue": "Continue in {0} seconds."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "Retry",
|
"Retry": "Retry",
|
||||||
"HeaderMyDevice": "My Device",
|
"HeaderMyDevice": "My Device",
|
||||||
"MediaQueued": "Media queued.",
|
"MediaQueued": "Media queued.",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Continue",
|
||||||
|
"ContinueInSecondsValue": "Continue in {0} seconds."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "Retry",
|
"Retry": "Retry",
|
||||||
"HeaderMyDevice": "My Device",
|
"HeaderMyDevice": "My Device",
|
||||||
"MediaQueued": "Media queued.",
|
"MediaQueued": "Media queued.",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Continue",
|
||||||
|
"ContinueInSecondsValue": "Continue in {0} seconds."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "Tentar Novamente",
|
"Retry": "Tentar Novamente",
|
||||||
"HeaderMyDevice": "Meu Dispositivo",
|
"HeaderMyDevice": "Meu Dispositivo",
|
||||||
"MediaQueued": "M\u00eddia enfileirada.",
|
"MediaQueued": "M\u00eddia enfileirada.",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Continue",
|
||||||
|
"ContinueInSecondsValue": "Continue in {0} seconds."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "Retry",
|
"Retry": "Retry",
|
||||||
"HeaderMyDevice": "My Device",
|
"HeaderMyDevice": "My Device",
|
||||||
"MediaQueued": "Media queued.",
|
"MediaQueued": "Media queued.",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Continue",
|
||||||
|
"ContinueInSecondsValue": "Continue in {0} seconds."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "Retry",
|
"Retry": "Retry",
|
||||||
"HeaderMyDevice": "My Device",
|
"HeaderMyDevice": "My Device",
|
||||||
"MediaQueued": "Media queued.",
|
"MediaQueued": "Media queued.",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Continue",
|
||||||
|
"ContinueInSecondsValue": "Continue in {0} seconds."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "\u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u044c",
|
"Retry": "\u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u044c",
|
||||||
"HeaderMyDevice": "\u041c\u043e\u0451 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e",
|
"HeaderMyDevice": "\u041c\u043e\u0451 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e",
|
||||||
"MediaQueued": "Media queued.",
|
"MediaQueued": "Media queued.",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Continue",
|
||||||
|
"ContinueInSecondsValue": "Continue in {0} seconds."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "Retry",
|
"Retry": "Retry",
|
||||||
"HeaderMyDevice": "My Device",
|
"HeaderMyDevice": "My Device",
|
||||||
"MediaQueued": "Media queued.",
|
"MediaQueued": "Media queued.",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Continue",
|
||||||
|
"ContinueInSecondsValue": "Continue in {0} seconds."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "Retry",
|
"Retry": "Retry",
|
||||||
"HeaderMyDevice": "My Device",
|
"HeaderMyDevice": "My Device",
|
||||||
"MediaQueued": "Media queued.",
|
"MediaQueued": "Media queued.",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Continue",
|
||||||
|
"ContinueInSecondsValue": "Continue in {0} seconds."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "Retry",
|
"Retry": "Retry",
|
||||||
"HeaderMyDevice": "My Device",
|
"HeaderMyDevice": "My Device",
|
||||||
"MediaQueued": "Media queued.",
|
"MediaQueued": "Media queued.",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Continue",
|
||||||
|
"ContinueInSecondsValue": "Continue in {0} seconds."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "Retry",
|
"Retry": "Retry",
|
||||||
"HeaderMyDevice": "My Device",
|
"HeaderMyDevice": "My Device",
|
||||||
"MediaQueued": "Media queued.",
|
"MediaQueued": "Media queued.",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Continue",
|
||||||
|
"ContinueInSecondsValue": "Continue in {0} seconds."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "Retry",
|
"Retry": "Retry",
|
||||||
"HeaderMyDevice": "My Device",
|
"HeaderMyDevice": "My Device",
|
||||||
"MediaQueued": "Media queued.",
|
"MediaQueued": "Media queued.",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Continue",
|
||||||
|
"ContinueInSecondsValue": "Continue in {0} seconds."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "Retry",
|
"Retry": "Retry",
|
||||||
"HeaderMyDevice": "My Device",
|
"HeaderMyDevice": "My Device",
|
||||||
"MediaQueued": "Media queued.",
|
"MediaQueued": "Media queued.",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Continue",
|
||||||
|
"ContinueInSecondsValue": "Continue in {0} seconds."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "\u91cd\u8bd5",
|
"Retry": "\u91cd\u8bd5",
|
||||||
"HeaderMyDevice": "My Device",
|
"HeaderMyDevice": "My Device",
|
||||||
"MediaQueued": "Media queued.",
|
"MediaQueued": "Media queued.",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Continue",
|
||||||
|
"ContinueInSecondsValue": "Continue in {0} seconds."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "Retry",
|
"Retry": "Retry",
|
||||||
"HeaderMyDevice": "My Device",
|
"HeaderMyDevice": "My Device",
|
||||||
"MediaQueued": "Media queued.",
|
"MediaQueued": "Media queued.",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Continue",
|
||||||
|
"ContinueInSecondsValue": "Continue in {0} seconds."
|
||||||
}
|
}
|
|
@ -379,5 +379,6 @@
|
||||||
"Retry": "Retry",
|
"Retry": "Retry",
|
||||||
"HeaderMyDevice": "My Device",
|
"HeaderMyDevice": "My Device",
|
||||||
"MediaQueued": "Media queued.",
|
"MediaQueued": "Media queued.",
|
||||||
"ContinuingInSecondsValue": "Continuing in {0} seconds."
|
"Continue": "Continue",
|
||||||
|
"ContinueInSecondsValue": "Continue in {0} seconds."
|
||||||
}
|
}
|
|
@ -143,7 +143,7 @@ define(['pluginManager', 'events', 'browser', 'embyRouter'], function (pluginMan
|
||||||
|
|
||||||
if (currentYoutubePlayer) {
|
if (currentYoutubePlayer) {
|
||||||
if (val != null) {
|
if (val != null) {
|
||||||
currentYoutubePlayer.setCurrentTime(val / 1000);
|
currentYoutubePlayer.seekTo(val / 1000, true);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -204,7 +204,7 @@
|
||||||
|
|
||||||
var html = '';
|
var html = '';
|
||||||
html += '<div>';
|
html += '<div>';
|
||||||
html += '<h1>Try Emby Theater<button is="paper-icon-button-light" style="margin-left:1em;" onclick="this.parentNode.parentNode.remove();" class="autoSize"><i class="md-icon">close</i></button></h1>';
|
html += '<h1>Discover Emby Theater<button is="paper-icon-button-light" style="margin-left:1em;" onclick="this.parentNode.parentNode.remove();" class="autoSize"><i class="md-icon">close</i></button></h1>';
|
||||||
|
|
||||||
var nameText = AppInfo.isNativeApp ? 'Emby Theater' : '<a href="https://emby.media/download" target="_blank">Emby Theater</a>';
|
var nameText = AppInfo.isNativeApp ? 'Emby Theater' : '<a href="https://emby.media/download" target="_blank">Emby Theater</a>';
|
||||||
html += '<p>A beautiful app for your TV and large screen tablet. ' + nameText + ' runs on Windows, Xbox One, Raspberry Pi, Samsung Smart TVs, Sony PS4, Web Browsers, and more.</p>';
|
html += '<p>A beautiful app for your TV and large screen tablet. ' + nameText + ' runs on Windows, Xbox One, Raspberry Pi, Samsung Smart TVs, Sony PS4, Web Browsers, and more.</p>';
|
||||||
|
@ -222,7 +222,7 @@
|
||||||
|
|
||||||
var html = '';
|
var html = '';
|
||||||
html += '<div>';
|
html += '<div>';
|
||||||
html += '<h1>Try Emby Premiere<button is="paper-icon-button-light" style="margin-left:1em;" onclick="this.parentNode.parentNode.remove();" class="autoSize"><i class="md-icon">close</i></button></h1>';
|
html += '<h1>Discover Emby Premiere<button is="paper-icon-button-light" style="margin-left:1em;" onclick="this.parentNode.parentNode.remove();" class="autoSize"><i class="md-icon">close</i></button></h1>';
|
||||||
|
|
||||||
var cardTarget = AppInfo.isNativeApp ? '' : 'https://emby.media/premiere';
|
var cardTarget = AppInfo.isNativeApp ? '' : 'https://emby.media/premiere';
|
||||||
var learnMoreText = AppInfo.isNativeApp ? '' : '<a href="https://emby.media/premiere" target="_blank">Learn more</a>';
|
var learnMoreText = AppInfo.isNativeApp ? '' : '<a href="https://emby.media/premiere" target="_blank">Learn more</a>';
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "\u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629",
|
"ButtonHome": "\u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629",
|
||||||
"ButtonSearch": "\u0628\u062d\u062b",
|
"ButtonSearch": "\u0628\u062d\u062b",
|
||||||
"ButtonSettings": "\u0627\u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a",
|
"ButtonSettings": "\u0627\u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a",
|
||||||
|
"Settings": "Settings",
|
||||||
|
"Mute": "Mute",
|
||||||
|
"Unmute": "Unmute",
|
||||||
|
"Subtitles": "Subtitles",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Rewind",
|
||||||
|
"Fullscreen": "Full screen",
|
||||||
|
"ExitFullscreen": "Exit full screen",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Play on another device",
|
||||||
|
"FastForward": "Fast-forward",
|
||||||
"ButtonTakeScreenshot": "\u0625\u0644\u062a\u0642\u0627\u0637 \u0627\u0644\u0634\u0627\u0634\u0629",
|
"ButtonTakeScreenshot": "\u0625\u0644\u062a\u0642\u0627\u0637 \u0627\u0644\u0634\u0627\u0634\u0629",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "\u0642\u064a\u062f \u0627\u0644\u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u0622\u0646",
|
"TabNowPlaying": "\u0642\u064a\u062f \u0627\u0644\u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u0622\u0646",
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "Home",
|
"ButtonHome": "Home",
|
||||||
"ButtonSearch": "Search",
|
"ButtonSearch": "Search",
|
||||||
"ButtonSettings": "Settings",
|
"ButtonSettings": "Settings",
|
||||||
|
"Settings": "Settings",
|
||||||
|
"Mute": "Mute",
|
||||||
|
"Unmute": "Unmute",
|
||||||
|
"Subtitles": "Subtitles",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Rewind",
|
||||||
|
"Fullscreen": "Full screen",
|
||||||
|
"ExitFullscreen": "Exit full screen",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Play on another device",
|
||||||
|
"FastForward": "Fast-forward",
|
||||||
"ButtonTakeScreenshot": "Capture Screenshot",
|
"ButtonTakeScreenshot": "Capture Screenshot",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
|
|
|
@ -19,18 +19,18 @@
|
||||||
"ButtonTermsOfService": "\u0423\u0441\u043b\u043e\u0432\u0438\u044f \u0437\u0430 \u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435",
|
"ButtonTermsOfService": "\u0423\u0441\u043b\u043e\u0432\u0438\u044f \u0437\u0430 \u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435",
|
||||||
"ButtonConvertMedia": "\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u0439 \u043c\u0435\u0434\u0438\u044f\u0442\u0430",
|
"ButtonConvertMedia": "\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u0439 \u043c\u0435\u0434\u0438\u044f\u0442\u0430",
|
||||||
"ButtonOrganize": "\u041e\u0440\u0433\u0430\u043d\u0438\u0437\u0438\u0440\u0430\u0439",
|
"ButtonOrganize": "\u041e\u0440\u0433\u0430\u043d\u0438\u0437\u0438\u0440\u0430\u0439",
|
||||||
"HeaderSupporterBenefits": "Emby Premiere Benefits",
|
"HeaderSupporterBenefits": "Emby Premiere \u043e\u0431\u043b\u0430\u0433\u0438",
|
||||||
"HeaderAddUser": "+ \u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b",
|
"HeaderAddUser": "+ \u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b",
|
||||||
"LabelAddConnectSupporterHelp": "\u0417\u0430 \u0434\u0430 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u0435 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b \u043a\u043e\u0439\u0442\u043e \u043d\u0435 \u0435 \u0432 \u043b\u0438\u0441\u0442\u0438\u0442\u0435, \u0449\u0435 \u0442\u0440\u044f\u0431\u0432\u0430 \u043f\u044a\u0440\u0432\u043e \u0434\u0430 \u0437\u0430\u043a\u0430\u0447\u0438\u0442\u0435 \u0442\u0435\u0445\u043d\u0438\u044f \u043f\u0440\u043e\u0444\u0438\u043b \u043a\u044a\u043c Emby Connect \u043e\u0442 \u0442\u044f\u0445\u043d\u0430\u0442\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430.",
|
"LabelAddConnectSupporterHelp": "\u0417\u0430 \u0434\u0430 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u0435 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b \u043a\u043e\u0439\u0442\u043e \u043d\u0435 \u0435 \u0432 \u043b\u0438\u0441\u0442\u0438\u0442\u0435, \u0449\u0435 \u0442\u0440\u044f\u0431\u0432\u0430 \u043f\u044a\u0440\u0432\u043e \u0434\u0430 \u0437\u0430\u043a\u0430\u0447\u0438\u0442\u0435 \u0442\u0435\u0445\u043d\u0438\u044f \u043f\u0440\u043e\u0444\u0438\u043b \u043a\u044a\u043c Emby Connect \u043e\u0442 \u0442\u044f\u0445\u043d\u0430\u0442\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430.",
|
||||||
"LabelPinCode": "\u041f\u0418\u041d \u043a\u043e\u0434:",
|
"LabelPinCode": "\u041f\u0418\u041d \u043a\u043e\u0434:",
|
||||||
"OptionHideWatchedContentFromLatestMedia": "\u0421\u043a\u0440\u0438\u0439 \u0433\u043b\u0435\u0434\u0430\u043d\u043e\u0442\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 \u043e\u0442 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0430\u0442\u0430 \u043c\u0435\u0434\u0438\u044f",
|
"OptionHideWatchedContentFromLatestMedia": "\u0421\u043a\u0440\u0438\u0439 \u0433\u043b\u0435\u0434\u0430\u043d\u043e\u0442\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 \u043e\u0442 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0430\u0442\u0430 \u043c\u0435\u0434\u0438\u044f",
|
||||||
"DeleteMedia": "Delete media",
|
"DeleteMedia": "\u0418\u0437\u0442\u0440\u0438\u0439 \u043c\u0435\u0434\u0438\u044f",
|
||||||
"HeaderSync": "Sync",
|
"HeaderSync": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437.",
|
||||||
"ButtonOk": "\u041e\u043a",
|
"ButtonOk": "\u041e\u043a",
|
||||||
"ButtonCancel": "\u041e\u0442\u043c\u0435\u043d\u0438",
|
"ButtonCancel": "\u041e\u0442\u043c\u0435\u043d\u0438",
|
||||||
"ButtonExit": "\u0418\u0437\u0445\u043e\u0434",
|
"ButtonExit": "\u0418\u0437\u0445\u043e\u0434",
|
||||||
"ButtonNew": "\u041d\u043e\u0432",
|
"ButtonNew": "\u041d\u043e\u0432",
|
||||||
"OptionDev": "\u0417\u0430 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u0446\u0438 (\u041d\u0435\u0441\u0442\u0430\u0431\u0438\u043b\u0435\u043d)",
|
"OptionDev": "Dev",
|
||||||
"OptionBeta": "\u0411\u0435\u0442\u0430",
|
"OptionBeta": "\u0411\u0435\u0442\u0430",
|
||||||
"HeaderTaskTriggers": "Task Triggers",
|
"HeaderTaskTriggers": "Task Triggers",
|
||||||
"HeaderTV": "TV",
|
"HeaderTV": "TV",
|
||||||
|
@ -67,12 +67,12 @@
|
||||||
"FolderTypeInherit": "\u041d\u0430\u0441\u043b\u0435\u0434\u0438",
|
"FolderTypeInherit": "\u041d\u0430\u0441\u043b\u0435\u0434\u0438",
|
||||||
"LabelContentType": "\u0422\u0438\u043f \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e:",
|
"LabelContentType": "\u0422\u0438\u043f \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e:",
|
||||||
"TitleScheduledTasks": "\u041f\u043b\u0430\u043d\u0438\u0440\u0430\u043d\u0438 \u0437\u0430\u0434\u0430\u0447\u0438",
|
"TitleScheduledTasks": "\u041f\u043b\u0430\u043d\u0438\u0440\u0430\u043d\u0438 \u0437\u0430\u0434\u0430\u0447\u0438",
|
||||||
"HeaderSetupLibrary": "Setup your media libraries",
|
"HeaderSetupLibrary": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u0442\u0435 \u0441\u0432\u043e\u0438\u0442\u0435 \u043c\u0435\u0434\u0438\u0439\u043d\u0438 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0438",
|
||||||
"LabelFolderType": "\u0422\u0438\u043f \u043d\u0430 \u043f\u0430\u043f\u043a\u0430\u0442\u0430:",
|
"LabelFolderType": "\u0422\u0438\u043f \u043d\u0430 \u043f\u0430\u043f\u043a\u0430\u0442\u0430:",
|
||||||
"LabelCountry": "\u0421\u0442\u0440\u0430\u043d\u0430:",
|
"LabelCountry": "\u0421\u0442\u0440\u0430\u043d\u0430:",
|
||||||
"LabelLanguage": "\u0415\u0437\u0438\u043a:",
|
"LabelLanguage": "\u0415\u0437\u0438\u043a:",
|
||||||
"LabelTimeLimitHours": "\u0412\u0440\u0435\u043c\u0435\u0432\u0438 \u043b\u0438\u043c\u0438\u0442 (\u0447\u0430\u0441\u043e\u0432\u0435):",
|
"LabelTimeLimitHours": "\u0412\u0440\u0435\u043c\u0435\u0432\u0438 \u043b\u0438\u043c\u0438\u0442 (\u0447\u0430\u0441\u043e\u0432\u0435):",
|
||||||
"HeaderPreferredMetadataLanguage": "\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u043d \u0435\u0437\u0438\u043a \u043d\u0430 \u043c\u0435\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f\u0442\u0430:",
|
"HeaderPreferredMetadataLanguage": "\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u043d \u0435\u0437\u0438\u043a \u043d\u0430 \u043c\u0435\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f\u0442\u0430",
|
||||||
"LabelSaveLocalMetadata": "\u0417\u0430\u043f\u043e\u043c\u043d\u0438 \u0438\u0437\u043a\u0443\u0441\u0442\u0432\u043e \u0438 \u043c\u0435\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0432 \u043f\u0430\u043f\u043a\u0430\u0442\u0430 \u043d\u0430 \u043c\u0435\u0434\u0438\u044f\u0442\u0430",
|
"LabelSaveLocalMetadata": "\u0417\u0430\u043f\u043e\u043c\u043d\u0438 \u0438\u0437\u043a\u0443\u0441\u0442\u0432\u043e \u0438 \u043c\u0435\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0432 \u043f\u0430\u043f\u043a\u0430\u0442\u0430 \u043d\u0430 \u043c\u0435\u0434\u0438\u044f\u0442\u0430",
|
||||||
"LabelSaveLocalMetadataHelp": "\u0417\u0430\u043f\u043e\u043c\u043d\u044f\u043d\u0435\u0442\u043e \u043d\u0430 \u0438\u0437\u043a\u0443\u0441\u0442\u0432\u043e \u0438 \u043c\u0435\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0434\u0438\u0440\u0435\u043a\u0442\u043d\u043e \u0432 \u043c\u0435\u0434\u0438\u0439\u043d\u0438\u0442\u0435 \u043f\u0430\u043f\u043a\u0438 \u0449\u0435 \u0433\u0438 \u0441\u043b\u043e\u0436\u0438 \u043d\u0430 \u043c\u044f\u0441\u0442\u043e, \u043a\u044a\u0434\u0435\u0442\u043e \u043b\u0435\u0441\u043d\u043e \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u043d\u0438.",
|
"LabelSaveLocalMetadataHelp": "\u0417\u0430\u043f\u043e\u043c\u043d\u044f\u043d\u0435\u0442\u043e \u043d\u0430 \u0438\u0437\u043a\u0443\u0441\u0442\u0432\u043e \u0438 \u043c\u0435\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0434\u0438\u0440\u0435\u043a\u0442\u043d\u043e \u0432 \u043c\u0435\u0434\u0438\u0439\u043d\u0438\u0442\u0435 \u043f\u0430\u043f\u043a\u0438 \u0449\u0435 \u0433\u0438 \u0441\u043b\u043e\u0436\u0438 \u043d\u0430 \u043c\u044f\u0441\u0442\u043e, \u043a\u044a\u0434\u0435\u0442\u043e \u043b\u0435\u0441\u043d\u043e \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u043d\u0438.",
|
||||||
"LabelDownloadInternetMetadata": "\u0421\u0432\u0430\u043b\u044f\u0439 \u0438\u0437\u043a\u0443\u0441\u0442\u0432\u043e \u0438 \u043c\u0435\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043e\u0442 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442",
|
"LabelDownloadInternetMetadata": "\u0421\u0432\u0430\u043b\u044f\u0439 \u0438\u0437\u043a\u0443\u0441\u0442\u0432\u043e \u0438 \u043c\u0435\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043e\u0442 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442",
|
||||||
|
@ -92,20 +92,20 @@
|
||||||
"OptionEnableAccessToAllLibraries": "\u0410\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u0439 \u0434\u043e\u0441\u0442\u044a\u043f \u0434\u043e \u0432\u0441\u0438\u0447\u043a\u0438 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0438",
|
"OptionEnableAccessToAllLibraries": "\u0410\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u0439 \u0434\u043e\u0441\u0442\u044a\u043f \u0434\u043e \u0432\u0441\u0438\u0447\u043a\u0438 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0438",
|
||||||
"DeviceAccessHelp": "\u0422\u043e\u0432\u0430 \u0441\u0435 \u043e\u0442\u043d\u0430\u0441\u044f \u0441\u0430\u043c\u043e \u0437\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u043a\u043e\u0438\u0442\u043e \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0440\u0430\u0437\u043b\u0438\u0447\u0435\u043d\u0438 \u0438 \u043d\u044f\u043c\u0430 \u0434\u0430 \u043f\u043e\u043f\u0440\u0435\u0447\u0438 \u043d\u0430 \u0434\u043e\u0441\u0442\u044a\u043f \u043e\u0442 \u0431\u0440\u0430\u0443\u0437\u044a\u0440. \u0424\u0438\u043b\u0442\u0440\u0438\u0440\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0449\u0435 \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0442\u0438 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435\u0442\u043e \u0438\u043c \u0434\u043e\u043a\u0430\u0442\u043e \u043d\u0435 \u0431\u044a\u0434\u0430\u0442 \u043e\u0434\u043e\u0431\u0440\u0435\u043d\u0438 \u0442\u0443\u043a.",
|
"DeviceAccessHelp": "\u0422\u043e\u0432\u0430 \u0441\u0435 \u043e\u0442\u043d\u0430\u0441\u044f \u0441\u0430\u043c\u043e \u0437\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u043a\u043e\u0438\u0442\u043e \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0440\u0430\u0437\u043b\u0438\u0447\u0435\u043d\u0438 \u0438 \u043d\u044f\u043c\u0430 \u0434\u0430 \u043f\u043e\u043f\u0440\u0435\u0447\u0438 \u043d\u0430 \u0434\u043e\u0441\u0442\u044a\u043f \u043e\u0442 \u0431\u0440\u0430\u0443\u0437\u044a\u0440. \u0424\u0438\u043b\u0442\u0440\u0438\u0440\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0449\u0435 \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0442\u0438 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435\u0442\u043e \u0438\u043c \u0434\u043e\u043a\u0430\u0442\u043e \u043d\u0435 \u0431\u044a\u0434\u0430\u0442 \u043e\u0434\u043e\u0431\u0440\u0435\u043d\u0438 \u0442\u0443\u043a.",
|
||||||
"LabelDisplayMissingEpisodesWithinSeasons": "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u0439 \u043b\u0438\u043f\u0441\u0432\u0430\u0449\u0438 \u0435\u043f\u0438\u0437\u043e\u0434\u0438 \u0432 \u0441\u0435\u0437\u043e\u043d\u0438\u0442\u0435",
|
"LabelDisplayMissingEpisodesWithinSeasons": "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u0439 \u043b\u0438\u043f\u0441\u0432\u0430\u0449\u0438 \u0435\u043f\u0438\u0437\u043e\u0434\u0438 \u0432 \u0441\u0435\u0437\u043e\u043d\u0438\u0442\u0435",
|
||||||
"LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.",
|
"LabelDisplayMissingEpisodesWithinSeasonsHelp": "\u0417\u0430 TV \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0438 \u0432 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430\u0442\u0430 \u043d\u0430 Emby Server, \u0442\u043e\u0432\u0430 \u0441\u044a\u0449\u043e \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0435 \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d\u043e.",
|
||||||
"LabelUnairedMissingEpisodesWithinSeasons": "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u0439 \u043d\u0435\u0438\u0437\u043b\u044a\u0447\u0435\u043d\u0438 \u0435\u043f\u0438\u0437\u043e\u0434\u0438 \u0432 \u0441\u0435\u0437\u043e\u043d\u0438\u0442\u0435",
|
"LabelUnairedMissingEpisodesWithinSeasons": "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u0439 \u043d\u0435\u0438\u0437\u043b\u044a\u0447\u0435\u043d\u0438 \u0435\u043f\u0438\u0437\u043e\u0434\u0438 \u0432 \u0441\u0435\u0437\u043e\u043d\u0438\u0442\u0435",
|
||||||
"ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.",
|
"ImportMissingEpisodesHelp": "\u0410\u043a\u043e \u0435 \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d\u043e, \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u043b\u0438\u043f\u0441\u0432\u0430\u0449\u0438 \u0435\u043f\u0438\u0437\u043e\u0434\u0438 \u0449\u0435 \u0431\u044a\u0434\u0435 \u0434\u043e\u0431\u0430\u0432\u0435\u043d\u0430 \u0432 \u0431\u0430\u0437\u0430\u0442\u0430 \u0434\u0430\u043d\u043d\u0438 \u043d\u0430 Emby \u0438 \u0449\u0435 \u0431\u044a\u0434\u0435 \u043f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0430 \u0437\u0430\u0435\u0434\u043d\u043e \u0441\u044a\u0441 \u0441\u0435\u0437\u043e\u043d\u0438 \u0438 \u0441\u0435\u0440\u0438\u0438. \u0422\u043e\u0432\u0430 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0434\u043e\u0432\u0435\u0434\u0435 \u0434\u043e \u0437\u043d\u0430\u0447\u0438\u0442\u0435\u043b\u043d\u043e \u043f\u043e-\u0434\u044a\u043b\u0433\u043e \u0441\u043a\u0430\u043d\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u0442\u0430.",
|
||||||
"HeaderVideoPlaybackSettings": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u0432\u044a\u0437\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0436\u0434\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u0432\u0438\u0434\u0435\u043e",
|
"HeaderVideoPlaybackSettings": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u0432\u044a\u0437\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0436\u0434\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u0432\u0438\u0434\u0435\u043e",
|
||||||
"OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programs listed in the guide",
|
"OptionDownloadInternetMetadataTvPrograms": "\u0421\u0432\u0430\u043b\u044f\u0439 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u0438\u0442\u0435 \u0432 \u0440\u044a\u043a\u043e\u0432\u043e\u0434\u0441\u0442\u0432\u043e\u0442\u043e",
|
||||||
"HeaderPlaybackSettings": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u0432\u044a\u0437\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0436\u0434\u0430\u043d\u0435\u0442\u043e",
|
"HeaderPlaybackSettings": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u0432\u044a\u0437\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0436\u0434\u0430\u043d\u0435\u0442\u043e",
|
||||||
"LabelAudioLanguagePreference": "\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u043d \u0435\u0437\u0438\u043a \u043d\u0430 \u0430\u0443\u0434\u0438\u043e\u0442\u043e:",
|
"LabelAudioLanguagePreference": "\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u043d \u0435\u0437\u0438\u043a \u043d\u0430 \u0430\u0443\u0434\u0438\u043e\u0442\u043e:",
|
||||||
"LabelSubtitleLanguagePreference": "\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u043d \u0435\u0437\u0438\u043a \u043d\u0430 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u0438\u0442\u0435:",
|
"LabelSubtitleLanguagePreference": "\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u043d \u0435\u0437\u0438\u043a \u043d\u0430 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u0438\u0442\u0435:",
|
||||||
"OptionDefaultSubtitles": "\u041f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435",
|
"OptionDefaultSubtitles": "\u041f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435",
|
||||||
"OptionSmartSubtitles": "Smart",
|
"OptionSmartSubtitles": "\u0423\u043c\u043d\u0438",
|
||||||
"OptionSmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
|
"OptionSmartSubtitlesHelp": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u0438, \u043e\u0442\u0433\u043e\u0432\u0430\u0440\u044f\u0449\u0438 \u043d\u0430 \u0435\u0437\u0438\u043a\u043e\u0432\u043e\u0442\u043e \u043f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u043d\u0438\u0435, \u0449\u0435 \u0431\u044a\u0434\u0430\u0442 \u0437\u0430\u0440\u0435\u0436\u0434\u0430\u043d\u0438 \u043a\u043e\u0433\u0430\u0442\u043e \u0430\u0443\u0434\u0438\u043e\u0442\u043e \u0435 \u043d\u0430 \u0447\u0443\u0436\u0434 \u0435\u0437\u0438\u043a.",
|
||||||
"OptionOnlyForcedSubtitles": "\u0421\u0430\u043c\u043e \u043f\u0440\u0438\u043d\u0443\u0434\u0438\u0442\u0435\u043b\u043d\u0438 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u0438",
|
"OptionOnlyForcedSubtitles": "\u0421\u0430\u043c\u043e \u043f\u0440\u0438\u043d\u0443\u0434\u0438\u0442\u0435\u043b\u043d\u0438 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u0438",
|
||||||
"OptionAlwaysPlaySubtitles": "\u0412\u0438\u043d\u0430\u0433\u0438 \u043f\u043e\u043a\u0430\u0437\u0432\u0430\u0439 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u0438",
|
"OptionAlwaysPlaySubtitles": "\u0412\u0438\u043d\u0430\u0433\u0438 \u043f\u043e\u043a\u0430\u0437\u0432\u0430\u0439 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u0438",
|
||||||
"OptionDefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.",
|
"OptionDefaultSubtitlesHelp": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u0438\u0442\u0435 \u0441\u0435 \u0437\u0430\u0440\u0435\u0436\u0434\u0430\u0442 \u043d\u0430 \u0431\u0430\u0437\u0430\u0442\u0430 \u043d\u0430 \u0444\u043b\u0430\u0433\u043e\u0432\u0435\u0442\u0435 \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435 \u0438 \u043f\u0440\u0438\u043d\u0443\u0434\u0438\u0442\u0435\u043b\u043d\u0438\u0442\u0435 \u0444\u043b\u0430\u0433\u043e\u0432\u0435 \u0432\u044a\u0432 \u0432\u0433\u0440\u0430\u0434\u0435\u043d\u0438\u0442\u0435 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u0438. \u0415\u0437\u0438\u043a\u043e\u0432\u0438\u0442\u0435 \u043f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u043d\u0438\u044f \u0441\u0435 \u0432\u0437\u0435\u043c\u0430\u0442 \u043f\u0440\u0435\u0434\u0432\u0438\u0434, \u043a\u043e\u0433\u0430\u0442\u043e \u0441\u0430 \u043d\u0430\u043b\u0438\u0447\u043d\u0438 \u043d\u044f\u043a\u043e\u043b\u043a\u043e \u0432\u0430\u0440\u0438\u0430\u043d\u0442\u0430.",
|
||||||
"OptionOnlyForcedSubtitlesHelp": "\u0421\u0430\u043c\u043e \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u0438, \u043c\u0430\u0440\u043a\u0438\u0440\u0430\u043d\u0438 \u043a\u0430\u0442\u043e \u043f\u0440\u0438\u043d\u0443\u0434\u0438\u0442\u0435\u043b\u043d\u0438, \u0449\u0435 \u0431\u044a\u0434\u0430\u0442 \u0437\u0430\u0440\u0435\u0436\u0434\u0430\u043d\u0438",
|
"OptionOnlyForcedSubtitlesHelp": "\u0421\u0430\u043c\u043e \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u0438, \u043c\u0430\u0440\u043a\u0438\u0440\u0430\u043d\u0438 \u043a\u0430\u0442\u043e \u043f\u0440\u0438\u043d\u0443\u0434\u0438\u0442\u0435\u043b\u043d\u0438, \u0449\u0435 \u0431\u044a\u0434\u0430\u0442 \u0437\u0430\u0440\u0435\u0436\u0434\u0430\u043d\u0438",
|
||||||
"OptionAlwaysPlaySubtitlesHelp": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u0438, \u043e\u0442\u0433\u043e\u0432\u0430\u0440\u044f\u0449\u0438 \u043d\u0430 \u0435\u0437\u0438\u043a\u043e\u0432\u043e\u0442\u043e \u043f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u043d\u0438\u0435, \u0449\u0435 \u0431\u044a\u0434\u0430\u0442 \u0437\u0430\u0440\u0435\u0436\u0434\u0430\u043d\u0438 \u043d\u0435\u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e \u043e\u0442 \u0435\u0437\u0438\u043a\u0430 \u043d\u0430 \u0430\u0443\u0434\u0438\u043e\u0442\u043e.",
|
"OptionAlwaysPlaySubtitlesHelp": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u0438, \u043e\u0442\u0433\u043e\u0432\u0430\u0440\u044f\u0449\u0438 \u043d\u0430 \u0435\u0437\u0438\u043a\u043e\u0432\u043e\u0442\u043e \u043f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u043d\u0438\u0435, \u0449\u0435 \u0431\u044a\u0434\u0430\u0442 \u0437\u0430\u0440\u0435\u0436\u0434\u0430\u043d\u0438 \u043d\u0435\u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e \u043e\u0442 \u0435\u0437\u0438\u043a\u0430 \u043d\u0430 \u0430\u0443\u0434\u0438\u043e\u0442\u043e.",
|
||||||
"OptionNoSubtitlesHelp": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u0438 \u043d\u044f\u043c\u0430 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0437\u0430\u0440\u0435\u0436\u0434\u0430\u043d\u0438 \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435.",
|
"OptionNoSubtitlesHelp": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u0438 \u043d\u044f\u043c\u0430 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0437\u0430\u0440\u0435\u0436\u0434\u0430\u043d\u0438 \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435.",
|
||||||
|
@ -140,7 +140,7 @@
|
||||||
"TabGenres": "\u0416\u0430\u043d\u0440\u043e\u0432\u0435",
|
"TabGenres": "\u0416\u0430\u043d\u0440\u043e\u0432\u0435",
|
||||||
"TabNetworks": "\u041c\u0440\u0435\u0436\u0438",
|
"TabNetworks": "\u041c\u0440\u0435\u0436\u0438",
|
||||||
"HeaderUsers": "\u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438",
|
"HeaderUsers": "\u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438",
|
||||||
"HeaderFilters": "Filters",
|
"HeaderFilters": "\u0424\u0438\u043b\u0442\u0440\u0438",
|
||||||
"ButtonFilter": "\u0424\u0438\u043b\u0442\u044a\u0440",
|
"ButtonFilter": "\u0424\u0438\u043b\u0442\u044a\u0440",
|
||||||
"OptionFavorite": "\u041b\u044e\u0431\u0438\u043c\u0438:",
|
"OptionFavorite": "\u041b\u044e\u0431\u0438\u043c\u0438:",
|
||||||
"OptionLikes": "\u0425\u0430\u0440\u0435\u0441\u0432\u0430\u043d\u0438\u044f",
|
"OptionLikes": "\u0425\u0430\u0440\u0435\u0441\u0432\u0430\u043d\u0438\u044f",
|
||||||
|
@ -151,7 +151,7 @@
|
||||||
"OptionWriters": "\u041f\u0438\u0441\u0430\u0442\u0435\u043b\u0438",
|
"OptionWriters": "\u041f\u0438\u0441\u0430\u0442\u0435\u043b\u0438",
|
||||||
"OptionProducers": "\u041f\u0440\u043e\u0434\u0443\u0446\u0435\u043d\u0442\u0438",
|
"OptionProducers": "\u041f\u0440\u043e\u0434\u0443\u0446\u0435\u043d\u0442\u0438",
|
||||||
"HeaderResume": "\u041f\u0440\u043e\u0436\u044a\u043b\u0436\u0438",
|
"HeaderResume": "\u041f\u0440\u043e\u0436\u044a\u043b\u0436\u0438",
|
||||||
"HeaderContinueWatching": "Continue Watching",
|
"HeaderContinueWatching": "\u041f\u0440\u043e\u0434\u044a\u043b\u0436\u0438 \u0433\u043b\u0435\u0434\u0430\u043d\u0435\u0442\u043e",
|
||||||
"HeaderNextUp": "\u0421\u043b\u0435\u0434\u0432\u0430",
|
"HeaderNextUp": "\u0421\u043b\u0435\u0434\u0432\u0430",
|
||||||
"NoNextUpItemsMessage": "\u041d\u0438\u0449\u043e \u043d\u0435 \u0435 \u043d\u0430\u043c\u0435\u0440\u0435\u043d\u043e. \u0417\u0430\u043f\u043e\u0447\u043d\u0435\u0442\u0435 \u0434\u0430 \u0433\u043b\u0435\u0434\u0430\u0442\u0435 \u0432\u0430\u0448\u0438\u0442\u0435 \u043f\u0440\u0435\u0434\u0430\u0432\u0430\u043d\u0438\u044f!",
|
"NoNextUpItemsMessage": "\u041d\u0438\u0449\u043e \u043d\u0435 \u0435 \u043d\u0430\u043c\u0435\u0440\u0435\u043d\u043e. \u0417\u0430\u043f\u043e\u0447\u043d\u0435\u0442\u0435 \u0434\u0430 \u0433\u043b\u0435\u0434\u0430\u0442\u0435 \u0432\u0430\u0448\u0438\u0442\u0435 \u043f\u0440\u0435\u0434\u0430\u0432\u0430\u043d\u0438\u044f!",
|
||||||
"HeaderLatestEpisodes": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438 \u0415\u043f\u0438\u0437\u043e\u0434\u0438",
|
"HeaderLatestEpisodes": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438 \u0415\u043f\u0438\u0437\u043e\u0434\u0438",
|
||||||
|
@ -176,7 +176,7 @@
|
||||||
"OptionAlbum": "\u0410\u043b\u0431\u0443\u043c",
|
"OptionAlbum": "\u0410\u043b\u0431\u0443\u043c",
|
||||||
"OptionTrackName": "\u0418\u043c\u0435 \u043d\u0430 \u043f\u0435\u0441\u0435\u043d\u0442\u0430:",
|
"OptionTrackName": "\u0418\u043c\u0435 \u043d\u0430 \u043f\u0435\u0441\u0435\u043d\u0442\u0430:",
|
||||||
"OptionCommunityRating": "\u041e\u0431\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u0430 \u043e\u0449\u0435\u043d\u043a\u0430",
|
"OptionCommunityRating": "\u041e\u0431\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u0430 \u043e\u0449\u0435\u043d\u043a\u0430",
|
||||||
"OptionNameSort": "Name",
|
"OptionNameSort": "\u0418\u043c\u0435",
|
||||||
"OptionFolderSort": "\u041f\u0430\u043f\u043a\u0438",
|
"OptionFolderSort": "\u041f\u0430\u043f\u043a\u0438",
|
||||||
"OptionBudget": "\u0411\u044e\u0434\u0436\u0435\u0442",
|
"OptionBudget": "\u0411\u044e\u0434\u0436\u0435\u0442",
|
||||||
"OptionRevenue": "\u041f\u0440\u0438\u0445\u043e\u0434\u0438",
|
"OptionRevenue": "\u041f\u0440\u0438\u0445\u043e\u0434\u0438",
|
||||||
|
@ -193,7 +193,7 @@
|
||||||
"ScheduledTasksHelp": "\u0426\u044a\u043a\u043d\u0435\u0442\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430, \u0437\u0430 \u0434\u0430 \u043d\u0430\u0433\u043b\u0430\u0441\u0438\u0442\u0435 \u043f\u043b\u0430\u043d\u0430 \u045d.",
|
"ScheduledTasksHelp": "\u0426\u044a\u043a\u043d\u0435\u0442\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430, \u0437\u0430 \u0434\u0430 \u043d\u0430\u0433\u043b\u0430\u0441\u0438\u0442\u0435 \u043f\u043b\u0430\u043d\u0430 \u045d.",
|
||||||
"TabMyPlugins": "\u041c\u043e\u0438\u0442\u0435 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0438",
|
"TabMyPlugins": "\u041c\u043e\u0438\u0442\u0435 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0438",
|
||||||
"TabCatalog": "\u041a\u0430\u0442\u0430\u043b\u043e\u0433",
|
"TabCatalog": "\u041a\u0430\u0442\u0430\u043b\u043e\u0433",
|
||||||
"TitlePlugins": "Plugins",
|
"TitlePlugins": "\u041f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0438",
|
||||||
"HeaderAutomaticUpdates": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u0438 \u0412\u044a\u0437\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f",
|
"HeaderAutomaticUpdates": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u0438 \u0412\u044a\u0437\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f",
|
||||||
"HeaderNowPlaying": "\u0421\u0435\u0433\u0430 \u0412\u044a\u0437\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0436\u0434\u0430\u043d\u043e:",
|
"HeaderNowPlaying": "\u0421\u0435\u0433\u0430 \u0412\u044a\u0437\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0436\u0434\u0430\u043d\u043e:",
|
||||||
"HeaderLatestAlbums": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438 \u0410\u043b\u0431\u0443\u043c\u0438",
|
"HeaderLatestAlbums": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438 \u0410\u043b\u0431\u0443\u043c\u0438",
|
||||||
|
@ -226,13 +226,13 @@
|
||||||
"OptionContinuing": "\u041f\u0440\u043e\u0434\u044a\u043b\u0436\u0430\u0432\u0430\u0449\u043e",
|
"OptionContinuing": "\u041f\u0440\u043e\u0434\u044a\u043b\u0436\u0430\u0432\u0430\u0449\u043e",
|
||||||
"OptionEnded": "\u041f\u0440\u0438\u043a\u043b\u044e\u0447\u0438\u043b\u043e",
|
"OptionEnded": "\u041f\u0440\u0438\u043a\u043b\u044e\u0447\u0438\u043b\u043e",
|
||||||
"HeaderAirDays": "\u0414\u043d\u0438 \u043d\u0430 \u0438\u0437\u043b\u044a\u0447\u0432\u0430\u043d\u0435",
|
"HeaderAirDays": "\u0414\u043d\u0438 \u043d\u0430 \u0438\u0437\u043b\u044a\u0447\u0432\u0430\u043d\u0435",
|
||||||
"OptionSundayShort": "Sun",
|
"OptionSundayShort": "\u041d\u0435\u0434\u0435\u043b\u044f",
|
||||||
"OptionMondayShort": "Mon",
|
"OptionMondayShort": "\u041f\u043e\u043d\u0435\u0434\u0435\u043b\u043d\u0438\u043a",
|
||||||
"OptionTuesdayShort": "Tue",
|
"OptionTuesdayShort": "\u0412\u0442\u043e\u0440\u043d\u0438\u043a",
|
||||||
"OptionWednesdayShort": "Wed",
|
"OptionWednesdayShort": "\u0421\u0440\u044f\u0434\u0430",
|
||||||
"OptionThursdayShort": "Thu",
|
"OptionThursdayShort": "\u0427\u0435\u0442\u0432\u044a\u0440\u0442\u044a\u043a",
|
||||||
"OptionFridayShort": "Fri",
|
"OptionFridayShort": "\u041f\u0435\u0442\u044a\u043a",
|
||||||
"OptionSaturdayShort": "Sat",
|
"OptionSaturdayShort": "\u0421\u044a\u0431\u043e\u0442\u0430",
|
||||||
"OptionSunday": "\u041d\u0435\u0434\u0435\u043b\u044f",
|
"OptionSunday": "\u041d\u0435\u0434\u0435\u043b\u044f",
|
||||||
"OptionMonday": "\u041f\u043e\u043d\u0435\u0434\u0435\u043b\u043d\u0438\u043a",
|
"OptionMonday": "\u041f\u043e\u043d\u0435\u0434\u0435\u043b\u043d\u0438\u043a",
|
||||||
"OptionTuesday": "\u0412\u0442\u043e\u0440\u043d\u0438\u043a",
|
"OptionTuesday": "\u0412\u0442\u043e\u0440\u043d\u0438\u043a",
|
||||||
|
@ -248,8 +248,8 @@
|
||||||
"TabGeneral": "\u0413\u043b\u0430\u0432\u043d\u043e",
|
"TabGeneral": "\u0413\u043b\u0430\u0432\u043d\u043e",
|
||||||
"TitleSupport": "\u041f\u043e\u0434\u0434\u0440\u044a\u0436\u043a\u0430",
|
"TitleSupport": "\u041f\u043e\u0434\u0434\u0440\u044a\u0436\u043a\u0430",
|
||||||
"TabAbout": "\u041e\u0442\u043d\u043e\u0441\u043d\u043e",
|
"TabAbout": "\u041e\u0442\u043d\u043e\u0441\u043d\u043e",
|
||||||
"TabSupporterKey": "Emby Premiere Key",
|
"TabSupporterKey": "\u041a\u043b\u044e\u0447 \u0437\u0430 Emby Premiere",
|
||||||
"TabBecomeSupporter": "Get Emby Premiere",
|
"TabBecomeSupporter": "\u0412\u0437\u0435\u043c\u0438 Emby Premiere",
|
||||||
"TabEmbyPremiere": "Emby Premiere",
|
"TabEmbyPremiere": "Emby Premiere",
|
||||||
"ProjectHasCommunity": "Emby \u0438\u043c\u0430 \u043f\u0440\u043e\u0446\u044a\u0444\u0442\u044f\u0432\u0430\u0449\u043e \u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e \u043e\u0442 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438 \u0438 \u0441\u044a\u0442\u0440\u0443\u0434\u043d\u0438\u0446\u0438.",
|
"ProjectHasCommunity": "Emby \u0438\u043c\u0430 \u043f\u0440\u043e\u0446\u044a\u0444\u0442\u044f\u0432\u0430\u0449\u043e \u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e \u043e\u0442 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438 \u0438 \u0441\u044a\u0442\u0440\u0443\u0434\u043d\u0438\u0446\u0438.",
|
||||||
"CheckoutKnowledgeBase": "\u0420\u0430\u0437\u0433\u043b\u0435\u0434\u0430\u0439\u0442\u0435 \u0431\u0430\u0437\u0430\u0442\u0430 \u043d\u0438 \u0441\u044a\u0441 \u0437\u043d\u0430\u043d\u0438\u044f, \u043a\u043e\u044f\u0442\u043e \u0449\u0435 \u0432\u0438 \u043f\u043e\u043c\u043e\u0433\u043d\u0435 \u0434\u0430 \u0432\u0437\u0435\u043c\u0435\u0442\u0435 \u043d\u0430\u0439-\u0434\u043e\u0431\u0440\u043e\u0442\u043e \u043e\u0442 Emby.",
|
"CheckoutKnowledgeBase": "\u0420\u0430\u0437\u0433\u043b\u0435\u0434\u0430\u0439\u0442\u0435 \u0431\u0430\u0437\u0430\u0442\u0430 \u043d\u0438 \u0441\u044a\u0441 \u0437\u043d\u0430\u043d\u0438\u044f, \u043a\u043e\u044f\u0442\u043e \u0449\u0435 \u0432\u0438 \u043f\u043e\u043c\u043e\u0433\u043d\u0435 \u0434\u0430 \u0432\u0437\u0435\u043c\u0435\u0442\u0435 \u043d\u0430\u0439-\u0434\u043e\u0431\u0440\u043e\u0442\u043e \u043e\u0442 Emby.",
|
||||||
|
@ -296,9 +296,9 @@
|
||||||
"ButtonSelectDirectory": "\u0418\u0437\u0431\u0435\u0440\u0438 \u0414\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f",
|
"ButtonSelectDirectory": "\u0418\u0437\u0431\u0435\u0440\u0438 \u0414\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f",
|
||||||
"LabelCachePath": "\u041f\u044a\u0442 \u043a\u044a\u043c \u043a\u0435\u0448\u0430:",
|
"LabelCachePath": "\u041f\u044a\u0442 \u043a\u044a\u043c \u043a\u0435\u0448\u0430:",
|
||||||
"LabelCachePathHelp": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u0442\u0435 \u043c\u044f\u0441\u0442\u043e \u0437\u0430 \u0441\u044a\u0440\u0432\u044a\u0440\u043d\u0438\u0442\u0435 \u043a\u0435\u0448 \u0444\u0430\u0439\u043b\u043e\u0432\u0435, \u043a\u0430\u0442\u043e \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f. \u041e\u0441\u0442\u0430\u0432\u0435\u0442\u0435 \u043f\u0440\u0430\u0437\u043d\u043e, \u0437\u0430 \u0434\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 \u043c\u044f\u0441\u0442\u043e\u0442\u043e \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435.",
|
"LabelCachePathHelp": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u0442\u0435 \u043c\u044f\u0441\u0442\u043e \u0437\u0430 \u0441\u044a\u0440\u0432\u044a\u0440\u043d\u0438\u0442\u0435 \u043a\u0435\u0448 \u0444\u0430\u0439\u043b\u043e\u0432\u0435, \u043a\u0430\u0442\u043e \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f. \u041e\u0441\u0442\u0430\u0432\u0435\u0442\u0435 \u043f\u0440\u0430\u0437\u043d\u043e, \u0437\u0430 \u0434\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 \u043c\u044f\u0441\u0442\u043e\u0442\u043e \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435.",
|
||||||
"LabelRecordingPath": "Default recording path:",
|
"LabelRecordingPath": "\u041f\u044a\u0442 \u0437\u0430 \u0437\u0430\u043f\u0438\u0441 \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435:",
|
||||||
"LabelMovieRecordingPath": "Movie recording path (optional):",
|
"LabelMovieRecordingPath": "\u041f\u044a\u0442 \u0437\u0430 \u0437\u0430\u043f\u0438\u0441 \u043d\u0430 \u0444\u0438\u043b\u043c\u0438\u0442\u0435 (\u043f\u043e \u0438\u0437\u0431\u043e\u0440):",
|
||||||
"LabelSeriesRecordingPath": "Series recording path (optional):",
|
"LabelSeriesRecordingPath": "\u041f\u044a\u0442 \u0437\u0430 \u0437\u0430\u043f\u0438\u0441 \u043d\u0430 \u0441\u0435\u0440\u0438\u0430\u043b\u0438\u0442\u0435 (\u043f\u043e \u0438\u0437\u0431\u043e\u0440):",
|
||||||
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
|
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
|
||||||
"LabelMetadataPath": "\u041f\u044a\u0442 \u043a\u044a\u043c \u043c\u0435\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f\u0442\u0430:",
|
"LabelMetadataPath": "\u041f\u044a\u0442 \u043a\u044a\u043c \u043c\u0435\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f\u0442\u0430:",
|
||||||
"LabelMetadataPathHelp": "\u0417\u0430\u0434\u0430\u0439\u0442\u0435 \u043c\u044f\u0441\u0442\u043e \u043f\u043e \u0438\u0437\u0431\u043e\u0440 \u0437\u0430 \u0441\u0432\u0430\u043b\u0435\u043d\u043e \u0438\u0437\u043a\u0443\u0441\u0442\u0432\u043e \u0438 \u043c\u0435\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f.",
|
"LabelMetadataPathHelp": "\u0417\u0430\u0434\u0430\u0439\u0442\u0435 \u043c\u044f\u0441\u0442\u043e \u043f\u043e \u0438\u0437\u0431\u043e\u0440 \u0437\u0430 \u0441\u0432\u0430\u043b\u0435\u043d\u043e \u0438\u0437\u043a\u0443\u0441\u0442\u0432\u043e \u0438 \u043c\u0435\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f.",
|
||||||
|
@ -313,7 +313,7 @@
|
||||||
"OptionEpisodes": "\u0415\u043f\u0438\u0437\u043e\u0434\u0438",
|
"OptionEpisodes": "\u0415\u043f\u0438\u0437\u043e\u0434\u0438",
|
||||||
"OptionOtherVideos": "\u0414\u0440\u0443\u0433\u0438 \u043a\u043b\u0438\u043f\u043e\u0432\u0435",
|
"OptionOtherVideos": "\u0414\u0440\u0443\u0433\u0438 \u043a\u043b\u0438\u043f\u043e\u0432\u0435",
|
||||||
"LabelFanartApiKey": "\u041b\u0438\u0447\u0435\u043d API \u043a\u043b\u044e\u0447:",
|
"LabelFanartApiKey": "\u041b\u0438\u0447\u0435\u043d API \u043a\u043b\u044e\u0447:",
|
||||||
"LabelFanartApiKeyHelp": "\u0417\u0430\u044f\u0432\u043a\u0438 \u0434\u043e fanart \u0431\u0435\u0437 \u043b\u0438\u0447\u0435\u043d API \u043a\u043b\u044e\u0447 \u0432\u0440\u044a\u0449\u0430\u0442 \u0440\u0435\u0437\u0443\u043b\u0442\u0430\u0442\u0438, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0431\u0438\u043b\u0438 \u043e\u0434\u043e\u0431\u0440\u0435\u043d\u0438 \u043f\u0440\u0435\u0434\u0438 \u043f\u043e\u0432\u0435\u0447\u0435 \u043e\u0442 7 \u0434\u043d\u0438. \u0421 \u043b\u0438\u0447\u0435\u043d API \u043a\u043b\u044e\u0447, \u0442\u043e\u0432\u0430 \u0432\u0440\u0435\u043c\u0435 \u043f\u0430\u0434\u0430 \u043d\u0430 48 \u0447\u0430\u0441\u0430, \u0430 \u0430\u043a\u043e \u0441\u0442\u0435 \u0438 fanart VIP \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b, \u0442\u043e \u0434\u043e\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u043d\u043e \u0449\u0435 \u043f\u0430\u0434\u043d\u0435 \u0434\u043e \u043e\u043a\u043e\u043b\u043e 10 \u043c\u0438\u043d\u0443\u0442\u0438.",
|
"LabelFanartApiKeyHelp": "\u0417\u0430\u044f\u0432\u043a\u0438 \u0434\u043e fanart \u0431\u0435\u0437 \u043b\u0438\u0447\u0435\u043d API \u043a\u043b\u044e\u0447 \u0432\u0440\u044a\u0449\u0430\u0442 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0431\u0438\u043b\u0438 \u043e\u0434\u043e\u0431\u0440\u0435\u043d\u0438 \u043f\u0440\u0435\u0434\u0438 \u043f\u043e\u0432\u0435\u0447\u0435 \u043e\u0442 7 \u0434\u043d\u0438. \u0421 \u043b\u0438\u0447\u0435\u043d API \u043a\u043b\u044e\u0447, \u0442\u043e\u0432\u0430 \u0432\u0440\u0435\u043c\u0435 \u043f\u0430\u0434\u0430 \u043d\u0430 48 \u0447\u0430\u0441\u0430, \u0430 \u0430\u043a\u043e \u0441\u0442\u0435 \u0438 fanart VIP \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b, \u0442\u043e\u0432\u0430 \u0441\u0442\u0430\u0432\u0430 \u043e\u043a\u043e\u043b\u043e 10 \u043c\u0438\u043d\u0443\u0442\u0438.",
|
||||||
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
||||||
"LabelMetadataDownloadLanguage": "\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u043d \u0435\u0437\u0438\u043a \u043d\u0430 \u0441\u0432\u0430\u043b\u044f\u043d\u0435:",
|
"LabelMetadataDownloadLanguage": "\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u043d \u0435\u0437\u0438\u043a \u043d\u0430 \u0441\u0432\u0430\u043b\u044f\u043d\u0435:",
|
||||||
"ButtonSignIn": "\u0412\u043b\u0438\u0437\u0430\u043d\u0435",
|
"ButtonSignIn": "\u0412\u043b\u0438\u0437\u0430\u043d\u0435",
|
||||||
|
@ -331,17 +331,17 @@
|
||||||
"TabFavorites": "\u041b\u044e\u0431\u0438\u043c\u0438",
|
"TabFavorites": "\u041b\u044e\u0431\u0438\u043c\u0438",
|
||||||
"TabMyLibrary": "\u041c\u043e\u044f\u0442\u0430 \u0411\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430",
|
"TabMyLibrary": "\u041c\u043e\u044f\u0442\u0430 \u0411\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430",
|
||||||
"ButtonCancelRecording": "\u041f\u0440\u0435\u043a\u044a\u0441\u043d\u0438 \u0417\u0430\u043f\u0438\u0441\u0432\u0430\u043d\u0435\u0442\u043e",
|
"ButtonCancelRecording": "\u041f\u0440\u0435\u043a\u044a\u0441\u043d\u0438 \u0417\u0430\u043f\u0438\u0441\u0432\u0430\u043d\u0435\u0442\u043e",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "\u0417\u0430\u043f\u043e\u0447\u0432\u0430\u0439, \u043a\u043e\u0433\u0430\u0442\u043e \u0435 \u0432\u044a\u0437\u043c\u043e\u0436\u043d\u043e:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "\u0421\u043f\u0438\u0440\u0430\u0439, \u043a\u043e\u0433\u0430\u0442\u043e \u0435 \u0432\u044a\u0437\u043c\u043e\u0436\u043d\u043e:",
|
||||||
"MinutesBefore": "minutes before",
|
"MinutesBefore": "\u043c\u0438\u043d\u0443\u0442\u0438 \u043f\u0440\u0435\u0434\u0438",
|
||||||
"MinutesAfter": "minutes after",
|
"MinutesAfter": "\u043c\u0438\u043d\u0443\u0442\u0438 \u0441\u043b\u0435\u0434",
|
||||||
"HeaderWhatsOnTV": "\u0412 \u043c\u043e\u043c\u0435\u043d\u0442\u0430",
|
"HeaderWhatsOnTV": "\u0412 \u043c\u043e\u043c\u0435\u043d\u0442\u0430",
|
||||||
"TabSettings": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438",
|
"TabSettings": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438",
|
||||||
"ButtonRefreshGuideData": "\u041e\u0431\u043d\u043e\u0432\u0438 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f\u0442\u0430 \u0432 \u0433\u0438\u0434-\u0430",
|
"ButtonRefreshGuideData": "\u041e\u0431\u043d\u043e\u0432\u0438 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f\u0442\u0430 \u0432 \u0433\u0438\u0434-\u0430",
|
||||||
"ButtonRefresh": "\u041e\u0431\u043d\u043e\u0432\u0438",
|
"ButtonRefresh": "\u041e\u0431\u043d\u043e\u0432\u0438",
|
||||||
"OptionPriority": "\u041f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442",
|
"OptionPriority": "\u041f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442",
|
||||||
"OptionRecordOnAllChannels": "Record on all channels",
|
"OptionRecordOnAllChannels": "\u0417\u0430\u043f\u0438\u0441\u0432\u0430\u0439 \u043d\u0430 \u0432\u0441\u0438\u0447\u043a\u0438 \u043a\u0430\u043d\u0430\u043b\u0438",
|
||||||
"OptionRecordAnytime": "Record at any time",
|
"OptionRecordAnytime": "\u0417\u0430\u043f\u0438\u0441\u0432\u0430\u0439 \u043f\u043e \u0432\u0441\u044f\u043a\u043e \u0432\u0440\u0435\u043c\u0435",
|
||||||
"OptionRecordOnlyNewEpisodes": "\u0417\u0430\u043f\u0438\u0441\u0432\u0430\u0439 \u0441\u0430\u043c\u043e \u043d\u043e\u0432\u0438 \u0435\u043f\u0438\u0437\u043e\u0434\u0438",
|
"OptionRecordOnlyNewEpisodes": "\u0417\u0430\u043f\u0438\u0441\u0432\u0430\u0439 \u0441\u0430\u043c\u043e \u043d\u043e\u0432\u0438 \u0435\u043f\u0438\u0437\u043e\u0434\u0438",
|
||||||
"HeaderDays": "\u0414\u043d\u0438",
|
"HeaderDays": "\u0414\u043d\u0438",
|
||||||
"HeaderActiveRecordings": "\u0410\u043a\u0442\u0438\u0432\u043d\u0438 \u0417\u0430\u043f\u0438\u0441\u0438",
|
"HeaderActiveRecordings": "\u0410\u043a\u0442\u0438\u0432\u043d\u0438 \u0417\u0430\u043f\u0438\u0441\u0438",
|
||||||
|
@ -358,7 +358,7 @@
|
||||||
"LabelNumberOfGuideDays": "\u0411\u0440\u043e\u0439 \u0434\u043d\u0438 \u0437\u0430 \u043a\u043e\u0438\u0442\u043e \u0434\u0430 \u0441\u0435 \u0441\u0432\u0430\u043b\u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u0430:",
|
"LabelNumberOfGuideDays": "\u0411\u0440\u043e\u0439 \u0434\u043d\u0438 \u0437\u0430 \u043a\u043e\u0438\u0442\u043e \u0434\u0430 \u0441\u0435 \u0441\u0432\u0430\u043b\u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u0430:",
|
||||||
"LabelNumberOfGuideDaysHelp": "\u0418\u0437\u0442\u0435\u0433\u043b\u044f\u043d\u0435\u0442\u043e \u043d\u0430 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u0430 \u0437\u0430\u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u043d\u0438 \u0434\u0430\u0432\u0430 \u0432\u044a\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442 \u0434\u0430 \u043f\u043b\u0430\u043d\u0438\u0440\u0430\u0442\u0435 \u043f\u043e-\u043d\u0430\u0442\u0430\u0442\u044a\u0448\u043d\u0438\u0442\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u043f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u043d\u043e, \u043d\u043e \u0438 \u043e\u0442\u043d\u0435\u043c\u0430 \u043f\u043e\u0432\u0435\u0447\u0435 \u0432\u0440\u0435\u043c\u0435, \u0437\u0430 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0442\u0435\u0433\u043b\u0438. \u0410\u0432\u0442\u043e\u043c\u0430\u0442 \u0449\u0435 \u0438\u0437\u0431\u0435\u0440\u0435 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u0431\u0440\u043e\u044f \u043d\u0430 \u043a\u0430\u043d\u0430\u043b\u0438\u0442\u0435.",
|
"LabelNumberOfGuideDaysHelp": "\u0418\u0437\u0442\u0435\u0433\u043b\u044f\u043d\u0435\u0442\u043e \u043d\u0430 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u0430 \u0437\u0430\u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u043d\u0438 \u0434\u0430\u0432\u0430 \u0432\u044a\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442 \u0434\u0430 \u043f\u043b\u0430\u043d\u0438\u0440\u0430\u0442\u0435 \u043f\u043e-\u043d\u0430\u0442\u0430\u0442\u044a\u0448\u043d\u0438\u0442\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u043f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u043d\u043e, \u043d\u043e \u0438 \u043e\u0442\u043d\u0435\u043c\u0430 \u043f\u043e\u0432\u0435\u0447\u0435 \u0432\u0440\u0435\u043c\u0435, \u0437\u0430 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0442\u0435\u0433\u043b\u0438. \u0410\u0432\u0442\u043e\u043c\u0430\u0442 \u0449\u0435 \u0438\u0437\u0431\u0435\u0440\u0435 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u0431\u0440\u043e\u044f \u043d\u0430 \u043a\u0430\u043d\u0430\u043b\u0438\u0442\u0435.",
|
||||||
"OptionAutomatic": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442",
|
"OptionAutomatic": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442",
|
||||||
"HeaderServices": "Services",
|
"HeaderServices": "\u0423\u0441\u043b\u0443\u0433\u0438",
|
||||||
"LabelCustomizeOptionsPerMediaType": "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u0437\u0430 \u0442\u0438\u043f \u043c\u0435\u0434\u0438\u044f:",
|
"LabelCustomizeOptionsPerMediaType": "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u0437\u0430 \u0442\u0438\u043f \u043c\u0435\u0434\u0438\u044f:",
|
||||||
"OptionDownloadThumbImage": "\u041c\u0438\u043d\u0438\u0430\u0442\u044e\u0440\u0430",
|
"OptionDownloadThumbImage": "\u041c\u0438\u043d\u0438\u0430\u0442\u044e\u0440\u0430",
|
||||||
"OptionDownloadMenuImage": "\u041c\u0435\u043d\u044e",
|
"OptionDownloadMenuImage": "\u041c\u0435\u043d\u044e",
|
||||||
|
@ -400,7 +400,7 @@
|
||||||
"LabelEnableRealtimeMonitor": "\u0410\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043d\u0430\u0431\u043b\u044e\u0434\u0435\u043d\u0438\u0435 \u0432 \u0440\u0435\u0430\u043b\u043d\u043e \u0432\u0440\u0435\u043c\u0435",
|
"LabelEnableRealtimeMonitor": "\u0410\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043d\u0430\u0431\u043b\u044e\u0434\u0435\u043d\u0438\u0435 \u0432 \u0440\u0435\u0430\u043b\u043d\u043e \u0432\u0440\u0435\u043c\u0435",
|
||||||
"LabelEnableRealtimeMonitorHelp": "\u041f\u0440\u043e\u043c\u0435\u043d\u0438\u0442\u0435 \u0449\u0435 \u0431\u044a\u0434\u0430\u0442 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u0435\u043d\u0438 \u0432\u0435\u0434\u043d\u0430\u0433\u0430, \u043d\u0430 \u043f\u043e\u0434\u0434\u044a\u0440\u0436\u0430\u043d\u0438 \u0444\u0430\u0439\u043b\u043e\u0432\u0438 \u0441\u0438\u0441\u0442\u0435\u043c\u0438.",
|
"LabelEnableRealtimeMonitorHelp": "\u041f\u0440\u043e\u043c\u0435\u043d\u0438\u0442\u0435 \u0449\u0435 \u0431\u044a\u0434\u0430\u0442 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u0435\u043d\u0438 \u0432\u0435\u0434\u043d\u0430\u0433\u0430, \u043d\u0430 \u043f\u043e\u0434\u0434\u044a\u0440\u0436\u0430\u043d\u0438 \u0444\u0430\u0439\u043b\u043e\u0432\u0438 \u0441\u0438\u0441\u0442\u0435\u043c\u0438.",
|
||||||
"ButtonScanLibrary": "\u0421\u043a\u0430\u043d\u0438\u0440\u0430\u0439 \u0411\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u0442\u0430",
|
"ButtonScanLibrary": "\u0421\u043a\u0430\u043d\u0438\u0440\u0430\u0439 \u0411\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u0442\u0430",
|
||||||
"HeaderNumberOfPlayers": "Players",
|
"HeaderNumberOfPlayers": "\u041f\u043b\u0435\u0439\u044a\u0440\u0438",
|
||||||
"OptionAnyNumberOfPlayers": "\u0412\u0441\u0435\u043a\u0438",
|
"OptionAnyNumberOfPlayers": "\u0412\u0441\u0435\u043a\u0438",
|
||||||
"Option1Player": "1+",
|
"Option1Player": "1+",
|
||||||
"Option2Player": "2+",
|
"Option2Player": "2+",
|
||||||
|
@ -416,12 +416,12 @@
|
||||||
"HeaderSpecialFeatures": "\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u043d\u0438 \u0414\u043e\u0431\u0430\u0432\u043a\u0438",
|
"HeaderSpecialFeatures": "\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u043d\u0438 \u0414\u043e\u0431\u0430\u0432\u043a\u0438",
|
||||||
"HeaderCastCrew": "\u0415\u043a\u0438\u043f",
|
"HeaderCastCrew": "\u0415\u043a\u0438\u043f",
|
||||||
"HeaderAdditionalParts": "\u0414\u043e\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u043d\u0438 \u0427\u0430\u0441\u0442\u0438",
|
"HeaderAdditionalParts": "\u0414\u043e\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u043d\u0438 \u0427\u0430\u0441\u0442\u0438",
|
||||||
"ButtonSplitVersionsApart": "Split Versions Apart",
|
"ButtonSplitVersionsApart": "\u0420\u0430\u0437\u0434\u0435\u043b\u0438 \u0432\u0435\u0440\u0441\u0438\u0438\u0442\u0435",
|
||||||
"ButtonPlayTrailer": "Trailer",
|
"ButtonPlayTrailer": "\u0422\u0440\u0435\u0439\u043b\u044a\u0440",
|
||||||
"LabelMissing": "Missing",
|
"LabelMissing": "\u041b\u0438\u043f\u0441\u0432\u0430\u0449",
|
||||||
"OptionSpecialEpisode": "Specials",
|
"OptionSpecialEpisode": "\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u043d\u0438",
|
||||||
"OptionMissingEpisode": "Missing Episodes",
|
"OptionMissingEpisode": "\u041b\u0438\u043f\u0441\u0432\u0430\u0449\u0438 \u0435\u043f\u0438\u0437\u043e\u0434\u0438",
|
||||||
"OptionUnairedEpisode": "Unaired Episodes",
|
"OptionUnairedEpisode": "\u041d\u0435\u0438\u0437\u043b\u044a\u0447\u0435\u043d\u0438 \u0435\u043f\u0438\u0437\u043e\u0434\u0438",
|
||||||
"OptionEpisodeSortName": "Episode Sort Name",
|
"OptionEpisodeSortName": "Episode Sort Name",
|
||||||
"OptionSeriesSortName": "Series Name",
|
"OptionSeriesSortName": "Series Name",
|
||||||
"OptionTvdbRating": "Tvdb Rating",
|
"OptionTvdbRating": "Tvdb Rating",
|
||||||
|
@ -499,58 +499,58 @@
|
||||||
"LabelWatchFolder": "Watch folder:",
|
"LabelWatchFolder": "Watch folder:",
|
||||||
"LabelWatchFolderHelp": "The server will poll this folder during the 'Organize new media files' scheduled task.",
|
"LabelWatchFolderHelp": "The server will poll this folder during the 'Organize new media files' scheduled task.",
|
||||||
"LabelMinFileSizeForOrganize": "Minimum file size (MB):",
|
"LabelMinFileSizeForOrganize": "Minimum file size (MB):",
|
||||||
"LabelMinFileSizeForOrganizeHelp": "Files under this size will be ignored.",
|
"LabelMinFileSizeForOrganizeHelp": "\u0424\u0430\u0439\u043b\u043e\u0432\u0435 \u043f\u043e\u0434 \u0442\u043e\u0437\u0438 \u0440\u0430\u0437\u043c\u0435\u0440 \u0449\u0435 \u0431\u044a\u0434\u0430\u0442 \u043f\u0440\u043e\u043f\u0443\u0441\u043a\u0430\u043d\u0438.",
|
||||||
"LabelSeasonFolderPattern": "Season folder pattern:",
|
"LabelSeasonFolderPattern": "\u041c\u043e\u0434\u0435\u043b \u043d\u0430 \u043f\u0430\u043f\u043a\u0438\u0442\u0435 \u0441\u044a\u0441 \u0441\u0435\u0437\u043e\u043d\u0438:",
|
||||||
"LabelSeasonZeroFolderName": "Season zero folder name:",
|
"LabelSeasonZeroFolderName": "\u0418\u043c\u0435 \u043d\u0430 \u043f\u0430\u043f\u043a\u0430 \u0441 \u043d\u0443\u043b\u0435\u0432 \u0441\u0435\u0437\u043e\u043d:",
|
||||||
"HeaderEpisodeFilePattern": "Episode file pattern",
|
"HeaderEpisodeFilePattern": "\u041c\u043e\u0434\u0435\u043b \u043d\u0430 \u043f\u0430\u043f\u043a\u0438\u0442\u0435 \u0441 \u0435\u043f\u0438\u0437\u043e\u0434\u0438:",
|
||||||
"LabelEpisodePattern": "Episode pattern:",
|
"LabelEpisodePattern": "\u041c\u043e\u0434\u0435\u043b \u043d\u0430 \u0435\u043f\u0438\u0437\u043e\u0434\u0438:",
|
||||||
"LabelMultiEpisodePattern": "Multi-Episode pattern:",
|
"LabelMultiEpisodePattern": "\u041c\u043d\u043e\u0433\u043e\u0435\u043f\u0438\u0437\u043e\u0434\u0435\u043d \u043c\u043e\u0434\u0435\u043b:",
|
||||||
"HeaderSupportedPatterns": "Supported Patterns",
|
"HeaderSupportedPatterns": "\u041f\u043e\u0434\u0434\u044a\u0440\u0436\u0430\u043d\u0438 \u043c\u043e\u0434\u0435\u043b\u0438",
|
||||||
"HeaderTerm": "Term",
|
"HeaderTerm": "\u0422\u0435\u0440\u043c\u0438\u043d",
|
||||||
"HeaderPattern": "Pattern",
|
"HeaderPattern": "\u041c\u043e\u0434\u0435\u043b",
|
||||||
"HeaderResult": "Result",
|
"HeaderResult": "\u0420\u0435\u0437\u0443\u043b\u0442\u0430\u0442",
|
||||||
"LabelDeleteEmptyFolders": "Delete empty folders after organizing",
|
"LabelDeleteEmptyFolders": "\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u0430\u0437\u043d\u0438\u0442\u0435 \u043f\u0430\u043f\u043a\u0438 \u0441\u043b\u0435\u0434 \u043e\u0433\u0440\u0430\u043d\u0438\u0437\u0438\u0440\u0430\u043d\u0435\u0442\u043e",
|
||||||
"LabelDeleteEmptyFoldersHelp": "Enable this to keep the download directory clean.",
|
"LabelDeleteEmptyFoldersHelp": "\u0410\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u0439\u0442\u0435 \u0442\u043e\u0432\u0430, \u0437\u0430 \u0434\u0430 \u043f\u043e\u0434\u0434\u044a\u0440\u0436\u0430\u0442\u0435 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f\u0442\u0430 \u0441\u044a\u0441 \u0441\u0432\u0430\u043b\u0435\u043d\u0438\u0442\u0435 \u0444\u0430\u0439\u043b\u043e\u0432\u0435 \u0447\u0438\u0441\u0442\u0430.",
|
||||||
"LabelDeleteLeftOverFiles": "Delete left over files with the following extensions:",
|
"LabelDeleteLeftOverFiles": "\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u043e\u0441\u0442\u0430\u0442\u044a\u0447\u043d\u0438\u0442\u0435 \u0444\u0430\u0439\u043b\u043e\u0432\u0435 \u0441\u044a\u0441 \u0441\u043b\u0435\u0434\u043d\u0438\u0442\u0435 \u0444\u043e\u0440\u043c\u0430\u0442\u0438:",
|
||||||
"LabelDeleteLeftOverFilesHelp": "Separate with ;. For example: .nfo;.txt",
|
"LabelDeleteLeftOverFilesHelp": "\u041e\u0442\u0434\u0435\u043b\u044f\u0439\u0442\u0435 \u0433\u0438 \u0441 ;. \u041f\u0440\u0438\u043c\u0435\u0440: .nfo;.txt",
|
||||||
"OptionOverwriteExistingEpisodes": "Overwrite existing episodes",
|
"OptionOverwriteExistingEpisodes": "\u041f\u0440\u0435\u0437\u0430\u043f\u0438\u0441\u0432\u0430\u043d\u0435 \u0432\u0435\u0447\u0435 \u0441\u044a\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430\u0449\u0438\u0442\u0435 \u0435\u043f\u0438\u0437\u043e\u0434\u0438",
|
||||||
"LabelTransferMethod": "Transfer method",
|
"LabelTransferMethod": "\u041c\u0435\u0442\u043e\u0434 \u043d\u0430 \u043f\u0440\u0435\u0445\u0432\u044a\u0440\u043b\u044f\u043d\u0435",
|
||||||
"OptionCopy": "Copy",
|
"OptionCopy": "\u041a\u043e\u043f\u0438\u0440\u0430\u043d\u0435",
|
||||||
"OptionMove": "Move",
|
"OptionMove": "\u041c\u0435\u0441\u0442\u0435\u043d\u0435",
|
||||||
"LabelTransferMethodHelp": "Copy or move files from the watch folder",
|
"LabelTransferMethodHelp": "\u041a\u043e\u043f\u0438\u0440\u0430\u043d\u0435 \u0438\u043b\u0438 \u043f\u0440\u0435\u043c\u0435\u0441\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u0444\u0430\u0439\u043b\u043e\u0432\u0435 \u043e\u0442 \u043f\u0430\u043f\u043a\u0430\u0442\u0430 \u0441 \u0433\u043b\u0435\u0434\u0430\u043d\u0438\u044f",
|
||||||
"HeaderLatestNews": "Latest News",
|
"HeaderLatestNews": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438 \u043d\u043e\u0432\u0438\u043d\u0438",
|
||||||
"HeaderRunningTasks": "Running Tasks",
|
"HeaderRunningTasks": "\u0418\u0437\u043f\u044a\u043b\u043d\u044f\u0432\u0430\u0449\u0438 \u0441\u0435 \u0437\u0430\u0434\u0430\u0447\u0438",
|
||||||
"HeaderActiveDevices": "Active Devices",
|
"HeaderActiveDevices": "\u0410\u043a\u0442\u0438\u0432\u043d\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430",
|
||||||
"HeaderPendingInstallations": "Pending Installations",
|
"HeaderPendingInstallations": "\u0427\u0430\u043a\u0430\u0449\u0438 \u0438\u043d\u0441\u0442\u0430\u043b\u0430\u0446\u0438\u0438",
|
||||||
"ButtonRestartNow": "Restart Now",
|
"ButtonRestartNow": "\u0420\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0439 \u0441\u0435\u0433\u0430",
|
||||||
"ButtonRestart": "Restart",
|
"ButtonRestart": "\u0420\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435",
|
||||||
"ButtonShutdown": "Shutdown",
|
"ButtonShutdown": "\u0417\u0430\u0433\u0430\u0441\u044f\u043d\u0435",
|
||||||
"ButtonUpdateNow": "Update Now",
|
"ButtonUpdateNow": "\u041e\u0431\u043d\u043e\u0432\u0438 \u0441\u0435\u0433\u0430",
|
||||||
"TabHosting": "Hosting",
|
"TabHosting": "\u0425\u043e\u0441\u0442\u0438\u043d\u0433",
|
||||||
"PleaseUpdateManually": "Please shutdown the server and update manually.",
|
"PleaseUpdateManually": "\u041c\u043e\u043b\u044f \u0437\u0430\u0433\u0430\u0441\u0435\u0442\u0435 \u0441\u044a\u0440\u0432\u044a\u0440\u0430 \u0438 \u043e\u0431\u043d\u043e\u0432\u0435\u0442\u0435 \u0440\u044a\u0447\u043d\u043e.",
|
||||||
"NewServerVersionAvailable": "\u041d\u0430\u043b\u0438\u0447\u043d\u0430 \u0435 \u043d\u043e\u0432\u0430 \u0432\u0435\u0440\u0441\u0438\u044f \u043d\u0430 Emby Server!",
|
"NewServerVersionAvailable": "\u041d\u0430\u043b\u0438\u0447\u043d\u0430 \u0435 \u043d\u043e\u0432\u0430 \u0432\u0435\u0440\u0441\u0438\u044f \u043d\u0430 Emby Server!",
|
||||||
"ServerUpToDate": "Emby Server \u0435 \u043d\u0430\u0439-\u043d\u043e\u0432\u0430\u0442\u0430 \u043d\u0430\u043b\u0438\u0447\u043d\u0430 \u0432\u0435\u0440\u0441\u0438\u044f.",
|
"ServerUpToDate": "Emby Server \u0435 \u043d\u0430\u0439-\u043d\u043e\u0432\u0430\u0442\u0430 \u043d\u0430\u043b\u0438\u0447\u043d\u0430 \u0432\u0435\u0440\u0441\u0438\u044f.",
|
||||||
"LabelComponentsUpdated": "The following components have been installed or updated:",
|
"LabelComponentsUpdated": "\u0421\u043b\u0435\u0434\u043d\u0438\u0442\u0435 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0438 \u0441\u0430 \u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0438 \u0438\u043b\u0438 \u043e\u0431\u043d\u043e\u0432\u0435\u043d\u0438:",
|
||||||
"MessagePleaseRestartServerToFinishUpdating": "Please restart the server to finish applying updates.",
|
"MessagePleaseRestartServerToFinishUpdating": "\u041c\u043e\u043b\u044f \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0439\u0442\u0435 \u0441\u044a\u0440\u0432\u044a\u0440\u0430, \u0437\u0430 \u0434\u0430 \u0437\u0430\u0432\u044a\u0440\u0448\u0438 \u043e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435\u0442\u043e.",
|
||||||
"LabelDownMixAudioScale": "Audio boost when downmixing:",
|
"LabelDownMixAudioScale": "\u0423\u0441\u0438\u043b\u0432\u0430\u043d\u0435 \u043d\u0430 \u0430\u0443\u0434\u0438\u043e\u0442\u043e \u0441\u043b\u0435\u0434 downmixing:",
|
||||||
"LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.",
|
"LabelDownMixAudioScaleHelp": "\u0423\u0441\u0438\u043b\u0432\u0430 \u0437\u0432\u0443\u043a\u0430 \u0441\u043b\u0435\u0434 downmixing. \u0412\u044a\u0432\u0435\u0434\u0435\u0442\u0435 1, \u0437\u0430 \u0434\u0430 \u0441\u0435 \u0437\u0430\u043f\u0430\u0437\u0438 \u043e\u0440\u0438\u0433\u0438\u043d\u0430\u043b\u043d\u043e\u0442\u043e \u043d\u0438\u0432\u043e \u043d\u0430 \u0437\u0432\u0443\u043a\u0430.",
|
||||||
"ButtonLinkKeys": "Transfer Key",
|
"ButtonLinkKeys": "\u041f\u0440\u0435\u043c\u0435\u0441\u0442\u0438 \u043a\u043b\u044e\u0447\u0430",
|
||||||
"LabelOldSupporterKey": "Old Emby Premiere key",
|
"LabelOldSupporterKey": "\u0421\u0442\u0430\u0440 \u043a\u043b\u044e\u0447 \u0437\u0430 Emby Premiere",
|
||||||
"LabelNewSupporterKey": "New Emby Premiere key",
|
"LabelNewSupporterKey": "\u041d\u043e\u0432 \u043a\u043b\u044e\u0447 \u0437\u0430 Emby Premiere",
|
||||||
"HeaderMultipleKeyLinking": "Transfer to New Key",
|
"HeaderMultipleKeyLinking": "\u041f\u0440\u0435\u043c\u0435\u0441\u0442\u0432\u0430\u043d\u0435 \u043a\u044a\u043c \u043d\u043e\u0432\u0438\u044f \u043a\u043b\u044e\u0447",
|
||||||
"MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
|
"MultipleKeyLinkingHelp": "\u0410\u043a\u043e \u0441\u0442\u0435 \u043f\u043e\u043b\u0443\u0447\u0438\u043b\u0438 \u043d\u043e\u0432 Emby Premiere \u043a\u043b\u044e\u0447, \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439\u0442\u0435 \u0442\u0430\u0437\u0438 \u0444\u043e\u0440\u043c\u0430, \u0437\u0430 \u0434\u0430 \u043f\u0440\u0435\u0445\u0432\u044a\u0440\u043b\u0438\u0442\u0435 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438\u0442\u0435 \u043d\u0430 \u0441\u0442\u0430\u0440\u0438\u044f \u043a\u043b\u044e\u0447 \u043a\u044a\u043c \u043d\u043e\u0432\u0438\u044f.",
|
||||||
"LabelCurrentEmailAddress": "Current email address",
|
"LabelCurrentEmailAddress": "\u0422\u0435\u043a\u0443\u0449 email \u0430\u0434\u0440\u0435\u0441",
|
||||||
"LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.",
|
"LabelCurrentEmailAddressHelp": "\u0422\u0435\u043a\u0443\u0449\u0438\u044f email \u0430\u0434\u0440\u0435\u0441, \u043a\u044a\u043c \u043a\u043e\u0439\u0442\u043e \u0435 \u0431\u0438\u043b \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u043d \u043d\u043e\u0432\u0438\u044f\u0442 \u043a\u043b\u044e\u0447.",
|
||||||
"HeaderForgotKey": "Forgot Key",
|
"HeaderForgotKey": "\u0417\u0430\u0431\u0440\u0430\u0432\u0435\u043d \u043a\u043b\u044e\u0447",
|
||||||
"LabelEmailAddress": "Email address",
|
"LabelEmailAddress": "Email \u0430\u0434\u0440\u0435\u0441",
|
||||||
"LabelSupporterEmailAddress": "The email address that was used to purchase the key.",
|
"LabelSupporterEmailAddress": "\u0418\u043c\u0435\u0439\u043b\u044a\u0442, \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d \u0437\u0430 \u0437\u0430\u043a\u0443\u043f\u0443\u0432\u0430\u043d\u0435 \u043d\u0430 \u043a\u043b\u044e\u0447\u0430.",
|
||||||
"ButtonRetrieveKey": "Retrieve Key",
|
"ButtonRetrieveKey": "\u0418\u0437\u0442\u0435\u0433\u043b\u0438 \u043a\u043b\u044e\u0447",
|
||||||
"LabelSupporterKey": "Emby Premiere key (paste from email):",
|
"LabelSupporterKey": "Emby Premiere \u043a\u043b\u044e\u0447 (\u043f\u043e\u0441\u0442\u0430\u0432\u0438 \u043e\u0442 email-\u0430):",
|
||||||
"LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
|
"LabelSupporterKeyHelp": "\u0412\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u0432\u0430\u0448\u0438\u044f Emby Premiere key, \u0437\u0430 \u0434\u0430 \u0441\u0435 \u0432\u044a\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 \u043e\u0442 \u0434\u043e\u043f\u044a\u043b\u043d\u0435\u043d\u0438\u044f\u0442\u0430, \u043a\u043e\u0438\u0442\u043e \u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e\u0442\u043e \u0435 \u043d\u0430\u043f\u0440\u0430\u0432\u0438\u043b\u043e \u0437\u0430 Emby.",
|
||||||
"MessageInvalidKey": "Emby Premiere key is missing or invalid.",
|
"MessageInvalidKey": "\u041a\u043b\u044e\u0447\u044a\u0442 \u0437\u0430 Emby Premiere \u043b\u0438\u043f\u0441\u0432\u0430 \u0438\u043b\u0438 \u0435 \u043d\u0435\u0432\u0430\u043b\u0438\u0434\u0435\u043d.",
|
||||||
"ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
|
"ErrorMessageInvalidKey": "\u0417\u0430 \u0434\u0430 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u0430\u043d\u043e \u043a\u0430\u043a\u0432\u043e\u0442\u043e \u0438 \u0434\u0430 \u0435 \u043f\u0440\u0435\u043c\u0438\u0443\u043c \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0438\u043c\u0430\u0442\u0435 \u0430\u043a\u0442\u0438\u0432\u0435\u043d Emby \u0430\u0431\u043e\u043d\u0430\u043c\u0435\u043d\u0442.",
|
||||||
"HeaderDisplaySettings": "Display Settings",
|
"HeaderDisplaySettings": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u0434\u0438\u0441\u043f\u043b\u0435\u044f",
|
||||||
"LabelEnableDlnaServer": "Enable Dlna server",
|
"LabelEnableDlnaServer": "\u0410\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u0439 DLNA \u0441\u044a\u0440\u0432\u044a\u0440",
|
||||||
"LabelEnableDlnaServerHelp": "\u0420\u0430\u0437\u0440\u0435\u0448\u0430\u0432\u0430 \u043d\u0430 UPnP \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 \u043c\u0440\u0435\u0436\u0430\u0442\u0430 \u0434\u0430 \u0440\u0430\u0437\u0433\u043b\u0435\u0436\u0434\u0430\u0442 \u0438 \u043f\u0443\u0441\u043a\u0430\u0442 Emby \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435.",
|
"LabelEnableDlnaServerHelp": "\u0420\u0430\u0437\u0440\u0435\u0448\u0430\u0432\u0430 \u043d\u0430 UPnP \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 \u043c\u0440\u0435\u0436\u0430\u0442\u0430 \u0434\u0430 \u0440\u0430\u0437\u0433\u043b\u0435\u0436\u0434\u0430\u0442 \u0438 \u043f\u0443\u0441\u043a\u0430\u0442 Emby \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435.",
|
||||||
"LabelEnableBlastAliveMessages": "Blast alive messages",
|
"LabelEnableBlastAliveMessages": "Blast alive messages",
|
||||||
"LabelEnableBlastAliveMessagesHelp": "Enable this if the server is not detected reliably by other UPnP devices on your network.",
|
"LabelEnableBlastAliveMessagesHelp": "Enable this if the server is not detected reliably by other UPnP devices on your network.",
|
||||||
|
@ -570,7 +570,7 @@
|
||||||
"CategoryUser": "User",
|
"CategoryUser": "User",
|
||||||
"CategorySystem": "System",
|
"CategorySystem": "System",
|
||||||
"CategoryApplication": "Application",
|
"CategoryApplication": "Application",
|
||||||
"CategoryPlugin": "Plugin",
|
"CategoryPlugin": "\u0414\u043e\u0431\u0430\u0432\u043a\u0438",
|
||||||
"LabelAvailableTokens": "Available tokens:",
|
"LabelAvailableTokens": "Available tokens:",
|
||||||
"AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.",
|
"AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.",
|
||||||
"OptionAllUsers": "All users",
|
"OptionAllUsers": "All users",
|
||||||
|
@ -588,60 +588,71 @@
|
||||||
"ButtonHome": "Home",
|
"ButtonHome": "Home",
|
||||||
"ButtonSearch": "Search",
|
"ButtonSearch": "Search",
|
||||||
"ButtonSettings": "Settings",
|
"ButtonSettings": "Settings",
|
||||||
|
"Settings": "Settings",
|
||||||
|
"Mute": "Mute",
|
||||||
|
"Unmute": "Unmute",
|
||||||
|
"Subtitles": "Subtitles",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Rewind",
|
||||||
|
"Fullscreen": "Full screen",
|
||||||
|
"ExitFullscreen": "Exit full screen",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Play on another device",
|
||||||
|
"FastForward": "Fast-forward",
|
||||||
"ButtonTakeScreenshot": "Capture Screenshot",
|
"ButtonTakeScreenshot": "Capture Screenshot",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
"TabNavigation": "Navigation",
|
"TabNavigation": "Navigation",
|
||||||
"TabControls": "Controls",
|
"TabControls": "Controls",
|
||||||
"ButtonScenes": "Scenes",
|
"ButtonScenes": "Scenes",
|
||||||
"ButtonSubtitles": "Subtitles",
|
"ButtonSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u0438",
|
||||||
"ButtonPreviousTrack": "Previous track",
|
"ButtonPreviousTrack": "\u041f\u0440\u0435\u0434\u0438\u0448\u043d\u0430 \u043f\u044a\u0442\u0435\u043a\u0430",
|
||||||
"ButtonNextTrack": "Next track",
|
"ButtonNextTrack": "\u0421\u043b\u0435\u0434\u0432\u0430\u0449\u0430 \u043f\u044a\u0442\u0435\u043a\u0430",
|
||||||
"ButtonStop": "Stop",
|
"ButtonStop": "\u0421\u0442\u043e\u043f",
|
||||||
"ButtonPause": "Pause",
|
"ButtonPause": "\u041f\u0430\u0443\u0437\u0430",
|
||||||
"ButtonNext": "Next",
|
"ButtonNext": "\u0421\u043b\u0435\u0434\u0432\u0430\u0449",
|
||||||
"ButtonPrevious": "Previous",
|
"ButtonPrevious": "\u041f\u0440\u0435\u0434\u0438\u0448\u0435\u043d",
|
||||||
"LabelGroupMoviesIntoCollections": "Group movies into collections",
|
"LabelGroupMoviesIntoCollections": "\u0413\u0440\u0443\u043f\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0444\u0438\u043b\u043c\u0438\u0442\u0435 \u0432 \u043a\u043e\u043b\u0435\u043a\u0446\u0438\u0438",
|
||||||
"LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.",
|
"LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.",
|
||||||
"ButtonVolumeUp": "Volume up",
|
"ButtonVolumeUp": "\u0421\u0438\u043b\u0430 \u043d\u0430 \u0437\u0432\u0443\u043a\u0430 +",
|
||||||
"ButtonVolumeDown": "Volume down",
|
"ButtonVolumeDown": "\u0421\u0438\u043b\u0430 \u043d\u0430 \u0437\u0432\u0443\u043a\u0430 -",
|
||||||
"HeaderLatestMedia": "Latest Media",
|
"HeaderLatestMedia": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0430 \u043c\u0435\u0434\u0438\u044f",
|
||||||
"OptionNoSubtitles": "\u0411\u0435\u0437 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u0438",
|
"OptionNoSubtitles": "\u0411\u0435\u0437 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u0438",
|
||||||
"HeaderCollections": "Collections",
|
"HeaderCollections": "\u041a\u043e\u043b\u0435\u043a\u0446\u0438\u0438",
|
||||||
"LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.",
|
"LabelProfileCodecsHelp": "\u0420\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0438 \u0441\u044a\u0441 \u0437\u0430\u043f\u0435\u0442\u0430\u044f. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u043e\u0441\u0442\u0430\u0432\u0435\u043d\u043e \u043f\u0440\u0430\u0437\u043d\u043e, \u0437\u0430 \u0434\u0430 \u0441\u0435 \u043e\u0442\u043d\u0430\u0441\u044f \u0437\u0430 \u0432\u0441\u0438\u0447\u043a\u0438 \u043a\u043e\u0434\u0435\u0446\u0438.",
|
||||||
"LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.",
|
"LabelProfileContainersHelp": "\u0420\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0438 \u0441\u044a\u0441 \u0437\u0430\u043f\u0435\u0442\u0430\u044f. \u041c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u043e\u0441\u0442\u0430\u0432\u0435\u043d\u043e \u043f\u0440\u0430\u0437\u043d\u043e, \u0437\u0430 \u0434\u0430 \u0441\u0435 \u043e\u0442\u043d\u0430\u0441\u044f \u0437\u0430 \u0432\u0441\u0438\u0447\u043a\u0438 \u043a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440\u0438.",
|
||||||
"HeaderResponseProfile": "Response Profile",
|
"HeaderResponseProfile": "\u041f\u0440\u043e\u0444\u0438\u043b \u043d\u0430 \u043e\u0442\u0433\u043e\u0432\u043e\u0440\u0430",
|
||||||
"LabelType": "Type:",
|
"LabelType": "\u0422\u0438\u043f:",
|
||||||
"LabelProfileContainer": "Container:",
|
"LabelProfileContainer": "\u041a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440:",
|
||||||
"LabelProfileVideoCodecs": "Video codecs:",
|
"LabelProfileVideoCodecs": "\u0412\u0438\u0434\u0435\u043e \u043a\u043e\u0434\u0435\u0446\u0438:",
|
||||||
"LabelProfileAudioCodecs": "Audio codecs:",
|
"LabelProfileAudioCodecs": "\u0410\u0443\u0434\u0438\u043e \u043a\u043e\u0434\u0435\u0446\u0438:",
|
||||||
"LabelProfileCodecs": "Codecs:",
|
"LabelProfileCodecs": "\u041a\u043e\u0434\u0435\u0446\u0438:",
|
||||||
"HeaderDirectPlayProfile": "Direct Play Profile",
|
"HeaderDirectPlayProfile": "Direct Play \u043f\u0440\u043e\u0444\u0438\u043b",
|
||||||
"HeaderTranscodingProfile": "Transcoding Profile",
|
"HeaderTranscodingProfile": "\u041f\u0440\u043e\u0444\u0438\u043b \u043d\u0430 \u0442\u0440\u0430\u043d\u0441\u043a\u043e\u0434\u0438\u043d\u0433",
|
||||||
"HeaderCodecProfile": "Codec Profile",
|
"HeaderCodecProfile": "\u041f\u0440\u043e\u0444\u0438\u043b \u043d\u0430 \u043a\u043e\u0434\u0435\u043a\u0430",
|
||||||
"HeaderContainerProfile": "Container Profile",
|
"HeaderContainerProfile": "\u041f\u0440\u043e\u0444\u0438\u043b \u043d\u0430 \u043a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440\u0430",
|
||||||
"OptionProfileVideo": "Video",
|
"OptionProfileVideo": "\u0412\u0438\u0434\u0435\u043e",
|
||||||
"OptionProfileAudio": "Audio",
|
"OptionProfileAudio": "\u0410\u0443\u0434\u0438\u043e",
|
||||||
"OptionProfileVideoAudio": "Video Audio",
|
"OptionProfileVideoAudio": "\u0412\u0438\u0434\u0435\u043e \u0410\u0443\u0434\u0438\u043e",
|
||||||
"OptionProfilePhoto": "Photo",
|
"OptionProfilePhoto": "\u0421\u043d\u0438\u043c\u043a\u0430",
|
||||||
"LabelUserLibrary": "User library:",
|
"LabelUserLibrary": "\u0411\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f:",
|
||||||
"LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.",
|
"LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.",
|
||||||
"OptionPlainStorageFolders": "Display all folders as plain storage folders",
|
"OptionPlainStorageFolders": "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u0439 \u0432\u0441\u0438\u0447\u043a\u0438 \u043f\u0430\u043f\u043a\u0438 \u043a\u0430\u0442\u043e \u043f\u0430\u043f\u043a\u0438 \u0437\u0430 \u043e\u0431\u0438\u043a\u043d\u043e\u0432\u0435\u043d\u043e \u0441\u044a\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0435",
|
||||||
"OptionPlainStorageFoldersHelp": "If enabled, all folders are represented in DIDL as \"object.container.storageFolder\" instead of a more specific type, such as \"object.container.person.musicArtist\".",
|
"OptionPlainStorageFoldersHelp": "If enabled, all folders are represented in DIDL as \"object.container.storageFolder\" instead of a more specific type, such as \"object.container.person.musicArtist\".",
|
||||||
"OptionPlainVideoItems": "Display all videos as plain video items",
|
"OptionPlainVideoItems": "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u0439 \u0432\u0441\u0438\u0447\u043a\u0438 \u0432\u0438\u0434\u0435\u043e \u043a\u043b\u0438\u043f\u043e\u0432\u0435 \u043a\u0430\u0442\u043e \u043e\u0431\u0438\u043a\u043d\u043e\u0432\u0435\u043d\u0438",
|
||||||
"OptionPlainVideoItemsHelp": "If enabled, all videos are represented in DIDL as \"object.item.videoItem\" instead of a more specific type, such as \"object.item.videoItem.movie\".",
|
"OptionPlainVideoItemsHelp": "If enabled, all videos are represented in DIDL as \"object.item.videoItem\" instead of a more specific type, such as \"object.item.videoItem.movie\".",
|
||||||
"LabelSupportedMediaTypes": "Supported Media Types:",
|
"LabelSupportedMediaTypes": "\u041f\u043e\u0434\u0434\u044a\u0440\u0436\u0430\u043d\u0438 \u0442\u0438\u043f\u043e\u0432\u0435 \u043c\u0435\u0434\u0438\u044f:",
|
||||||
"HeaderIdentification": "Identification",
|
"HeaderIdentification": "\u0418\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f",
|
||||||
"TabDirectPlay": "Direct Play",
|
"TabDirectPlay": "Direct Play",
|
||||||
"TabContainers": "Containers",
|
"TabContainers": "\u041a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440\u0438",
|
||||||
"TabCodecs": "Codecs",
|
"TabCodecs": "\u041a\u043e\u0434\u0435\u0446\u0438",
|
||||||
"TabResponses": "Responses",
|
"TabResponses": "\u041e\u0442\u0433\u043e\u0432\u043e\u0440\u0438",
|
||||||
"HeaderProfileInformation": "Profile Information",
|
"HeaderProfileInformation": "\u041f\u0440\u043e\u0444\u0438\u043b",
|
||||||
"LabelEmbedAlbumArtDidl": "Embed album art in Didl",
|
"LabelEmbedAlbumArtDidl": "\u0412\u0433\u0440\u0430\u0434\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u0430\u043b\u0431\u0443\u043c\u043d\u043e \u0438\u0437\u043a\u0443\u0441\u0442\u0432\u043e \u0432 Didl",
|
||||||
"LabelEmbedAlbumArtDidlHelp": "Some devices prefer this method for obtaining album art. Others may fail to play with this option enabled.",
|
"LabelEmbedAlbumArtDidlHelp": "Some devices prefer this method for obtaining album art. Others may fail to play with this option enabled.",
|
||||||
"LabelAlbumArtPN": "Album art PN:",
|
"LabelAlbumArtPN": "\u041f\u041d \u043d\u0430 \u0430\u043b\u0431\u0443\u043c\u043d\u043e\u0442\u043e \u0438\u0437\u043a\u0443\u0441\u0442\u0432\u043e:",
|
||||||
"LabelAlbumArtHelp": "PN used for album art, within the dlna:profileID attribute on upnp:albumArtURI. Some devices require a specific value, regardless of the size of the image.",
|
"LabelAlbumArtHelp": "PN used for album art, within the dlna:profileID attribute on upnp:albumArtURI. Some devices require a specific value, regardless of the size of the image.",
|
||||||
"LabelAlbumArtMaxWidth": "Album art max width:",
|
"LabelAlbumArtMaxWidth": "\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u043d\u0430 \u0448\u0438\u0440\u0438\u043d\u0430 \u043d\u0430 \u0430\u043b\u0431\u0443\u043c\u043d\u043e\u0442\u043e \u0438\u0437\u043a\u0443\u0441\u0442\u0432\u043e:",
|
||||||
"LabelAlbumArtMaxWidthHelp": "Max resolution of album art exposed via upnp:albumArtURI.",
|
"LabelAlbumArtMaxWidthHelp": "Max resolution of album art exposed via upnp:albumArtURI.",
|
||||||
"LabelAlbumArtMaxHeight": "Album art max height:",
|
"LabelAlbumArtMaxHeight": "Album art max height:",
|
||||||
"LabelAlbumArtMaxHeightHelp": "Max resolution of album art exposed via upnp:albumArtURI.",
|
"LabelAlbumArtMaxHeightHelp": "Max resolution of album art exposed via upnp:albumArtURI.",
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "Inici",
|
"ButtonHome": "Inici",
|
||||||
"ButtonSearch": "Cercar",
|
"ButtonSearch": "Cercar",
|
||||||
"ButtonSettings": "Prefer\u00e8ncies",
|
"ButtonSettings": "Prefer\u00e8ncies",
|
||||||
|
"Settings": "Settings",
|
||||||
|
"Mute": "Mute",
|
||||||
|
"Unmute": "Unmute",
|
||||||
|
"Subtitles": "Subtitles",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Rewind",
|
||||||
|
"Fullscreen": "Full screen",
|
||||||
|
"ExitFullscreen": "Exit full screen",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Play on another device",
|
||||||
|
"FastForward": "Fast-forward",
|
||||||
"ButtonTakeScreenshot": "Captura de Pantalla",
|
"ButtonTakeScreenshot": "Captura de Pantalla",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "Reprodu\u00efnt",
|
"TabNowPlaying": "Reprodu\u00efnt",
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "Dom\u016f",
|
"ButtonHome": "Dom\u016f",
|
||||||
"ButtonSearch": "Hled\u00e1n\u00ed",
|
"ButtonSearch": "Hled\u00e1n\u00ed",
|
||||||
"ButtonSettings": "Nastaven\u00ed",
|
"ButtonSettings": "Nastaven\u00ed",
|
||||||
|
"Settings": "Settings",
|
||||||
|
"Mute": "Mute",
|
||||||
|
"Unmute": "Unmute",
|
||||||
|
"Subtitles": "Subtitles",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Rewind",
|
||||||
|
"Fullscreen": "Full screen",
|
||||||
|
"ExitFullscreen": "Exit full screen",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Play on another device",
|
||||||
|
"FastForward": "Fast-forward",
|
||||||
"ButtonTakeScreenshot": "Zachytit obrazovku",
|
"ButtonTakeScreenshot": "Zachytit obrazovku",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "P\u0159ehr\u00e1v\u00e1 se",
|
"TabNowPlaying": "P\u0159ehr\u00e1v\u00e1 se",
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "Home",
|
"ButtonHome": "Home",
|
||||||
"ButtonSearch": "Search",
|
"ButtonSearch": "Search",
|
||||||
"ButtonSettings": "Settings",
|
"ButtonSettings": "Settings",
|
||||||
|
"Settings": "Settings",
|
||||||
|
"Mute": "Mute",
|
||||||
|
"Unmute": "Unmute",
|
||||||
|
"Subtitles": "Subtitles",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Rewind",
|
||||||
|
"Fullscreen": "Full screen",
|
||||||
|
"ExitFullscreen": "Exit full screen",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Play on another device",
|
||||||
|
"FastForward": "Fast-forward",
|
||||||
"ButtonTakeScreenshot": "Capture Screenshot",
|
"ButtonTakeScreenshot": "Capture Screenshot",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "Home",
|
"ButtonHome": "Home",
|
||||||
"ButtonSearch": "Suche",
|
"ButtonSearch": "Suche",
|
||||||
"ButtonSettings": "Einstellungen",
|
"ButtonSettings": "Einstellungen",
|
||||||
|
"Settings": "Einstellungen",
|
||||||
|
"Mute": "Stumm",
|
||||||
|
"Unmute": "Ton ein",
|
||||||
|
"Subtitles": "Untertitel",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Zur\u00fcckspulen",
|
||||||
|
"Fullscreen": "Vollbild",
|
||||||
|
"ExitFullscreen": "Vollbild verlassen",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Auf einem anderen Ger\u00e4t wiedergeben",
|
||||||
|
"FastForward": "Vorw\u00e4rts spulen",
|
||||||
"ButtonTakeScreenshot": "Bildschirmfoto aufnehmen",
|
"ButtonTakeScreenshot": "Bildschirmfoto aufnehmen",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "Aktuelle Wiedergabe",
|
"TabNowPlaying": "Aktuelle Wiedergabe",
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "Home",
|
"ButtonHome": "Home",
|
||||||
"ButtonSearch": "Search",
|
"ButtonSearch": "Search",
|
||||||
"ButtonSettings": "Settings",
|
"ButtonSettings": "Settings",
|
||||||
|
"Settings": "Settings",
|
||||||
|
"Mute": "Mute",
|
||||||
|
"Unmute": "Unmute",
|
||||||
|
"Subtitles": "Subtitles",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Rewind",
|
||||||
|
"Fullscreen": "Full screen",
|
||||||
|
"ExitFullscreen": "Exit full screen",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Play on another device",
|
||||||
|
"FastForward": "Fast-forward",
|
||||||
"ButtonTakeScreenshot": "Capture Screenshot",
|
"ButtonTakeScreenshot": "Capture Screenshot",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "Home",
|
"ButtonHome": "Home",
|
||||||
"ButtonSearch": "Search",
|
"ButtonSearch": "Search",
|
||||||
"ButtonSettings": "Settings",
|
"ButtonSettings": "Settings",
|
||||||
|
"Settings": "Settings",
|
||||||
|
"Mute": "Mute",
|
||||||
|
"Unmute": "Unmute",
|
||||||
|
"Subtitles": "Subtitles",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Rewind",
|
||||||
|
"Fullscreen": "Full screen",
|
||||||
|
"ExitFullscreen": "Exit full screen",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Play on another device",
|
||||||
|
"FastForward": "Fast-forward",
|
||||||
"ButtonTakeScreenshot": "Capture Screenshot",
|
"ButtonTakeScreenshot": "Capture Screenshot",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "Home",
|
"ButtonHome": "Home",
|
||||||
"ButtonSearch": "Search",
|
"ButtonSearch": "Search",
|
||||||
"ButtonSettings": "Settings",
|
"ButtonSettings": "Settings",
|
||||||
|
"Settings": "Settings",
|
||||||
|
"Mute": "Mute",
|
||||||
|
"Unmute": "Unmute",
|
||||||
|
"Subtitles": "Subtitles",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Rewind",
|
||||||
|
"Fullscreen": "Full screen",
|
||||||
|
"ExitFullscreen": "Exit full screen",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Play on another device",
|
||||||
|
"FastForward": "Fast-forward",
|
||||||
"ButtonTakeScreenshot": "Capture Screenshot",
|
"ButtonTakeScreenshot": "Capture Screenshot",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "Home",
|
"ButtonHome": "Home",
|
||||||
"ButtonSearch": "Search",
|
"ButtonSearch": "Search",
|
||||||
"ButtonSettings": "Settings",
|
"ButtonSettings": "Settings",
|
||||||
|
"Settings": "Settings",
|
||||||
|
"Mute": "Mute",
|
||||||
|
"Unmute": "Unmute",
|
||||||
|
"Subtitles": "Subtitles",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Rewind",
|
||||||
|
"Fullscreen": "Full screen",
|
||||||
|
"ExitFullscreen": "Exit full screen",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Play on another device",
|
||||||
|
"FastForward": "Fast-forward",
|
||||||
"ButtonTakeScreenshot": "Capture Screenshot",
|
"ButtonTakeScreenshot": "Capture Screenshot",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "Inicio",
|
"ButtonHome": "Inicio",
|
||||||
"ButtonSearch": "B\u00fasqueda",
|
"ButtonSearch": "B\u00fasqueda",
|
||||||
"ButtonSettings": "Configuraci\u00f3n",
|
"ButtonSettings": "Configuraci\u00f3n",
|
||||||
|
"Settings": "Configuraci\u00f3n",
|
||||||
|
"Mute": "Silenciar",
|
||||||
|
"Unmute": "Activar Sonido",
|
||||||
|
"Subtitles": "Subtitulos",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Regresar",
|
||||||
|
"Fullscreen": "Pantalla Completa",
|
||||||
|
"ExitFullscreen": "Salir de Pantalla Completa",
|
||||||
|
"PictureInPicture": "Pantalla en pantalla.",
|
||||||
|
"PlayOnAnotherDevice": "Reproducir en otro dispositivo",
|
||||||
|
"FastForward": "Avance R\u00e1pido",
|
||||||
"ButtonTakeScreenshot": "Capturar Pantalla",
|
"ButtonTakeScreenshot": "Capturar Pantalla",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "Reproduci\u00e9ndo Ahora",
|
"TabNowPlaying": "Reproduci\u00e9ndo Ahora",
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "Inicio",
|
"ButtonHome": "Inicio",
|
||||||
"ButtonSearch": "Buscar",
|
"ButtonSearch": "Buscar",
|
||||||
"ButtonSettings": "Opciones",
|
"ButtonSettings": "Opciones",
|
||||||
|
"Settings": "Opciones",
|
||||||
|
"Mute": "Silencio",
|
||||||
|
"Unmute": "Unmute",
|
||||||
|
"Subtitles": "Subt\u00edtulos",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Rewind",
|
||||||
|
"Fullscreen": "Full screen",
|
||||||
|
"ExitFullscreen": "Exit full screen",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Play on another device",
|
||||||
|
"FastForward": "Fast-forward",
|
||||||
"ButtonTakeScreenshot": "Captura de pantalla",
|
"ButtonTakeScreenshot": "Captura de pantalla",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "Reproduciendo ahora",
|
"TabNowPlaying": "Reproduciendo ahora",
|
||||||
|
@ -1332,8 +1343,8 @@
|
||||||
"LabelNoUnreadNotifications": "No hay notificaciones sin leer.",
|
"LabelNoUnreadNotifications": "No hay notificaciones sin leer.",
|
||||||
"MessageInvalidUser": "Usuario o contrase\u00f1a inv\u00e1lidos. Por favor int\u00e9ntalo otra vez.",
|
"MessageInvalidUser": "Usuario o contrase\u00f1a inv\u00e1lidos. Por favor int\u00e9ntalo otra vez.",
|
||||||
"HeaderLoginFailure": "Fallo de inicio de sesi\u00f3n",
|
"HeaderLoginFailure": "Fallo de inicio de sesi\u00f3n",
|
||||||
"RecommendationBecauseYouLike": "Como le gusta {0}",
|
"RecommendationBecauseYouLike": "Ya que te ha gustado {0}, mira estas",
|
||||||
"RecommendationBecauseYouWatched": "Ya que vi\u00f3 {0}",
|
"RecommendationBecauseYouWatched": "Ya que has visto {0}, mira estas",
|
||||||
"RecommendationDirectedBy": "Dirigida por {0}",
|
"RecommendationDirectedBy": "Dirigida por {0}",
|
||||||
"RecommendationStarring": "Protagonizada por {0}",
|
"RecommendationStarring": "Protagonizada por {0}",
|
||||||
"HeaderConfirmRecordingCancellation": "Confirmar la cancelaci\u00f3n de la grabaci\u00f3n",
|
"HeaderConfirmRecordingCancellation": "Confirmar la cancelaci\u00f3n de la grabaci\u00f3n",
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "Home",
|
"ButtonHome": "Home",
|
||||||
"ButtonSearch": "Search",
|
"ButtonSearch": "Search",
|
||||||
"ButtonSettings": "Settings",
|
"ButtonSettings": "Settings",
|
||||||
|
"Settings": "Settings",
|
||||||
|
"Mute": "Mute",
|
||||||
|
"Unmute": "Unmute",
|
||||||
|
"Subtitles": "Subtitles",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Rewind",
|
||||||
|
"Fullscreen": "Full screen",
|
||||||
|
"ExitFullscreen": "Exit full screen",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Play on another device",
|
||||||
|
"FastForward": "Fast-forward",
|
||||||
"ButtonTakeScreenshot": "Capture Screenshot",
|
"ButtonTakeScreenshot": "Capture Screenshot",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "Home",
|
"ButtonHome": "Home",
|
||||||
"ButtonSearch": "Search",
|
"ButtonSearch": "Search",
|
||||||
"ButtonSettings": "Settings",
|
"ButtonSettings": "Settings",
|
||||||
|
"Settings": "Settings",
|
||||||
|
"Mute": "Mute",
|
||||||
|
"Unmute": "Unmute",
|
||||||
|
"Subtitles": "Subtitles",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Rewind",
|
||||||
|
"Fullscreen": "Full screen",
|
||||||
|
"ExitFullscreen": "Exit full screen",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Play on another device",
|
||||||
|
"FastForward": "Fast-forward",
|
||||||
"ButtonTakeScreenshot": "Capture Screenshot",
|
"ButtonTakeScreenshot": "Capture Screenshot",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "Home",
|
"ButtonHome": "Home",
|
||||||
"ButtonSearch": "Search",
|
"ButtonSearch": "Search",
|
||||||
"ButtonSettings": "Settings",
|
"ButtonSettings": "Settings",
|
||||||
|
"Settings": "Param\u00e8tres",
|
||||||
|
"Mute": "Mute",
|
||||||
|
"Unmute": "Unmute",
|
||||||
|
"Subtitles": "Subtitles",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Rewind",
|
||||||
|
"Fullscreen": "Full screen",
|
||||||
|
"ExitFullscreen": "Exit full screen",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Play on another device",
|
||||||
|
"FastForward": "Fast-forward",
|
||||||
"ButtonTakeScreenshot": "Capture Screenshot",
|
"ButtonTakeScreenshot": "Capture Screenshot",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "Accueil",
|
"ButtonHome": "Accueil",
|
||||||
"ButtonSearch": "Recherche",
|
"ButtonSearch": "Recherche",
|
||||||
"ButtonSettings": "Param\u00e8tres",
|
"ButtonSettings": "Param\u00e8tres",
|
||||||
|
"Settings": "Param\u00e8tres",
|
||||||
|
"Mute": "Couper le son",
|
||||||
|
"Unmute": "R\u00e9tablir le son",
|
||||||
|
"Subtitles": "Sous-titres",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Rembobiner",
|
||||||
|
"Fullscreen": "Plein \u00e9cran",
|
||||||
|
"ExitFullscreen": "Sortir du plein \u00e9cran",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Lire sur un autre appareil",
|
||||||
|
"FastForward": "Avance rapide",
|
||||||
"ButtonTakeScreenshot": "Prendre une copie d'\u00e9cran",
|
"ButtonTakeScreenshot": "Prendre une copie d'\u00e9cran",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "Lecture en cours",
|
"TabNowPlaying": "Lecture en cours",
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "Home",
|
"ButtonHome": "Home",
|
||||||
"ButtonSearch": "Search",
|
"ButtonSearch": "Search",
|
||||||
"ButtonSettings": "Settings",
|
"ButtonSettings": "Settings",
|
||||||
|
"Settings": "Settings",
|
||||||
|
"Mute": "Mute",
|
||||||
|
"Unmute": "Unmute",
|
||||||
|
"Subtitles": "Subtitles",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Rewind",
|
||||||
|
"Fullscreen": "Full screen",
|
||||||
|
"ExitFullscreen": "Exit full screen",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Play on another device",
|
||||||
|
"FastForward": "Fast-forward",
|
||||||
"ButtonTakeScreenshot": "Capture Screenshot",
|
"ButtonTakeScreenshot": "Capture Screenshot",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "Home",
|
"ButtonHome": "Home",
|
||||||
"ButtonSearch": "\u05d7\u05d9\u05e4\u05d5\u05e9",
|
"ButtonSearch": "\u05d7\u05d9\u05e4\u05d5\u05e9",
|
||||||
"ButtonSettings": "Settings",
|
"ButtonSettings": "Settings",
|
||||||
|
"Settings": "Settings",
|
||||||
|
"Mute": "Mute",
|
||||||
|
"Unmute": "Unmute",
|
||||||
|
"Subtitles": "Subtitles",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Rewind",
|
||||||
|
"Fullscreen": "Full screen",
|
||||||
|
"ExitFullscreen": "Exit full screen",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Play on another device",
|
||||||
|
"FastForward": "Fast-forward",
|
||||||
"ButtonTakeScreenshot": "Capture Screenshot",
|
"ButtonTakeScreenshot": "Capture Screenshot",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "Po\u010detna",
|
"ButtonHome": "Po\u010detna",
|
||||||
"ButtonSearch": "Tra\u017ei",
|
"ButtonSearch": "Tra\u017ei",
|
||||||
"ButtonSettings": "Postavke",
|
"ButtonSettings": "Postavke",
|
||||||
|
"Settings": "Settings",
|
||||||
|
"Mute": "Mute",
|
||||||
|
"Unmute": "Unmute",
|
||||||
|
"Subtitles": "Subtitles",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Rewind",
|
||||||
|
"Fullscreen": "Full screen",
|
||||||
|
"ExitFullscreen": "Exit full screen",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Play on another device",
|
||||||
|
"FastForward": "Fast-forward",
|
||||||
"ButtonTakeScreenshot": "Dohvati zaslon",
|
"ButtonTakeScreenshot": "Dohvati zaslon",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "Sad se izvodi",
|
"TabNowPlaying": "Sad se izvodi",
|
||||||
|
|
|
@ -410,7 +410,7 @@
|
||||||
"HeaderThemeVideos": "Theme Videos",
|
"HeaderThemeVideos": "Theme Videos",
|
||||||
"HeaderThemeSongs": "Theme Songs",
|
"HeaderThemeSongs": "Theme Songs",
|
||||||
"HeaderScenes": "Jelenetek",
|
"HeaderScenes": "Jelenetek",
|
||||||
"HeaderAwardsAndReviews": "D\u00edjak \u00e9s V\u00e9lem\u00e9nyek",
|
"HeaderAwardsAndReviews": "D\u00edjak \u00e9s v\u00e9lem\u00e9nyek",
|
||||||
"HeaderSoundtracks": "Soundtracks",
|
"HeaderSoundtracks": "Soundtracks",
|
||||||
"HeaderMusicVideos": "Music Videos",
|
"HeaderMusicVideos": "Music Videos",
|
||||||
"HeaderSpecialFeatures": "Special Features",
|
"HeaderSpecialFeatures": "Special Features",
|
||||||
|
@ -519,9 +519,9 @@
|
||||||
"OptionMove": "Move",
|
"OptionMove": "Move",
|
||||||
"LabelTransferMethodHelp": "Copy or move files from the watch folder",
|
"LabelTransferMethodHelp": "Copy or move files from the watch folder",
|
||||||
"HeaderLatestNews": "Friss h\u00edrek",
|
"HeaderLatestNews": "Friss h\u00edrek",
|
||||||
"HeaderRunningTasks": "Fut\u00f3 Folyamatok",
|
"HeaderRunningTasks": "Fut\u00f3 folyamatok",
|
||||||
"HeaderActiveDevices": "Akt\u00edv Eszk\u00f6z\u00f6k",
|
"HeaderActiveDevices": "Akt\u00edv eszk\u00f6z\u00f6k",
|
||||||
"HeaderPendingInstallations": "F\u00fcgg\u0151 Telep\u00edt\u00e9sek",
|
"HeaderPendingInstallations": "F\u00fcgg\u0151 telep\u00edt\u00e9sek",
|
||||||
"ButtonRestartNow": "\u00dajraind\u00edt\u00e1s Most",
|
"ButtonRestartNow": "\u00dajraind\u00edt\u00e1s Most",
|
||||||
"ButtonRestart": "\u00dajraind\u00edt\u00e1s",
|
"ButtonRestart": "\u00dajraind\u00edt\u00e1s",
|
||||||
"ButtonShutdown": "Le\u00e1ll\u00edt\u00e1s",
|
"ButtonShutdown": "Le\u00e1ll\u00edt\u00e1s",
|
||||||
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "Kezd\u0151lap",
|
"ButtonHome": "Kezd\u0151lap",
|
||||||
"ButtonSearch": "Keres\u00e9s",
|
"ButtonSearch": "Keres\u00e9s",
|
||||||
"ButtonSettings": "Be\u00e1ll\u00edt\u00e1sok",
|
"ButtonSettings": "Be\u00e1ll\u00edt\u00e1sok",
|
||||||
|
"Settings": "Be\u00e1ll\u00edt\u00e1sok",
|
||||||
|
"Mute": "N\u00e9m\u00edt",
|
||||||
|
"Unmute": "Hangos\u00edt",
|
||||||
|
"Subtitles": "Feliratok",
|
||||||
|
"Audio": "Audi\u00f3",
|
||||||
|
"Rewind": "Ugr\u00e1s vissza",
|
||||||
|
"Fullscreen": "Teljes k\u00e9perny\u0151",
|
||||||
|
"ExitFullscreen": "Kil\u00e9p\u00e9s a teljes k\u00e9perny\u0151b\u0151l",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Lej\u00e1tsz\u00e1s m\u00e1sik eszk\u00f6z\u00f6n",
|
||||||
|
"FastForward": "Ugr\u00e1s el\u0151re",
|
||||||
"ButtonTakeScreenshot": "Capture Screenshot",
|
"ButtonTakeScreenshot": "Capture Screenshot",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "Most j\u00e1tszott",
|
"TabNowPlaying": "Most j\u00e1tszott",
|
||||||
|
@ -849,7 +860,7 @@
|
||||||
"LabelAllLanguages": "\u00d6sszes nyelv",
|
"LabelAllLanguages": "\u00d6sszes nyelv",
|
||||||
"HeaderBrowseOnlineImages": "Browse Online Images",
|
"HeaderBrowseOnlineImages": "Browse Online Images",
|
||||||
"LabelSource": "Source:",
|
"LabelSource": "Source:",
|
||||||
"OptionAll": "All",
|
"OptionAll": "\u00d6sszes",
|
||||||
"LabelImage": "Image:",
|
"LabelImage": "Image:",
|
||||||
"HeaderImages": "Images",
|
"HeaderImages": "Images",
|
||||||
"HeaderBackdrops": "Backdrops",
|
"HeaderBackdrops": "Backdrops",
|
||||||
|
@ -1456,7 +1467,7 @@
|
||||||
"ValueVideoCodec": "Vide\u00f3 k\u00f3dek: {0}",
|
"ValueVideoCodec": "Vide\u00f3 k\u00f3dek: {0}",
|
||||||
"ValueCodec": "K\u00f3dek: {0}",
|
"ValueCodec": "K\u00f3dek: {0}",
|
||||||
"ValueConditions": "Conditions: {0}",
|
"ValueConditions": "Conditions: {0}",
|
||||||
"LabelAll": "All",
|
"LabelAll": "\u00d6sszes",
|
||||||
"HeaderDeleteImage": "Delete Image",
|
"HeaderDeleteImage": "Delete Image",
|
||||||
"MessageFileNotFound": "File not found.",
|
"MessageFileNotFound": "File not found.",
|
||||||
"MessageFileReadError": "An error occurred reading this file.",
|
"MessageFileReadError": "An error occurred reading this file.",
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "Home",
|
"ButtonHome": "Home",
|
||||||
"ButtonSearch": "Search",
|
"ButtonSearch": "Search",
|
||||||
"ButtonSettings": "Settings",
|
"ButtonSettings": "Settings",
|
||||||
|
"Settings": "Settings",
|
||||||
|
"Mute": "Mute",
|
||||||
|
"Unmute": "Unmute",
|
||||||
|
"Subtitles": "Subtitles",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Rewind",
|
||||||
|
"Fullscreen": "Full screen",
|
||||||
|
"ExitFullscreen": "Exit full screen",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Play on another device",
|
||||||
|
"FastForward": "Fast-forward",
|
||||||
"ButtonTakeScreenshot": "Capture Screenshot",
|
"ButtonTakeScreenshot": "Capture Screenshot",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
|
|
|
@ -94,9 +94,9 @@
|
||||||
"LabelDisplayMissingEpisodesWithinSeasons": "Visualizza gli episodi mancanti nelle stagioni",
|
"LabelDisplayMissingEpisodesWithinSeasons": "Visualizza gli episodi mancanti nelle stagioni",
|
||||||
"LabelDisplayMissingEpisodesWithinSeasonsHelp": "Questo deve anche essere abilitato per le librerie TV nella configurazione del Server Emby.",
|
"LabelDisplayMissingEpisodesWithinSeasonsHelp": "Questo deve anche essere abilitato per le librerie TV nella configurazione del Server Emby.",
|
||||||
"LabelUnairedMissingEpisodesWithinSeasons": "Visualizzare episodi mai andati in onda nelle stagioni",
|
"LabelUnairedMissingEpisodesWithinSeasons": "Visualizzare episodi mai andati in onda nelle stagioni",
|
||||||
"ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.",
|
"ImportMissingEpisodesHelp": "Se abilitato, le informazioni relative agli episodi mancanti saranno importate nel database di Emby e mostrate all'interno di Serie e Stagioni. Questo pu\u00f2 causare scansioni della libreria pi\u00f9 lente.",
|
||||||
"HeaderVideoPlaybackSettings": "Impostazioni di riproduzione video",
|
"HeaderVideoPlaybackSettings": "Impostazioni di riproduzione video",
|
||||||
"OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programs listed in the guide",
|
"OptionDownloadInternetMetadataTvPrograms": "Scarica metadati da Internet per i programmi elencati nella guida",
|
||||||
"HeaderPlaybackSettings": "Impostazioni di riproduzione",
|
"HeaderPlaybackSettings": "Impostazioni di riproduzione",
|
||||||
"LabelAudioLanguagePreference": "Lingua audio preferita:",
|
"LabelAudioLanguagePreference": "Lingua audio preferita:",
|
||||||
"LabelSubtitleLanguagePreference": "Lingua dei sottotitoli preferita:",
|
"LabelSubtitleLanguagePreference": "Lingua dei sottotitoli preferita:",
|
||||||
|
@ -130,8 +130,8 @@
|
||||||
"ImageUploadAspectRatioHelp": "1:1 Rapporto dimensioni raccomandato. Solo JPG\/PNG.",
|
"ImageUploadAspectRatioHelp": "1:1 Rapporto dimensioni raccomandato. Solo JPG\/PNG.",
|
||||||
"MessageNothingHere": "Non c'\u00e8 niente qui.",
|
"MessageNothingHere": "Non c'\u00e8 niente qui.",
|
||||||
"MessagePleaseEnsureInternetMetadata": "Assicurarsi che il download dei metadati internet sia abilitato.",
|
"MessagePleaseEnsureInternetMetadata": "Assicurarsi che il download dei metadati internet sia abilitato.",
|
||||||
"AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.",
|
"AlreadyPaidHelp1": "Se hai gi\u00e0 pagato per installare una versione precedente di Media Browser per Android, non devi pagare nuovamente per attivare questa app. Premi OK per inviarci una e-mail a {0} e provvederemo ad attivarla per te.",
|
||||||
"AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.",
|
"AlreadyPaidHelp2": "Hai Emby Premiere? Cancella questo dialogo, configura Emby Premiere dal Pannello di controllo di Emby Server, sotto Aiuto -> Emby Premiere e sar\u00e0 sbloccato automaticamente.",
|
||||||
"TabSuggestions": "Suggerimenti",
|
"TabSuggestions": "Suggerimenti",
|
||||||
"TabLatest": "Novit\u00e0",
|
"TabLatest": "Novit\u00e0",
|
||||||
"TabUpcoming": "In Arrivo",
|
"TabUpcoming": "In Arrivo",
|
||||||
|
@ -273,7 +273,7 @@
|
||||||
"OptionAllowRemoteSharedDevices": "Consenti controllo remoto di dispositivi condivisi",
|
"OptionAllowRemoteSharedDevices": "Consenti controllo remoto di dispositivi condivisi",
|
||||||
"OptionAllowRemoteSharedDevicesHelp": "Dispositivi DLNA sono considerati condivisi fino a quando un utente non inizia a controllarli.",
|
"OptionAllowRemoteSharedDevicesHelp": "Dispositivi DLNA sono considerati condivisi fino a quando un utente non inizia a controllarli.",
|
||||||
"OptionAllowLinkSharing": "Consenti la condivisione dei media",
|
"OptionAllowLinkSharing": "Consenti la condivisione dei media",
|
||||||
"OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.",
|
"OptionAllowLinkSharingHelp": "Solo le pagine web contenente informazioni sui media sono condivise. I file media non vengono mai condivisi pubblicamente. Le condivisioni scadono dopo {0} giorni.",
|
||||||
"HeaderRemoteControl": "telecomando",
|
"HeaderRemoteControl": "telecomando",
|
||||||
"OptionMissingTmdbId": "Tmdb Id mancante",
|
"OptionMissingTmdbId": "Tmdb Id mancante",
|
||||||
"OptionIsHD": "HD",
|
"OptionIsHD": "HD",
|
||||||
|
@ -299,7 +299,7 @@
|
||||||
"LabelRecordingPath": "Percorso di registrazione predefinito:",
|
"LabelRecordingPath": "Percorso di registrazione predefinito:",
|
||||||
"LabelMovieRecordingPath": "Percorso di registrazione film (opzionale):",
|
"LabelMovieRecordingPath": "Percorso di registrazione film (opzionale):",
|
||||||
"LabelSeriesRecordingPath": "Percorso di registrazione serie (opzionale):",
|
"LabelSeriesRecordingPath": "Percorso di registrazione serie (opzionale):",
|
||||||
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
|
"LabelRecordingPathHelp": "Indica la posizione predefinita in cui salvare le registrazioni. Se lasciata vuota, sar\u00e0 usata la cartella dei dati del server.",
|
||||||
"LabelMetadataPath": "Percorso per i metadati:",
|
"LabelMetadataPath": "Percorso per i metadati:",
|
||||||
"LabelMetadataPathHelp": "Specificare un percorso personalizzato per le immagini e i metadati scaricati.",
|
"LabelMetadataPathHelp": "Specificare un percorso personalizzato per le immagini e i metadati scaricati.",
|
||||||
"LabelTranscodingTempPath": "Cartella temporanea per la trascodifica:",
|
"LabelTranscodingTempPath": "Cartella temporanea per la trascodifica:",
|
||||||
|
@ -464,7 +464,7 @@
|
||||||
"LabelEnableAutomaticPortMap": "Abilita mappatura automatica delle porte",
|
"LabelEnableAutomaticPortMap": "Abilita mappatura automatica delle porte",
|
||||||
"LabelEnableAutomaticPortMapHelp": "Tenta di mappare automaticamente la porta pubblica sulla porta locale tramite UPnP. Questo potrebbe non funzionare con alcuni modelli di router.",
|
"LabelEnableAutomaticPortMapHelp": "Tenta di mappare automaticamente la porta pubblica sulla porta locale tramite UPnP. Questo potrebbe non funzionare con alcuni modelli di router.",
|
||||||
"LabelExternalDDNS": "Dominio esterno:",
|
"LabelExternalDDNS": "Dominio esterno:",
|
||||||
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
|
"LabelExternalDDNSHelp": "Se hai un DNS dinamico inseriscilo qui. Le applicazioni Emby lo useranno per le connessioni remote. Questo campo \u00e8 richiesto quando si usa un certificato SSL personalizzato.",
|
||||||
"TitleAppSettings": "Impostazioni App",
|
"TitleAppSettings": "Impostazioni App",
|
||||||
"LabelMinResumePercentage": "Percentuale minima per il riprendi",
|
"LabelMinResumePercentage": "Percentuale minima per il riprendi",
|
||||||
"LabelMaxResumePercentage": "Percentuale massima per il riprendi",
|
"LabelMaxResumePercentage": "Percentuale massima per il riprendi",
|
||||||
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "Home",
|
"ButtonHome": "Home",
|
||||||
"ButtonSearch": "Cerca",
|
"ButtonSearch": "Cerca",
|
||||||
"ButtonSettings": "Impostazioni",
|
"ButtonSettings": "Impostazioni",
|
||||||
|
"Settings": "Impostazioni",
|
||||||
|
"Mute": "Muto",
|
||||||
|
"Unmute": "Togli muto",
|
||||||
|
"Subtitles": "Sottotitoli",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Riavvolgi",
|
||||||
|
"Fullscreen": "Schermo Intero",
|
||||||
|
"ExitFullscreen": "Esci da Schermo Intero",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Riproduci su altro dispositivo",
|
||||||
|
"FastForward": "Avanti veloce",
|
||||||
"ButtonTakeScreenshot": "Cattura schermata",
|
"ButtonTakeScreenshot": "Cattura schermata",
|
||||||
"LetterButtonAbbreviation": "e",
|
"LetterButtonAbbreviation": "e",
|
||||||
"TabNowPlaying": "In esecuzione",
|
"TabNowPlaying": "In esecuzione",
|
||||||
|
@ -1848,11 +1859,11 @@
|
||||||
"OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.",
|
"OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.",
|
||||||
"LabelFileOrUrl": "File o URL:",
|
"LabelFileOrUrl": "File o URL:",
|
||||||
"OptionEnableForAllTuners": "Abilita per tutti i sintonizzatori",
|
"OptionEnableForAllTuners": "Abilita per tutti i sintonizzatori",
|
||||||
"HeaderTuners": "Tuners",
|
"HeaderTuners": "Sinton. TV",
|
||||||
"LabelOptionalM3uUrl": "Indirizzo M3U (opzionale)",
|
"LabelOptionalM3uUrl": "Indirizzo M3U (opzionale)",
|
||||||
"LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.",
|
"LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.",
|
||||||
"TabResumeSettings": "Ripristina Impostazioni",
|
"TabResumeSettings": "Ripristina Impostazioni",
|
||||||
"DrmChannelsNotImported": "Channels with DRM will not be imported.",
|
"DrmChannelsNotImported": "I canali con DRM non saranno importati.",
|
||||||
"LabelAllowHWTranscoding": "Consenti transcodifica hardware",
|
"LabelAllowHWTranscoding": "Consenti transcodifica hardware",
|
||||||
"AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
|
"AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
|
||||||
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
"OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
|
||||||
|
@ -1867,10 +1878,10 @@
|
||||||
"OptionConvertRecordingPreserveVideo": "Preserve original video when converting recordings",
|
"OptionConvertRecordingPreserveVideo": "Preserve original video when converting recordings",
|
||||||
"OptionConvertRecordingPreserveVideoHelp": "This may provide better video quality but will require transcoding during playback on some devices.",
|
"OptionConvertRecordingPreserveVideoHelp": "This may provide better video quality but will require transcoding during playback on some devices.",
|
||||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||||
"HeaderHealthMonitor": "Health Monitor",
|
"HeaderHealthMonitor": "Monitora Salute",
|
||||||
"HealthMonitorNoAlerts": "Non ci sono avvisi importanti.",
|
"HealthMonitorNoAlerts": "Non ci sono avvisi importanti.",
|
||||||
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
|
||||||
"VisualLoginFormHelp": "Select a user or sign in manually",
|
"VisualLoginFormHelp": "Scegli un utente o accedi manualmente",
|
||||||
"LabelSportsCategories": "Categorie sport:",
|
"LabelSportsCategories": "Categorie sport:",
|
||||||
"XmlTvSportsCategoriesHelp": "Programs with these categories will be displayed as sports programs. Separate multiple with '|'.",
|
"XmlTvSportsCategoriesHelp": "Programs with these categories will be displayed as sports programs. Separate multiple with '|'.",
|
||||||
"LabelNewsCategories": "Categorie notizie:",
|
"LabelNewsCategories": "Categorie notizie:",
|
||||||
|
@ -1890,10 +1901,10 @@
|
||||||
"LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.",
|
"LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.",
|
||||||
"SetupFFmpeg": "Configura FFmpeg",
|
"SetupFFmpeg": "Configura FFmpeg",
|
||||||
"SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.",
|
"SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.",
|
||||||
"EnterFFmpegLocation": "Enter FFmpeg path",
|
"EnterFFmpegLocation": "Inserisci percorso FFmpeg",
|
||||||
"DownloadFFmpeg": "Scarica FFmpeg",
|
"DownloadFFmpeg": "Scarica FFmpeg",
|
||||||
"FFmpegSuggestedDownload": "Scaricamento consigliato: {0}",
|
"FFmpegSuggestedDownload": "Scaricamento consigliato: {0}",
|
||||||
"UnzipFFmpegFile": "Unzip the downloaded file to a folder of your choice.",
|
"UnzipFFmpegFile": "Decomprimi il file scaricato in una cartella a tua scelta.",
|
||||||
"MarkFFmpegExec": "If you are running Linux or OSX, you will need to locate the ffmpeg and ffprobe files and mark them as executable. This is needed to grant Emby permission to execute them.",
|
"MarkFFmpegExec": "If you are running Linux or OSX, you will need to locate the ffmpeg and ffprobe files and mark them as executable. This is needed to grant Emby permission to execute them.",
|
||||||
"OptionUseSystemInstalledVersion": "Usa versione installata nel sistema",
|
"OptionUseSystemInstalledVersion": "Usa versione installata nel sistema",
|
||||||
"OptionUseMyCustomVersion": "Usa una versione personalizzata",
|
"OptionUseMyCustomVersion": "Usa una versione personalizzata",
|
||||||
|
@ -1929,7 +1940,7 @@
|
||||||
"Sports": "Sport",
|
"Sports": "Sport",
|
||||||
"HeaderForKids": "Per Bambini",
|
"HeaderForKids": "Per Bambini",
|
||||||
"HeaderRecordingGroups": "Gruppi di Registrazione",
|
"HeaderRecordingGroups": "Gruppi di Registrazione",
|
||||||
"LabelConvertRecordingsTo": "Convert recordings to:",
|
"LabelConvertRecordingsTo": "Converti le registrazioni a:",
|
||||||
"HeaderUpcomingOnTV": "In onda a breve",
|
"HeaderUpcomingOnTV": "In onda a breve",
|
||||||
"LabelOptionalNetworkPath": "Cartella condivisa (Opzionale):",
|
"LabelOptionalNetworkPath": "Cartella condivisa (Opzionale):",
|
||||||
"LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.",
|
"LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.",
|
||||||
|
@ -1937,7 +1948,7 @@
|
||||||
"NotScheduledToRecord": "Not scheduled to record",
|
"NotScheduledToRecord": "Not scheduled to record",
|
||||||
"SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.",
|
"SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.",
|
||||||
"LatestFromLibrary": "Ultimi {0}",
|
"LatestFromLibrary": "Ultimi {0}",
|
||||||
"LabelMoviePrefix": "Movie prefix:",
|
"LabelMoviePrefix": "Prefisso film:",
|
||||||
"LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.",
|
"LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.",
|
||||||
"HeaderRecordingPostProcessing": "Post-processing Registrazione",
|
"HeaderRecordingPostProcessing": "Post-processing Registrazione",
|
||||||
"LabelPostProcessorArguments": "Argomenti linea di comando del Post-processor",
|
"LabelPostProcessorArguments": "Argomenti linea di comando del Post-processor",
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "\u0411\u0430\u0441\u0442\u044b\u0493\u0430",
|
"ButtonHome": "\u0411\u0430\u0441\u0442\u044b\u0493\u0430",
|
||||||
"ButtonSearch": "\u0406\u0437\u0434\u0435\u0443",
|
"ButtonSearch": "\u0406\u0437\u0434\u0435\u0443",
|
||||||
"ButtonSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0433\u0435",
|
"ButtonSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0433\u0435",
|
||||||
|
"Settings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440",
|
||||||
|
"Mute": "\u0414\u044b\u0431\u044b\u0441\u0442\u044b \u04e9\u0448\u0456\u0440\u0443",
|
||||||
|
"Unmute": "\u0414\u044b\u0431\u044b\u0441\u0442\u044b \u049b\u043e\u0441\u0443",
|
||||||
|
"Subtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440",
|
||||||
|
"Audio": "\u0414\u044b\u0431\u044b\u0441",
|
||||||
|
"Rewind": "\u0428\u0435\u0433\u0456\u043d\u0434\u0456\u0440\u0443",
|
||||||
|
"Fullscreen": "\u0422\u043e\u043b\u044b\u049b \u044d\u043a\u0440\u0430\u043d",
|
||||||
|
"ExitFullscreen": "\u0422\u043e\u043b\u044b\u049b \u044d\u043a\u0440\u0430\u043d\u0434\u0430\u043d \u0448\u044b\u0493\u0443",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "\u0411\u0430\u0441\u049b\u0430 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u0434\u0430 \u043e\u0439\u043d\u0430\u0442\u0443",
|
||||||
|
"FastForward": "\u0416\u044b\u043b\u0434\u0430\u043c \u0430\u043b\u0493\u0430",
|
||||||
"ButtonTakeScreenshot": "\u042d\u043a\u0440\u0430\u043d\u0434\u044b \u0442\u04af\u0441\u0456\u0440\u0443",
|
"ButtonTakeScreenshot": "\u042d\u043a\u0440\u0430\u043d\u0434\u044b \u0442\u04af\u0441\u0456\u0440\u0443",
|
||||||
"LetterButtonAbbreviation": "\u04d8\u0420\u041f",
|
"LetterButtonAbbreviation": "\u04d8\u0420\u041f",
|
||||||
"TabNowPlaying": "\u049a\u0430\u0437\u0456\u0440 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0443\u0434\u0430",
|
"TabNowPlaying": "\u049a\u0430\u0437\u0456\u0440 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0443\u0434\u0430",
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "\ud648",
|
"ButtonHome": "\ud648",
|
||||||
"ButtonSearch": "\ucc3e\uae30",
|
"ButtonSearch": "\ucc3e\uae30",
|
||||||
"ButtonSettings": "\uc124\uc815",
|
"ButtonSettings": "\uc124\uc815",
|
||||||
|
"Settings": "Settings",
|
||||||
|
"Mute": "Mute",
|
||||||
|
"Unmute": "Unmute",
|
||||||
|
"Subtitles": "Subtitles",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Rewind",
|
||||||
|
"Fullscreen": "Full screen",
|
||||||
|
"ExitFullscreen": "Exit full screen",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Play on another device",
|
||||||
|
"FastForward": "Fast-forward",
|
||||||
"ButtonTakeScreenshot": "\uc2a4\ud06c\ub9b0\uc0f7 \ucea1\uccd0",
|
"ButtonTakeScreenshot": "\uc2a4\ud06c\ub9b0\uc0f7 \ucea1\uccd0",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "\uc9c0\uae08 \uc7ac\uc0dd \uc911",
|
"TabNowPlaying": "\uc9c0\uae08 \uc7ac\uc0dd \uc911",
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "Namai",
|
"ButtonHome": "Namai",
|
||||||
"ButtonSearch": "Paie\u0161ka",
|
"ButtonSearch": "Paie\u0161ka",
|
||||||
"ButtonSettings": "Nustatymai",
|
"ButtonSettings": "Nustatymai",
|
||||||
|
"Settings": "Settings",
|
||||||
|
"Mute": "Mute",
|
||||||
|
"Unmute": "Unmute",
|
||||||
|
"Subtitles": "Subtitles",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Rewind",
|
||||||
|
"Fullscreen": "Full screen",
|
||||||
|
"ExitFullscreen": "Exit full screen",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Play on another device",
|
||||||
|
"FastForward": "Fast-forward",
|
||||||
"ButtonTakeScreenshot": "I\u0161saugoti ekrano nuotrauk\u0105",
|
"ButtonTakeScreenshot": "I\u0161saugoti ekrano nuotrauk\u0105",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "Dabar rodoma",
|
"TabNowPlaying": "Dabar rodoma",
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "Home",
|
"ButtonHome": "Home",
|
||||||
"ButtonSearch": "Search",
|
"ButtonSearch": "Search",
|
||||||
"ButtonSettings": "Settings",
|
"ButtonSettings": "Settings",
|
||||||
|
"Settings": "Settings",
|
||||||
|
"Mute": "Mute",
|
||||||
|
"Unmute": "Unmute",
|
||||||
|
"Subtitles": "Subtitles",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Rewind",
|
||||||
|
"Fullscreen": "Full screen",
|
||||||
|
"ExitFullscreen": "Exit full screen",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Play on another device",
|
||||||
|
"FastForward": "Fast-forward",
|
||||||
"ButtonTakeScreenshot": "Capture Screenshot",
|
"ButtonTakeScreenshot": "Capture Screenshot",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "Hjem",
|
"ButtonHome": "Hjem",
|
||||||
"ButtonSearch": "S\u00f8k",
|
"ButtonSearch": "S\u00f8k",
|
||||||
"ButtonSettings": "Innstillinger",
|
"ButtonSettings": "Innstillinger",
|
||||||
|
"Settings": "Settings",
|
||||||
|
"Mute": "Mute",
|
||||||
|
"Unmute": "Unmute",
|
||||||
|
"Subtitles": "Subtitles",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Rewind",
|
||||||
|
"Fullscreen": "Full screen",
|
||||||
|
"ExitFullscreen": "Exit full screen",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Play on another device",
|
||||||
|
"FastForward": "Fast-forward",
|
||||||
"ButtonTakeScreenshot": "Ta Skjermbilde",
|
"ButtonTakeScreenshot": "Ta Skjermbilde",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "Spilles Av",
|
"TabNowPlaying": "Spilles Av",
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "Start",
|
"ButtonHome": "Start",
|
||||||
"ButtonSearch": "Zoeken",
|
"ButtonSearch": "Zoeken",
|
||||||
"ButtonSettings": "Instellingen",
|
"ButtonSettings": "Instellingen",
|
||||||
|
"Settings": "Settings",
|
||||||
|
"Mute": "Mute",
|
||||||
|
"Unmute": "Unmute",
|
||||||
|
"Subtitles": "Subtitles",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Rewind",
|
||||||
|
"Fullscreen": "Full screen",
|
||||||
|
"ExitFullscreen": "Exit full screen",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Play on another device",
|
||||||
|
"FastForward": "Fast-forward",
|
||||||
"ButtonTakeScreenshot": "Vang Schermafbeelding",
|
"ButtonTakeScreenshot": "Vang Schermafbeelding",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "Wordt nu afgespeeld",
|
"TabNowPlaying": "Wordt nu afgespeeld",
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "Dom",
|
"ButtonHome": "Dom",
|
||||||
"ButtonSearch": "Szukaj",
|
"ButtonSearch": "Szukaj",
|
||||||
"ButtonSettings": "Ustawienia",
|
"ButtonSettings": "Ustawienia",
|
||||||
|
"Settings": "Settings",
|
||||||
|
"Mute": "Mute",
|
||||||
|
"Unmute": "Unmute",
|
||||||
|
"Subtitles": "Subtitles",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Rewind",
|
||||||
|
"Fullscreen": "Full screen",
|
||||||
|
"ExitFullscreen": "Exit full screen",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Play on another device",
|
||||||
|
"FastForward": "Fast-forward",
|
||||||
"ButtonTakeScreenshot": "Zrzut Ekranu",
|
"ButtonTakeScreenshot": "Zrzut Ekranu",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "Odtwarzane teraz",
|
"TabNowPlaying": "Odtwarzane teraz",
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "In\u00edcio",
|
"ButtonHome": "In\u00edcio",
|
||||||
"ButtonSearch": "Busca",
|
"ButtonSearch": "Busca",
|
||||||
"ButtonSettings": "Ajustes",
|
"ButtonSettings": "Ajustes",
|
||||||
|
"Settings": "Ajustes",
|
||||||
|
"Mute": "Mudo",
|
||||||
|
"Unmute": "Sair do Mudo",
|
||||||
|
"Subtitles": "Legendas",
|
||||||
|
"Audio": "\u00c1udio",
|
||||||
|
"Rewind": "Retroceder",
|
||||||
|
"Fullscreen": "Tela cheia",
|
||||||
|
"ExitFullscreen": "Sair da tela cheia",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Reproduzir em outro dispositivo",
|
||||||
|
"FastForward": "Avan\u00e7o-r\u00e1pido",
|
||||||
"ButtonTakeScreenshot": "Capturar Tela",
|
"ButtonTakeScreenshot": "Capturar Tela",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "Reproduzindo Agora",
|
"TabNowPlaying": "Reproduzindo Agora",
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "In\u00edcio",
|
"ButtonHome": "In\u00edcio",
|
||||||
"ButtonSearch": "Procurar",
|
"ButtonSearch": "Procurar",
|
||||||
"ButtonSettings": "Ajustes",
|
"ButtonSettings": "Ajustes",
|
||||||
|
"Settings": "Settings",
|
||||||
|
"Mute": "Mute",
|
||||||
|
"Unmute": "Unmute",
|
||||||
|
"Subtitles": "Subtitles",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Rewind",
|
||||||
|
"Fullscreen": "Full screen",
|
||||||
|
"ExitFullscreen": "Exit full screen",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Play on another device",
|
||||||
|
"FastForward": "Fast-forward",
|
||||||
"ButtonTakeScreenshot": "Capturar o Ecr\u00e3",
|
"ButtonTakeScreenshot": "Capturar o Ecr\u00e3",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "A reproduzir agora",
|
"TabNowPlaying": "A reproduzir agora",
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "Home",
|
"ButtonHome": "Home",
|
||||||
"ButtonSearch": "Search",
|
"ButtonSearch": "Search",
|
||||||
"ButtonSettings": "Settings",
|
"ButtonSettings": "Settings",
|
||||||
|
"Settings": "Settings",
|
||||||
|
"Mute": "Mute",
|
||||||
|
"Unmute": "Unmute",
|
||||||
|
"Subtitles": "Subtitles",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Rewind",
|
||||||
|
"Fullscreen": "Full screen",
|
||||||
|
"ExitFullscreen": "Exit full screen",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Play on another device",
|
||||||
|
"FastForward": "Fast-forward",
|
||||||
"ButtonTakeScreenshot": "Capture Screenshot",
|
"ButtonTakeScreenshot": "Capture Screenshot",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "\u0413\u043b\u0430\u0432\u043d\u043e\u0435",
|
"ButtonHome": "\u0413\u043b\u0430\u0432\u043d\u043e\u0435",
|
||||||
"ButtonSearch": "\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u043f\u043e\u0438\u0441\u043a",
|
"ButtonSearch": "\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u043f\u043e\u0438\u0441\u043a",
|
||||||
"ButtonSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b...",
|
"ButtonSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b...",
|
||||||
|
"Settings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b",
|
||||||
|
"Mute": "\u041e\u0442\u043a\u043b. \u0437\u0432\u0443\u043a",
|
||||||
|
"Unmute": "\u0412\u043a\u043b. \u0437\u0432\u0443\u043a",
|
||||||
|
"Subtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u044b",
|
||||||
|
"Audio": "\u0410\u0443\u0434\u0438\u043e",
|
||||||
|
"Rewind": "\u041e\u0442\u043a\u0430\u0442",
|
||||||
|
"Fullscreen": "\u041f\u043e\u043b\u043d\u044b\u0439 \u044d\u043a\u0440\u0430\u043d",
|
||||||
|
"ExitFullscreen": "\u0412\u044b\u0445\u043e\u0434 \u0441 \u043f\u043e\u043b\u043d\u043e\u0433\u043e \u044d\u043a\u0440\u0430\u043d\u0430",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u043d\u0430 \u0434\u0440\u0443\u0433\u043e\u043c \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435",
|
||||||
|
"FastForward": "\u0411\u044b\u0441\u0442\u0440\u043e \u0432\u043f\u0435\u0440\u0451\u0434",
|
||||||
"ButtonTakeScreenshot": "\u0421\u0434\u0435\u043b\u0430\u0442\u044c \u0441\u043d\u0438\u043c\u043e\u043a \u044d\u043a\u0440\u0430\u043d\u0430",
|
"ButtonTakeScreenshot": "\u0421\u0434\u0435\u043b\u0430\u0442\u044c \u0441\u043d\u0438\u043c\u043e\u043a \u044d\u043a\u0440\u0430\u043d\u0430",
|
||||||
"LetterButtonAbbreviation": "\u0411\u041a\u0412",
|
"LetterButtonAbbreviation": "\u0411\u041a\u0412",
|
||||||
"TabNowPlaying": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u043c\u043e\u0435 \u0441\u0435\u0439\u0447\u0430\u0441",
|
"TabNowPlaying": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u043c\u043e\u0435 \u0441\u0435\u0439\u0447\u0430\u0441",
|
||||||
|
@ -1138,8 +1149,8 @@
|
||||||
"HeaderNavigation": "\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f",
|
"HeaderNavigation": "\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f",
|
||||||
"OptionEnableAutomaticServerUpdates": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0441\u0435\u0440\u0432\u0435\u0440\u0430",
|
"OptionEnableAutomaticServerUpdates": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0441\u0435\u0440\u0432\u0435\u0440\u0430",
|
||||||
"OptionOtherTrailers": "\u041e\u0445\u0432\u0430\u0442\u044b\u0432\u0430\u0442\u044c \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u044b \u043a \u0441\u0442\u0430\u0440\u044b\u043c \u0444\u0438\u043b\u044c\u043c\u0430\u043c",
|
"OptionOtherTrailers": "\u041e\u0445\u0432\u0430\u0442\u044b\u0432\u0430\u0442\u044c \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u044b \u043a \u0441\u0442\u0430\u0440\u044b\u043c \u0444\u0438\u043b\u044c\u043c\u0430\u043c",
|
||||||
"HeaderOverview": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
|
"HeaderOverview": "\u041e\u0431\u0437\u043e\u0440",
|
||||||
"HeaderShortOverview": "\u041a\u0440\u0430\u0442\u043a\u043e\u0435 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
|
"HeaderShortOverview": "\u041a\u0440\u0430\u0442. \u043e\u0431\u0437\u043e\u0440",
|
||||||
"HeaderType": "\u0422\u0438\u043f",
|
"HeaderType": "\u0422\u0438\u043f",
|
||||||
"OptionReportActivities": "\u0416\u0443\u0440\u043d\u0430\u043b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0439",
|
"OptionReportActivities": "\u0416\u0443\u0440\u043d\u0430\u043b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0439",
|
||||||
"HeaderTunerDevices": "\u0422\u044e\u043d\u0435\u0440\u043d\u044b\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430",
|
"HeaderTunerDevices": "\u0422\u044e\u043d\u0435\u0440\u043d\u044b\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430",
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "Home",
|
"ButtonHome": "Home",
|
||||||
"ButtonSearch": "Search",
|
"ButtonSearch": "Search",
|
||||||
"ButtonSettings": "Settings",
|
"ButtonSettings": "Settings",
|
||||||
|
"Settings": "Settings",
|
||||||
|
"Mute": "Mute",
|
||||||
|
"Unmute": "Unmute",
|
||||||
|
"Subtitles": "Subtitles",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Rewind",
|
||||||
|
"Fullscreen": "Full screen",
|
||||||
|
"ExitFullscreen": "Exit full screen",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Play on another device",
|
||||||
|
"FastForward": "Fast-forward",
|
||||||
"ButtonTakeScreenshot": "Capture Screenshot",
|
"ButtonTakeScreenshot": "Capture Screenshot",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "Home",
|
"ButtonHome": "Home",
|
||||||
"ButtonSearch": "Search",
|
"ButtonSearch": "Search",
|
||||||
"ButtonSettings": "Settings",
|
"ButtonSettings": "Settings",
|
||||||
|
"Settings": "Settings",
|
||||||
|
"Mute": "Mute",
|
||||||
|
"Unmute": "Unmute",
|
||||||
|
"Subtitles": "Subtitles",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Rewind",
|
||||||
|
"Fullscreen": "Full screen",
|
||||||
|
"ExitFullscreen": "Exit full screen",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Play on another device",
|
||||||
|
"FastForward": "Fast-forward",
|
||||||
"ButtonTakeScreenshot": "Capture Screenshot",
|
"ButtonTakeScreenshot": "Capture Screenshot",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "Hem",
|
"ButtonHome": "Hem",
|
||||||
"ButtonSearch": "S\u00f6k",
|
"ButtonSearch": "S\u00f6k",
|
||||||
"ButtonSettings": "Inst\u00e4llningar",
|
"ButtonSettings": "Inst\u00e4llningar",
|
||||||
|
"Settings": "Settings",
|
||||||
|
"Mute": "Mute",
|
||||||
|
"Unmute": "Unmute",
|
||||||
|
"Subtitles": "Subtitles",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Rewind",
|
||||||
|
"Fullscreen": "Full screen",
|
||||||
|
"ExitFullscreen": "Exit full screen",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Play on another device",
|
||||||
|
"FastForward": "Fast-forward",
|
||||||
"ButtonTakeScreenshot": "Ta sk\u00e4rmbild",
|
"ButtonTakeScreenshot": "Ta sk\u00e4rmbild",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "Nu spelas",
|
"TabNowPlaying": "Nu spelas",
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "Anasayfa",
|
"ButtonHome": "Anasayfa",
|
||||||
"ButtonSearch": "Arama",
|
"ButtonSearch": "Arama",
|
||||||
"ButtonSettings": "Ayarlar",
|
"ButtonSettings": "Ayarlar",
|
||||||
|
"Settings": "Settings",
|
||||||
|
"Mute": "Mute",
|
||||||
|
"Unmute": "Unmute",
|
||||||
|
"Subtitles": "Subtitles",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Rewind",
|
||||||
|
"Fullscreen": "Full screen",
|
||||||
|
"ExitFullscreen": "Exit full screen",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Play on another device",
|
||||||
|
"FastForward": "Fast-forward",
|
||||||
"ButtonTakeScreenshot": "Ekran G\u00f6r\u00fcnt\u00fcs\u00fc Al",
|
"ButtonTakeScreenshot": "Ekran G\u00f6r\u00fcnt\u00fcs\u00fc Al",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "\u015eimdi \u00c7al\u0131n\u0131yor",
|
"TabNowPlaying": "\u015eimdi \u00c7al\u0131n\u0131yor",
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "Home",
|
"ButtonHome": "Home",
|
||||||
"ButtonSearch": "Search",
|
"ButtonSearch": "Search",
|
||||||
"ButtonSettings": "Settings",
|
"ButtonSettings": "Settings",
|
||||||
|
"Settings": "Settings",
|
||||||
|
"Mute": "Mute",
|
||||||
|
"Unmute": "Unmute",
|
||||||
|
"Subtitles": "Subtitles",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Rewind",
|
||||||
|
"Fullscreen": "Full screen",
|
||||||
|
"ExitFullscreen": "Exit full screen",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Play on another device",
|
||||||
|
"FastForward": "Fast-forward",
|
||||||
"ButtonTakeScreenshot": "Capture Screenshot",
|
"ButtonTakeScreenshot": "Capture Screenshot",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "Home",
|
"ButtonHome": "Home",
|
||||||
"ButtonSearch": "T\u00ecm ki\u1ebfm",
|
"ButtonSearch": "T\u00ecm ki\u1ebfm",
|
||||||
"ButtonSettings": "Settings",
|
"ButtonSettings": "Settings",
|
||||||
|
"Settings": "Settings",
|
||||||
|
"Mute": "Mute",
|
||||||
|
"Unmute": "Unmute",
|
||||||
|
"Subtitles": "Subtitles",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Rewind",
|
||||||
|
"Fullscreen": "Full screen",
|
||||||
|
"ExitFullscreen": "Exit full screen",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Play on another device",
|
||||||
|
"FastForward": "Fast-forward",
|
||||||
"ButtonTakeScreenshot": "Capture Screenshot",
|
"ButtonTakeScreenshot": "Capture Screenshot",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "\u9996\u9875",
|
"ButtonHome": "\u9996\u9875",
|
||||||
"ButtonSearch": "\u641c\u7d22",
|
"ButtonSearch": "\u641c\u7d22",
|
||||||
"ButtonSettings": "\u8bbe\u7f6e",
|
"ButtonSettings": "\u8bbe\u7f6e",
|
||||||
|
"Settings": "Settings",
|
||||||
|
"Mute": "Mute",
|
||||||
|
"Unmute": "Unmute",
|
||||||
|
"Subtitles": "Subtitles",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Rewind",
|
||||||
|
"Fullscreen": "Full screen",
|
||||||
|
"ExitFullscreen": "Exit full screen",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Play on another device",
|
||||||
|
"FastForward": "Fast-forward",
|
||||||
"ButtonTakeScreenshot": "\u5c4f\u5e55\u622a\u56fe",
|
"ButtonTakeScreenshot": "\u5c4f\u5e55\u622a\u56fe",
|
||||||
"LetterButtonAbbreviation": "\u5b57\u6bcd\u6309\u952e",
|
"LetterButtonAbbreviation": "\u5b57\u6bcd\u6309\u952e",
|
||||||
"TabNowPlaying": "\u73b0\u5728\u64ad\u653e",
|
"TabNowPlaying": "\u73b0\u5728\u64ad\u653e",
|
||||||
|
@ -1908,7 +1919,7 @@
|
||||||
"RemoveDownload": "\u5220\u9664\u4e0b\u8f7d",
|
"RemoveDownload": "\u5220\u9664\u4e0b\u8f7d",
|
||||||
"SyncToOtherDevices": "\u540c\u6b65\u5230\u5176\u4ed6\u8bbe\u5907",
|
"SyncToOtherDevices": "\u540c\u6b65\u5230\u5176\u4ed6\u8bbe\u5907",
|
||||||
"ManageOfflineDownloads": "\u7ba1\u7406\u79bb\u7ebf\u4e0b\u8f7d",
|
"ManageOfflineDownloads": "\u7ba1\u7406\u79bb\u7ebf\u4e0b\u8f7d",
|
||||||
"MessageDownloadScheduled": "Download scheduled",
|
"MessageDownloadScheduled": "\u4e0b\u8f7d\u5df2\u9884\u8ba2",
|
||||||
"RememberMe": "\u8bb0\u4f4f\u6211",
|
"RememberMe": "\u8bb0\u4f4f\u6211",
|
||||||
"HeaderOfflineSync": "\u79bb\u7ebf\u540c\u6b65",
|
"HeaderOfflineSync": "\u79bb\u7ebf\u540c\u6b65",
|
||||||
"LabelMaxAudioFileBitrate": "\u6700\u5927\u97f3\u9891\u6587\u4ef6\u6bd4\u7279\u7387\uff1a",
|
"LabelMaxAudioFileBitrate": "\u6700\u5927\u97f3\u9891\u6587\u4ef6\u6bd4\u7279\u7387\uff1a",
|
||||||
|
@ -1928,7 +1939,7 @@
|
||||||
"H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.",
|
"H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.",
|
||||||
"Sports": "\u4f53\u80b2",
|
"Sports": "\u4f53\u80b2",
|
||||||
"HeaderForKids": "\u7ed9\u513f\u7ae5",
|
"HeaderForKids": "\u7ed9\u513f\u7ae5",
|
||||||
"HeaderRecordingGroups": "Recording Groups",
|
"HeaderRecordingGroups": "\u5f55\u5236\u7ec4",
|
||||||
"LabelConvertRecordingsTo": "\u8f6c\u6362\u5f55\u5236\u5230\uff1a",
|
"LabelConvertRecordingsTo": "\u8f6c\u6362\u5f55\u5236\u5230\uff1a",
|
||||||
"HeaderUpcomingOnTV": "Upcoming On TV",
|
"HeaderUpcomingOnTV": "Upcoming On TV",
|
||||||
"LabelOptionalNetworkPath": "(Optional) Shared network folder:",
|
"LabelOptionalNetworkPath": "(Optional) Shared network folder:",
|
||||||
|
@ -1936,7 +1947,7 @@
|
||||||
"ButtonPlayExternalPlayer": "\u4f7f\u7528\u5916\u90e8\u64ad\u653e\u5668\u64ad\u653e",
|
"ButtonPlayExternalPlayer": "\u4f7f\u7528\u5916\u90e8\u64ad\u653e\u5668\u64ad\u653e",
|
||||||
"NotScheduledToRecord": "Not scheduled to record",
|
"NotScheduledToRecord": "Not scheduled to record",
|
||||||
"SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.",
|
"SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.",
|
||||||
"LatestFromLibrary": "\u6700\u65b0{0}",
|
"LatestFromLibrary": "\u6700\u65b0\u7684{0}",
|
||||||
"LabelMoviePrefix": "\u7535\u5f71\u524d\u7f00\uff1a",
|
"LabelMoviePrefix": "\u7535\u5f71\u524d\u7f00\uff1a",
|
||||||
"LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.",
|
"LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.",
|
||||||
"HeaderRecordingPostProcessing": "Recording Post Processing",
|
"HeaderRecordingPostProcessing": "Recording Post Processing",
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "Home",
|
"ButtonHome": "Home",
|
||||||
"ButtonSearch": "Search",
|
"ButtonSearch": "Search",
|
||||||
"ButtonSettings": "Settings",
|
"ButtonSettings": "Settings",
|
||||||
|
"Settings": "Settings",
|
||||||
|
"Mute": "Mute",
|
||||||
|
"Unmute": "Unmute",
|
||||||
|
"Subtitles": "Subtitles",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Rewind",
|
||||||
|
"Fullscreen": "Full screen",
|
||||||
|
"ExitFullscreen": "Exit full screen",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Play on another device",
|
||||||
|
"FastForward": "Fast-forward",
|
||||||
"ButtonTakeScreenshot": "Capture Screenshot",
|
"ButtonTakeScreenshot": "Capture Screenshot",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
|
|
|
@ -588,6 +588,17 @@
|
||||||
"ButtonHome": "\u9996\u9801",
|
"ButtonHome": "\u9996\u9801",
|
||||||
"ButtonSearch": "\u641c\u7d22",
|
"ButtonSearch": "\u641c\u7d22",
|
||||||
"ButtonSettings": "Settings",
|
"ButtonSettings": "Settings",
|
||||||
|
"Settings": "Settings",
|
||||||
|
"Mute": "Mute",
|
||||||
|
"Unmute": "Unmute",
|
||||||
|
"Subtitles": "Subtitles",
|
||||||
|
"Audio": "Audio",
|
||||||
|
"Rewind": "Rewind",
|
||||||
|
"Fullscreen": "Full screen",
|
||||||
|
"ExitFullscreen": "Exit full screen",
|
||||||
|
"PictureInPicture": "Picture in picture",
|
||||||
|
"PlayOnAnotherDevice": "Play on another device",
|
||||||
|
"FastForward": "Fast-forward",
|
||||||
"ButtonTakeScreenshot": "Capture Screenshot",
|
"ButtonTakeScreenshot": "Capture Screenshot",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue